Home
last modified time | relevance | path

Searched refs:FpSpillMask (Results 1 – 24 of 24) sorted by relevance

/art/runtime/arch/mips/
Dcontext_mips.cc51 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves()
55 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc56 << frame_info.FpSpillMask() << std::dec << " ISA " << isa; in CheckFrameSize()
66 << " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa; in CheckPCOffset()
/art/runtime/arch/x86/
Dcontext_x86.cc53 uint32_t fp_regs = frame_info.FpSpillMask(); in FillCalleeSaves()
64 POPCOUNT(frame_info.CoreSpillMask()) - 1 + 2 * POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/quick/
Dquick_method_frame_info.h49 uint32_t FpSpillMask() const { in FpSpillMask() function
/art/runtime/arch/arm/
Dcontext_arm.cc53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves()
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc53 uint32_t fp_regs = frame_info.FpSpillMask(); in FillCalleeSaves()
61 POPCOUNT(frame_info.CoreSpillMask()) - 1 + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/mips64/
Dcontext_mips64.cc51 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves()
55 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/arm64/
Dcontext_arm64.cc53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves()
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/
Dstack.cc217 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); in GetVRegFromQuickCode()
225 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); in GetVRegFromQuickCode()
330 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); in GetVRegPairFromQuickCode()
340 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); in GetVRegPairFromQuickCode()
406 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); in SetVRegFromQuickCode()
415 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); in SetVRegFromQuickCode()
487 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); in SetVRegPairFromQuickCode()
497 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg); in SetVRegPairFromQuickCode()
Doat_file-inl.h78 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask(); in GetFpSpillMask()
Dart_method.cc514 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask()); in GetQuickFrameInfo()
Dthread.cc2393 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), reg)); in VisitQuickFrame()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.h65 uint32_t FpSpillMask() const OVERRIDE { in FpSpillMask() function
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.h65 uint32_t FpSpillMask() const OVERRIDE;
Dcalling_convention_arm64.cc169 uint32_t fp_spill_mask = FpSpillMask(); in Arm64JniCallingConvention()
192 uint32_t Arm64JniCallingConvention::FpSpillMask() const { in FpSpillMask() function in art::arm64::Arm64JniCallingConvention
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.h68 uint32_t FpSpillMask() const OVERRIDE { in FpSpillMask() function
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.h66 uint32_t FpSpillMask() const OVERRIDE;
Dcalling_convention_arm.cc246 uint32_t ArmJniCallingConvention::FpSpillMask() const { in FpSpillMask() function in art::arm::ArmJniCallingConvention
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.h64 uint32_t FpSpillMask() const OVERRIDE;
Dcalling_convention_x86_64.cc146 uint32_t X86_64JniCallingConvention::FpSpillMask() const { in FpSpillMask() function in art::x86_64::X86_64JniCallingConvention
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.h66 uint32_t FpSpillMask() const OVERRIDE { in FpSpillMask() function
/art/runtime/arch/
Darch_test.cc46 << frame_info.FpSpillMask() << std::dec; in CheckFrameSize()
/art/compiler/jni/quick/
Dcalling_convention.h299 virtual uint32_t FpSpillMask() const = 0;
Djni_compiler.cc488 main_jni_conv->FpSpillMask(), in ArtJniCompileMethodInternal()