Home
last modified time | relevance | path

Searched refs:last_fp (Results 1 – 4 of 4) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalker_arm64.cc189 uint64_t last_fp = last_frame->context.iregs[MD_CONTEXT_ARM64_REG_FP]; in GetCallerByFramePointer() local
192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
194 << std::hex << last_fp; in GetCallerByFramePointer()
199 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer()
201 << std::hex << (last_fp + 8); in GetCallerByFramePointer()
205 uint64_t caller_sp = last_fp ? last_fp + 16 : in GetCallerByFramePointer()
Dstackwalker_arm.cc203 uint32_t last_fp = last_frame->context.iregs[fp_register_]; in GetCallerByFramePointer() local
206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
208 << std::hex << last_fp; in GetCallerByFramePointer()
213 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
215 << std::hex << (last_fp + 4); in GetCallerByFramePointer()
219 uint32_t caller_sp = last_fp ? last_fp + 8 : in GetCallerByFramePointer()
/external/v8/src/
Dframes.cc265 Address last_sp = last_frame->sp(), last_fp = last_frame->fp(); in AdvanceOneFrame() local
279 if (frame_->sp() < last_sp || frame_->fp() < last_fp) { in AdvanceOneFrame()
/external/v8/src/debug/
Ddebug.cc469 Address last_fp = thread_local_.last_fp_; in Break() local
484 step_break = location.IsReturn() || (current_fp != last_fp) || in Break()
489 step_break = current_fp != last_fp; in Break()