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

/art/compiler/dex/quick/mips/
H A Dutility_mips.cc116 LIR* MipsMir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { argument
123 return NewLIR1(kMipsJr, r_dest_src.GetReg());
128 return NewLIR2(opcode, rRA, r_dest_src.GetReg());
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc223 LIR* ArmMir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { argument
235 return NewLIR1(opcode, r_dest_src.GetReg());
/art/compiler/dex/quick/x86/
H A Dutility_x86.cc120 LIR* X86Mir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { argument
123 case kOpNeg: opcode = r_dest_src.Is64Bit() ? kX86Neg64R : kX86Neg32R; break;
124 case kOpNot: opcode = r_dest_src.Is64Bit() ? kX86Not64R : kX86Not32R; break;
125 case kOpRev: opcode = r_dest_src.Is64Bit() ? kX86Bswap64R : kX86Bswap32R; break;
130 return NewLIR1(opcode, r_dest_src.GetReg());
/art/compiler/dex/quick/arm64/
H A Dutility_arm64.cc550 LIR* Arm64Mir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { argument
563 return NewLIR1(opcode, r_dest_src.GetReg());

Completed in 20 milliseconds