Searched defs:rScratch (Results 1 - 3 of 3) 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/mips/Mips32/
H A DFactory.cpp224 int rScratch = dvmCompilerAllocTemp(cUnit); local
225 res = loadConstant(cUnit, rScratch, value);
227 newLIR2(cUnit, opcode, rDestSrc1, rScratch);
229 newLIR3(cUnit, opcode, rDestSrc1, rDestSrc1, rScratch);
357 int rScratch = dvmCompilerAllocTemp(cUnit); local
358 res = loadConstant(cUnit, rScratch, value);
359 newLIR3(cUnit, opcode, rDest, rSrc1, rScratch);
782 int rScratch = dvmCompilerAllocTemp(cUnit); local
783 res = opRegRegImm(cUnit, kOpAdd, rScratch, rBase, displacement);
785 store = newLIR3(cUnit, opcode, rSrc, 0, rScratch);
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp609 int rScratch = dvmCompilerAllocTemp(cUnit); local
610 loadConstant(cUnit, rScratch, value);
612 res = newLIR4(cUnit, altOpcode, rDest, rSrc1, rScratch, 0);
614 res = newLIR3(cUnit, altOpcode, rDest, rSrc1, rScratch);
615 dvmCompilerFreeTemp(cUnit, rScratch);
1089 int rScratch = dvmCompilerAllocTemp(cUnit); local
1090 res = loadConstant(cUnit, rScratch, encodedDisp);
1091 store = storeBaseIndexed(cUnit, rBase, rScratch, rSrc, 0, size);
1092 dvmCompilerFreeTemp(cUnit, rScratch);

Completed in 51 milliseconds