Home
last modified time | relevance | path

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

/external/google-breakpad/src/processor/
Dstackwalker_mips.cc219 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()
Dstackwalker_arm64.cc158 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()
Dstackwalker_arm.cc167 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/
Dframes-inl.h213 return caller_sp() + parameter_offset; in GetParameterSlot()
Dframes.h242 Address caller_sp() const { return GetCallerStackPointer(); } in caller_sp() function
269 Id id() const { return static_cast<Id>(OffsetFrom(caller_sp())); } in id()
Dframes.cc507 state->sp = caller_sp(); in ComputeCallerState()
592 state->sp = caller_sp(); in ComputeCallerState()
Druntime.cc9690 << ", caller_sp = " << frame->caller_sp() << ": "; in RUNTIME_FUNCTION()