reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_thread.cpp
  152     *bottom_old = stack_bottom_;
  154     *size_old = stack_top_ - stack_bottom_;
  155   stack_bottom_ = next_stack_bottom_;
  165     if (stack_bottom_ >= stack_top_) return {0, 0};
  166     return {stack_bottom_, stack_top_};
  175   return {stack_bottom_, stack_top_};
  225   if (stack_top_ != stack_bottom_) {
  227     CHECK(AddrIsInMem(stack_bottom_));
  236           (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
  236           (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
  292   GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_,
  294   stack_top_ = stack_bottom_ + stack_size;
  298   if (stack_top_ != stack_bottom_) {
  307   if (stack_top_ != stack_bottom_)
  308     PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
  308     PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
  320   if (stack_top_ == stack_bottom_)