Searched refs:stack_top_ (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.cpp | 109 if (stack_bottom_ >= stack_top_) in GetStackBounds() 111 return {stack_bottom_, stack_top_}; in GetStackBounds() 126 if (stack_top_ != stack_bottom_) { in Init() 129 CHECK(AddrIsInMem(stack_top_ - 1)); in Init() 133 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 176 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls() 180 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
|
| H A D | memprof_thread.h | 108 uptr stack_top_; variable
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_thread.cpp | 163 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber() 165 stack_top_ = next_stack_top_; in FinishSwitchFiber() 174 if (stack_bottom_ >= stack_top_) return {0, 0}; in GetStackBounds() 175 return {stack_bottom_, stack_top_}; in GetStackBounds() 184 return {stack_bottom_, stack_top_}; in GetStackBounds() 236 if (stack_top_ != stack_bottom_) { in Init() 239 CHECK(AddrIsInMem(stack_top_ - 1)); 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() [all …]
|
| H A D | asan_thread.h | 153 uptr stack_top_; variable
|
| H A D | asan_fuchsia.cpp | 117 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread.cpp | 40 CHECK_EQ(0, stack_top_); in Init() 74 CHECK(MemIsApp(stack_top_ - 1)); in InitStackRingBuffer() 88 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 89 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
| H A D | hwasan_thread.h | 39 uptr stack_top() { return stack_top_; } in stack_top() 47 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 74 uptr stack_top_; variable
|
| H A D | hwasan_fuchsia.cpp | 107 stack_top_ = state->stack_top; in InitStackAndTls()
|
| H A D | hwasan_linux.cpp | 410 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()
|