Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp108 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 Dmemprof_thread.h109 uptr stack_bottom_; variable
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_thread.cpp160 *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 Dasan_thread.h154 uptr stack_bottom_; variable
H A Dasan_fuchsia.cpp143 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp43 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 Dhwasan_thread.h45 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 Dhwasan_linux.cpp502 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, in InitStackAndTls()
504 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()
H A Dhwasan_fuchsia.cpp109 stack_bottom_ = state->stack_bottom; in InitStackAndTls()