Home
last modified time | relevance | path

Searched refs:caller_fp (Results 1 – 8 of 8) 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.cc295 Address caller_fp = Memory::Address_at( in IsValidCaller() local
297 if (!IsValidExitFrame(caller_fp)) return false; in IsValidCaller()
476 void EntryFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
478 Memory::Address_at(this->fp() + offset) = caller_fp; in SetCallerFp()
518 void ExitFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
519 Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset) = caller_fp; in SetCallerFp()
593 state->fp = caller_fp(); in ComputeCallerState()
601 void StandardFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument
603 caller_fp; in SetCallerFp()
725 Address fp = caller_fp(); in IsConstructor()
[all …]
Dframes.h257 virtual void SetCallerFp(Address caller_fp) = 0;
377 virtual void SetCallerFp(Address caller_fp);
427 virtual void SetCallerFp(Address caller_fp);
467 virtual void SetCallerFp(Address caller_fp);
480 inline Address caller_fp() const;
Dframes-inl.h170 inline Address StandardFrame::caller_fp() const { in caller_fp() function
261 return IsArgumentsAdaptorFrame(caller_fp()); in has_adapted_arguments()
Dbuiltins.cc149 Address caller_fp = Memory::Address_at(fp + kCallerOffset); in CalledAsConstructor() local
156 Object* marker = Memory::Object_at(caller_fp + kMarkerOffset); in CalledAsConstructor()
/external/v8/src/arm64/
Dcode-stubs-arm64.cc1622 Register caller_fp = x11; in GenerateReadElement() local
1625 __ Ldr(caller_fp, MemOperand(fp, StandardFrameConstants::kCallerFPOffset)); in GenerateReadElement()
1626 __ Ldr(caller_ctx, MemOperand(caller_fp, in GenerateReadElement()
1629 __ Csel(local_fp, fp, caller_fp, ne); in GenerateReadElement()
1633 __ Ldr(arg_count, MemOperand(caller_fp, in GenerateReadElement()
1664 Register caller_fp = x10; in GenerateNewSloppySlow() local
1665 __ Ldr(caller_fp, MemOperand(fp, StandardFrameConstants::kCallerFPOffset)); in GenerateNewSloppySlow()
1667 __ Ldr(w11, UntagSmiMemOperand(caller_fp, in GenerateNewSloppySlow()
1673 __ Ldr(x11, MemOperand(caller_fp, in GenerateNewSloppySlow()
1676 __ Add(x10, caller_fp, Operand::UntagSmiAndScale(x11, kPointerSizeLog2)); in GenerateNewSloppySlow()
[all …]