Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp89 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
90 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds()
105 next_stack_.bottom = bottom; in StartSwitchFiber()
106 next_stack_.top = bottom + size; in StartSwitchFiber()
116 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber()
117 stack_.top = next_stack_.top; in FinishSwitchFiber()
119 next_stack_.top = 0; in FinishSwitchFiber()
120 next_stack_.bottom = 0; in FinishSwitchFiber()
H A Dmsan_thread.h66 StackBounds next_stack_; variable