Searched refs:stack_bottom (Results 1 - 13 of 13) sorted by relevance

/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan.h21 uptr stack_top = 0, stack_bottom = 0; \
25 stack_bottom = t->stack_begin(); \
28 /* context */ 0, stack_top, stack_bottom, fast); \
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc44 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) { argument
45 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
53 uptr stack_bottom) {
55 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
57 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
60 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
73 uptr stack_bottom, u32 max_depth) {
78 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
81 uptr bottom = stack_bottom;
51 GetCanonicFrame(uptr bp, uptr stack_top, uptr stack_bottom) argument
72 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, u32 max_depth) argument
H A Dsanitizer_stacktrace_libcdep.cc49 uptr stack_top, uptr stack_bottom,
72 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
48 Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top, uptr stack_bottom, bool request_fast_unwind) argument
H A Dsanitizer_linux_libcdep.cc78 uptr *stack_bottom) {
80 CHECK(stack_bottom);
109 *stack_bottom = end - stacksize;
122 *stack_bottom = (uptr)stackaddr;
394 uptr stack_top, stack_bottom;
395 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
396 *stk_addr = stack_bottom;
397 *stk_size = stack_top - stack_bottom;
77 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_stacktrace.h98 uptr stack_bottom, bool request_fast_unwind);
101 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
H A Dsanitizer_mac.cc216 uptr *stack_bottom) {
218 CHECK(stack_bottom);
236 *stack_bottom = *stack_top - stacksize;
334 uptr stack_top, stack_bottom; local
335 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
336 *stk_addr = stack_bottom;
337 *stk_size = stack_top - stack_bottom;
215 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_win.cc73 uptr *stack_bottom) {
75 CHECK(stack_bottom);
82 *stack_bottom = (uptr)mbi.AllocationBase;
625 uptr stack_top, stack_bottom;
626 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
627 *stk_addr = stack_bottom;
628 *stk_size = stack_top - stack_bottom;
72 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_common.h76 uptr *stack_bottom);
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_stack.h49 uptr stack_bottom = t->stack_bottom();
51 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
H A Dasan_thread.h66 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
H A Dasan_thread.cc217 bottom = stack_bottom();
329 *stack_begin = t->stack_bottom();
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_thread.h32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
H A Dmsan.cc228 stack->Unwind(max_s, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),

Completed in 135 milliseconds