HomeSort by relevance Sort by last modified time
    Searched refs:LoadConstantNoClobber (Results 1 - 17 of 17) sorted by null

  /art/compiler/dex/quick/mips/
utility_mips.cc 79 LIR* MipsMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
350 res = LoadConstantNoClobber(r_dest.GetLow(), Low32Bits(value));
351 LoadConstantNoClobber(r_dest.GetHigh(), High32Bits(value));
codegen_mips.h 39 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
  /art/compiler/dex/quick/
gen_loadstore.cc 35 return LoadConstantNoClobber(r_dest, value);
90 LoadConstantNoClobber(r_dest, mir_graph_->ConstantValue(rl_src));
gen_common.cc     [all...]
mir_to_lir.h     [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc 81 LIR* X86Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
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);
    [all...]
int_x86.cc 218 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_result.reg, 0)
    [all...]
fp_x86.cc 462 LoadConstantNoClobber(rl_result.reg, unordered_gt ? 1 : 0);
766 LoadConstantNoClobber(rl_result.reg, 0x7fc00000);
codegen_x86.h 76 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
    [all...]
target_x86.cc     [all...]
  /art/compiler/dex/quick/arm/
call_arm.cc 268 LoadConstantNoClobber(rs_r3, 0);
294 LoadConstantNoClobber(rs_r3, 0);
utility_arm.cc 173 LIR* ArmMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
664 res = LoadConstantNoClobber(r_dest.GetLow(), val_lo);
665 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
    [all...]
codegen_arm.h 39 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
int_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
codegen_arm64.h 83 LIR* LoadConstantNoClobber(RegStorage r_dest, int value) OVERRIDE;
int_arm64.cc 115 LoadConstantNoClobber(rs_dest, true_val);
135 LoadConstantNoClobber(rs_dest, false_val);
163 LoadConstantNoClobber(t_reg2, false_val);
    [all...]
utility_arm64.cc 392 LIR* Arm64Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
    [all...]

Completed in 126 milliseconds