Lines Matching refs:tmp2
1362 HReg tmp2 = newVRegI(env);
1366 addInstr(env, MIPSInstr_Alu(Malu_SUB, tmp2, hregMIPS_GPR0(mode64),
1369 addInstr(env, MIPSInstr_Alu(Malu_OR, tmp2, tmp2, MIPSRH_Reg(tmp1)));
1370 addInstr(env, MIPSInstr_Shft(Mshft_SRA, False, tmp2, tmp2,
1372 return tmp2;
2103 HReg tmp2 = newVRegI(env);
2109 /* tmp2 = (tmp1 | -tmp1) >>s 31 */
2111 addInstr(env, MIPSInstr_Alu(Malu_SUB, tmp2, hregMIPS_GPR0(mode64),
2114 addInstr(env, MIPSInstr_Alu(Malu_OR, tmp2, tmp2, MIPSRH_Reg(tmp1)));
2115 addInstr(env, MIPSInstr_Shft(Mshft_SRA, True, tmp2, tmp2,
2117 *rHi = tmp2;
2118 *rLo = tmp2;