Searched refs:stack_bottom_ (Results 1 – 9 of 9) sorted by relevance
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 185 *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 D | asan_thread.h | 170 uptr stack_bottom_; 175 uptr stack_bottom_; global() variable
|
H A D | asan_fuchsia.cpp | 140 stack_bottom_ = options->stack_bottom; in SetThreadStackAndTls()
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.cpp | 105 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 D | memprof_thread.h | 103 uptr stack_bottom_; 109 uptr stack_bottom_; global() variable
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_thread.cpp | 43 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 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_top_, &tls_begin_, in TagMemoryAligned()
|
H A D | hwasan_fuchsia.cpp | 109 stack_bottom_ = state->stack_bottom; in InitStackAndTls()
|