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

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp251 int rSrc1, int rSrc2)
262 if (rDest == rSrc1) {
265 assert(dvmCompilerIsTemp(cUnit, rSrc1));
266 dvmCompilerClobber(cUnit, rSrc1);
267 opRegReg(cUnit, op, rSrc1, rSrc2);
268 return opRegReg(cUnit, kOpMov, rDest, rSrc1);
270 opRegReg(cUnit, kOpMov, rDest, rSrc1);
275 return newLIR3(cUnit, opcode, rDest, rSrc1, rSrc2);
279 int rSrc1, int value)
288 if (rDest == rSrc1)
250 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
278 opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int value) argument
[all...]
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp200 int rSrc1, int value);
235 int rSrc1, int rSrc2)
271 return newLIR3(cUnit, opcode, rDest, rSrc1, rSrc2);
275 int rSrc1, int value)
351 res = newLIR3(cUnit, opcode, rDest, rSrc1, value);
353 if (rDest != rSrc1) {
355 newLIR3(cUnit, opcode, rDest, rSrc1, rDest);
359 newLIR3(cUnit, opcode, rDest, rSrc1, rScratch);
234 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
274 opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int value) argument
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp429 int rDest, int rSrc1, int rSrc2, int shift)
432 bool thumbForm = (shift == 0) && LOWREG(rDest) && LOWREG(rSrc1) &&
485 return newLIR4(cUnit, opcode, rDest, rSrc1, rSrc2, shift);
488 return newLIR3(cUnit, opcode, rDest, rSrc1, rSrc2);
493 int rSrc1, int rSrc2)
495 return opRegRegRegShift(cUnit, op, rDest, rSrc1, rSrc2, 0);
499 int rSrc1, int value)
506 bool allLowRegs = (LOWREG(rDest) && LOWREG(rSrc1));
513 return newLIR3(cUnit, kThumbLslRRI5, rDest, rSrc1, value);
515 return newLIR3(cUnit, kThumb2LslRRI5, rDest, rSrc1, valu
428 opRegRegRegShift(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2, int shift) argument
492 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
498 opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int value) argument
[all...]

Completed in 18 milliseconds