Searched refs:rDestSrc1 (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/compiler/codegen/arm/
H A DCodegen.h32 static ArmLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
34 static ArmLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
/dalvik/vm/compiler/codegen/mips/
H A DCodegen.h32 static MipsLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
34 static MipsLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
/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/mips/Mips32/
H A DFactory.cpp201 static MipsLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
211 return opRegRegImm(cUnit, op, rDestSrc1, rDestSrc1, value);
214 return opRegRegImm(cUnit, op, rDestSrc1, rDestSrc1, value);
222 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
227 newLIR2(cUnit, opcode, rDestSrc1, rScratch);
229 newLIR3(cUnit, opcode, rDestSrc1, rDestSrc1, rScratch);
365 static MipsLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp306 static ArmLIR *opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
309 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2));
328 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2))
330 else if ((shift == 0) && LOWREG(rDestSrc1))
342 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
344 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2))
346 else if (LOWREG(rDestSrc1))
395 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 8);
398 return newLIR4(cUnit, kThumb2Sbfx, rDestSrc1, rSrc2, 0, 16);
401 return newLIR4(cUnit, kThumb2Ubfx, rDestSrc1, rSrc
422 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
621 opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int value) argument
[all...]

Completed in 584 milliseconds