HomeSort by relevance Sort by last modified time
    Searched defs:caller_fp (Results 1 - 6 of 6) sorted by null

  /external/google-breakpad/src/processor/
stackwalker_arm.cc 205 uint32_t caller_fp = 0; local
206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
207 BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
228 frame->context.iregs[fp_register_] = caller_fp;
stackwalker_arm64.cc 191 uint64_t caller_fp = 0; local
192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
193 BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
214 frame->context.iregs[MD_CONTEXT_ARM64_REG_FP] = caller_fp;
stackwalker_mips.cc 219 uint32_t caller_pc, caller_sp, caller_fp; local
253 &caller_fp)) {
261 } while ((caller_fp - caller_sp >= kMaxFrameStackSize) && count > 0);
289 frame->context.iregs[MD_CONTEXT_MIPS_REG_FP] = caller_fp;
  /external/v8/src/
frames-inl.h 121 inline Address StandardFrame::caller_fp() const { function in class:v8::internal::StandardFrame
212 return IsArgumentsAdaptorFrame(caller_fp());
frames.cc 296 Address caller_fp = Memory::Address_at( local
298 if (!IsValidExitFrame(caller_fp)) return false;
509 void EntryFrame::SetCallerFp(Address caller_fp) {
511 Memory::Address_at(this->fp() + offset) = caller_fp;
551 void ExitFrame::SetCallerFp(Address caller_fp) {
552 Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset) = caller_fp;
626 state->fp = caller_fp();
634 void StandardFrame::SetCallerFp(Address caller_fp) {
636 caller_fp;
745 Address fp = caller_fp();
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 1636 Register caller_fp = x11; local
1681 Register caller_fp = x10; local
1722 Register caller_fp = x11; local
2015 Register caller_fp = x11; local
2144 Register caller_fp = x11; local
    [all...]

Completed in 239 milliseconds