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

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan.h 51 uptr stack_top = 0, stack_bottom = 0; local in function:__lsan::GetStackTrace
55 stack_bottom = t->stack_begin();
57 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) {
58 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.h 32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 87 uptr stack_bottom, stack_size; member in struct:__asan::AsanThread::InitOptions
93 const char *name, uptr stack_bottom,
106 const AsanThread::InitOptions options = {stack_bottom, stack_size};
120 CHECK_NE(options->stack_bottom, 0);
122 stack_bottom_ = options->stack_bottom;
123 stack_top_ = options->stack_bottom + options->stack_size;
146 const char *name, uptr stack_bottom,
156 stack_bottom, stack_size);
asan_rtems.cc 96 uptr stack_bottom, stack_size, tls_bottom, tls_size; member in struct:__asan::AsanThread::InitOptions
102 uptr stack_bottom, uptr stack_size,
112 const AsanThread::InitOptions options = {stack_bottom, stack_size,
124 CHECK_NE(options->stack_bottom, 0);
126 stack_bottom_ = options->stack_bottom;
127 stack_top_ = options->stack_bottom + options->stack_size;
143 uptr stack_bottom, uptr stack_size,
153 stack_bottom, stack_size, tls_bottom, tls_size);
193 PoisonShadow(thread->stack_bottom(), thread->stack_size(), 0);
asan_thread.cc 183 uptr AsanThread::stack_bottom() { function in class:__asan::AsanThread
327 bottom = stack_bottom();
368 bottom = stack_bottom();
473 *stack_begin = t->stack_bottom();
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_rtems.cc 76 uptr *stack_top, uptr *stack_bottom) {
85 *stack_bottom = reinterpret_cast<uptr>(base);
86 *stack_top = *stack_bottom + size;
91 uptr stack_top, stack_bottom; local in function:__sanitizer::GetThreadStackAndTls
92 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
93 *stk_addr = stack_bottom;
94 *stk_size = stack_top - stack_bottom;
sanitizer_mac.cc 301 uptr *stack_bottom) {
303 CHECK(stack_bottom);
321 *stack_bottom = *stack_top - stacksize;
477 uptr stack_top, stack_bottom; local in function:__sanitizer::GetThreadStackAndTls
478 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
479 *stk_addr = stack_bottom;
480 *stk_size = stack_top - stack_bottom;

Completed in 14 milliseconds