/external/compiler-rt/lib/msan/ |
msan_thread.cc | 25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, local 27 stack_top_ = stack_bottom_ + stack_size; 35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_); 46 CHECK(MEM_IS_APP(stack_bottom_));
|
msan_thread.h | 32 uptr stack_bottom() { return stack_bottom_; } 38 return addr >= stack_bottom_ && addr < stack_top_; 57 uptr stack_bottom_; member in class:__msan::MsanThread
|
/external/compiler-rt/lib/asan/ |
asan_thread.h | 66 uptr stack_bottom() { return stack_bottom_; } 82 return addr >= stack_bottom_ && addr < stack_top_; 129 uptr stack_bottom_; member in class:__asan::AsanThread 130 // stack_size_ == stack_top_ - stack_bottom_;
|
asan_thread.cc | 157 CHECK(AddrIsInMem(stack_bottom_)); 162 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, 198 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, local 200 stack_top_ = stack_bottom_ + stack_size_; 208 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
|