Searched defs:LoadConstantNoClobber (Results 1 - 4 of 4) 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));
/art/compiler/dex/quick/arm/
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);
/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);
/art/compiler/dex/quick/arm64/
H A Dutility_arm64.cc392 LIR* Arm64Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) { function in class:art::Arm64Mir2Lir

Completed in 75 milliseconds