Searched refs:stack_bottom_ (Results 1 – 4 of 4) sorted by relevance
/external/compiler-rt/lib/msan/ |
D | msan_thread.cc | 25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, in SetThreadStackAndTls() 27 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls() 35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_); in ClearShadowForThreadStackAndTLS() 46 CHECK(MEM_IS_APP(stack_bottom_)); in Init()
|
D | msan_thread.h | 32 uptr stack_bottom() { return stack_bottom_; } in stack_bottom() 38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 57 uptr stack_bottom_; variable
|
/external/compiler-rt/lib/asan/ |
D | asan_thread.cc | 155 stack_bottom_ = next_stack_bottom_; in FinishSwitchFiber() 164 return StackBounds{stack_bottom_, stack_top_}; // NOLINT in GetStackBounds() 172 return StackBounds{stack_bottom_, stack_top_}; // NOLINT in GetStackBounds() 224 CHECK(AddrIsInMem(stack_bottom_)); in Init() 229 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 266 GetThreadStackAndTls(tid() == 0, const_cast<uptr *>(&stack_bottom_), in SetThreadStackAndTls() 268 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls() 277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
D | asan_thread.h | 145 uptr stack_bottom_; variable
|