Searched refs:r_dest_src (Results 1 – 9 of 9) sorted by relevance
/art/compiler/dex/quick/mips/ |
D | utility_mips.cc | 116 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()
|
D | codegen_mips.h | 146 LIR* OpReg(OpKind op, RegStorage r_dest_src);
|
/art/compiler/dex/quick/x86/ |
D | utility_x86.cc | 120 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()
|
D | codegen_x86.h | 273 LIR* OpReg(OpKind op, RegStorage r_dest_src) OVERRIDE;
|
/art/compiler/dex/quick/arm/ |
D | codegen_arm.h | 149 LIR* OpReg(OpKind op, RegStorage r_dest_src);
|
D | utility_arm.cc | 223 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/ |
D | utility_arm64.cc | 550 LIR* Arm64Mir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { in OpReg() argument 563 return NewLIR1(opcode, r_dest_src.GetReg()); in OpReg()
|
D | codegen_arm64.h | 214 LIR* OpReg(OpKind op, RegStorage r_dest_src) OVERRIDE;
|
/art/compiler/dex/quick/ |
D | mir_to_lir.h | 1397 virtual LIR* OpReg(OpKind op, RegStorage r_dest_src) = 0;
|