Searched refs:stack_bottom_ (Results 1 – 9 of 9) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/memprof/ |
H A D | memprof_thread.cpp | 108 if (stack_bottom_ >= stack_top_) in GetStackBounds() 110 return {stack_bottom_, stack_top_}; in GetStackBounds() 125 if (stack_top_ != stack_bottom_) { in Init() 127 CHECK(AddrIsInMem(stack_bottom_)); in Init() 132 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 173 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size, in SetThreadStackAndTls() 175 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls() 179 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
|
H A D | memprof_thread.h | 109 uptr stack_bottom_; variable
|
/openbsd/gnu/llvm/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 160 *bottom_old = stack_bottom_; in FinishSwitchFiber() 163 stack_bottom_ = next_stack_bottom_; in FinishSwitchFiber() 174 return {stack_bottom_, stack_top_}; in GetStackBounds() 183 return {stack_bottom_, stack_top_}; in GetStackBounds() 235 if (stack_top_ != stack_bottom_) { in Init() 237 CHECK(AddrIsInMem(stack_bottom_)); in Init() 255 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 312 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls() 321 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 322 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.cpp | 143 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
|
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/ |
H A D | hwasan_thread.cpp | 43 CHECK_EQ(0, stack_bottom_); in Init() 74 if (stack_bottom_) { in InitStackRingBuffer() 77 CHECK(MemIsApp(stack_bottom_)); in InitStackRingBuffer() 92 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 93 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
H A D | hwasan_thread.h | 45 uptr stack_bottom() { return stack_bottom_; } in stack_bottom() 53 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 85 uptr stack_bottom_; variable
|
H A D | hwasan_linux.cpp | 502 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, in InitStackAndTls() 504 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()
|
H A D | hwasan_fuchsia.cpp | 109 stack_bottom_ = state->stack_bottom; in InitStackAndTls()
|