Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_thread.cc155 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber()
157 stack_top_ = next_stack_top_; 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()
229 CHECK(AddrIsInMem(stack_top_ - 1)); in Init()
237 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
296 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
300 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
309 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
[all …]
H A Dasan_thread.h153 uptr stack_top_; variable
H A Dasan_fuchsia.cc123 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
H A Dasan_rtems.cc127 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cc50 stack_top_ = stack_bottom_ + stack_size; in Init()
57 CHECK(MemIsApp(stack_top_ - 1)); 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.h30 uptr stack_top() { return stack_top_; } in stack_top()
38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
75 uptr stack_top_; variable
/freebsd-12.1/contrib/compiler-rt/lib/msan/
H A Dmsan_thread.h31 uptr stack_top() { return stack_top_; } in stack_top()
38 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
56 uptr stack_top_; variable
H A Dmsan_thread.cc27 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_); in ClearShadowForThreadStackAndTLS()
47 CHECK(MEM_IS_APP(stack_top_ - 1)); in Init()