Searched defs:OpRegRegImm (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/quick/mips/
H A Dutility_mips.cc297 return OpRegRegImm(op, r_dest_src1, r_dest_src1, value);
346 LIR* MipsMir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) { function in class:art::MipsMir2Lir
441 LOG(FATAL) << "Bad case in OpRegRegImm";
496 res = OpRegRegImm(kOpLsl, r_dest_src1, r_src2, 24);
497 OpRegRegImm(kOpAsr, r_dest_src1, r_dest_src1, 24);
509 res = OpRegRegImm(kOpLsl, r_dest_src1, r_src2, 16);
510 OpRegRegImm(kOpAsr, r_dest_src1, r_dest_src1, 16);
594 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale);
601 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale);
662 first = OpRegRegImm(kOpLs
[all...]
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc513 LIR* ArmMir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) { function in class:art::ArmMir2Lir
655 /* Handle Thumb-only variants here - otherwise punt to OpRegRegImm */
686 /* Punt to OpRegRegImm - if bad case catch it there */
693 return OpRegRegImm(op, r_dest_src1, r_dest_src1, value);
890 OpRegRegImm(kOpAdd, r_ptr, r_base, displacement & ~kOffsetMask);
1002 OpRegRegImm(kOpAdd, r_dest, r_base, displacement & ~(0x1f << scale));
1006 OpRegRegImm(kOpAdd, r_dest, r_base, displacement & ~0x00000fff);
1045 OpRegRegImm(kOpAdd, r_ptr, r_base, displacement);
1142 OpRegRegImm(kOpAdd, r_scratch, r_base, displacement & ~(0x1f << scale));
1147 OpRegRegImm(kOpAd
[all...]
/art/compiler/dex/quick/arm64/
H A Dutility_arm64.cc348 // The code below is consistent with the implementation of OpRegRegImm().
805 LIR* Arm64Mir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) { function in class:art::Arm64Mir2Lir
/art/compiler/dex/quick/x86/
H A Dutility_x86.cc504 LIR* X86Mir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src, int value) { function in class:art::X86Mir2Lir

Completed in 241 milliseconds