Searched refs:caller_sp (Results 1 – 7 of 7) sorted by relevance
/external/google-breakpad/src/processor/ |
D | stackwalker_mips.cc | 219 uint32_t caller_pc, caller_sp, caller_fp; in GetCallerByStackScan() local 245 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, count)) { in GetCallerByStackScan() 252 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan() 258 count = count - (caller_sp - last_sp) / sizeof(caller_pc); in GetCallerByStackScan() 260 last_sp = caller_sp + sizeof(caller_pc); in GetCallerByStackScan() 261 } while ((caller_fp - caller_sp >= kMaxFrameStackSize) && count > 0); in GetCallerByStackScan() 271 caller_sp += sizeof(caller_pc); in GetCallerByStackScan() 287 frame->context.iregs[MD_CONTEXT_MIPS_REG_SP] = caller_sp; in GetCallerByStackScan()
|
D | stackwalker_arm64.cc | 158 uint64_t caller_sp, caller_pc; in GetCallerByStackScan() local 160 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan() 169 caller_sp += 8; in GetCallerByStackScan() 178 frame->context.iregs[MD_CONTEXT_ARM64_REG_SP] = caller_sp; in GetCallerByStackScan() 205 uint64_t caller_sp = last_fp ? last_fp + 16 : in GetCallerByFramePointer() local 215 frame->context.iregs[MD_CONTEXT_ARM64_REG_SP] = caller_sp; in GetCallerByFramePointer()
|
D | stackwalker_arm.cc | 167 uint32_t caller_sp, caller_pc; in GetCallerByStackScan() local 169 if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc, in GetCallerByStackScan() 178 caller_sp += 4; in GetCallerByStackScan() 187 frame->context.iregs[MD_CONTEXT_ARM_REG_SP] = caller_sp; in GetCallerByStackScan() 219 uint32_t caller_sp = last_fp ? last_fp + 8 : in GetCallerByFramePointer() local 229 frame->context.iregs[MD_CONTEXT_ARM_REG_SP] = caller_sp; in GetCallerByFramePointer()
|
/external/v8/src/ |
D | frames-inl.h | 213 return caller_sp() + parameter_offset; in GetParameterSlot()
|
D | frames.h | 242 Address caller_sp() const { return GetCallerStackPointer(); } in caller_sp() function 269 Id id() const { return static_cast<Id>(OffsetFrom(caller_sp())); } in id()
|
D | frames.cc | 507 state->sp = caller_sp(); in ComputeCallerState() 592 state->sp = caller_sp(); in ComputeCallerState()
|
D | runtime.cc | 9690 << ", caller_sp = " << frame->caller_sp() << ": "; in RUNTIME_FUNCTION()
|