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

References

projects/compiler-rt/lib/hwasan/hwasan_thread.cpp
   58   stack_top_ = stack_bottom_ + stack_size;
   65     CHECK(MemIsApp(stack_top_ - 1));
   79   if (stack_top_ != stack_bottom_)
   80     TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0);
projects/compiler-rt/lib/hwasan/hwasan_thread.h
   30   uptr stack_top() { return stack_top_; }
   38     return addr >= stack_bottom_ && addr < stack_top_;