Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/msan/
HDmsan_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()
HDmsan_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
/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_thread.cc157 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()
HDasan_thread.h65 uptr stack_bottom() { return stack_bottom_; } in stack_bottom()
81 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
128 uptr stack_bottom_; variable