Home
last modified time | relevance | path

Searched refs:fp_reg (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Doptimizing_cfi_test.cc62 int fp_reg = 0; in SetUpFrame() local
72 for (; fp_reg < 32; fp_reg++) { in SetUpFrame()
73 if (code_gen_->IsFloatingPointCalleeSaveRegister(fp_reg)) { in SetUpFrame()
74 auto location = Location::FpuRegisterLocation(fp_reg); in SetUpFrame()
76 fp_reg++; in SetUpFrame()
Dcritical_native_abi_fixup_riscv64.cc31 size_t fp_reg = 0u; in FixUpArguments() local
39 if (fp_reg < kMaxFloatOrDoubleArgumentRegisters) { in FixUpArguments()
40 ++fp_reg; in FixUpArguments()
Dcode_generator_x86_64.cc1119 for (FloatRegister fp_reg : non_volatile_xmm_regs) { in BlockNonVolatileXmmRegisters() local
1120 locations->AddTemp(Location::FpuRegisterLocation(fp_reg)); in BlockNonVolatileXmmRegisters()
/art/runtime/arch/x86/
Dcontext_x86.cc56 for (uint32_t fp_reg : HighToLowBits(fp_regs)) { in FillCalleeSaves() local
58 fprs_[2 * fp_reg] = reinterpret_cast<uint32_t*>( in FillCalleeSaves()
60 fprs_[2 * fp_reg + 1] = reinterpret_cast<uint32_t*>( in FillCalleeSaves()
/art/runtime/arch/arm/
Dcontext_arm.cc54 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
55 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc55 for (uint32_t fp_reg : HighToLowBits(fp_regs)) { in FillCalleeSaves() local
56 fprs_[fp_reg] = reinterpret_cast<uint64_t*>( in FillCalleeSaves()
/art/runtime/arch/riscv64/
Dcontext_riscv64.cc59 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
60 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/runtime/arch/arm64/
Dcontext_arm64.cc61 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
62 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc169 FloatRegister fp_reg = static_cast<FloatRegister>(XMM0 + itr_float_and_doubles_); in CurrentParamRegister() local
170 return X86_64ManagedRegister::FromXmmRegister(fp_reg); in CurrentParamRegister()