Searched refs:stack_top_ (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.cpp | 108 if (stack_bottom_ >= stack_top_) in GetStackBounds() 110 return {stack_bottom_, stack_top_}; in GetStackBounds() 125 if (stack_top_ != stack_bottom_) { in Init() 128 CHECK(AddrIsInMem(stack_top_ - 1)); in Init() 132 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 175 stack_top_ = stack_bottom_ + stack_size; in SetThreadStackAndTls() 179 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
|
| H A D | memprof_thread.h | 108 uptr stack_top_; variable
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | asan_thread.cpp | 162 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber() 164 stack_top_ = next_stack_top_; in FinishSwitchFiber() 173 if (stack_bottom_ >= stack_top_) return {0, 0}; in GetStackBounds() 174 return {stack_bottom_, stack_top_}; in GetStackBounds() 183 return {stack_bottom_, stack_top_}; in GetStackBounds() 235 if (stack_top_ != stack_bottom_) { in Init() 238 CHECK(AddrIsInMem(stack_top_ - 1)); in Init() 255 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init() 308 stack_top_ = RoundDownTo(stack_bottom_ + stack_size, ASAN_SHADOW_GRANULARITY); in SetThreadStackAndTls() 312 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls() [all …]
|
| H A D | asan_thread.h | 153 uptr stack_top_; variable
|
| H A D | asan_fuchsia.cpp | 144 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread.h | 44 uptr stack_top() { return stack_top_; } in stack_top() 53 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack() 84 uptr stack_top_; variable
|
| H A D | hwasan_thread.cpp | 42 CHECK_EQ(0, stack_top_); in Init() 78 CHECK(MemIsApp(stack_top_ - 1)); in InitStackRingBuffer() 92 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS() 93 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
|
| H A D | hwasan_fuchsia.cpp | 110 stack_top_ = state->stack_top; in InitStackAndTls()
|
| H A D | hwasan_linux.cpp | 504 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()
|