/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_thread.cc | 25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, 27 stack_top_ = stack_bottom_ + stack_size; 35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_); 46 CHECK(MEM_IS_APP(stack_bottom_));
|
msan_thread.h | 32 uptr stack_bottom() { return stack_bottom_; } 38 return addr >= stack_bottom_ && addr < stack_top_; 57 uptr stack_bottom_; member in class:__msan::MsanThread
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_thread.cc | 153 *bottom_old = stack_bottom_; 155 *size_old = stack_top_ - stack_bottom_; 156 stack_bottom_ = next_stack_bottom_; 166 if (stack_bottom_ >= stack_top_) return {0, 0}; 167 return {stack_bottom_, stack_top_}; 176 return {stack_bottom_, stack_top_}; 226 if (stack_top_ != stack_bottom_) { 228 CHECK(AddrIsInMem(stack_bottom_)); 237 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_, [all...] |
asan_fuchsia.cc | 122 stack_bottom_ = options->stack_bottom;
|
asan_rtems.cc | 126 stack_bottom_ = options->stack_bottom;
|
asan_thread.h | 154 uptr stack_bottom_; member in class:__asan::AsanThread
|