Lines Matching refs:stack_bottom_
160 *bottom_old = stack_bottom_; in FinishSwitchFiber()
162 *size_old = stack_top_ - stack_bottom_; in FinishSwitchFiber()
163 stack_bottom_ = next_stack_bottom_; 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()
237 CHECK(AddrIsInMem(stack_bottom_)); in Init()
255 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, in Init()
306 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size, in SetThreadStackAndTls()
308 stack_top_ = RoundDownTo(stack_bottom_ + stack_size, ASAN_SHADOW_GRANULARITY); in SetThreadStackAndTls()
312 if (stack_top_ != stack_bottom_) { in SetThreadStackAndTls()
321 if (stack_top_ != stack_bottom_) in ClearShadowForThreadStackAndTLS()
322 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS()
332 if (stack_top_ == stack_bottom_) in GetStackFrameAccessByAddr()