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

References

projects/compiler-rt/lib/msan/msan_thread.cpp
   25   GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size,
   27   stack_top_ = stack_bottom_ + stack_size;
   35   __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_);
   35   __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_);
   46   CHECK(MEM_IS_APP(stack_bottom_));
projects/compiler-rt/lib/msan/msan_thread.h
   31   uptr stack_bottom() { return stack_bottom_; }
   37     return addr >= stack_bottom_ && addr < stack_top_;