qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v5 05/11] target-i386: exception handling for FP


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v5 05/11] target-i386: exception handling for FPU instructions
Date: Mon, 6 Jul 2015 16:11:31 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1

On 07/06/2015 01:42 PM, Pavel Dovgaluk wrote:
From: Richard Henderson [mailto:address@hidden On Behalf Of Richard Henderson
On 07/06/2015 09:26 AM, Pavel Dovgalyuk wrote:
@@ -1117,33 +1131,33 @@ void helper_fxsave(CPUX86State *env, target_ulong ptr, 
int data64)
       for (i = 0; i < 8; i++) {
           fptag |= (env->fptags[i] << i);
       }
-    cpu_stw_data(env, ptr, env->fpuc);
-    cpu_stw_data(env, ptr + 2, fpus);
-    cpu_stw_data(env, ptr + 4, fptag ^ 0xff);
+    cpu_stw_data_ra(env, ptr, env->fpuc, GETPC());
+    cpu_stw_data_ra(env, ptr + 2, fpus, GETPC());
+    cpu_stw_data_ra(env, ptr + 4, fptag ^ 0xff, GETPC());

helper_fxsave and helper_fxrstor ought to have do_* versions just like you did
for fstenv/fldenv.  (I'm working on a patch set that adds xsave/xrstor support
and I'll need to re-use these functions.)

Why do_* functions should be in this series?
These changes will look orphaned.

No they won't.  They'll be called by helper_fxsave.


r~




reply via email to

[Prev in Thread] Current Thread [Next in Thread]