Lines Matching refs:stack_bottom_
187 *bottom_old = stack_bottom_;
189 *size_old = stack_top_ - stack_bottom_;
190 stack_bottom_ = next_stack_bottom_;
200 if (stack_bottom_ >= stack_top_)
202 return {stack_bottom_, stack_top_};
211 return {stack_bottom_, stack_top_};
259 if (stack_top_ != stack_bottom_) {
261 CHECK(AddrIsInMem(stack_bottom_));
279 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
311 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size,
313 stack_top_ = RoundDownTo(stack_bottom_ + stack_size, ASAN_SHADOW_GRANULARITY);
314 stack_bottom_ = RoundDownTo(stack_bottom_, ASAN_SHADOW_GRANULARITY);
318 if (stack_top_ != stack_bottom_) {
327 if (stack_top_ != stack_bottom_)
328 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
338 if (stack_top_ == stack_bottom_)