Home
last modified time | relevance | path

Searched refs:stack_top_ (Results 1 – 4 of 4) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_thread.cc156 stack_top_ = next_stack_top_; in FinishSwitchFiber()
164 return StackBounds{stack_bottom_, stack_top_}; // NOLINT in GetStackBounds()
172 return StackBounds{stack_bottom_, stack_top_}; // NOLINT in GetStackBounds()
225 CHECK(AddrIsInMem(stack_top_ - 1)); in Init()
229 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
268 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
Dasan_thread.h144 uptr stack_top_; variable
/external/compiler-rt/lib/msan/
Dmsan_thread.h31 uptr stack_top() { return stack_top_; } in stack_top()
38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
56 uptr stack_top_; variable
Dmsan_thread.cc27 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_); in ClearShadowForThreadStackAndTLS()
47 CHECK(MEM_IS_APP(stack_top_ - 1)); in Init()