Home | History | Annotate | Download | only in processor

Lines Matching refs:last_fp

189   uint64_t last_fp = last_frame->context.iregs[MD_CONTEXT_ARM64_REG_FP];
192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
193 BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
194 << std::hex << last_fp;
199 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) {
200 BPLOG(ERROR) << "Unable to read caller_lr from last_fp + 8: 0x"
201 << std::hex << (last_fp + 8);
205 uint64_t caller_sp = last_fp ? last_fp + 16 :