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 | 157 CHECK(AddrIsInMem(stack_bottom_)); in Init() 162 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 198 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, in SetThreadStackAndTls() 200 stack_top_ = stack_bottom_ + stack_size_; in SetThreadStackAndTls() 208 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
D | asan_thread.h | 66 uptr stack_bottom() { return stack_bottom_; } in stack_bottom() 82 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 129 uptr stack_bottom_; variable
|