Lines Matching refs:stack_
25 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls()
27 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls()
35 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
47 CHECK(MEM_IS_APP(stack_.bottom)); in Init()
48 CHECK(MEM_IS_APP(stack_.top - 1)); in Init()
84 return {stack_.bottom, stack_.top}; in GetStackBounds()
91 return {stack_.bottom, stack_.top}; in GetStackBounds()
113 *bottom_old = stack_.bottom; in FinishSwitchFiber()
115 *size_old = stack_.top - stack_.bottom; in FinishSwitchFiber()
116 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber()
117 stack_.top = next_stack_.top; in FinishSwitchFiber()