Searched refs:last_sp (Results 1 – 3 of 3) sorted by relevance
/external/google-breakpad/src/processor/ |
D | stackwalker_mips.cc | 294 uint32_t last_sp = last_frame->context.iregs[MD_CONTEXT_MIPS_REG_SP]; in GetCallerByStackScan() local 313 last_sp += kMinArgsOnStack * sizeof(caller_pc); in GetCallerByStackScan() 321 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, count)) { in GetCallerByStackScan() 334 count = count - (caller_sp - last_sp) / sizeof(caller_pc); in GetCallerByStackScan() 336 last_sp = caller_sp + sizeof(caller_pc); in GetCallerByStackScan() 373 uint64_t last_sp = last_frame->context.iregs[MD_CONTEXT_MIPS_REG_SP]; in GetCallerByStackScan() local 387 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, count)) { in GetCallerByStackScan() 400 count = count - (caller_sp - last_sp) / sizeof(caller_pc); in GetCallerByStackScan() 402 last_sp = caller_sp + sizeof(caller_pc); in GetCallerByStackScan()
|
D | stackwalker_arm.cc | 167 uint32_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM_REG_SP]; in GetCallerByStackScan() local 170 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan()
|
D | stackwalker_arm64.cc | 180 uint64_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM64_REG_SP]; in GetCallerByStackScan() local 183 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan()
|