Lines Matching refs:tmp2
2634 HReg tmp2 = newVRegI(env);
2648 /* tmp2 = (merged | -merged) >>s 31 */
2649 addInstr(env, mk_iMOVsd_RR(merged,tmp2));
2650 addInstr(env, X86Instr_Unary32(Xun_NEG,tmp2));
2652 X86RMI_Reg(merged), tmp2));
2653 addInstr(env, X86Instr_Sh32(Xsh_SAR, 31, tmp2));
2654 *rHi = tmp2;
2655 *rLo = tmp2;
2661 HReg tmp2 = newVRegI(env);
2668 /* tmp2 = (tmp1 | -tmp1) >>s 31 */
2669 addInstr(env, mk_iMOVsd_RR(tmp1,tmp2));
2670 addInstr(env, X86Instr_Unary32(Xun_NEG,tmp2));
2672 X86RMI_Reg(tmp1), tmp2));
2673 addInstr(env, X86Instr_Sh32(Xsh_SAR, 31, tmp2));
2674 *rHi = tmp2;
2675 *rLo = tmp2;