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

  /external/compiler-rt/lib/msan/
msan_thread.h 31 uptr stack_top() { return stack_top_; }
38 return addr >= stack_bottom_ && addr < stack_top_;
56 uptr stack_top_; member in class:__msan::MsanThread
msan_thread.cc 27 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/
asan_thread.cc 156 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);
asan_thread.h 144 uptr stack_top_; member in class:__asan::AsanThread

Completed in 51 milliseconds