public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v3 0/7] Enable float128 on powerpc64le
@ 2017-06-23 12:33 Gabriel F. T. Gomes
  2017-06-23 12:33 ` [PATCH v3 3/7] Add libio-mtsafe flags to the build of strfromf128 Gabriel F. T. Gomes
                   ` (7 more replies)
  0 siblings, 8 replies; 83+ messages in thread
From: Gabriel F. T. Gomes @ 2017-06-23 12:33 UTC (permalink / raw)
  To: libc-alpha

Changes since the previous version in each patch

Gabriel F. T. Gomes (6):
  Include libc-header-start.h in include/float.h
  Prepare the manual to display math errors for float128 functions
  Add libio-mtsafe flags to the build of strfromf128
  Update string to float128 functions to use bits/types/locale_t.h
  Document _FloatN and _FloatNx versions of math functions
  powerpc64le: Check for compiler features for float128

Paul E. Murphy (1):
  powerpc64le: Enable float128

 NEWS                                               |  94 ++++
 include/float.h                                    |   3 +
 manual/arith.texi                                  | 286 ++++++++--
 manual/install.texi                                |   4 +
 manual/libm-err-tab.pl                             |   7 +-
 manual/math.texi                                   | 287 +++++++++-
 sysdeps/ieee754/float128/Makefile                  |   4 +
 sysdeps/ieee754/float128/strtof128_l.c             |   2 +-
 sysdeps/ieee754/float128/wcstof128.c               |   2 +-
 sysdeps/ieee754/float128/wcstof128_l.c             |   2 +-
 sysdeps/powerpc/bits/floatn.h                      |  92 ++++
 sysdeps/powerpc/fpu/libm-test-ulps                 | 578 +++++++++++++++++++++
 sysdeps/powerpc/fpu/math_private.h                 |  10 +
 sysdeps/powerpc/powerpc64le/Implies-before         |   1 +
 sysdeps/powerpc/powerpc64le/Makefile               |  45 ++
 sysdeps/powerpc/powerpc64le/configure              |  45 ++
 sysdeps/powerpc/powerpc64le/configure.ac           |  32 ++
 sysdeps/powerpc/powerpc64le/fpu/e_sqrtf128.c       |  51 ++
 sysdeps/powerpc/powerpc64le/fpu/sfp-machine.h      | 115 ++++
 .../powerpc/powerpc64le/power9/fpu/e_sqrtf128.c    |  36 ++
 .../sysv/linux/powerpc/powerpc64/libc-le.abilist   |   7 +
 .../sysv/linux/powerpc/powerpc64/libm-le.abilist   | 138 +++++
 .../sysv/linux/powerpc/powerpc64le/float128-abi.h  |   2 +
 23 files changed, 1784 insertions(+), 59 deletions(-)
 create mode 100644 sysdeps/powerpc/bits/floatn.h
 create mode 100644 sysdeps/powerpc/powerpc64le/Implies-before
 create mode 100644 sysdeps/powerpc/powerpc64le/Makefile
 create mode 100644 sysdeps/powerpc/powerpc64le/configure
 create mode 100644 sysdeps/powerpc/powerpc64le/configure.ac
 create mode 100644 sysdeps/powerpc/powerpc64le/fpu/e_sqrtf128.c
 create mode 100644 sysdeps/powerpc/powerpc64le/fpu/sfp-machine.h
 create mode 100644 sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c
 create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64le/float128-abi.h

-- 
2.4.11

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

end of thread, other threads:[~2017-08-04 13:18 UTC | newest]

