HomeSort by: relevance | last modified time | path
    Searched refs:stack_bottom (Results 1 - 20 of 20) 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/sanitizer_common/
sanitizer_stacktrace.cc 52 uptr stack_bottom) {
54 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
56 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
59 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
72 uptr stack_bottom, u32 max_depth) {
78 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
81 uptr bottom = stack_bottom;
sanitizer_stacktrace_sparc.cc 26 uptr stack_bottom, u32 max_depth) {
37 uptr bottom = stack_bottom;
sanitizer_stacktrace.h 101 uptr stack_bottom, bool request_fast_unwind);
109 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
122 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) {
123 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
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_linux_libcdep.cc 96 uptr *stack_bottom) {
98 CHECK(stack_bottom);
107 *stack_top = *stack_bottom = 0;
128 *stack_bottom = segment.end - stacksize;
152 *stack_bottom = (uptr)stackaddr;
517 uptr stack_top, stack_bottom;
518 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
519 *stk_addr = stack_bottom;
520 *stk_size = stack_top - stack_bottom;
sanitizer_stacktrace_libcdep.cc 59 uptr stack_top, uptr stack_bottom,
82 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
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;
sanitizer_win.cc 98 uptr *stack_bottom) {
100 CHECK(stack_bottom);
107 *stack_bottom = (uptr)mbi.AllocationBase;
807 uptr stack_top, stack_bottom;
808 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
809 *stk_addr = stack_bottom;
810 *stk_size = stack_top - stack_bottom;
sanitizer_fuchsia.cc 77 void GetThreadStackTopAndBottom(bool, uptr *stack_top, uptr *stack_bottom) {
85 *stack_bottom = reinterpret_cast<uptr>(base);
86 *stack_top = *stack_bottom + size;
sanitizer_common.h 79 uptr *stack_bottom);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
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_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_stack.h 44 uptr stack_bottom = t->stack_bottom();
46 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) {
47 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom,
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();
asan_thread.h 77 uptr stack_bottom();
  /src/sys/arch/evbmips/stand/sbmips/common/
start.S 42 .comm stack_bottom,STACK_SIZE
50 la sp,stack_bottom+STACK_SIZE-32
  /src/sys/arch/sbmips/stand/common/
start.S 42 .comm stack_bottom,STACK_SIZE
50 la sp,stack_bottom+STACK_SIZE-32
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.h 32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
msan.cc 233 stack->Unwind(max_s, pc, bp, context, t->stack_top(), t->stack_bottom(),

Completed in 24 milliseconds