Searched defs:rSrc2 (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp251 int rSrc1, int rSrc2)
263 return opRegReg(cUnit, op, rDest, rSrc2);
264 } else if (rDest == rSrc2) {
267 opRegReg(cUnit, op, rSrc1, rSrc2);
271 return opRegReg(cUnit, op, rDest, rSrc2);
275 return newLIR3(cUnit, opcode, rDest, rSrc1, rSrc2);
374 int rSrc2)
398 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
400 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2))
438 return opRegRegReg(cUnit, op, rDestSrc1, rDestSrc1, rSrc2);
250 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
373 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
[all...]
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp235 int rSrc1, int rSrc2)
271 return newLIR3(cUnit, opcode, rDest, rSrc1, rSrc2);
366 int rSrc2)
375 return newLIR3(cUnit, kMipsNor, rDestSrc1, rSrc2, r_ZERO);
377 return newLIR3(cUnit, kMipsSubu, rDestSrc1, r_ZERO, rSrc2);
384 return opRegRegReg(cUnit, op, rDestSrc1, rDestSrc1, rSrc2);
387 res = newLIR2(cUnit, kMipsSeb, rDestSrc1, rSrc2);
389 res = opRegRegImm(cUnit, kOpLsl, rDestSrc1, rSrc2, 24);
395 res = newLIR2(cUnit, kMipsSeh, rDestSrc1, rSrc2);
397 res = opRegRegImm(cUnit, kOpLsl, rDestSrc1, rSrc2, 1
234 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
365 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp300 int rSrc2, int shift)
302 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2));
321 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2))
335 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
337 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2))
388 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 8);
391 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 16);
394 return newLIR4(cUnit, kThumb2Ubfx, rDestSrc1, rSrc2, 0, 16);
401 return newLIR2(cUnit, opcode, rDestSrc1, rSrc2);
404 return newLIR3(cUnit, opcode, rDestSrc1, rSrc2, shif
299 opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2, int shift) argument
415 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
421 opRegRegRegShift(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2, int shift) argument
485 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
[all...]

Completed in 68 milliseconds