Lines Matching refs:rScratch
240 int rScratch = dvmCompilerAllocTemp(cUnit);
241 res = loadConstant(cUnit, rScratch, value);
243 newLIR2(cUnit, opcode, rDestSrc1, rScratch);
245 newLIR3(cUnit, opcode, rDestSrc1, rDestSrc1, rScratch);
345 int rScratch = dvmCompilerAllocTemp(cUnit);
346 res = loadConstant(cUnit, rScratch, value);
347 opRegReg(cUnit, op, rDest, rScratch);
365 int rScratch = dvmCompilerAllocTemp(cUnit);
366 res = loadConstant(cUnit, rScratch, value);
367 newLIR3(cUnit, opcode, rDest, rSrc1, rScratch);
779 int rScratch = dvmCompilerAllocTemp(cUnit);
781 res = opRegRegImm(cUnit, kOpAdd, rScratch, rBase, displacement);
782 store = newLIR3(cUnit, kThumbStrRRI5, rSrc, rScratch, 0);
783 store2 = newLIR3(cUnit, kThumbStrRRI5, rSrcHi, rScratch, 1);
785 res = loadConstant(cUnit, rScratch, displacement);
786 store = newLIR3(cUnit, opcode, rSrc, rBase, rScratch);
788 dvmCompilerFreeTemp(cUnit, rScratch);