Searched refs:stack_bottom_ (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/contrib/compiler-rt/lib/msan/ |
| HD | 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()
|
| HD | 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
|
| /NextBSD/contrib/compiler-rt/lib/asan/ |
| HD | asan_thread.cc | 157 CHECK(AddrIsInMem(stack_bottom_)); in Init() 162 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 199 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, in SetThreadStackAndTls() 201 stack_top_ = stack_bottom_ + stack_size_; in SetThreadStackAndTls() 209 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
| HD | asan_thread.h | 65 uptr stack_bottom() { return stack_bottom_; } in stack_bottom() 81 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 128 uptr stack_bottom_; variable
|