Home
last modified time | relevance | path

Searched refs:r_dest_src (Results 1 – 9 of 9) sorted by relevance

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