Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Doptimizing_cfi_test.cc55 int fp_reg = 0; in TestImpl() local
65 for (; fp_reg < 32; fp_reg++) { in TestImpl()
66 if (code_gen->IsFloatingPointCalleeSaveRegister(fp_reg)) { in TestImpl()
67 auto location = Location::FpuRegisterLocation(fp_reg); in TestImpl()
69 fp_reg++; in TestImpl()
/art/runtime/arch/x86/
Dcontext_x86.cc55 for (uint32_t fp_reg : HighToLowBits(fp_regs)) { in FillCalleeSaves() local
57 fprs_[2 * fp_reg] = reinterpret_cast<uint32_t*>( in FillCalleeSaves()
59 fprs_[2 * fp_reg + 1] = reinterpret_cast<uint32_t*>( in FillCalleeSaves()
/art/runtime/arch/mips/
Dcontext_mips.cc51 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
52 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/runtime/arch/arm/
Dcontext_arm.cc53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
54 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/runtime/arch/mips64/
Dcontext_mips64.cc51 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
52 fprs_[fp_reg] = fr.CalleeSaveAddress(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.cc53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) { in FillCalleeSaves() local
54 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
/art/compiler/dex/quick/arm/
Dtarget_arm.cc845 int high_reg = promotion_map_[p_map_idx+1].fp_reg; in AllocPreservedDouble()
878 promotion_map_[p_map_idx].fp_reg = in AllocPreservedDouble()
881 promotion_map_[p_map_idx+1].fp_reg = in AllocPreservedDouble()
898 promotion_map_[p_map_idx].fp_reg = res.GetReg(); in AllocPreservedSingle()
/art/compiler/dex/quick/
Dralloc_util.cc301 promotion_map_[p_map_idx].fp_reg = reg.GetReg(); in RecordFpPromotion()
1450 int reg_num = curr->fp ? promotion_map_[p_map_idx].fp_reg : promotion_map_[p_map_idx].core_reg; in DoPromotion()
1456 int high_reg = promotion_map_[p_map_idx+1].fp_reg; in DoPromotion()
Dcodegen_util.cc298 StringAppendF(&buf, " : s%d", RegStorage::RegNum(v_reg_map.fp_reg)); in DumpPromotionMap()
Dmir_to_lir.h458 uint8_t fp_reg; member
/art/compiler/dex/quick/x86/
Dtarget_x86.cc398 int fp_reg = RegStorage::RegNum(operand); in BuildInsnString() local
399 buf += StringPrintf("xmm%d", fp_reg); in BuildInsnString()