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

/art/compiler/dex/quick/x86/
H A Dfp_x86.cc67 int r_src1 = rl_src1.low_reg; local
73 OpRegCopy(r_dest, r_src1);
122 int r_src1 = S2d(rl_src1.low_reg, rl_src1.high_reg); local
128 OpRegCopy(r_dest, r_src1);
H A Dutility_x86.cc221 LIR* X86Mir2Lir::OpRegRegReg(OpKind op, int r_dest, int r_src1, argument
223 if (r_dest != r_src1 && r_dest != r_src2) {
225 if (r_src1 == r_src2) {
226 OpRegCopy(r_dest, r_src1);
228 } else if (r_src1 != rBP) {
229 return NewLIR5(kX86Lea32RA, r_dest, r_src1 /* base */,
233 r_src1 /* index */, 0 /* scale */, 0 /* disp */);
236 OpRegCopy(r_dest, r_src1);
239 } else if (r_dest == r_src1) {
250 OpRegCopy(t_reg, r_src1);
[all...]
/art/compiler/dex/quick/mips/
H A Dutility_mips.cc161 LIR* MipsMir2Lir::OpRegRegReg(OpKind op, int r_dest, int r_src1, int r_src2) { argument
199 return NewLIR3(opcode, r_dest, r_src1, r_src2);
202 LIR* MipsMir2Lir::OpRegRegImm(OpKind op, int r_dest, int r_src1, int value) { argument
271 res = NewLIR3(opcode, r_dest, r_src1, value);
273 if (r_dest != r_src1) {
275 NewLIR3(opcode, r_dest, r_src1, r_dest);
279 NewLIR3(opcode, r_dest, r_src1, r_scratch);
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc355 LIR* ArmMir2Lir::OpRegRegRegShift(OpKind op, int r_dest, int r_src1, argument
358 bool thumb_form = (shift == 0) && ARM_LOWREG(r_dest) && ARM_LOWREG(r_src1) &&
414 return NewLIR4(opcode, r_dest, r_src1, r_src2, shift);
417 return NewLIR3(opcode, r_dest, r_src1, r_src2);
421 LIR* ArmMir2Lir::OpRegRegReg(OpKind op, int r_dest, int r_src1, int r_src2) { argument
422 return OpRegRegRegShift(op, r_dest, r_src1, r_src2, 0);
425 LIR* ArmMir2Lir::OpRegRegImm(OpKind op, int r_dest, int r_src1, int value) { argument
431 bool all_low_regs = (ARM_LOWREG(r_dest) && ARM_LOWREG(r_src1));
438 return NewLIR3(kThumbLslRRI5, r_dest, r_src1, value);
440 return NewLIR3(kThumb2LslRRI5, r_dest, r_src1, valu
[all...]

Completed in 3881 milliseconds