Home | History | Annotate | Download | only in optimizing

Lines Matching full:temp0

1270   Register temp0 = WRegisterFrom(locations->GetTemp(0));
1308 __ Lsr(temp0, temp3, 1u);
1312 __ Ldr(temp0, HeapOperand(str, count_offset));
1316 __ Subs(out, temp0, temp1);
1317 // temp0 = min(len(str), len(arg)).
1318 __ Csel(temp0, temp1, temp0, ge);
1320 __ Cbz(temp0, &end);
1334 // This could in theory exceed INT32_MAX, so treat temp0 as unsigned.
1335 __ Lsl(temp0, temp0, temp3);
1359 __ Subs(temp0, temp0, (mirror::kUseStringCompression) ? 8 : 4);
1379 __ Cmp(temp0, Operand(temp1.W(), LSR, (mirror::kUseStringCompression) ? 3 : 4));
1418 // So, we move it to the bottom bit of the iteration count `temp0` which we then need to treat
1420 // will allow `subs temp0, #2; bhi different_compression_loop` to serve as the loop condition.
1421 __ Lsl(temp0, temp0, 1u);
1428 __ Sub(temp0, temp0, Operand(temp3));
1438 __ Subs(temp0, temp0, 2);
1444 __ Tst(temp0, Operand(1));