HomeSort by relevance Sort by last modified time
    Searched refs:t_reg (Results 1 - 7 of 7) sorted by null

  /art/compiler/dex/quick/mips/
int_mips.cc 118 int t_reg = AllocTemp(); local
120 NewLIR3(slt_op, t_reg, src2, src1);
122 NewLIR3(slt_op, t_reg, src1, src2);
124 branch = NewLIR1(br_op, t_reg);
125 FreeTemp(t_reg);
136 int t_reg = AllocTemp(); local
137 LoadConstant(t_reg, check_value);
138 branch = OpCmpBranch(cond, reg, t_reg, target);
139 FreeTemp(t_reg);
153 int t_reg = AllocTemp() local
240 int t_reg = AllocTemp(); local
289 int t_reg = AllocTemp(); local
299 int t_reg = AllocTemp(); local
347 int t_reg = AllocTemp(); local
368 int t_reg = AllocTemp(); local
390 int t_reg = AllocTemp(); local
    [all...]
utility_mips.cc 341 int t_reg = AllocTemp(); local
353 first = NewLIR3(kMipsAddu, t_reg , rBase, r_index);
355 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale);
356 NewLIR3(kMipsAddu, t_reg , rBase, t_reg);
382 res = NewLIR3(opcode, r_dest, 0, t_reg);
383 FreeTemp(t_reg);
393 int t_reg = AllocTemp(); local
405 first = NewLIR3(kMipsAddu, t_reg , rBase, r_index);
407 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale)
    [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc 92 int t_reg = AllocTemp(); local
93 LoadConstant(t_reg, -1);
97 OpRegRegReg(kOpSub, t_reg, rl_src1.low_reg, rl_src2.low_reg);
101 NewLIR2(kThumb2MovImmShift, t_reg, ModifiedImmediate(-1));
102 LoadConstant(t_reg, 1);
106 OpRegReg(kOpNeg, t_reg, t_reg);
111 rl_temp.low_reg = t_reg;
113 FreeTemp(t_reg);
145 int t_reg = AllocTemp() local
327 int t_reg = AllocTemp(); local
587 int t_reg = AllocTemp(); local
632 int t_reg = AllocTemp(); local
1034 int t_reg = AllocTemp(); local
1051 int t_reg = AllocTemp(); local
    [all...]
  /art/compiler/dex/quick/
gen_common.cc 1146 int t_reg = AllocTemp(); local
1279 int t_reg = INVALID_REG; local
1378 int t_reg = AllocTemp(); local
1443 int t_reg = AllocTemp(); local
1603 int t_reg = AllocTemp(); local
    [all...]
gen_invoke.cc 951 int t_reg = AllocTemp(); local
    [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc 270 int t_reg = AllocTemp(); local
271 OpRegRegImm(kOpLsl, t_reg, rl_src.low_reg, second_bit - first_bit);
272 OpRegRegReg(kOpAdd, rl_result.low_reg, rl_src.low_reg, t_reg);
273 FreeTemp(t_reg);
280 int t_reg = AllocTemp(); local
281 OpRegRegReg(kOpOr, t_reg, reg_lo, reg_hi);
282 GenImmedCheck(kCondEq, t_reg, 0, kThrowDivZero);
283 FreeTemp(t_reg);
utility_x86.cc 249 int t_reg = AllocTemp(); local
250 OpRegCopy(t_reg, r_src1);
251 OpRegReg(op, t_reg, r_src2);
252 LIR* res = OpRegCopy(r_dest, t_reg);
253 FreeTemp(t_reg);

Completed in 66 milliseconds