HomeSort by: relevance | last modified time | path
    Searched defs:stack_bottom_ (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.cc 25 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_));
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/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_thread.h 45 uptr stack_bottom() { return stack_bottom_; }
52 return addr >= stack_bottom_ && addr < stack_top_;
81 uptr stack_bottom_; member in class:__hwasan::Thread
hwasan_linux.cpp 403 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, local
405 stack_top_ = stack_bottom_ + stack_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_thread.h 154 uptr stack_bottom_; member in class:__asan::AsanThread
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_,
294 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_, local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_thread.h 175 uptr stack_bottom_; member in class:__asan::AsanThread
asan_thread.cpp 182 *bottom_old = stack_bottom_;
184 *size_old = stack_top_ - stack_bottom_;
185 stack_bottom_ = next_stack_bottom_;
195 if (stack_bottom_ >= stack_top_)
197 return {stack_bottom_, stack_top_};
206 return {stack_bottom_, stack_top_};
254 if (stack_top_ != stack_bottom_) {
256 CHECK(AddrIsInMem(stack_bottom_));
274 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
306 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size, local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_thread.h 45 uptr stack_bottom() { return stack_bottom_; }
53 return addr >= stack_bottom_ && addr < stack_top_;
85 uptr stack_bottom_; member in class:__hwasan::Thread
hwasan_linux.cpp 509 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, local
511 stack_top_ = stack_bottom_ + stack_size;
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_thread.h 154 uptr stack_bottom_; member in class:__asan::AsanThread
asan_thread.cpp 161 *bottom_old = stack_bottom_;
163 *size_old = stack_top_ - stack_bottom_;
164 stack_bottom_ = next_stack_bottom_;
174 if (stack_bottom_ >= stack_top_) return {0, 0};
175 return {stack_bottom_, stack_top_};
184 return {stack_bottom_, stack_top_};
236 if (stack_top_ != stack_bottom_) {
238 CHECK(AddrIsInMem(stack_bottom_));
256 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
307 GetThreadStackAndTls(tid() == kMainTid, &stack_bottom_, &stack_size, local
    [all...]

Completed in 27 milliseconds