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

/external/compiler-rt/lib/msan/
H A Dmsan_thread.h31 uptr stack_top() { return stack_top_; }
38 return addr >= stack_bottom_ && addr < stack_top_;
56 uptr stack_top_; member in class:__msan::MsanThread
H A Dmsan_thread.cc27 stack_top_ = stack_bottom_ + stack_size;
35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_);
47 CHECK(MEM_IS_APP(stack_top_ - 1));
/external/compiler-rt/lib/asan/
H A Dasan_thread.cc156 stack_top_ = next_stack_top_;
164 return StackBounds{stack_bottom_, stack_top_}; // NOLINT
168 // may be in process of overwriting stack_top_/bottom_. But in such case
172 return StackBounds{stack_bottom_, stack_top_}; // NOLINT
225 CHECK(AddrIsInMem(stack_top_ - 1));
229 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
268 stack_top_ = stack_bottom_ + stack_size;
277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
H A Dasan_thread.h144 uptr stack_top_; member in class:__asan::AsanThread

Completed in 126 milliseconds