qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Fabrice Bellard <fabrice@bellard.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4445] FPU fixes
Date: Mon, 12 May 2008 20:30:31 +0000	[thread overview]
Message-ID: <E1JvefH-0001hc-4X@cvs.savannah.gnu.org> (raw)

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)

                 reply	other threads:[~2008-05-12 20:30 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1JvefH-0001hc-4X@cvs.savannah.gnu.org \
    --to=fabrice@bellard.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).