Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp108 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 Dmemprof_thread.h108 uptr stack_top_; variable
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_thread.cpp162 *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 Dasan_thread.h153 uptr stack_top_; variable
H A Dasan_fuchsia.cpp144 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_thread.h44 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 Dhwasan_thread.cpp42 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 Dhwasan_fuchsia.cpp110 stack_top_ = state->stack_top; in InitStackAndTls()
H A Dhwasan_linux.cpp504 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()