Home | History | Annotate | Download | only in ia32

Lines Matching refs:temp_reg

3634       Register temp_reg = ToRegister(instr->TempAt(0));
3641 // Get high 32 bits of the input in result_reg and temp_reg.
3643 __ movd(Operand(temp_reg), xmm_scratch);
3644 __ mov(result_reg, temp_reg);
3646 // Prepare negation mask in temp_reg.
3647 __ sar(temp_reg, kBitsPerInt - 1);
3683 // Use the prepared mask in temp_reg to negate the result if necessary.
3684 __ xor_(result_reg, Operand(temp_reg));
3685 __ sub(result_reg, Operand(temp_reg));