/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_stacktrace.cc | 51 uptr stack_top, 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)) 71 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top, 77 if (stack_top < 4096) return; // Sanity check for stack top. 78 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom); 83 while (IsValidFrame((uptr)frame, stack_top, bottom) && 91 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) || 109 frame = GetCanonicFrame((uptr)frame[0], stack_top, bottom) [all...] |
sanitizer_stacktrace_sparc.cc | 25 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top, 31 if (stack_top < 4096) return; // Sanity check for stack top. 39 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
|
sanitizer_stacktrace.h | 100 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top, 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) { 86 *stack_top = *stack_bottom + size; 91 uptr stack_top, stack_bottom; local in function:__sanitizer::GetThreadStackAndTls 92 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom); 94 *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_linux_libcdep.cc | 95 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, 97 CHECK(stack_top); 107 *stack_top = *stack_bottom = 0; 127 *stack_top = segment.end; 151 *stack_top = (uptr)stackaddr + stacksize; 517 uptr stack_top, stack_bottom; 518 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom); 520 *stk_size = stack_top - stack_bottom;
|
sanitizer_unwind_linux_libcdep.cc | 35 uptr stack_top; member in struct:__sanitizer::__anonda2a8b3f0108
|
sanitizer_mac.cc | 300 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, 302 CHECK(stack_top); 320 *stack_top = (uptr)stackaddr; 321 *stack_bottom = *stack_top - stacksize; 477 uptr stack_top, stack_bottom; local in function:__sanitizer::GetThreadStackAndTls 478 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom); 480 *stk_size = stack_top - stack_bottom;
|
sanitizer_win.cc | 97 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, 99 CHECK(stack_top); 106 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize; 807 uptr stack_top, stack_bottom; 808 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom); 810 *stk_size = stack_top - stack_bottom;
|
sanitizer_fuchsia.cc | 77 void GetThreadStackTopAndBottom(bool, uptr *stack_top, uptr *stack_bottom) { 86 *stack_top = *stack_bottom + size;
|
sanitizer_common.h | 78 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan.h | 51 uptr stack_top = 0, stack_bottom = 0; local in function:__lsan::GetStackTrace 54 stack_top = t->stack_end(); 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/asan/ |
asan_stack.h | 43 uptr stack_top = t->stack_top(); 46 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) { 47 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom,
|
asan_thread.h | 76 uptr stack_top();
|
asan_thread.cc | 179 uptr AsanThread::stack_top() { function in class:__asan::AsanThread 474 *stack_end = t->stack_top();
|
asan_rtl.cc | 558 top = curr_thread->stack_top();
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_thread.h | 31 uptr stack_top() { return stack_top_; } function in class:__msan::MsanThread
|
msan.cc | 233 stack->Unwind(max_s, pc, bp, context, t->stack_top(), t->stack_bottom(),
|
/src/usr.sbin/acpitools/aml/ |
aml_name.c | 67 struct aml_local_stack *stack_top = NULL; variable in typeref:struct:aml_local_stack * 428 stack->next = stack_top; 429 stack_top = stack; 437 result = stack_top; 438 stack_top = result->next; 460 if (stack_top == NULL) 462 return (&stack_top->localvalue[idx]); 470 stack = stack_top; 484 result->chain = stack_top->temporary; 485 stack_top->temporary = result [all...] |
/src/sys/arch/emips/stand/common/ |
boot.c | 79 main(char *stack_top)
|
/src/sys/external/bsd/sljit/dist/regex_src/ |
regexJIT.c | 225 static SLJIT_INLINE struct stack_item* stack_top(struct stack *stack) function in typeref:typename:SLJIT_INLINE struct stack_item * 271 struct stack_item *ret = stack_top(stack); 951 item = stack_top(depth); 1015 item = stack_top(depth); 1274 id = stack_top(depth)->type;
|