Home
last modified time | relevance | path

Searched refs:host_stack_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/binary_translation/guest_os_primitives/
Dguest_thread.cc96 thread->host_stack_ = MmapOrDie(GetStackSizeForTranslation()); in CreateClone()
97 if (thread->host_stack_ == MAP_FAILED) { in CreateClone()
99 thread->host_stack_ = nullptr; in CreateClone()
170 if (thread->host_stack_) { in Destroy()
172 MunmapOrDie(thread->host_stack_, GetStackSizeForTranslation()); in Destroy()
194 void* host_stack = thread->host_stack_; in Exit()
195 thread->host_stack_ = nullptr; in Exit()
330 CHECK(host_stack_); in GetHostStackTop()
331 auto top = reinterpret_cast<uintptr_t>(host_stack_) + GetStackSizeForTranslation(); in GetHostStackTop()
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/
Dguest_thread.h123 void* host_stack_ = nullptr; variable