HomeSort by relevance Sort by last modified time
    Searched refs:stack_bottom_ (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/msan/
msan_thread.h 32 uptr stack_bottom() { return stack_bottom_; }
38 return addr >= stack_bottom_ && addr < stack_top_;
57 uptr stack_bottom_; member in class:__msan::MsanThread
msan_thread.cc 25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, local
27 stack_top_ = stack_bottom_ + stack_size;
35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_);
45 CHECK(MEM_IS_APP(stack_bottom_));
  /external/compiler-rt/lib/asan/
asan_thread.h 66 uptr stack_bottom() { return stack_bottom_; }
77 return addr >= stack_bottom_ && addr < stack_top_;
120 uptr stack_bottom_; member in class:__asan::AsanThread
121 // stack_size_ == stack_top_ - stack_bottom_;
asan_thread.cc 148 CHECK(AddrIsInMem(stack_bottom_));
153 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
186 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, local
188 stack_top_ = stack_bottom_ + stack_size_;
196 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);

Completed in 380 milliseconds