Re: [Qemu-devel] [PATCH v2 1/8] target-i386: x87 exception pointers using TCG.

2014-08-29 Thread Richard Henderson
On 08/28/2014 01:44 PM, Jaume Marti Farriol wrote: > -void cpu_x86_fsave(CPUX86State *s, target_ulong ptr, int data32); > -void cpu_x86_frstor(CPUX86State *s, target_ulong ptr, int data32); > +void cpu_x86_fsave(CPUX86State *s, target_ulong ptr); > +void cpu_x86_frstor(CPUX86State *s, target_ulong

[Qemu-devel] [PATCH v2 1/8] target-i386: x87 exception pointers using TCG.

2014-08-28 Thread Jaume Marti Farriol
Hello, In this patch I just add new fields in the CPUX86State struct to store the exception pointers. Also I remove unnecessary parameters from cpu_x86_fsave and cpu_x86_frstor helpers. Best regards, Jaume cpu.h |9 + 1 file changed, 5 insertions(+), 4 deletions(-) signed-off: ja