Thread overview: 83+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-23 12:33 [PATCH v3 0/7] Enable float128 on powerpc64le Gabriel F. T. Gomes
2017-06-23 12:33 ` [PATCH v3 3/7] Add libio-mtsafe flags to the build of strfromf128 Gabriel F. T. Gomes
2017-06-23 12:59   ` Joseph Myers
2017-06-23 12:33 ` [PATCH v3 1/7] Include libc-header-start.h in include/float.h Gabriel F. T. Gomes
2017-06-23 12:34 ` [PATCH v3 5/7] Document _FloatN and _FloatNx versions of math functions Gabriel F. T. Gomes
2017-06-23 13:11   ` Joseph Myers
2017-06-23 12:34 ` [PATCH v3 2/7] Prepare the manual to display math errors for float128 functions Gabriel F. T. Gomes
2017-06-23 12:34 ` [PATCH v3 4/7] Update string to float128 functions to use bits/types/locale_t.h Gabriel F. T. Gomes
2017-06-23 12:57   ` Gabriel F. T. Gomes
2017-06-23 12:34 ` [PATCH v3 6/7] powerpc64le: Check for compiler features for float128 Gabriel F. T. Gomes
2017-06-23 16:37   ` Joseph Myers
2017-06-23 20:47     ` Steven Munroe
2017-06-23 12:34 ` [PATCH v3 7/7] powerpc64le: Enable float128 Gabriel F. T. Gomes
2017-06-23 13:18   ` Joseph Myers
2017-06-26 17:11   ` Tulio Magno Quites Machado Filho
2017-06-26 23:02     ` Joseph Myers
2017-06-27  3:29       ` Alan Modra
2017-06-27  7:05       ` Florian Weimer
2017-06-27 15:00         ` Peter Bergner
2017-06-27 18:42           ` Florian Weimer
2017-06-27 18:51             ` Peter Bergner
2017-06-27 19:17               ` Florian Weimer
2017-06-27 19:33                 ` Carlos Eduardo Seo
2017-06-27 19:34                 ` Peter Bergner
2017-06-27 21:41                   ` Florian Weimer
2017-06-28 16:30                     ` Szabolcs Nagy
2017-06-28 17:08                       ` Peter Bergner
2017-06-28 17:15                         ` Szabolcs Nagy
2017-07-04  6:38         ` ppc64le: getauxval call from IFUNC resolver Florian Weimer
2017-07-05 17:25           ` [RFC] Fix float128 IFUNC relocations on ppc64le [BZ #21707] Tulio Magno Quites Machado Filho
2017-07-05 19:19             ` Florian Weimer
2017-07-05 19:25               ` Carlos O'Donell
2017-07-05 19:44                 ` Florian Weimer
2017-07-05 20:12                   ` Joseph Myers
2017-07-06  6:19                     ` Florian Weimer
2017-07-06 14:04                       ` Carlos O'Donell
2017-07-07 10:08                         ` Florian Weimer
2017-07-08 18:31                           ` [PATCHv2] " Tulio Magno Quites Machado Filho
2017-07-08 19:17                             ` Florian Weimer
2017-07-08 23:18                               ` Tulio Magno Quites Machado Filho
2017-07-08 19:30                             ` H.J. Lu
2017-07-08 23:12                               ` Tulio Magno Quites Machado Filho
2017-07-08 23:59                                 ` H.J. Lu
2017-07-09 14:59                                   ` [PATCH, 2.27] x86-64: Use IFUNC memcpy and mempcpy in libc.a H.J. Lu
2017-08-02 15:53                                     ` H.J. Lu
2017-08-02 18:27                                       ` Florian Weimer
2017-08-02 18:36                                         ` H.J. Lu
2017-08-02 18:51                                           ` Florian Weimer
2017-08-04 13:18                                             ` H.J. Lu
2017-07-09 16:28                             ` [PATCHv2] Fix float128 IFUNC relocations on ppc64le [BZ #21707] Nix
2017-07-10 15:28                               ` Tulio Magno Quites Machado Filho
2017-07-10 15:37                                 ` Nix
2017-07-12 13:45                                   ` Nix
2017-07-10 10:09                             ` Joseph Myers
2017-07-10 18:02                               ` Tulio Magno Quites Machado Filho
2017-07-10 15:04                             ` Carlos O'Donell
2017-07-12 18:59                               ` [PATCHv3] powerpc: Fix float128 IFUNC relocations " Tulio Magno Quites Machado Filho
2017-07-12 19:42                                 ` H.J. Lu
2017-07-12 20:58                                 ` Carlos O'Donell
2017-07-13 14:29                                   ` Tulio Magno Quites Machado Filho
2017-07-13 14:33                                     ` Carlos O'Donell
2017-07-17 14:06                                       ` [PATCHv4] " Tulio Magno Quites Machado Filho
2017-07-17 15:46                                         ` Carlos O'Donell
2017-07-17 16:27                                           ` Tulio Magno Quites Machado Filho
2017-07-05 19:21             ` [RFC] Fix float128 IFUNC relocations on ppc64le " Carlos O'Donell
2017-07-08 18:46               ` Tulio Magno Quites Machado Filho
2017-07-05 19:40             ` Gabriel F. T. Gomes
2017-07-05 20:32               ` Tulio Magno Quites Machado Filho
2017-07-07 22:19           ` ppc64le: getauxval call from IFUNC resolver Peter Bergner
2017-07-10 19:59             ` Peter Bergner
2017-07-20 14:48               ` Peter Bergner
2017-06-27 17:46       ` [PATCH v3 7/7] powerpc64le: Enable float128 Gabriel F. T. Gomes
2017-06-27  7:20   ` Andreas Schwab
2017-06-27  9:24   ` Andreas Schwab
2017-06-27 13:15   ` Andreas Schwab
2017-06-28  0:54     ` [PATCH] powerpc64le: Iterate over all object suffixes when appending -mfloat128 Gabriel F. T. Gomes
2017-06-28  7:19       ` Andreas Schwab
2017-06-28 11:58         ` Gabriel F. T. Gomes
2017-06-28  7:22       ` Andreas Schwab
2017-07-10 10:22       ` Joseph Myers
2017-07-11 14:07         ` Tulio Magno Quites Machado Filho
2017-07-11 17:21           ` Gabriel F. T. Gomes
2017-06-23 12:59 ` [PATCH v3 0/7] Enable float128 on powerpc64le Joseph Myers

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 read-only IMAP folder(s) and NNTP newsgroup(s).