diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-05-10 07:42:54 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-10 07:42:54 +0000 |
commit | 6c78ea32e1f02216f45dee69a0c6ee0ca968fdac (patch) | |
tree | 2a26af16290773fde11a974834a12ea54b4305f0 /target-sparc/translate.c | |
parent | 3b2d1e9286e1ddbb36499c9fd59e14b736441969 (diff) |
Convert udiv/sdiv
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-sparc/translate.c')
-rw-r--r-- | target-sparc/translate.c | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 91ff604495..a69c708dda 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -701,19 +701,6 @@ static inline void gen_op_sdivx(TCGv dst, TCGv src1, TCGv src2) } #endif -static inline void gen_op_div_cc(TCGv dst) -{ - int l1; - - tcg_gen_mov_tl(cpu_cc_dst, dst); - gen_cc_clear_icc(); - gen_cc_NZ_icc(cpu_cc_dst); - l1 = gen_new_label(); - tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_cc_src2, 0, l1); - tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF); - gen_set_label(l1); -} - // 1 static inline void gen_op_eval_ba(TCGv dst) { @@ -3151,18 +3138,18 @@ static void disas_sparc_insn(DisasContext * dc) CHECK_IU_FEATURE(dc, DIV); gen_helper_udiv(cpu_dst, cpu_src1, cpu_src2); if (xop & 0x10) { - gen_op_div_cc(cpu_dst); - tcg_gen_movi_i32(cpu_cc_op, CC_OP_FLAGS); - dc->cc_op = CC_OP_FLAGS; + tcg_gen_mov_tl(cpu_cc_dst, cpu_dst); + tcg_gen_movi_i32(cpu_cc_op, CC_OP_DIV); + dc->cc_op = CC_OP_DIV; } break; case 0xf: /* sdiv */ CHECK_IU_FEATURE(dc, DIV); gen_helper_sdiv(cpu_dst, cpu_src1, cpu_src2); if (xop & 0x10) { - gen_op_div_cc(cpu_dst); - tcg_gen_movi_i32(cpu_cc_op, CC_OP_FLAGS); - dc->cc_op = CC_OP_FLAGS; + tcg_gen_mov_tl(cpu_cc_dst, cpu_dst); + tcg_gen_movi_i32(cpu_cc_op, CC_OP_DIV); + dc->cc_op = CC_OP_DIV; } break; default: |