Lines Matching refs:t1

576     TCGv t1 = tcg_temp_new_i64();  in gen_op_multiply()
580 tcg_gen_ext32s_i64(t1, src2); in gen_op_multiply()
583 tcg_gen_ext32u_i64(t1, src2); in gen_op_multiply()
586 tcg_gen_mul_i64(dst, t0, t1); in gen_op_multiply()
833 TCGv t1, t2, shift; in gen_op_faligndata_i() local
835 t1 = tcg_temp_new(); in gen_op_faligndata_i()
841 tcg_gen_shl_tl(t1, s1, shift); in gen_op_faligndata_i()
851 tcg_gen_or_tl(dst, t1, t2); in gen_op_faligndata_i()
895 TCGv_i32 t1 = tcg_temp_new_i32(); in gen_op_fmuld8ulx16() local
899 tcg_gen_ext16s_i32(t1, src2); in gen_op_fmuld8ulx16()
900 tcg_gen_mul_i32(t0, t0, t1); in gen_op_fmuld8ulx16()
902 tcg_gen_extract_i32(t1, src1, 16, 8); in gen_op_fmuld8ulx16()
904 tcg_gen_mul_i32(t1, t1, t2); in gen_op_fmuld8ulx16()
906 tcg_gen_concat_i32_i64(dst, t0, t1); in gen_op_fmuld8ulx16()
912 TCGv_i32 t1 = tcg_temp_new_i32(); in gen_op_fmuld8sux16() local
923 tcg_gen_ext16s_i32(t1, src2); in gen_op_fmuld8sux16()
924 tcg_gen_mul_i32(t0, t0, t1); in gen_op_fmuld8sux16()
926 tcg_gen_sextract_i32(t1, src1, 16, 16); in gen_op_fmuld8sux16()
927 tcg_gen_andi_i32(t1, t1, ~0xff); in gen_op_fmuld8sux16()
929 tcg_gen_mul_i32(t1, t1, t2); in gen_op_fmuld8sux16()
931 tcg_gen_concat_i32_i64(dst, t0, t1); in gen_op_fmuld8sux16()
1120 TCGv t1; in gen_compare() local
1122 cmp->c1 = t1 = tcg_temp_new(); in gen_compare()
1134 tcg_gen_mov_tl(t1, cpu_cc_Z); in gen_compare()
1136 tcg_gen_ext32u_tl(t1, cpu_icc_Z); in gen_compare()
1148 tcg_gen_xor_tl(t1, cpu_cc_N, cpu_cc_V); in gen_compare()
1149 tcg_gen_sextract_tl(t1, t1, xcc ? 63 : 31, 1); in gen_compare()
1150 tcg_gen_andc_tl(t1, xcc ? cpu_cc_Z : cpu_icc_Z, t1); in gen_compare()
1152 tcg_gen_ext32u_tl(t1, t1); in gen_compare()
1158 tcg_gen_xor_tl(t1, cpu_cc_N, cpu_cc_V); in gen_compare()
1160 tcg_gen_ext32s_tl(t1, t1); in gen_compare()
1174 tcg_gen_subi_tl(t1, cpu_cc_C, 1); in gen_compare()
1175 tcg_gen_and_tl(t1, t1, cpu_cc_Z); in gen_compare()
1177 tcg_gen_extract_tl(t1, cpu_icc_C, 32, 1); in gen_compare()
1178 tcg_gen_subi_tl(t1, t1, 1); in gen_compare()
1179 tcg_gen_and_tl(t1, t1, cpu_icc_Z); in gen_compare()
1180 tcg_gen_ext32u_tl(t1, t1); in gen_compare()
1187 tcg_gen_mov_tl(t1, cpu_cc_C); in gen_compare()
1189 tcg_gen_extract_tl(t1, cpu_icc_C, 32, 1); in gen_compare()
1196 tcg_gen_mov_tl(t1, cpu_cc_N); in gen_compare()
1198 tcg_gen_ext32s_tl(t1, cpu_cc_N); in gen_compare()
1205 tcg_gen_mov_tl(t1, cpu_cc_V); in gen_compare()
1207 tcg_gen_ext32s_tl(t1, cpu_cc_V); in gen_compare()
3739 TCGv_i64 t1, t2; in trans_UDIV() local
3778 t1 = tcg_temp_new_i64(); in trans_UDIV()
3779 tcg_gen_concat_tl_i64(t1, gen_load_gpr(dc, a->rs1), cpu_y); in trans_UDIV()
3781 tcg_gen_divu_i64(t1, t1, t2); in trans_UDIV()
3782 tcg_gen_umin_i64(t1, t1, tcg_constant_i64(UINT32_MAX)); in trans_UDIV()
3785 tcg_gen_trunc_i64_tl(dst, t1); in trans_UDIV()
3857 TCGv t1, t2; in trans_SDIVX() local
3870 t1 = tcg_temp_new(); in trans_SDIVX()
3872 tcg_gen_setcondi_tl(TCG_COND_EQ, t1, src1, (target_long)INT64_MIN); in trans_SDIVX()
3874 tcg_gen_and_tl(t1, t1, t2); in trans_SDIVX()
3875 tcg_gen_movcond_tl(TCG_COND_NE, t1, t1, tcg_constant_tl(0), in trans_SDIVX()
3877 src2 = t1; in trans_SDIVX()