* [Qemu-devel] [4621] Avoid qemu SIGFPE for MIPS DIV, by Richard Sandiford.
@ 2008-05-29 18:29 Thiemo Seufer
0 siblings, 0 replies; only message in thread
From: Thiemo Seufer @ 2008-05-29 18:29 UTC (permalink / raw)
To: qemu-devel
Revision: 4621
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4621
Author: ths
Date: 2008-05-29 18:29:05 +0000 (Thu, 29 May 2008)
Log Message:
-----------
Avoid qemu SIGFPE for MIPS DIV, by Richard Sandiford.
Modified Paths:
--------------
trunk/target-mips/translate.c
Modified: trunk/target-mips/translate.c
===================================================================
--- trunk/target-mips/translate.c 2008-05-29 18:28:07 UTC (rev 4620)
+++ trunk/target-mips/translate.c 2008-05-29 18:29:05 UTC (rev 4621)
@@ -1902,21 +1902,17 @@
tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_T[1], 0, l1);
{
- TCGv r_tmp1 = new_tmp();
- TCGv r_tmp2 = new_tmp();
- TCGv r_tmp3 = new_tmp();
+ TCGv r_tmp1 = tcg_temp_new(TCG_TYPE_I64);
+ TCGv r_tmp2 = tcg_temp_new(TCG_TYPE_I64);
- 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_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);
- dead_tmp(r_tmp2);
- dead_tmp(r_tmp3);
+ tcg_gen_ext32s_tl(cpu_T[0], cpu_T[0]);
+ tcg_gen_ext32s_tl(cpu_T[1], cpu_T[1]);
+ tcg_gen_div_i64(r_tmp1, cpu_T[0], cpu_T[1]);
+ tcg_gen_rem_i64(r_tmp2, cpu_T[0], cpu_T[1]);
+ tcg_gen_ext32s_tl(r_tmp1, r_tmp1);
+ tcg_gen_ext32s_tl(r_tmp2, r_tmp2);
+ gen_store_LO(r_tmp1, 0);
+ gen_store_HI(r_tmp2, 0);
}
gen_set_label(l1);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-29 18:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-29 18:29 [Qemu-devel] [4621] Avoid qemu SIGFPE for MIPS DIV, by Richard Sandiford Thiemo Seufer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).