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

/art/compiler/optimizing/
H A Dintrinsics_arm.cc293 Register out_reg_hi = output.AsRegisterPairHigh<Register>(); local
299 __ adc(out_reg_hi, in_reg_hi, ShifterOperand(mask));
301 __ eor(out_reg_hi, mask, ShifterOperand(out_reg_hi));
1877 Register out_reg_hi = locations->Out().AsRegisterPairHigh<Register>(); local
1880 __ rbit(out_reg_hi, in_reg_lo);
1912 Register out_reg_hi = locations->Out().AsRegisterPairHigh<Register>(); local
1915 __ rev(out_reg_hi, in_reg_lo);
H A Dcode_generator_arm.cc3160 Register out_reg_hi = locations->Out().AsRegisterPairHigh<Register>(); local
3175 __ Lsr(out_reg_hi, in_reg_hi, rot);
3176 __ orr(out_reg_hi, out_reg_hi, ShifterOperand(in_reg_lo, arm::LSL, kArmBitsPerWord - rot));
3181 __ Mov(out_reg_hi, in_reg_hi);
3194 // out_reg_hi = (reg_hi << shift_left) | (reg_lo >> shift_right).
3196 __ Lsl(out_reg_hi, in_reg_hi, shift_left);
3198 __ add(out_reg_hi, out_reg_hi, ShifterOperand(out_reg_lo));
3205 // out_reg_hi
[all...]

Completed in 148 milliseconds