Lines Matching refs:t1

534     TCGv t0, t1;  in gen_flush_flags()  local
547 t1 = tcg_temp_new(); in gen_flush_flags()
550 tcg_gen_xor_i32(t1, QREG_CC_N, QREG_CC_V); in gen_flush_flags()
552 tcg_gen_andc_i32(QREG_CC_V, t1, QREG_CC_V); in gen_flush_flags()
562 t1 = tcg_temp_new(); in gen_flush_flags()
565 tcg_gen_xor_i32(t1, QREG_CC_N, t0); in gen_flush_flags()
567 tcg_gen_and_i32(QREG_CC_V, QREG_CC_V, t1); in gen_flush_flags()
1591 TCGv t0, t1; in bcd_add() local
1614 t1 = tcg_temp_new(); in bcd_add()
1615 tcg_gen_add_i32(t1, t0, dest); in bcd_add()
1616 tcg_gen_add_i32(t1, t1, QREG_CC_X); in bcd_add()
1633 tcg_gen_xor_i32(t0, t0, t1); in bcd_add()
1651 tcg_gen_sub_i32(dest, t1, dest); in bcd_add()
1656 TCGv t0, t1, t2; in bcd_sub() local
1670 t1 = tcg_temp_new(); in bcd_sub()
1671 tcg_gen_add_i32(t1, t0, dest); in bcd_sub()
1672 tcg_gen_addi_i32(t1, t1, 1); in bcd_sub()
1673 tcg_gen_sub_i32(t1, t1, QREG_CC_X); in bcd_sub()
1682 tcg_gen_xor_i32(t0, t1, t2); in bcd_sub()
1703 tcg_gen_sub_i32(dest, t1, t0); in bcd_sub()
3791 TCGv t0, t1; in DISAS_INSN() local
3799 t1 = tcg_temp_new_i32(); in DISAS_INSN()
3801 tcg_gen_andi_i32(t1, src, 31); in DISAS_INSN()
3802 rotate(reg, t1, left, 32); in DISAS_INSN()
3810 tcg_gen_movi_i32(t1, 33); in DISAS_INSN()
3811 tcg_gen_remu_i32(t1, t0, t1); in DISAS_INSN()
3812 X = rotate32_x(DREG(insn, 0), t1, left); in DISAS_INSN()
3822 TCGv t0, t1; in DISAS_INSN() local
3830 t1 = tcg_temp_new_i32(); in DISAS_INSN()
3832 tcg_gen_andi_i32(t1, src, 7); in DISAS_INSN()
3833 rotate(reg, t1, left, 8); in DISAS_INSN()
3841 tcg_gen_movi_i32(t1, 9); in DISAS_INSN()
3842 tcg_gen_remu_i32(t1, t0, t1); in DISAS_INSN()
3843 X = rotate_x(reg, t1, left, 8); in DISAS_INSN()
3854 TCGv t0, t1; in DISAS_INSN() local
3862 t1 = tcg_temp_new_i32(); in DISAS_INSN()
3864 tcg_gen_andi_i32(t1, src, 15); in DISAS_INSN()
3865 rotate(reg, t1, left, 16); in DISAS_INSN()
3873 tcg_gen_movi_i32(t1, 17); in DISAS_INSN()
3874 tcg_gen_remu_i32(t1, t0, t1); in DISAS_INSN()
3875 X = rotate_x(reg, t1, left, 16); in DISAS_INSN()
4317 TCGv_i64 t0, t1; in m68k_copy_line() local
4322 t1 = tcg_temp_new_i64(); in m68k_copy_line()
4327 tcg_gen_qemu_ld_i64(t1, addr, index, MO_TEUQ); in m68k_copy_line()
4332 tcg_gen_qemu_st_i64(t1, addr, index, MO_TEUQ); in m68k_copy_line()