Searched refs:caller_fp (Results 1 – 7 of 7) sorted by relevance
/external/google-breakpad/src/processor/ |
D | stackwalker_mips.cc | 219 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()
|
D | stackwalker_arm64.cc | 191 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()
|
D | stackwalker_arm.cc | 205 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/ |
D | frames.cc | 296 Address caller_fp = Memory::Address_at( in IsValidCaller() local 298 if (!IsValidExitFrame(caller_fp)) return false; in IsValidCaller() 509 void EntryFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument 511 Memory::Address_at(this->fp() + offset) = caller_fp; in SetCallerFp() 551 void ExitFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument 552 Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset) = caller_fp; in SetCallerFp() 626 state->fp = caller_fp(); in ComputeCallerState() 634 void StandardFrame::SetCallerFp(Address caller_fp) { in SetCallerFp() argument 636 caller_fp; in SetCallerFp() 745 Address fp = caller_fp(); in IsConstructor() [all …]
|
D | frames.h | 284 virtual void SetCallerFp(Address caller_fp) = 0; 401 void SetCallerFp(Address caller_fp) override; 450 void SetCallerFp(Address caller_fp) override; 490 void SetCallerFp(Address caller_fp) override; 503 inline Address caller_fp() const;
|
D | frames-inl.h | 121 inline Address StandardFrame::caller_fp() const { in caller_fp() function 212 return IsArgumentsAdaptorFrame(caller_fp()); in has_adapted_arguments()
|
/external/v8/src/arm64/ |
D | code-stubs-arm64.cc | 1636 Register caller_fp = x11; in GenerateReadElement() local 1639 __ Ldr(caller_fp, MemOperand(fp, StandardFrameConstants::kCallerFPOffset)); in GenerateReadElement() 1640 __ Ldr(caller_ctx, MemOperand(caller_fp, in GenerateReadElement() 1643 __ Csel(local_fp, fp, caller_fp, ne); in GenerateReadElement() 1647 __ Ldr(arg_count, MemOperand(caller_fp, in GenerateReadElement() 1681 Register caller_fp = x10; in GenerateNewSloppySlow() local 1682 __ Ldr(caller_fp, MemOperand(fp, StandardFrameConstants::kCallerFPOffset)); in GenerateNewSloppySlow() 1684 __ Ldr(w11, UntagSmiMemOperand(caller_fp, in GenerateNewSloppySlow() 1691 MemOperand(caller_fp, ArgumentsAdaptorFrameConstants::kLengthOffset)); in GenerateNewSloppySlow() 1692 __ Add(x3, caller_fp, Operand::UntagSmiAndScale(x2, kPointerSizeLog2)); in GenerateNewSloppySlow() [all …]
|