diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 18:28:07 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-29 18:28:07 +0000 |
commit | 6f5676e3eca4ac8362e3dbbca4226bc43284320b (patch) | |
tree | 233a64045c5f53b9991be444557804f2e1c0a1a6 /target-mips | |
parent | 28199757d272f86507f30a0d4803254a635971f9 (diff) | |
download | qemu-6f5676e3eca4ac8362e3dbbca4226bc43284320b.tar.gz qemu-6f5676e3eca4ac8362e3dbbca4226bc43284320b.tar.bz2 qemu-6f5676e3eca4ac8362e3dbbca4226bc43284320b.zip |
Fix truncate/extend reversal in MIPS DIV{, U} handling, by Richard Sandiford.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4620 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/translate.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c index fefa2c2b44..d6239a5f57 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -1906,12 +1906,12 @@ static void gen_muldiv (DisasContext *ctx, uint32_t opc, TCGv r_tmp2 = new_tmp(); TCGv r_tmp3 = new_tmp(); - tcg_gen_ext_i32_tl(r_tmp1, cpu_T[0]); - tcg_gen_ext_i32_tl(r_tmp2, cpu_T[1]); + tcg_gen_trunc_tl_i32(r_tmp1, cpu_T[0]); + tcg_gen_trunc_tl_i32(r_tmp2, cpu_T[1]); tcg_gen_div_i32(r_tmp3, r_tmp1, r_tmp2); tcg_gen_rem_i32(r_tmp1, r_tmp1, r_tmp2); - tcg_gen_trunc_tl_i32(cpu_T[0], r_tmp3); - tcg_gen_trunc_tl_i32(cpu_T[1], r_tmp1); + tcg_gen_ext_i32_tl(cpu_T[0], r_tmp3); + tcg_gen_ext_i32_tl(cpu_T[1], r_tmp1); gen_store_LO(cpu_T[0], 0); gen_store_HI(cpu_T[1], 0); dead_tmp(r_tmp1); @@ -1932,12 +1932,12 @@ static void gen_muldiv (DisasContext *ctx, uint32_t opc, TCGv r_tmp2 = new_tmp(); TCGv r_tmp3 = new_tmp(); - tcg_gen_ext_i32_tl(r_tmp1, cpu_T[0]); - tcg_gen_ext_i32_tl(r_tmp2, cpu_T[1]); + tcg_gen_trunc_tl_i32(r_tmp1, cpu_T[0]); + tcg_gen_trunc_tl_i32(r_tmp2, cpu_T[1]); tcg_gen_divu_i32(r_tmp3, r_tmp1, r_tmp2); tcg_gen_remu_i32(r_tmp1, r_tmp1, r_tmp2); - tcg_gen_trunc_tl_i32(cpu_T[0], r_tmp3); - tcg_gen_trunc_tl_i32(cpu_T[1], r_tmp1); + tcg_gen_ext_i32_tl(cpu_T[0], r_tmp3); + tcg_gen_ext_i32_tl(cpu_T[1], r_tmp1); gen_store_LO(cpu_T[0], 0); gen_store_HI(cpu_T[1], 0); dead_tmp(r_tmp1); |