Searched refs:LoadConstantNoClobber (Results 1 - 17 of 17) sorted by relevance

/art/compiler/dex/quick/mips/
H A Dutility_mips.cc79 LIR* MipsMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) { function in class:art::MipsMir2Lir
350 res = LoadConstantNoClobber(r_dest.GetLow(), Low32Bits(value));
351 LoadConstantNoClobber(r_dest.GetHigh(), High32Bits(value));
H A Dcodegen_mips.h39 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
/art/compiler/dex/quick/
H A Dgen_loadstore.cc35 return LoadConstantNoClobber(r_dest, value);
90 LoadConstantNoClobber(r_dest, mir_graph_->ConstantValue(rl_src));
H A Dgen_common.cc1903 LoadConstantNoClobber(rl_result.reg, value);
2033 LoadConstantNoClobber(key_temp, current_key);
H A Dmir_to_lir.h1150 virtual LIR* LoadConstantNoClobber(RegStorage r_dest, int value) = 0;
/art/compiler/dex/quick/x86/
H A Dutility_x86.cc81 LIR* X86Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) { function in class:art::X86Mir2Lir
165 * the move and if caller is flexible, they should be calling LoadConstantNoClobber instead.
602 res = LoadConstantNoClobber(RegStorage::FloatSolo32(low_reg_val), val_lo);
606 LoadConstantNoClobber(r_dest_hi, val_hi);
619 res = LoadConstantNoClobber(r_dest.GetLow(), val_lo);
620 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
H A Dint_x86.cc218 LoadConstantNoClobber(rs_dest, true_val);
227 LoadConstantNoClobber(rs_dest, 0);
246 LoadConstantNoClobber(rs_dest, false_val);
248 LoadConstantNoClobber(temp_reg, true_val);
251 LoadConstantNoClobber(rs_dest, false_val);
259 LoadConstantNoClobber(rs_dest, false_val);
263 LoadConstantNoClobber(rs_dest, true_val);
289 LoadConstantNoClobber(rl_result.reg, true_val);
613 LoadConstantNoClobber(rl_result.reg, 0);
629 LoadConstantNoClobber(rl_resul
[all...]
H A Dfp_x86.cc462 LoadConstantNoClobber(rl_result.reg, unordered_gt ? 1 : 0);
766 LoadConstantNoClobber(rl_result.reg, 0x7fc00000);
H A Dcodegen_x86.h76 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
H A Dtarget_x86.cc1293 LoadConstantNoClobber(rs_rAX, char_value);
1413 LoadConstantNoClobber(rl_return.reg, -1);
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc268 LoadConstantNoClobber(rs_r3, 0);
294 LoadConstantNoClobber(rs_r3, 0);
H A Dutility_arm.cc173 LIR* ArmMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) { function in class:art::ArmMir2Lir
664 res = LoadConstantNoClobber(r_dest.GetLow(), val_lo);
665 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
H A Dcodegen_arm.h39 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
H A Dint_arm.cc1141 LoadConstantNoClobber(z_reg, 0);
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc115 LoadConstantNoClobber(rs_dest, true_val);
135 LoadConstantNoClobber(rs_dest, false_val);
163 LoadConstantNoClobber(t_reg2, false_val);
H A Dcodegen_arm64.h83 LIR* LoadConstantNoClobber(RegStorage r_dest, int value) OVERRIDE;
H A Dutility_arm64.cc392 LIR* Arm64Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) { function in class:art::Arm64Mir2Lir

Completed in 708 milliseconds