Home
last modified time | relevance | path

Searched refs:next_stack_top_ (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp156 next_stack_top_ = bottom + size; in StartSwitchFiber()
186 stack_top_ = next_stack_top_; in FinishSwitchFiber()
188 next_stack_top_ = 0; in FinishSwitchFiber()
204 if (cur_stack >= next_stack_bottom_ && cur_stack < next_stack_top_) in GetStackBounds()
205 return {next_stack_bottom_, next_stack_top_}; in GetStackBounds()
250 next_stack_top_ = next_stack_bottom_ = 0; in Init()
H A Dasan_thread.h177 uptr next_stack_top_; variable