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.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_);
46 CHECK(MEM_IS_APP(stack_bottom_));
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
  /external/compiler-rt/lib/asan/
asan_thread.cc 155 stack_bottom_ = next_stack_bottom_;
164 return StackBounds{stack_bottom_, stack_top_}; // NOLINT
172 return StackBounds{stack_bottom_, stack_top_}; // NOLINT
224 CHECK(AddrIsInMem(stack_bottom_));
229 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
266 GetThreadStackAndTls(tid() == 0, const_cast<uptr *>(&stack_bottom_),
268 stack_top_ = stack_bottom_ + stack_size;
277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0)
    [all...]
asan_thread.h 145 uptr stack_bottom_; member in class:__asan::AsanThread

Completed in 842 milliseconds