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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp25 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.h31 uptr stack_bottom() { return stack_bottom_; }
37 return addr >= stack_bottom_ && addr < stack_top_;
56 uptr stack_bottom_; member in class:__msan::MsanThread
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp56 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, local
58 stack_top_ = stack_bottom_ + stack_size;
61 if (stack_bottom_) {
64 CHECK(MemIsApp(stack_bottom_));
79 if (stack_top_ != stack_bottom_)
80 TagMemory(stack_bottom_, stack_top_ - stack_bottom_, 0);
H A Dhwasan_thread.h31 uptr stack_bottom() { return stack_bottom_; }
38 return addr >= stack_bottom_ && addr < stack_top_;
75 uptr stack_bottom_; member in class:__hwasan::Thread
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp152 *bottom_old = stack_bottom_;
154 *size_old = stack_top_ - stack_bottom_;
155 stack_bottom_ = next_stack_bottom_;
165 if (stack_bottom_ >= stack_top_) return {0, 0};
166 return {stack_bottom_, stack_top_};
175 return {stack_bottom_, stack_top_};
225 if (stack_top_ != stack_bottom_) {
227 CHECK(AddrIsInMem(stack_bottom_));
236 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
292 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_, local
[all...]
H A Dasan_fuchsia.cpp121 stack_bottom_ = options->stack_bottom;
H A Dasan_thread.h155 uptr stack_bottom_; member in class:__asan::AsanThread
H A Dasan_rtems.cpp125 stack_bottom_ = options->stack_bottom;

Completed in 112 milliseconds