* [Qemu-devel] [4445] FPU fixes
@ 2008-05-12 20:30 Fabrice Bellard
0 siblings, 0 replies; only message in thread
From: Fabrice Bellard @ 2008-05-12 20:30 UTC (permalink / raw)
To: qemu-devel
Revision: 4445
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4445
Author: bellard
Date: 2008-05-12 20:30:28 +0000 (Mon, 12 May 2008)
Log Message:
-----------
FPU fixes
Modified Paths:
--------------
trunk/target-i386/translate.c
Modified: trunk/target-i386/translate.c
===================================================================
--- trunk/target-i386/translate.c 2008-05-12 19:10:44 UTC (rev 4444)
+++ trunk/target-i386/translate.c 2008-05-12 20:30:28 UTC (rev 4445)
@@ -4535,12 +4535,12 @@
switch(op >> 4) {
case 0:
- gen_op_ld_T0_A0(OT_LONG);
+ gen_op_ld_T0_A0(OT_LONG + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_flds_FT0, cpu_tmp2);
break;
case 1:
- gen_op_ld_T0_A0(OT_LONG);
+ gen_op_ld_T0_A0(OT_LONG + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_fildl_FT0, cpu_tmp2);
break;
@@ -4551,7 +4551,7 @@
break;
case 3:
default:
- gen_op_ld_T0_A0(OT_WORD);
+ gen_op_lds_T0_A0(OT_WORD + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_fildl_FT0, cpu_tmp2);
break;
@@ -4574,12 +4574,12 @@
case 0:
switch(op >> 4) {
case 0:
- gen_op_ld_T0_A0(OT_LONG);
+ gen_op_ld_T0_A0(OT_LONG + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_flds_ST0, cpu_tmp2);
break;
case 1:
- gen_op_ld_T0_A0(OT_LONG);
+ gen_op_ld_T0_A0(OT_LONG + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_fildl_ST0, cpu_tmp2);
break;
@@ -4590,7 +4590,7 @@
break;
case 3:
default:
- gen_op_ld_T0_A0(OT_WORD);
+ gen_op_lds_T0_A0(OT_WORD + s->mem_index);
tcg_gen_trunc_tl_i32(cpu_tmp2, cpu_T[0]);
tcg_gen_helper_0_1(helper_fildl_ST0, cpu_tmp2);
break;
@@ -4602,7 +4602,7 @@
case 1:
tcg_gen_helper_1_0(helper_fisttl_ST0, cpu_tmp2);
tcg_gen_extu_i32_tl(cpu_T[0], cpu_tmp2);
- gen_op_st_T0_A0(OT_LONG);
+ gen_op_st_T0_A0(OT_LONG + s->mem_index);
break;
case 2:
tcg_gen_helper_1_0(helper_fisttll_ST0, cpu_tmp1);
@@ -4613,7 +4613,7 @@
default:
tcg_gen_helper_1_0(helper_fistt_ST0, cpu_tmp2);
tcg_gen_extu_i32_tl(cpu_T[0], cpu_tmp2);
- gen_op_st_T0_A0(OT_WORD);
+ gen_op_st_T0_A0(OT_WORD + s->mem_index);
break;
}
tcg_gen_helper_0_0(helper_fpop);
@@ -4623,12 +4623,12 @@
case 0:
tcg_gen_helper_1_0(helper_fsts_ST0, cpu_tmp2);
tcg_gen_extu_i32_tl(cpu_T[0], cpu_tmp2);
- gen_op_st_T0_A0(OT_LONG);
+ gen_op_st_T0_A0(OT_LONG + s->mem_index);
break;
case 1:
tcg_gen_helper_1_0(helper_fistl_ST0, cpu_tmp2);
tcg_gen_extu_i32_tl(cpu_T[0], cpu_tmp2);
- gen_op_st_T0_A0(OT_LONG);
+ gen_op_st_T0_A0(OT_LONG + s->mem_index);
break;
case 2:
tcg_gen_helper_1_0(helper_fstl_ST0, cpu_tmp1);
@@ -4639,7 +4639,7 @@
default:
tcg_gen_helper_1_0(helper_fist_ST0, cpu_tmp2);
tcg_gen_extu_i32_tl(cpu_T[0], cpu_tmp2);
- gen_op_st_T0_A0(OT_WORD);
+ gen_op_st_T0_A0(OT_WORD + s->mem_index);
break;
}
if ((op & 7) == 3)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-12 20:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-12 20:30 [Qemu-devel] [4445] FPU fixes Fabrice Bellard
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).