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

  /art/compiler/dex/quick/mips/
utility_mips.cc 297 return OpRegRegImm(op, r_dest_src1, r_dest_src1, value);
346 LIR* MipsMir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) {
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(kOpLsl, t_reg, r_index, scale)
    [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc 504 LIR* X86Mir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src, int value) {
    [all...]
  /art/compiler/dex/quick/arm/
utility_arm.cc 513 LIR* ArmMir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) {
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);
    [all...]
  /art/compiler/dex/quick/arm64/
utility_arm64.cc 348 // The code below is consistent with the implementation of OpRegRegImm().
805 LIR* Arm64Mir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) {
    [all...]

Completed in 146 milliseconds