Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Doptimizing_cfi_test.cc64 int fp_reg = 0; in SetUpFrame() local
74 for (; fp_reg < 32; fp_reg++) { in SetUpFrame()
75 if (code_gen_->IsFloatingPointCalleeSaveRegister(fp_reg)) { in SetUpFrame()
76 auto location = Location::FpuRegisterLocation(fp_reg); in SetUpFrame()
78 fp_reg++; in SetUpFrame()
/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/arm64/
Dcontext_arm64.cc60 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
61 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()