public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org
Cc: Joseph Myers <josmyers@redhat.com>, DJ Delorie <dj@redhat.com>,
	Paul Zimmermann <Paul.Zimmermann@inria.fr>
Subject: [PATCH v2 00/10] Remove the SVID wrapper from CORE-MATH functions.
Date: Thu, 30 Jan 2025 13:28:56 -0300	[thread overview]
Message-ID: <20250130163024.2032523-1-adhemerval.zanella@linaro.org> (raw)

This is most mechanical changes and as from previous similar work,
it requires new symbol versions.

Changes from v1:
* Update symbol versions to 2.42.


Adhemerval Zanella (10):
  benchtests: Add lgammaf_r benchmark
  math: Remove the error handling wrapper from log10f
  math: Remove the error handling wrapper from lgammaf/lgammaf_r
  math: Remove the error handling wrapper from acosf
  math: Remove the error handling wrapper from asinf
  math: Remove the error handling wrapper from acoshf
  math: Remove the error handling wrapper from atan2f
  math: Remove the error handling wrapper from atanhf
  math: Remove the error handling wrapper from coshf
  math: Remove the error handling wrapper from sinhf

 benchtests/Makefile                           |    1 +
 benchtests/lgammaf_r-inputs                   | 1005 +++++++++++++++++
 math/Versions                                 |   12 +
 math/lgamma-compat.h                          |   15 +-
 math/w_acosf.c                                |    8 +
 math/w_acosf_compat.c                         |   10 +-
 math/w_acoshf.c                               |    8 +
 math/w_acoshf_compat.c                        |    6 +-
 math/w_asinf.c                                |    8 +
 math/w_asinf_compat.c                         |   10 +-
 math/w_atan2f.c                               |    8 +
 math/w_atan2f_compat.c                        |   11 +-
 math/w_atanhf.c                               |    8 +
 math/w_atanhf_compat.c                        |   11 +-
 math/w_coshf.c                                |    8 +
 math/w_coshf_compat.c                         |   12 +-
 math/w_lgammaf_compat2.c                      |    2 +-
 math/w_lgammaf_main.c                         |    7 +-
 math/w_log10f.c                               |    8 +
 math/w_log10f_compat.c                        |   10 +-
 math/w_sinhf.c                                |    8 +
 math/w_sinhf_compat.c                         |   11 +-
 sysdeps/ieee754/flt-32/e_acosf.c              |   11 +-
 sysdeps/ieee754/flt-32/e_acoshf.c             |   11 +-
 sysdeps/ieee754/flt-32/e_asinf.c              |   11 +-
 sysdeps/ieee754/flt-32/e_atan2f.c             |   19 +-
 sysdeps/ieee754/flt-32/e_atanhf.c             |   11 +-
 sysdeps/ieee754/flt-32/e_coshf.c              |   11 +-
 sysdeps/ieee754/flt-32/e_lgammaf_r.c          |   12 +-
 sysdeps/ieee754/flt-32/e_log10f.c             |   11 +-
 sysdeps/ieee754/flt-32/e_sinhf.c              |   13 +-
 sysdeps/ieee754/flt-32/w_acosf.c              |    1 +
 sysdeps/ieee754/flt-32/w_acoshf.c             |    1 +
 sysdeps/ieee754/flt-32/w_asinf.c              |    1 +
 sysdeps/ieee754/flt-32/w_atan2f.c             |    1 +
 sysdeps/ieee754/flt-32/w_atanhf.c             |    1 +
 sysdeps/ieee754/flt-32/w_coshf.c              |    1 +
 sysdeps/ieee754/flt-32/w_lgammaf.c            |   17 +
 sysdeps/ieee754/flt-32/w_log10f.c             |    1 +
 sysdeps/ieee754/flt-32/w_sinhf.c              |    1 +
 sysdeps/m68k/m680x0/fpu/w_acosf_compat.c      |    8 +
 sysdeps/m68k/m680x0/fpu/w_asinf_compat.c      |    8 +
 sysdeps/m68k/m680x0/fpu/w_atan2f_compat.c     |    8 +
 sysdeps/m68k/m680x0/fpu/w_atanhf_compat.c     |    8 +
 sysdeps/m68k/m680x0/fpu/w_coshf_compat.c      |    8 +
 sysdeps/m68k/m680x0/fpu/w_log10f_compat.c     |    8 +
 sysdeps/m68k/m680x0/fpu/w_sinhf_compat.c      |    8 +
 sysdeps/mach/hurd/i386/libm.abilist           |   10 +
 sysdeps/unix/sysv/linux/aarch64/libm.abilist  |   10 +
 sysdeps/unix/sysv/linux/alpha/libm.abilist    |   10 +
 sysdeps/unix/sysv/linux/arm/be/libm.abilist   |   10 +
 sysdeps/unix/sysv/linux/arm/le/libm.abilist   |   10 +
 sysdeps/unix/sysv/linux/hppa/libm.abilist     |   10 +
 sysdeps/unix/sysv/linux/i386/libm.abilist     |   10 +
 .../sysv/linux/m68k/coldfire/libm.abilist     |   10 +
 .../unix/sysv/linux/m68k/m680x0/libm.abilist  |    3 +
 .../sysv/linux/microblaze/be/libm.abilist     |   10 +
 .../sysv/linux/microblaze/le/libm.abilist     |   10 +
 .../unix/sysv/linux/mips/mips32/libm.abilist  |   10 +
 .../unix/sysv/linux/mips/mips64/libm.abilist  |   10 +
 .../linux/powerpc/powerpc32/fpu/libm.abilist  |   10 +
 .../powerpc/powerpc32/nofpu/libm.abilist      |   10 +
 .../linux/powerpc/powerpc64/be/libm.abilist   |   10 +
 .../linux/powerpc/powerpc64/le/libm.abilist   |   10 +
 .../unix/sysv/linux/s390/s390-32/libm.abilist |   10 +
 .../unix/sysv/linux/s390/s390-64/libm.abilist |   10 +
 sysdeps/unix/sysv/linux/sh/be/libm.abilist    |   10 +
 sysdeps/unix/sysv/linux/sh/le/libm.abilist    |   10 +
 .../sysv/linux/sparc/sparc32/libm.abilist     |   10 +
 .../sysv/linux/sparc/sparc64/libm.abilist     |   10 +
 .../unix/sysv/linux/x86_64/64/libm.abilist    |   10 +
 .../unix/sysv/linux/x86_64/x32/libm.abilist   |   10 +
 72 files changed, 1575 insertions(+), 46 deletions(-)
 create mode 100644 benchtests/lgammaf_r-inputs
 create mode 100644 math/w_acosf.c
 create mode 100644 math/w_acoshf.c
 create mode 100644 math/w_asinf.c
 create mode 100644 math/w_atan2f.c
 create mode 100644 math/w_atanhf.c
 create mode 100644 math/w_coshf.c
 create mode 100644 math/w_log10f.c
 create mode 100644 math/w_sinhf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_acosf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_acoshf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_asinf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_atan2f.c
 create mode 100644 sysdeps/ieee754/flt-32/w_atanhf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_coshf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_lgammaf.c
 create mode 100644 sysdeps/ieee754/flt-32/w_log10f.c
 create mode 100644 sysdeps/ieee754/flt-32/w_sinhf.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_acosf_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_asinf_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_atan2f_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_atanhf_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_coshf_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_log10f_compat.c
 create mode 100644 sysdeps/m68k/m680x0/fpu/w_sinhf_compat.c

-- 
2.43.0


             reply	other threads:[~2025-01-30 16:30 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-30 16:28 Adhemerval Zanella [this message]
2025-01-30 16:28 ` [PATCH v2 01/10] benchtests: Add lgammaf_r benchmark Adhemerval Zanella
2025-01-30 16:28 ` [PATCH v2 02/10] math: Remove the error handling wrapper from log10f Adhemerval Zanella
2025-01-30 16:28 ` [PATCH v2 03/10] math: Remove the error handling wrapper from lgammaf/lgammaf_r Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 04/10] math: Remove the error handling wrapper from acosf Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 05/10] math: Remove the error handling wrapper from asinf Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 06/10] math: Remove the error handling wrapper from acoshf Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 07/10] math: Remove the error handling wrapper from atan2f Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 08/10] math: Remove the error handling wrapper from atanhf Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 09/10] math: Remove the error handling wrapper from coshf Adhemerval Zanella
2025-01-30 16:29 ` [PATCH v2 10/10] math: Remove the error handling wrapper from sinhf Adhemerval Zanella

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250130163024.2032523-1-adhemerval.zanella@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=Paul.Zimmermann@inria.fr \
    --cc=dj@redhat.com \
    --cc=josmyers@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).