Home
last modified time | relevance | path

Searched refs:stack_bottom_ (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cc48 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 Dhwasan_thread.h31 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 Dasan_thread.cc153 *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 Dasan_thread.h154 uptr stack_bottom_; variable
H A Dasan_fuchsia.cc122 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
H A Dasan_rtems.cc126 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
/freebsd-12.1/contrib/compiler-rt/lib/msan/
H A Dmsan_thread.cc25 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 Dmsan_thread.h32 uptr stack_bottom() { return stack_bottom_; } in stack_bottom()
38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
57 uptr stack_bottom_; variable