Searched refs:stack_bottom_ (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread.cc | 48 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, in Init() 50 stack_top_ = stack_bottom_ + stack_size; in Init() 53 if (stack_bottom_) { in Init() 56 CHECK(MemIsApp(stack_bottom_)); in Init() 71 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 72 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
| H A D | hwasan_thread.h | 31 uptr stack_bottom() { return stack_bottom_; } in stack_bottom() 38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 76 uptr stack_bottom_; variable
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_thread.cc | 153 *bottom_old = stack_bottom_; in FinishSwitchFiber() 156 stack_bottom_ = next_stack_bottom_; in FinishSwitchFiber() 167 return {stack_bottom_, stack_top_}; in GetStackBounds() 176 return {stack_bottom_, stack_top_}; in GetStackBounds() 226 if (stack_top_ != stack_bottom_) { in Init() 228 CHECK(AddrIsInMem(stack_bottom_)); in Init() 237 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 300 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls() 309 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 310 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS() [all …]
|
| H A D | asan_thread.h | 154 uptr stack_bottom_; variable
|
| H A D | asan_fuchsia.cc | 122 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
|
| H A D | asan_rtems.cc | 126 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
|
| /freebsd-12.1/contrib/compiler-rt/lib/msan/ |
| H A 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()
|
| H A 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
|