Lines Matching refs:rrm2
815 HReg rrm2 = newVRegI(env);
818 /* movq %rrm, %rrm2
819 andq $3, %rrm2 -- shouldn't be needed; paranoia
820 shlq $10, %rrm2
821 orq $DEFAULT_FPUCW, %rrm2
822 movq %rrm2, -8(%rsp)
825 addInstr(env, mk_iMOVsd_RR(rrm, rrm2));
826 addInstr(env, AMD64Instr_Alu64R(Aalu_AND, AMD64RMI_Imm(3), rrm2));
827 addInstr(env, AMD64Instr_Sh64(Ash_SHL, 10, rrm2));
829 AMD64RMI_Imm(DEFAULT_FPUCW), rrm2));
831 AMD64RI_Reg(rrm2), m8_rsp));