qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 0/4] target/m68k: implement 680x0 FPU (part 3)
@ 2018-02-23 14:59 Laurent Vivier
  2018-02-23 14:59 ` [Qemu-devel] [PATCH v3 1/4] softfloat: export some functions Laurent Vivier
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Laurent Vivier @ 2018-02-23 14:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson, Thomas Huth, Laurent Vivier

Implement fmod, frem, fscale, fgetman and fgetexp.

Instead of using functions of libm (v1 of this series)
and converting between host long double and floatx80 type
the new version (v2) adds new floatx80 functions in softfloat.

All the floatx80 functions are copied from "Previous",
the NeXT Computer Emulator, and written by Andreas Grabher.

v3: Move all new functions to target/m68k/softfloat.c
    Exports needed functions from fpu/softfloat.c

Laurent Vivier (4):
  softfloat: export some functions
  target/m68k: add fmod/frem
  softfloat: use floatx80_infinity in softfloat
  target/m68k: add fscale, fgetman and fgetexp

 fpu/softfloat-specialize.h              |  17 ++-
 fpu/softfloat.c                         | 129 +++++------------
 {fpu => include/fpu}/softfloat-macros.h |  10 +-
 include/fpu/softfloat.h                 | 129 ++++++++++++++++-
 target/m68k/Makefile.objs               |   3 +-
 target/m68k/cpu.h                       |   1 +
 target/m68k/fpu_helper.c                |  50 ++++++-
 target/m68k/helper.h                    |   5 +
 target/m68k/softfloat.c                 | 249 ++++++++++++++++++++++++++++++++
 target/m68k/softfloat.h                 |  29 ++++
 target/m68k/translate.c                 |  15 ++
 11 files changed, 533 insertions(+), 104 deletions(-)
 rename {fpu => include/fpu}/softfloat-macros.h (98%)
 create mode 100644 target/m68k/softfloat.c
 create mode 100644 target/m68k/softfloat.h

-- 
2.14.3

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-02-24 17:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-23 14:59 [Qemu-devel] [PATCH v3 0/4] target/m68k: implement 680x0 FPU (part 3) Laurent Vivier
2018-02-23 14:59 ` [Qemu-devel] [PATCH v3 1/4] softfloat: export some functions Laurent Vivier
2018-02-24  1:26   ` Richard Henderson
2018-02-23 14:59 ` [Qemu-devel] [PATCH v3 2/4] target/m68k: add fmod/frem Laurent Vivier
2018-02-24  1:31   ` Richard Henderson
2018-02-23 14:59 ` [Qemu-devel] [PATCH v3 3/4] softfloat: use floatx80_infinity in softfloat Laurent Vivier
2018-02-24  2:26   ` Richard Henderson
2018-02-24 17:21     ` Laurent Vivier
2018-02-24 17:26       ` Richard Henderson
2018-02-24 17:42         ` Laurent Vivier
2018-02-23 14:59 ` [Qemu-devel] [PATCH v3 4/4] target/m68k: add fscale, fgetman and fgetexp Laurent Vivier
2018-02-24  2:33   ` Richard Henderson

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).