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

/art/compiler/dex/quick/mips/
H A Dutility_mips.cc151 int r_scratch = AllocTemp(); local
152 res = LoadConstant(r_scratch, value);
154 NewLIR2(opcode, r_dest_src1, r_scratch);
156 NewLIR3(opcode, r_dest_src1, r_dest_src1, r_scratch);
277 int r_scratch = AllocTemp(); local
278 res = LoadConstant(r_scratch, value);
279 NewLIR3(opcode, r_dest, r_src1, r_scratch);
602 int r_scratch = AllocTemp(); local
603 res = OpRegRegImm(kOpAdd, r_scratch, rBase, displacement);
605 store = NewLIR3(opcode, r_src, 0, r_scratch);
[all...]
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc537 int r_scratch = AllocTemp(); local
538 LoadConstant(r_scratch, value);
540 res = NewLIR4(alt_opcode, r_dest, r_src1, r_scratch, 0);
542 res = NewLIR3(alt_opcode, r_dest, r_src1, r_scratch);
543 FreeTemp(r_scratch);
991 int r_scratch = AllocTemp(); local
992 LoadConstant(r_scratch, encoded_disp);
993 store = StoreBaseIndexed(rBase, r_scratch, r_src, 0, size);
994 FreeTemp(r_scratch);

Completed in 28 milliseconds