Searched refs:temp0 (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_arm_vixl.cc1480 const vixl32::Register temp0 = RegisterFrom(locations->GetTemp(0)); local
1515 __ Lsr(temp0, temp3, 1u);
1519 __ Ldr(temp0, MemOperand(str, count_offset));
1523 __ Subs(out, temp0, temp1);
1524 // temp0 = min(len(str), len(arg)).
1532 __ mov(gt, temp0, temp1);
1538 __ CompareAndBranchIfZero(temp0, &end, mirror::kUseStringCompression);
1546 // This could in theory exceed INT32_MAX, so treat temp0 as unsigned.
1554 __ add(ne, temp0, temp0, temp
1577 const vixl32::Register temp0 = RegisterFrom(locations->GetTemp(0)); local
[all...]
H A Dintrinsics_arm64.cc1318 Register temp0 = WRegisterFrom(locations->GetTemp(0)); local
1356 __ Lsr(temp0, temp3, 1u);
1360 __ Ldr(temp0, HeapOperand(str, count_offset));
1364 __ Subs(out, temp0, temp1);
1365 // temp0 = min(len(str), len(arg)).
1366 __ Csel(temp0, temp1, temp0, ge);
1368 __ Cbz(temp0, &end);
1382 // This could in theory exceed INT32_MAX, so treat temp0 as unsigned.
1383 __ Lsl(temp0, temp
[all...]

Completed in 2617 milliseconds