Searched defs:rDestSrc1 (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp193 static ArmLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
203 if ( !neg && (rDestSrc1 == r13sp) && (value <= 508)) { /* sp */
212 if (!neg && (rDestSrc1 == r13sp) && (value <= 508)) { /* sp */
223 if (LOWREG(rDestSrc1) && shortForm) {
225 } else if (LOWREG(rDestSrc1)) {
238 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
243 newLIR2(cUnit, opcode, rDestSrc1, rScratch);
245 newLIR3(cUnit, opcode, rDestSrc1, rDestSrc1, rScratch);
373 static ArmLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp299 static ArmLIR *opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
302 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2));
321 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2))
323 else if ((shift == 0) && LOWREG(rDestSrc1))
335 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
337 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2))
339 else if (LOWREG(rDestSrc1))
388 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 8);
391 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 16);
394 return newLIR4(cUnit, kThumb2Ubfx, rDestSrc1, rSrc
415 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
614 opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int value) argument
[all...]

Completed in 43 milliseconds