Lines Matching refs:rrm2
763 HReg rrm2 = newVRegI(env);
766 /* movl %rrm, %rrm2
767 andl $3, %rrm2 -- shouldn't be needed; paranoia
768 shll $10, %rrm2
769 orl $DEFAULT_FPUCW, %rrm2
770 pushl %rrm2
774 addInstr(env, mk_iMOVsd_RR(rrm, rrm2));
775 addInstr(env, X86Instr_Alu32R(Xalu_AND, X86RMI_Imm(3), rrm2));
776 addInstr(env, X86Instr_Sh32(Xsh_SHL, 10, rrm2));
777 addInstr(env, X86Instr_Alu32R(Xalu_OR, X86RMI_Imm(DEFAULT_FPUCW), rrm2));
778 addInstr(env, X86Instr_Push(X86RMI_Reg(rrm2)));