HomeSort by relevance Sort by last modified time
    Searched full:r_scratch (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/quick/mips/
utility_mips.cc 151 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/
utility_arm.cc 537 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);
    [all...]

Completed in 68 milliseconds