Home
last modified time | relevance | path

Searched refs:caller_fp (Results 1 – 6 of 6) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalker_mips.cc219 uint32_t caller_pc, caller_sp, caller_fp; in GetCallerByStackScan() local
253 &caller_fp)) { in GetCallerByStackScan()
261 } while ((caller_fp - caller_sp >= kMaxFrameStackSize) && count > 0); in GetCallerByStackScan()
289 frame->context.iregs[MD_CONTEXT_MIPS_REG_FP] = caller_fp; in GetCallerByStackScan()
Dstackwalker_arm64.cc191 uint64_t caller_fp = 0; in GetCallerByFramePointer() local
192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
214 frame->context.iregs[MD_CONTEXT_ARM64_REG_FP] = caller_fp; in GetCallerByFramePointer()
Dstackwalker_arm.cc205 uint32_t caller_fp = 0; in GetCallerByFramePointer() local
206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
228 frame->context.iregs[fp_register_] = caller_fp; in GetCallerByFramePointer()
/external/v8/src/
Dframes.cc317 Address caller_fp = Memory::Address_at( in IsValidCaller() local
319 if (!IsValidExitFrame(caller_fp)) return false; in IsValidCaller()
559 void EntryFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
561 Memory::Address_at(this->fp() + offset) = caller_fp; in SetCallerFp()
601 void ExitFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
602 Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset) = caller_fp; in SetCallerFp()
764 state->fp = caller_fp(); in ComputeCallerState()
773 void StandardFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
775 caller_fp; in SetCallerFp()
933 Address fp = caller_fp(); in IsConstructor()
[all …]
Dframes-inl.h148 inline Address StandardFrame::caller_fp() const { in caller_fp() function
225 return IsArgumentsAdaptorFrame(caller_fp()); in has_adapted_arguments()
Dframes.h554 virtual void SetCallerFp(Address caller_fp) = 0;
670 void SetCallerFp(Address caller_fp) override;
719 void SetCallerFp(Address caller_fp) override;
960 void SetCallerFp(Address caller_fp) override;
983 inline Address caller_fp() const;