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

  /art/compiler/dex/quick/mips/
utility_mips.cc 102 // For encodings, see LoadConstantNoClobber below.
130 LIR* MipsMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
554 res = LoadConstantNoClobber(r_dest.GetLow(), Low32Bits(value));
555 LoadConstantNoClobber(r_dest.GetHigh(), High32Bits(value));
560 res = LoadConstantNoClobber(r_dest, Low32Bits(value));
561 LoadConstantNoClobber(r_temp, High32Bits(value));
    [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc 87 LIR* X86Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
171 * the move and if caller is flexible, they should be calling LoadConstantNoClobber instead.
611 res = LoadConstantNoClobber(RegStorage::FloatSolo32(low_reg_val), val_lo);
615 LoadConstantNoClobber(r_dest_hi, val_hi);
628 res = LoadConstantNoClobber(r_dest.GetLow(), val_lo);
629 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
    [all...]
  /art/compiler/dex/quick/arm/
utility_arm.cc 223 LIR* ArmMir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
720 res = LoadConstantNoClobber(r_dest.GetLow(), val_lo);
721 LoadConstantNoClobber(r_dest.GetHigh(), val_hi);
    [all...]
  /art/compiler/dex/quick/arm64/
utility_arm64.cc 394 LIR* Arm64Mir2Lir::LoadConstantNoClobber(RegStorage r_dest, int value) {
    [all...]

Completed in 128 milliseconds