Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp109 if (stack_bottom_ >= stack_top_) in GetStackBounds()
111 return {stack_bottom_, stack_top_}; in GetStackBounds()
126 if (stack_top_ != stack_bottom_) { in Init()
128 CHECK(AddrIsInMem(stack_bottom_)); in Init()
133 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
174 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size, in SetThreadStackAndTls()
176 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls()
180 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
H A Dmemprof_thread.h109 uptr stack_bottom_; variable
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp161 *bottom_old = stack_bottom_; in FinishSwitchFiber()
164 stack_bottom_ = next_stack_bottom_; in FinishSwitchFiber()
175 return {stack_bottom_, stack_top_}; in GetStackBounds()
184 return {stack_bottom_, stack_top_}; in GetStackBounds()
236 if (stack_top_ != stack_bottom_) { in Init()
238 CHECK(AddrIsInMem(stack_bottom_)); in Init()
256 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
313 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
322 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
323 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
[all …]
H A Dasan_thread.h154 uptr stack_bottom_; variable
H A Dasan_fuchsia.cpp116 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp41 CHECK_EQ(0, stack_bottom_); in Init()
70 if (stack_bottom_) { in InitStackRingBuffer()
73 CHECK(MemIsApp(stack_bottom_)); in InitStackRingBuffer()
88 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
89 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
H A Dhwasan_thread.h40 uptr stack_bottom() { return stack_bottom_; } in stack_bottom()
47 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
75 uptr stack_bottom_; variable
H A Dhwasan_linux.cpp408 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, in InitStackAndTls()
410 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()
H A Dhwasan_fuchsia.cpp106 stack_bottom_ = state->stack_bottom; in InitStackAndTls()