All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v3 00/15] Hardfloat + softfloat maintainers update and gitdm
@ 2018-12-17 10:56 Alex Bennée
  2018-12-17 10:56 ` [Qemu-devel] [PULL v3 01/15] contrib: add a basic gitdm config Alex Bennée
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Alex Bennée @ 2018-12-17 10:56 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, Alex Bennée

The following changes since commit b019f5e5375224a003f260c89d424fea7767b7fc:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-misc-20181214' into staging (2018-12-16 16:32:43 +0000)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-hardfloat-and-gitdm-171218-3

for you to fetch changes up to d9fe9db943d4e855a75424978d7ab87fd54edd98:

  hardfloat: implement float32/64 comparison (2018-12-17 08:25:25 +0000)

----------------------------------------------------------------
Hardfloat + maintainers and gitdm

----------------------------------------------------------------
Alex Bennée (2):
      contrib: add a basic gitdm config
      MAINTAINERS: update status of FPU emulation

Emilio G. Cota (13):
      fp-test: pick TARGET_ARM to get its specialization
      softfloat: add float{32,64}_is_{de,}normal
      target/tricore: use float32_is_denormal
      softfloat: rename canonicalize to sf_canonicalize
      softfloat: add float{32,64}_is_zero_or_normal
      tests/fp: add fp-bench
      fpu: introduce hardfloat
      hardfloat: implement float32/64 addition and subtraction
      hardfloat: implement float32/64 multiplication
      hardfloat: implement float32/64 division
      hardfloat: implement float32/64 fused multiply-add
      hardfloat: implement float32/64 square root
      hardfloat: implement float32/64 comparison

 MAINTAINERS                         |   4 +-
 contrib/gitdm/aliases               |  27 ++
 contrib/gitdm/domain-map            |  19 +
 contrib/gitdm/filetypes.txt         | 146 ++++++
 contrib/gitdm/group-map-academics   |  14 +
 contrib/gitdm/group-map-cadence     |   3 +
 contrib/gitdm/group-map-codeweavers |   1 +
 contrib/gitdm/group-map-ibm         |   6 +
 contrib/gitdm/group-map-individuals |  10 +
 contrib/gitdm/group-map-redhat      |   7 +
 contrib/gitdm/group-map-wavecomp    |  18 +
 fpu/softfloat.c                     | 865 ++++++++++++++++++++++++++++++++++--
 gitdm.config                        |  50 +++
 include/fpu/softfloat.h             |  30 ++
 target/tricore/fpu_helper.c         |   9 +-
 tests/fp/.gitignore                 |   1 +
 tests/fp/Makefile                   |   8 +-
 tests/fp/fp-bench.c                 | 630 ++++++++++++++++++++++++++
 18 files changed, 1791 insertions(+), 57 deletions(-)
 create mode 100644 contrib/gitdm/aliases
 create mode 100644 contrib/gitdm/domain-map
 create mode 100644 contrib/gitdm/filetypes.txt
 create mode 100644 contrib/gitdm/group-map-academics
 create mode 100644 contrib/gitdm/group-map-cadence
 create mode 100644 contrib/gitdm/group-map-codeweavers
 create mode 100644 contrib/gitdm/group-map-ibm
 create mode 100644 contrib/gitdm/group-map-individuals
 create mode 100644 contrib/gitdm/group-map-redhat
 create mode 100644 contrib/gitdm/group-map-wavecomp
 create mode 100644 gitdm.config
 create mode 100644 tests/fp/fp-bench.c

-- 
2.17.1

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

end of thread, other threads:[~2018-12-18 14:38 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-17 10:56 [Qemu-devel] [PULL v3 00/15] Hardfloat + softfloat maintainers update and gitdm Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 01/15] contrib: add a basic gitdm config Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 02/15] MAINTAINERS: update status of FPU emulation Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 03/15] fp-test: pick TARGET_ARM to get its specialization Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 04/15] softfloat: add float{32, 64}_is_{de, }normal Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 05/15] target/tricore: use float32_is_denormal Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 06/15] softfloat: rename canonicalize to sf_canonicalize Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 07/15] softfloat: add float{32, 64}_is_zero_or_normal Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 08/15] tests/fp: add fp-bench Alex Bennée
2018-12-18  1:47   ` Emilio G. Cota
2018-12-18 10:53     ` Alex Bennée
2018-12-18 14:38     ` Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 09/15] fpu: introduce hardfloat Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 10/15] hardfloat: implement float32/64 addition and subtraction Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 11/15] hardfloat: implement float32/64 multiplication Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 12/15] hardfloat: implement float32/64 division Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 13/15] hardfloat: implement float32/64 fused multiply-add Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 14/15] hardfloat: implement float32/64 square root Alex Bennée
2018-12-17 10:56 ` [Qemu-devel] [PULL v3 15/15] hardfloat: implement float32/64 comparison Alex Bennée
2018-12-18 14:08 ` [Qemu-devel] [PULL v3 00/15] Hardfloat + softfloat maintainers update and gitdm Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.