Searched refs:stack_bottom_ (Results 1 - 4 of 4) sorted by relevance

/external/compiler-rt/lib/msan/
H A Dmsan_thread.cc25 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_));
H A Dmsan_thread.h32 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/
H A Dasan_thread.cc155 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_,
[all...]
H A Dasan_thread.h145 uptr stack_bottom_; member in class:__asan::AsanThread

Completed in 119 milliseconds