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

/openbsd-current/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_thread.h44 uptr stack_top() { return stack_top_; }
53 return addr >= stack_bottom_ && addr < stack_top_;
84 uptr stack_top_; member in class:__hwasan::Thread
H A Dhwasan_thread.cpp42 CHECK_EQ(0, stack_top_);
78 CHECK(MemIsApp(stack_top_ - 1));
92 if (stack_top_ != stack_bottom_)
93 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0);
H A Dhwasan_fuchsia.cpp110 stack_top_ = state->stack_top;
H A Dhwasan_linux.cpp504 stack_top_ = stack_bottom_ + stack_size;
/openbsd-current/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp108 if (stack_bottom_ >= stack_top_)
110 return {stack_bottom_, stack_top_};
125 if (stack_top_ != stack_bottom_) {
128 CHECK(AddrIsInMem(stack_top_ - 1));
132 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
175 stack_top_ = stack_bottom_ + stack_size;
179 if (stack_top_ != stack_bottom_) {
H A Dmemprof_thread.h108 uptr stack_top_; member in class:__memprof::MemprofThread
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_thread.cpp162 *size_old = stack_top_ - stack_bottom_;
164 stack_top_ = next_stack_top_;
173 if (stack_bottom_ >= stack_top_) return {0, 0};
174 return {stack_bottom_, stack_top_};
179 // may be in process of overwriting stack_top_/bottom_. But in such case
183 return {stack_bottom_, stack_top_};
235 if (stack_top_ != stack_bottom_) {
238 CHECK(AddrIsInMem(stack_top_ - 1));
255 (void *)stack_bottom_, (void *)stack_top_, stack_top_
[all...]
H A Dasan_thread.h153 uptr stack_top_; member in class:__asan::AsanThread
H A Dasan_fuchsia.cpp144 stack_top_ = options->stack_bottom + options->stack_size;

Completed in 125 milliseconds