Home
last modified time | relevance | path

Searched refs:caller_sp (Results 1 – 5 of 5) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalker_mips.cc295 uint32_t caller_pc, caller_sp, caller_fp; in GetCallerByStackScan() local
321 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, count)) { in GetCallerByStackScan()
328 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
334 count = count - (caller_sp - last_sp) / sizeof(caller_pc); in GetCallerByStackScan()
336 last_sp = caller_sp + sizeof(caller_pc); in GetCallerByStackScan()
337 } while ((caller_fp - caller_sp >= kMaxFrameStackSize) && count > 0); in GetCallerByStackScan()
347 caller_sp += sizeof(caller_pc); in GetCallerByStackScan()
362 frame->context.iregs[MD_CONTEXT_MIPS_REG_SP] = caller_sp; in GetCallerByStackScan()
374 uint64_t caller_pc, caller_sp, caller_fp; in GetCallerByStackScan() local
387 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, count)) { in GetCallerByStackScan()
[all …]
Dstackwalker_arm.cc168 uint32_t caller_sp, caller_pc; in GetCallerByStackScan() local
170 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan()
179 caller_sp += 4; in GetCallerByStackScan()
188 frame->context.iregs[MD_CONTEXT_ARM_REG_SP] = caller_sp; in GetCallerByStackScan()
220 uint32_t caller_sp = last_fp ? last_fp + 8 : in GetCallerByFramePointer() local
230 frame->context.iregs[MD_CONTEXT_ARM_REG_SP] = caller_sp; in GetCallerByFramePointer()
Dstackwalker_arm64.cc181 uint64_t caller_sp, caller_pc; in GetCallerByStackScan() local
183 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan()
192 caller_sp += 8; in GetCallerByStackScan()
201 frame->context.iregs[MD_CONTEXT_ARM64_REG_SP] = caller_sp; in GetCallerByStackScan()
233 uint64_t caller_sp = last_fp ? last_fp + 16 : in GetCallerByFramePointer() local
243 frame->context.iregs[MD_CONTEXT_ARM64_REG_SP] = caller_sp; in GetCallerByFramePointer()
Dstackwalker.cc281 uint64_t caller_sp, in TerminateWalk() argument
298 if (first_unwind ? (caller_sp < callee_sp) : (caller_sp <= callee_sp)) { in TerminateWalk()
/external/google-breakpad/src/google_breakpad/processor/
Dstackwalker.h135 uint64_t caller_sp,