Home
last modified time | relevance | path

Searched refs:stack_top_ (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_thread.cc76 CHECK(AddrIsInMem(stack_top_)); in Init()
81 tid(), (void*)stack_bottom_, (void*)stack_top_, in Init()
82 stack_top_ - stack_bottom_, &local); in Init()
110 GetThreadStackTopAndBottom(tid() == 0, &stack_top_, &stack_bottom_); in SetThreadStackTopAndBottom()
116 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStack()
Dasan_thread.h72 uptr stack_top() { return stack_top_; } in stack_top()
74 uptr stack_size() { return stack_top_ - stack_bottom_; } in stack_size()
82 return addr >= stack_bottom_ && addr < stack_top_; in AddrIsInStack()
95 uptr stack_top_; variable