qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/22] A64 decoder patchset 6: rest of floating point
@ 2013-12-31 13:35 Peter Maydell
  2013-12-31 13:35 ` [Qemu-devel] [PATCH 01/22] softfloat: Fix exception flag handling for float32_to_float16() Peter Maydell
                   ` (22 more replies)
  0 siblings, 23 replies; 42+ messages in thread
From: Peter Maydell @ 2013-12-31 13:35 UTC (permalink / raw)
  To: qemu-devel
  Cc: Tom Musta, Peter Crosthwaite, patches, Aurelien Jarno,
	Michael Matz, Alexander Graf, Claudio Fontana, Dirk Mueller,
	Will Newton, Laurent Desnogues, Alex Bennée, kvmarm,
	Christoffer Dall, Richard Henderson

This patchset completes the FP emulation, leaving us with only
Neon (and CRC32) to go to complete the user-mode emulation.
Most of this is fixing issues and adding new features to softfloat.
(As usual, all Linaro authored softfloat patches are licensed under
either softfloat-2a or softfloat-2b, at your option.)
We need Tom Musta's softfloat patches too, so I have included them
here. Note that two of these still have outstanding issues identified
in code review : see the notes in their commit messages (and I haven't
applied my signed-off-by line to them).

This patchset sits on top of the previous ones; you can find a git tree at
 git://git.linaro.org/people/peter.maydell/qemu-arm.git a64-sixth-set
web UI:
 https://git.linaro.org/people/peter.maydell/qemu-arm.git/shortlog/refs/heads/a64-sixth-set

New Year's Resolution for 2014: avoid using the phrase "yeah,
sure, we can get that done by the end of the year".

thanks
-- PMM

Alexander Graf (1):
  target-arm: A64: Add "Floating-point<->fixed-point" instructions

Peter Maydell (11):
  softfloat: Fix exception flag handling for float32_to_float16()
  softfloat: Add 16 bit integer to float conversions
  softfloat: Only raise Invalid when conversions to int are out of range
  softfloat: Fix factor 2 error for scalbn on denormal inputs
  softfloat: Provide complete set of accessors for fp state
  softfloat: Factor out RoundAndPackFloat16 and
    NormalizeFloat16Subnormal
  softfloat: Add float16 <=> float64 conversion functions
  softfloat: Add support for ties-away rounding
  target-arm: Ignore most exceptions from scalbn when doing fixpoint
    conversion
  target-arm: A64: Add 1-source 32-to-32 and 64-to-64 FP instructions
  target-arm: A64: Add support for FCVT between half, single and double

Tom Musta (5):
  softfloat: Fix float64_to_uint64
  softfloat: Add float32_to_uint64()
  softfloat: Fix float64_to_uint64_round_to_zero
  softfloat: Fix float64_to_uint32
  softfloat: Fix float64_to_uint32_round_to_zero

Will Newton (5):
  softfloat: Add float to 16bit integer conversions.
  target-arm: Prepare VFP_CONV_FIX helpers for A64 uses
  target-arm: Rename A32 VFP conversion helpers
  target-arm: A64: Add extra VFP fixed point conversion helpers
  target-arm: A64: Add floating-point<->integer conversion instructions

 fpu/softfloat.c            | 660 +++++++++++++++++++++++++++++++++++----------
 include/fpu/softfloat.h    |  66 ++++-
 target-arm/helper.c        | 141 ++++++++--
 target-arm/helper.h        |  25 ++
 target-arm/translate-a64.c | 424 ++++++++++++++++++++++++++++-
 target-arm/translate.c     |  24 +-
 6 files changed, 1162 insertions(+), 178 deletions(-)

-- 
1.8.5

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

end of thread, other threads:[~2014-01-02 19:13 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-31 13:35 [Qemu-devel] [PATCH 00/22] A64 decoder patchset 6: rest of floating point Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 01/22] softfloat: Fix exception flag handling for float32_to_float16() Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 02/22] softfloat: Add float to 16bit integer conversions Peter Maydell
2013-12-31 14:18   ` Richard Henderson
2013-12-31 14:22     ` Peter Maydell
2013-12-31 14:29       ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 03/22] softfloat: Add 16 bit integer to float conversions Peter Maydell
2013-12-31 14:21   ` Richard Henderson
2013-12-31 14:27     ` Peter Maydell
2013-12-31 14:35       ` Richard Henderson
2013-12-31 14:45         ` Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 04/22] softfloat: Fix float64_to_uint64 Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 05/22] softfloat: Only raise Invalid when conversions to int are out of range Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 06/22] softfloat: Fix factor 2 error for scalbn on denormal inputs Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 07/22] softfloat: Add float32_to_uint64() Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 08/22] softfloat: Fix float64_to_uint64_round_to_zero Peter Maydell
2013-12-31 14:23   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 09/22] softfloat: Fix float64_to_uint32 Peter Maydell
2013-12-31 14:24   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 10/22] softfloat: Fix float64_to_uint32_round_to_zero Peter Maydell
2013-12-31 14:24   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 11/22] softfloat: Provide complete set of accessors for fp state Peter Maydell
2013-12-31 14:26   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 12/22] softfloat: Factor out RoundAndPackFloat16 and NormalizeFloat16Subnormal Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 13/22] softfloat: Add float16 <=> float64 conversion functions Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 14/22] softfloat: Add support for ties-away rounding Peter Maydell
2013-12-31 14:51   ` Richard Henderson
2013-12-31 14:56     ` Peter Maydell
2013-12-31 14:59       ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 15/22] target-arm: Prepare VFP_CONV_FIX helpers for A64 uses Peter Maydell
2013-12-31 15:00   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 16/22] target-arm: Rename A32 VFP conversion helpers Peter Maydell
2013-12-31 15:04   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 17/22] target-arm: Ignore most exceptions from scalbn when doing fixpoint conversion Peter Maydell
2013-12-31 15:17   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 18/22] target-arm: A64: Add extra VFP fixed point conversion helpers Peter Maydell
2013-12-31 15:18   ` Richard Henderson
2013-12-31 13:35 ` [Qemu-devel] [PATCH 19/22] target-arm: A64: Add "Floating-point<->fixed-point" instructions Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 20/22] target-arm: A64: Add floating-point<->integer conversion instructions Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 21/22] target-arm: A64: Add 1-source 32-to-32 and 64-to-64 FP instructions Peter Maydell
2013-12-31 13:35 ` [Qemu-devel] [PATCH 22/22] target-arm: A64: Add support for FCVT between half, single and double Peter Maydell
2014-01-02 19:12 ` [Qemu-devel] [PATCH 00/22] A64 decoder patchset 6: rest of floating point Tom Musta

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