Home
last modified time | relevance | path

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

/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp185 *bottom_old = stack_bottom_; in FinishSwitchFiber()
187 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber()
188 stack_bottom_ = next_stack_bottom_; in FinishSwitchFiber()
198 if (stack_bottom_ >= stack_top_) in GetStackBounds()
200 return {stack_bottom_, stack_top_}; in GetStackBounds()
209 return {stack_bottom_, stack_top_}; in GetStackBounds()
257 if (stack_top_ != stack_bottom_) { in Init()
259 CHECK(AddrIsInMem(stack_bottom_)); in Init()
277 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
[all...]
H A Dasan_thread.h170 uptr stack_bottom_;
175 uptr stack_bottom_; global() variable
H A Dasan_fuchsia.cpp140 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp105 if (stack_bottom_ >= stack_top_) in Destroy()
107 return {stack_bottom_, stack_top_}; in GetStackBounds()
122 if (stack_top_ != stack_bottom_) { in Init()
124 CHECK(AddrIsInMem(stack_bottom_)); in Init()
129 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
168 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_top_,
172 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
H A Dmemprof_thread.h103 uptr stack_bottom_;
109 uptr stack_bottom_; global() variable
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp43 CHECK_EQ(0, stack_bottom_); in Init()
87 if (stack_bottom_) { in InitStackRingBuffer()
90 CHECK(MemIsApp(stack_bottom_)); in InitStackRingBuffer()
96 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
97 TagMemory(UntagAddr(stack_bottom_), in ClearShadowForThreadStackAndTLS()
98 UntagAddr(stack_top_) - UntagAddr(stack_bottom_), 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_top_, &tls_begin_, in TagMemoryAligned()
H A Dhwasan_fuchsia.cpp109 stack_bottom_ = state->stack_bottom; in InitStackAndTls()