Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp109 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 Dmemprof_thread.h108 uptr stack_top_; variable
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp163 *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 Dasan_thread.h153 uptr stack_top_; variable
H A Dasan_fuchsia.cpp117 stack_top_ = options->stack_bottom + options->stack_size; in SetThreadStackAndTls()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp40 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 Dhwasan_thread.h39 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 Dhwasan_fuchsia.cpp107 stack_top_ = state->stack_top; in InitStackAndTls()
H A Dhwasan_linux.cpp410 stack_top_ = stack_bottom_ + stack_size; in InitStackAndTls()