mbox series

[PULL,00/12] softfloat header updates

Message ID 20190819121709.31597-1-alex.bennee@linaro.org
Headers show
Series softfloat header updates | expand

Message

Alex Bennée Aug. 19, 2019, 12:16 p.m. UTC
The following changes since commit afd760539308a5524accf964107cdb1d54a059e3:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190816' into staging (2019-08-16 17:21:40 +0100)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-softfloat-headers-190819-1

for you to fetch changes up to 5f8ab0004e878a6cd0f50fa8659df4a4f853eea8:

  targets (various): use softfloat-helpers.h where we can (2019-08-19 12:07:13 +0100)

----------------------------------------------------------------
Softfloat updates

  - minor refactoring of constants
  - drop LIT64 macro
  - re-organise header inclusion

----------------------------------------------------------------
Alex Bennée (12):
      fpu: replace LIT64 usage with UINT64_C for specialize constants
      fpu: convert float[16/32/64]_squash_denormal to new modern style
      fpu: use min/max values from stdint.h for integral overflow
      fpu: replace LIT64 with UINT64_C macros
      target/m68k: replace LIT64 with UINT64_C macros
      fpu: remove the LIT64 macro
      fpu: move inline helpers into a separate header
      fpu: make softfloat-macros "self-contained"
      fpu: rename softfloat-specialize.h -> .inc.c
      target/mips: rationalise softfloat includes
      target/riscv: rationalise softfloat includes
      targets (various): use softfloat-helpers.h where we can

 ...oat-specialize.h => softfloat-specialize.inc.c} |  26 +-
 fpu/softfloat.c                                    | 264 ++++++++++-----------
 include/fpu/softfloat-helpers.h                    | 132 +++++++++++
 include/fpu/softfloat-macros.h                     |   8 +-
 include/fpu/softfloat.h                            |  65 +----
 linux-user/mips/cpu_loop.c                         |   1 +
 target/alpha/helper.c                              |   2 +-
 target/m68k/softfloat.c                            |  98 ++++----
 target/microblaze/cpu.c                            |   2 +-
 target/mips/cpu.h                                  |   8 +-
 target/mips/internal.h                             |   7 +
 target/mips/msa_helper.c                           |   1 +
 target/mips/op_helper.c                            |   1 +
 target/riscv/cpu.c                                 |   1 +
 target/riscv/cpu.h                                 |   2 +-
 target/riscv/fpu_helper.c                          |   1 +
 target/s390x/cpu.c                                 |   2 +-
 target/sh4/cpu.c                                   |   3 +-
 target/tricore/helper.c                            |   2 +-
 target/unicore32/cpu.c                             |   1 -
 20 files changed, 342 insertions(+), 285 deletions(-)
 rename fpu/{softfloat-specialize.h => softfloat-specialize.inc.c} (98%)
 create mode 100644 include/fpu/softfloat-helpers.h

-- 
2.20.1

Comments

Peter Maydell Aug. 19, 2019, 3:55 p.m. UTC | #1
On Mon, 19 Aug 2019 at 13:17, Alex Bennée <alex.bennee@linaro.org> wrote:
>

> The following changes since commit afd760539308a5524accf964107cdb1d54a059e3:

>

>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190816' into staging (2019-08-16 17:21:40 +0100)

>

> are available in the Git repository at:

>

>   https://github.com/stsquad/qemu.git tags/pull-softfloat-headers-190819-1

>

> for you to fetch changes up to 5f8ab0004e878a6cd0f50fa8659df4a4f853eea8:

>

>   targets (various): use softfloat-helpers.h where we can (2019-08-19 12:07:13 +0100)

>

> ----------------------------------------------------------------

> Softfloat updates

>

>   - minor refactoring of constants

>   - drop LIT64 macro

>   - re-organise header inclusion

>

> ----------------------------------------------------------------

> Alex Bennée (12):

>       fpu: replace LIT64 usage with UINT64_C for specialize constants

>       fpu: convert float[16/32/64]_squash_denormal to new modern style

>       fpu: use min/max values from stdint.h for integral overflow

>       fpu: replace LIT64 with UINT64_C macros

>       target/m68k: replace LIT64 with UINT64_C macros

>       fpu: remove the LIT64 macro

>       fpu: move inline helpers into a separate header

>       fpu: make softfloat-macros "self-contained"

>       fpu: rename softfloat-specialize.h -> .inc.c

>       target/mips: rationalise softfloat includes

>       target/riscv: rationalise softfloat includes

>       targets (various): use softfloat-helpers.h where we can



Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM