qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 0/7] target-m68k: implement 680x0 FPU


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH 0/7] target-m68k: implement 680x0 FPU
Date: Wed, 18 Jan 2017 13:42:05 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0

On 01/18/2017 01:05 PM, Laurent Vivier wrote:
This series modifies the original ColdFire FPU implementation
to use floatx80 instead of float64 internally as this
is the native datatype for 680x0. I didn't keep the float64
type for ColdFire, but if someone thinks it's required I
can update this series in this way.

I think at minimum you'll need to round to float64. But this control is also needed for 68040 FPU, so probably you can use the same helpers.

I'm thinking something like

void helper_foo_d(args);
{
  ...
  r80 = floatx80_foo(args);
  r64 = floatx80_to_float64(r80, &env->fp_status);
  r80 = float64_to_floatx80(r64, &env->fp_status);
  [store r80]
  ...
}

since iirc 68040 has fadd.d, fadd.s to go with fadd.


r~



reply via email to

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