HomeSort by relevance Sort by last modified time
    Searched refs:stack_bottom (Results 1 - 15 of 15) sorted by null

  /external/compiler-rt/lib/lsan/
lsan.h 21 uptr stack_top = 0, stack_bottom = 0; \
25 stack_bottom = t->stack_begin(); \
28 IsValidFrame(GET_CURRENT_FRAME(), stack_top, stack_bottom)) { \
30 /* context */ 0, stack_top, stack_bottom, fast); \
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 48 uptr stack_bottom) {
50 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
52 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
55 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
68 uptr stack_bottom, u32 max_depth) {
74 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
77 uptr bottom = stack_bottom;
sanitizer_stacktrace.h 98 uptr stack_bottom, bool request_fast_unwind);
101 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
114 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) {
115 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
sanitizer_stacktrace_libcdep.cc 58 uptr stack_top, uptr stack_bottom,
81 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
sanitizer_linux_libcdep.cc 78 uptr *stack_bottom) {
80 CHECK(stack_bottom);
109 *stack_bottom = end - stacksize;
122 *stack_bottom = (uptr)stackaddr;
397 uptr stack_top, stack_bottom;
398 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
399 *stk_addr = stack_bottom;
400 *stk_size = stack_top - stack_bottom;
sanitizer_mac.cc 248 uptr *stack_bottom) {
250 CHECK(stack_bottom);
268 *stack_bottom = *stack_top - stacksize;
366 uptr stack_top, stack_bottom; local
367 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
368 *stk_addr = stack_bottom;
369 *stk_size = stack_top - stack_bottom;
sanitizer_win.cc 75 uptr *stack_bottom) {
77 CHECK(stack_bottom);
84 *stack_bottom = (uptr)mbi.AllocationBase;
706 uptr stack_top, stack_bottom;
707 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
708 *stk_addr = stack_bottom;
709 *stk_size = stack_top - stack_bottom;
sanitizer_common.h 78 uptr *stack_bottom);
  /external/compiler-rt/lib/asan/
asan_stack.h 49 uptr stack_bottom = t->stack_bottom();
51 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) {
52 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom,
asan_thread.cc 179 uptr AsanThread::stack_bottom() { function in class:__asan::AsanThread
286 bottom = stack_bottom();
403 *stack_begin = t->stack_bottom();
asan_thread.h 70 uptr stack_bottom();
  /external/compiler-rt/lib/msan/
msan_thread.h 32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
msan.cc 228 stack->Unwind(max_s, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 109 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_ebp); local
110 if (stack_bottom > last_ebp &&
111 stack_bottom == crashing_context->crashing_stack_bottom) {
138 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_esp); local
139 if (stack_bottom >= last_esp) {
140 int size = stack_bottom - last_esp;
  /external/v8/tools/
grokdump.py     [all...]

Completed in 454 milliseconds