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

References

projects/compiler-rt/lib/hwasan/hwasan_thread.cpp
   56   GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_,
   58   stack_top_ = stack_bottom_ + stack_size;
   61   if (stack_bottom_) {
   64     CHECK(MemIsApp(stack_bottom_));
   79   if (stack_top_ != stack_bottom_)
   80     TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0);
   80     TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0);
projects/compiler-rt/lib/hwasan/hwasan_thread.h
   31   uptr stack_bottom() { return stack_bottom_; }
   38     return addr >= stack_bottom_ && addr < stack_top_;