Home | History | Annotate | Download | only in processor

Lines Matching refs:last_fp

203   uint32_t last_fp = last_frame->context.iregs[fp_register_];
206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
207 BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
208 << std::hex << last_fp;
213 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) {
214 BPLOG(ERROR) << "Unable to read caller_lr from last_fp + 4: 0x"
215 << std::hex << (last_fp + 4);
219 uint32_t caller_sp = last_fp ? last_fp + 8 :