Lines Matching refs:rSrc
33 int displacement, int rSrc);
513 int rIndex, int rSrc, int scale, OpSize size)
539 res = newLIR3(cUnit, opcode, rSrc, rBase, rNewIndex);
714 int displacement, int rSrc, int rSrcHi,
774 store = res = newLIR3(cUnit, opcode, rSrc, rBase, encodedDisp);
782 store = newLIR3(cUnit, kThumbStrRRI5, rSrc, rScratch, 0);
786 store = newLIR3(cUnit, opcode, rSrc, rBase, rScratch);
808 int displacement, int rSrc, OpSize size)
810 return storeBaseDispBody(cUnit, rBase, displacement, rSrc, -1, size);
839 static ArmLIR* genRegCopyNoInsert(CompilationUnit *cUnit, int rDest, int rSrc)
844 if (LOWREG(rDest) && LOWREG(rSrc))
846 else if (!LOWREG(rDest) && !LOWREG(rSrc))
854 res->operands[1] = rSrc;
857 if (rDest == rSrc) {
863 static ArmLIR* genRegCopy(CompilationUnit *cUnit, int rDest, int rSrc)
865 ArmLIR *res = genRegCopyNoInsert(cUnit, rDest, rSrc);