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

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp240 int rScratch = dvmCompilerAllocTemp(cUnit); local
241 res = loadConstant(cUnit, rScratch, value);
243 newLIR2(cUnit, opcode, rDestSrc1, rScratch);
245 newLIR3(cUnit, opcode, rDestSrc1, rDestSrc1, rScratch);
345 int rScratch = dvmCompilerAllocTemp(cUnit); local
346 res = loadConstant(cUnit, rScratch, value);
347 opRegReg(cUnit, op, rDest, rScratch);
365 int rScratch = dvmCompilerAllocTemp(cUnit); local
366 res = loadConstant(cUnit, rScratch, value);
367 newLIR3(cUnit, opcode, rDest, rSrc1, rScratch);
779 int rScratch = dvmCompilerAllocTemp(cUnit); local
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp602 int rScratch = dvmCompilerAllocTemp(cUnit); local
603 loadConstant(cUnit, rScratch, value);
605 res = newLIR4(cUnit, altOpcode, rDest, rSrc1, rScratch, 0);
607 res = newLIR3(cUnit, altOpcode, rDest, rSrc1, rScratch);
608 dvmCompilerFreeTemp(cUnit, rScratch);
1056 int rScratch = dvmCompilerAllocTemp(cUnit); local
1057 res = loadConstant(cUnit, rScratch, encodedDisp);
1058 store = storeBaseIndexed(cUnit, rBase, rScratch, rSrc, 0, size);
1059 dvmCompilerFreeTemp(cUnit, rScratch);

Completed in 236 milliseconds