Lines Matching full:t1

31     TCGv t0, t1;  in gen_lext_DIV_G()  local
40 t1 = tcg_temp_new(); in gen_lext_DIV_G()
46 gen_load_gpr(t1, rt); in gen_lext_DIV_G()
50 tcg_gen_ext32s_tl(t1, t1); in gen_lext_DIV_G()
52 tcg_gen_brcondi_tl(TCG_COND_NE, t1, 0, l1); in gen_lext_DIV_G()
58 tcg_gen_brcondi_tl(TCG_COND_NE, t1, -1LL, l2); in gen_lext_DIV_G()
63 tcg_gen_div_tl(cpu_gpr[rd], t0, t1); in gen_lext_DIV_G()
85 TCGv t0, t1; in gen_lext_DIVU_G() local
94 t1 = tcg_temp_new(); in gen_lext_DIVU_G()
99 gen_load_gpr(t1, rt); in gen_lext_DIVU_G()
103 tcg_gen_ext32u_tl(t1, t1); in gen_lext_DIVU_G()
105 tcg_gen_brcondi_tl(TCG_COND_NE, t1, 0, l1); in gen_lext_DIVU_G()
110 tcg_gen_divu_tl(cpu_gpr[rd], t0, t1); in gen_lext_DIVU_G()
132 TCGv t0, t1; in gen_lext_MOD_G() local
141 t1 = tcg_temp_new(); in gen_lext_MOD_G()
147 gen_load_gpr(t1, rt); in gen_lext_MOD_G()
151 tcg_gen_ext32u_tl(t1, t1); in gen_lext_MOD_G()
153 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1); in gen_lext_MOD_G()
155 tcg_gen_brcondi_tl(TCG_COND_NE, t1, -1LL, l2); in gen_lext_MOD_G()
160 tcg_gen_rem_tl(cpu_gpr[rd], t0, t1); in gen_lext_MOD_G()
182 TCGv t0, t1; in gen_lext_MODU_G() local
191 t1 = tcg_temp_new(); in gen_lext_MODU_G()
196 gen_load_gpr(t1, rt); in gen_lext_MODU_G()
200 tcg_gen_ext32u_tl(t1, t1); in gen_lext_MODU_G()
202 tcg_gen_brcondi_tl(TCG_COND_NE, t1, 0, l1); in gen_lext_MODU_G()
206 tcg_gen_remu_tl(cpu_gpr[rd], t0, t1); in gen_lext_MODU_G()
228 TCGv t0, t1; in gen_lext_MULT_G() local
236 t1 = tcg_temp_new(); in gen_lext_MULT_G()
239 gen_load_gpr(t1, rt); in gen_lext_MULT_G()
241 tcg_gen_mul_tl(cpu_gpr[rd], t0, t1); in gen_lext_MULT_G()