2010-10-14 02:27:03 +00:00
|
|
|
/* Compute x * y + z as ternary operation.
|
2023-01-06 21:08:04 +00:00
|
|
|
Copyright (C) 2010-2023 Free Software Foundation, Inc.
|
2010-10-14 02:27:03 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2010-10-14 02:27:03 +00:00
|
|
|
|
2021-09-15 22:57:35 +00:00
|
|
|
#define NO_MATH_REDIRECT
|
2010-10-14 02:27:03 +00:00
|
|
|
#include <float.h>
|
Add narrowing fma functions
This patch adds the narrowing fused multiply-add functions from TS
18661-1 / TS 18661-3 / C2X to glibc's libm: ffma, ffmal, dfmal,
f32fmaf64, f32fmaf32x, f32xfmaf64 for all configurations; f32fmaf64x,
f32fmaf128, f64fmaf64x, f64fmaf128, f32xfmaf64x, f32xfmaf128,
f64xfmaf128 for configurations with _Float64x and _Float128;
__f32fmaieee128 and __f64fmaieee128 aliases in the powerpc64le case
(for calls to ffmal and dfmal when long double is IEEE binary128).
Corresponding tgmath.h macro support is also added.
The changes are mostly similar to those for the other narrowing
functions previously added, especially that for sqrt, so the
description of those generally applies to this patch as well. As with
sqrt, I reused the same test inputs in auto-libm-test-in as for
non-narrowing fma rather than adding extra or separate inputs for
narrowing fma. The tests in libm-test-narrow-fma.inc also follow
those for non-narrowing fma.
The non-narrowing fma has a known bug (bug 6801) that it does not set
errno on errors (overflow, underflow, Inf * 0, Inf - Inf). Rather
than fixing this or having narrowing fma check for errors when
non-narrowing does not (complicating the cases when narrowing fma can
otherwise be an alias for a non-narrowing function), this patch does
not attempt to check for errors from narrowing fma and set errno; the
CHECK_NARROW_FMA macro is still present, but as a placeholder that
does nothing, and this missing errno setting is considered to be
covered by the existing bug rather than needing a separate open bug.
missing-errno annotations are duly added to many of the
auto-libm-test-in test inputs for fma.
This completes adding all the new functions from TS 18661-1 to glibc,
so will be followed by corresponding stdc-predef.h changes to define
__STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__, as the support
for TS 18661-1 will be at a similar level to that for C standard
floating-point facilities up to C11 (pragmas not implemented, but
library functions done). (There are still further changes to be done
to implement changes to the types of fromfp functions from N2548.)
Tested as followed: natively with the full glibc testsuite for x86_64
(GCC 11, 7, 6) and x86 (GCC 11); with build-many-glibcs.py with GCC
11, 7 and 6; cross testing of math/ tests for powerpc64le, powerpc32
hard float, mips64 (all three ABIs, both hard and soft float). The
different GCC versions are to cover the different cases in tgmath.h
and tgmath.h tests properly (GCC 6 has _Float* only as typedefs in
glibc headers, GCC 7 has proper _Float* support, GCC 8 adds
__builtin_tgmath).
2021-09-22 21:25:31 +00:00
|
|
|
#define dfmal __hide_dfmal
|
|
|
|
#define f32xfmaf64 __hide_f32xfmaf64
|
2010-10-14 02:27:03 +00:00
|
|
|
#include <math.h>
|
Add narrowing fma functions
This patch adds the narrowing fused multiply-add functions from TS
18661-1 / TS 18661-3 / C2X to glibc's libm: ffma, ffmal, dfmal,
f32fmaf64, f32fmaf32x, f32xfmaf64 for all configurations; f32fmaf64x,
f32fmaf128, f64fmaf64x, f64fmaf128, f32xfmaf64x, f32xfmaf128,
f64xfmaf128 for configurations with _Float64x and _Float128;
__f32fmaieee128 and __f64fmaieee128 aliases in the powerpc64le case
(for calls to ffmal and dfmal when long double is IEEE binary128).
Corresponding tgmath.h macro support is also added.
The changes are mostly similar to those for the other narrowing
functions previously added, especially that for sqrt, so the
description of those generally applies to this patch as well. As with
sqrt, I reused the same test inputs in auto-libm-test-in as for
non-narrowing fma rather than adding extra or separate inputs for
narrowing fma. The tests in libm-test-narrow-fma.inc also follow
those for non-narrowing fma.
The non-narrowing fma has a known bug (bug 6801) that it does not set
errno on errors (overflow, underflow, Inf * 0, Inf - Inf). Rather
than fixing this or having narrowing fma check for errors when
non-narrowing does not (complicating the cases when narrowing fma can
otherwise be an alias for a non-narrowing function), this patch does
not attempt to check for errors from narrowing fma and set errno; the
CHECK_NARROW_FMA macro is still present, but as a placeholder that
does nothing, and this missing errno setting is considered to be
covered by the existing bug rather than needing a separate open bug.
missing-errno annotations are duly added to many of the
auto-libm-test-in test inputs for fma.
This completes adding all the new functions from TS 18661-1 to glibc,
so will be followed by corresponding stdc-predef.h changes to define
__STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__, as the support
for TS 18661-1 will be at a similar level to that for C standard
floating-point facilities up to C11 (pragmas not implemented, but
library functions done). (There are still further changes to be done
to implement changes to the types of fromfp functions from N2548.)
Tested as followed: natively with the full glibc testsuite for x86_64
(GCC 11, 7, 6) and x86 (GCC 11); with build-many-glibcs.py with GCC
11, 7 and 6; cross testing of math/ tests for powerpc64le, powerpc32
hard float, mips64 (all three ABIs, both hard and soft float). The
different GCC versions are to cover the different cases in tgmath.h
and tgmath.h tests properly (GCC 6 has _Float* only as typedefs in
glibc headers, GCC 7 has proper _Float* support, GCC 8 adds
__builtin_tgmath).
2021-09-22 21:25:31 +00:00
|
|
|
#undef dfmal
|
|
|
|
#undef f32xfmaf64
|
2010-10-14 02:27:03 +00:00
|
|
|
#include <fenv.h>
|
|
|
|
#include <ieee754.h>
|
2018-05-11 15:11:38 +00:00
|
|
|
#include <math-barriers.h>
|
Do not include fenv_private.h in math_private.h.
Continuing the clean-up related to the catch-all math_private.h
header, this patch stops math_private.h from including fenv_private.h.
Instead, fenv_private.h is included directly from those users of
math_private.h that also used interfaces from fenv_private.h. No
attempt is made to remove unused includes of math_private.h, but that
is a natural followup.
(However, since math_private.h sometimes defines optimized versions of
math.h interfaces or __* variants thereof, as well as defining its own
interfaces, I think it might make sense to get all those optimized
versions included from include/math.h, not requiring a separate header
at all, before eliminating unused math_private.h includes - that
avoids a file quietly becoming less-optimized if someone adds a call
to one of those interfaces without restoring a math_private.h include
to that file.)
There is still a pitfall that if code uses plain fe* and __fe*
interfaces, but only includes fenv.h and not fenv_private.h or (before
this patch) math_private.h, it will compile on platforms with
exceptions and rounding modes but not get the optimized versions (and
possibly not compile) on platforms without exception and rounding mode
support, so making it easy to break the build for such platforms
accidentally.
I think it would be most natural to move the inlines / macros for fe*
and __fe* in the case of no exceptions and rounding modes into
include/fenv.h, so that all code including fenv.h with _ISOMAC not
defined automatically gets them. Then fenv_private.h would be purely
the header for the libc_fe*, SET_RESTORE_ROUND etc. internal
interfaces and the risk of breaking the build on other platforms than
the one you tested on because of a missing fenv_private.h include
would be much reduced (and there would be some unused fenv_private.h
includes to remove along with unused math_private.h includes).
Tested for x86_64 and x86, and tested with build-many-glibcs.py that
installed stripped shared libraries are unchanged by this patch.
* sysdeps/generic/math_private.h: Do not include <fenv_private.h>.
* math/fromfp.h: Include <fenv_private.h>.
* math/math-narrow.h: Likewise.
* math/s_cexp_template.c: Likewise.
* math/s_csin_template.c: Likewise.
* math/s_csinh_template.c: Likewise.
* math/s_ctan_template.c: Likewise.
* math/s_ctanh_template.c: Likewise.
* math/s_iseqsig_template.c: Likewise.
* math/w_acos_compat.c: Likewise.
* math/w_acosf_compat.c: Likewise.
* math/w_acosl_compat.c: Likewise.
* math/w_asin_compat.c: Likewise.
* math/w_asinf_compat.c: Likewise.
* math/w_asinl_compat.c: Likewise.
* math/w_ilogb_template.c: Likewise.
* math/w_j0_compat.c: Likewise.
* math/w_j0f_compat.c: Likewise.
* math/w_j0l_compat.c: Likewise.
* math/w_j1_compat.c: Likewise.
* math/w_j1f_compat.c: Likewise.
* math/w_j1l_compat.c: Likewise.
* math/w_jn_compat.c: Likewise.
* math/w_jnf_compat.c: Likewise.
* math/w_llogb_template.c: Likewise.
* math/w_log10_compat.c: Likewise.
* math/w_log10f_compat.c: Likewise.
* math/w_log10l_compat.c: Likewise.
* math/w_log2_compat.c: Likewise.
* math/w_log2f_compat.c: Likewise.
* math/w_log2l_compat.c: Likewise.
* math/w_log_compat.c: Likewise.
* math/w_logf_compat.c: Likewise.
* math/w_logl_compat.c: Likewise.
* sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
* sysdeps/aarch64/fpu/fesetround.c: Likewise.
* sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
* sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
* sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
* sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
* sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
* sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
* sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
* sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
* sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
* sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
* sysdeps/ieee754/dbl-64/gamma_product.c: Likewise.
* sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
* sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
* sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
* sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
* sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
* sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
* sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
* sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
* sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
* sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
* sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
* sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
* sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
* sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
* sysdeps/ieee754/dbl-64/x2y2m1.c: Likewise.
* sysdeps/ieee754/float128/float128_private.h: Likewise.
* sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
* sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
* sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
* sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
* sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
* sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
* sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
* sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
* sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
* sysdeps/ieee754/k_standardl.c: Likewise.
* sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
* sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
* sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
* sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
* sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
* sysdeps/ieee754/ldbl-128/lgamma_negl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
* sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
* sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
* sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
* sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
* sysdeps/ieee754/ldbl-96/lgamma_negl.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
* sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
* sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
* sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
* sysdeps/riscv/rvd/s_finite.c: Likewise.
* sysdeps/riscv/rvd/s_fmax.c: Likewise.
* sysdeps/riscv/rvd/s_fmin.c: Likewise.
* sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
* sysdeps/riscv/rvd/s_isinf.c: Likewise.
* sysdeps/riscv/rvd/s_isnan.c: Likewise.
* sysdeps/riscv/rvd/s_issignaling.c: Likewise.
* sysdeps/riscv/rvf/fegetround.c: Likewise.
* sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
* sysdeps/riscv/rvf/fesetenv.c: Likewise.
* sysdeps/riscv/rvf/fesetround.c: Likewise.
* sysdeps/riscv/rvf/feupdateenv.c: Likewise.
* sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
* sysdeps/riscv/rvf/ftestexcept.c: Likewise.
* sysdeps/riscv/rvf/s_ceilf.c: Likewise.
* sysdeps/riscv/rvf/s_finitef.c: Likewise.
* sysdeps/riscv/rvf/s_floorf.c: Likewise.
* sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
* sysdeps/riscv/rvf/s_fminf.c: Likewise.
* sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
* sysdeps/riscv/rvf/s_isinff.c: Likewise.
* sysdeps/riscv/rvf/s_isnanf.c: Likewise.
* sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
* sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
* sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
* sysdeps/riscv/rvf/s_roundf.c: Likewise.
* sysdeps/riscv/rvf/s_truncf.c: Likewise.
2018-09-03 21:09:04 +00:00
|
|
|
#include <fenv_private.h>
|
2017-10-04 20:32:48 +00:00
|
|
|
#include <libm-alias-double.h>
|
Add narrowing fma functions
This patch adds the narrowing fused multiply-add functions from TS
18661-1 / TS 18661-3 / C2X to glibc's libm: ffma, ffmal, dfmal,
f32fmaf64, f32fmaf32x, f32xfmaf64 for all configurations; f32fmaf64x,
f32fmaf128, f64fmaf64x, f64fmaf128, f32xfmaf64x, f32xfmaf128,
f64xfmaf128 for configurations with _Float64x and _Float128;
__f32fmaieee128 and __f64fmaieee128 aliases in the powerpc64le case
(for calls to ffmal and dfmal when long double is IEEE binary128).
Corresponding tgmath.h macro support is also added.
The changes are mostly similar to those for the other narrowing
functions previously added, especially that for sqrt, so the
description of those generally applies to this patch as well. As with
sqrt, I reused the same test inputs in auto-libm-test-in as for
non-narrowing fma rather than adding extra or separate inputs for
narrowing fma. The tests in libm-test-narrow-fma.inc also follow
those for non-narrowing fma.
The non-narrowing fma has a known bug (bug 6801) that it does not set
errno on errors (overflow, underflow, Inf * 0, Inf - Inf). Rather
than fixing this or having narrowing fma check for errors when
non-narrowing does not (complicating the cases when narrowing fma can
otherwise be an alias for a non-narrowing function), this patch does
not attempt to check for errors from narrowing fma and set errno; the
CHECK_NARROW_FMA macro is still present, but as a placeholder that
does nothing, and this missing errno setting is considered to be
covered by the existing bug rather than needing a separate open bug.
missing-errno annotations are duly added to many of the
auto-libm-test-in test inputs for fma.
This completes adding all the new functions from TS 18661-1 to glibc,
so will be followed by corresponding stdc-predef.h changes to define
__STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__, as the support
for TS 18661-1 will be at a similar level to that for C standard
floating-point facilities up to C11 (pragmas not implemented, but
library functions done). (There are still further changes to be done
to implement changes to the types of fromfp functions from N2548.)
Tested as followed: natively with the full glibc testsuite for x86_64
(GCC 11, 7, 6) and x86 (GCC 11); with build-many-glibcs.py with GCC
11, 7 and 6; cross testing of math/ tests for powerpc64le, powerpc32
hard float, mips64 (all three ABIs, both hard and soft float). The
different GCC versions are to cover the different cases in tgmath.h
and tgmath.h tests properly (GCC 6 has _Float* only as typedefs in
glibc headers, GCC 7 has proper _Float* support, GCC 8 adds
__builtin_tgmath).
2021-09-22 21:25:31 +00:00
|
|
|
#include <math-narrow-alias.h>
|
2012-10-31 13:01:17 +00:00
|
|
|
#include <tininess.h>
|
2020-05-29 22:58:33 +00:00
|
|
|
#include <math-use-builtins.h>
|
2010-10-14 02:27:03 +00:00
|
|
|
|
|
|
|
/* This implementation uses rounding to odd to avoid problems with
|
|
|
|
double rounding. See a paper by Boldo and Melquiond:
|
|
|
|
http://www.lri.fr/~melquion/doc/08-tc.pdf */
|
|
|
|
|
|
|
|
double
|
|
|
|
__fma (double x, double y, double z)
|
|
|
|
{
|
2020-05-29 22:58:33 +00:00
|
|
|
#if USE_FMA_BUILTIN
|
|
|
|
return __builtin_fma (x, y, z);
|
|
|
|
#else
|
|
|
|
/* Use generic implementation. */
|
2010-10-14 02:27:03 +00:00
|
|
|
union ieee754_double u, v, w;
|
|
|
|
int adjust = 0;
|
|
|
|
u.d = x;
|
|
|
|
v.d = y;
|
|
|
|
w.d = z;
|
|
|
|
if (__builtin_expect (u.ieee.exponent + v.ieee.exponent
|
|
|
|
>= 0x7ff + IEEE754_DOUBLE_BIAS - DBL_MANT_DIG, 0)
|
|
|
|
|| __builtin_expect (u.ieee.exponent >= 0x7ff - DBL_MANT_DIG, 0)
|
|
|
|
|| __builtin_expect (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG, 0)
|
2010-10-15 19:25:14 +00:00
|
|
|
|| __builtin_expect (w.ieee.exponent >= 0x7ff - DBL_MANT_DIG, 0)
|
|
|
|
|| __builtin_expect (u.ieee.exponent + v.ieee.exponent
|
|
|
|
<= IEEE754_DOUBLE_BIAS + DBL_MANT_DIG, 0))
|
2010-10-14 02:27:03 +00:00
|
|
|
{
|
2010-10-15 19:26:06 +00:00
|
|
|
/* If z is Inf, but x and y are finite, the result should be
|
|
|
|
z rather than NaN. */
|
|
|
|
if (w.ieee.exponent == 0x7ff
|
|
|
|
&& u.ieee.exponent != 0x7ff
|
2011-10-18 19:11:31 +00:00
|
|
|
&& v.ieee.exponent != 0x7ff)
|
2010-10-15 19:26:06 +00:00
|
|
|
return (z + x) + y;
|
2012-10-01 08:30:06 +00:00
|
|
|
/* If z is zero and x are y are nonzero, compute the result
|
|
|
|
as x * y to avoid the wrong sign of a zero result if x * y
|
|
|
|
underflows to 0. */
|
|
|
|
if (z == 0 && x != 0 && y != 0)
|
|
|
|
return x * y;
|
2012-11-04 19:26:02 +00:00
|
|
|
/* If x or y or z is Inf/NaN, or if x * y is zero, compute as
|
|
|
|
x * y + z. */
|
2010-10-14 02:27:03 +00:00
|
|
|
if (u.ieee.exponent == 0x7ff
|
|
|
|
|| v.ieee.exponent == 0x7ff
|
|
|
|
|| w.ieee.exponent == 0x7ff
|
2012-11-01 16:47:26 +00:00
|
|
|
|| x == 0
|
|
|
|
|| y == 0)
|
2010-10-14 02:27:03 +00:00
|
|
|
return x * y + z;
|
2012-11-04 19:26:02 +00:00
|
|
|
/* If fma will certainly overflow, compute as x * y. */
|
|
|
|
if (u.ieee.exponent + v.ieee.exponent > 0x7ff + IEEE754_DOUBLE_BIAS)
|
|
|
|
return x * y;
|
2015-10-28 21:42:52 +00:00
|
|
|
/* If x * y is less than 1/4 of DBL_TRUE_MIN, neither the
|
2012-11-01 16:47:26 +00:00
|
|
|
result nor whether there is underflow depends on its exact
|
|
|
|
value, only on its sign. */
|
|
|
|
if (u.ieee.exponent + v.ieee.exponent
|
|
|
|
< IEEE754_DOUBLE_BIAS - DBL_MANT_DIG - 2)
|
|
|
|
{
|
|
|
|
int neg = u.ieee.negative ^ v.ieee.negative;
|
|
|
|
double tiny = neg ? -0x1p-1074 : 0x1p-1074;
|
|
|
|
if (w.ieee.exponent >= 3)
|
|
|
|
return tiny + z;
|
|
|
|
/* Scaling up, adding TINY and scaling down produces the
|
|
|
|
correct result, because in round-to-nearest mode adding
|
|
|
|
TINY has no effect and in other modes double rounding is
|
|
|
|
harmless. But it may not produce required underflow
|
|
|
|
exceptions. */
|
|
|
|
v.d = z * 0x1p54 + tiny;
|
|
|
|
if (TININESS_AFTER_ROUNDING
|
|
|
|
? v.ieee.exponent < 55
|
|
|
|
: (w.ieee.exponent == 0
|
|
|
|
|| (w.ieee.exponent == 1
|
|
|
|
&& w.ieee.negative != neg
|
|
|
|
&& w.ieee.mantissa1 == 0
|
|
|
|
&& w.ieee.mantissa0 == 0)))
|
|
|
|
{
|
2015-09-23 22:42:30 +00:00
|
|
|
double force_underflow = x * y;
|
|
|
|
math_force_eval (force_underflow);
|
2012-11-01 16:47:26 +00:00
|
|
|
}
|
|
|
|
return v.d * 0x1p-54;
|
|
|
|
}
|
2010-10-14 02:27:03 +00:00
|
|
|
if (u.ieee.exponent + v.ieee.exponent
|
|
|
|
>= 0x7ff + IEEE754_DOUBLE_BIAS - DBL_MANT_DIG)
|
|
|
|
{
|
|
|
|
/* Compute 1p-53 times smaller result and multiply
|
|
|
|
at the end. */
|
|
|
|
if (u.ieee.exponent > v.ieee.exponent)
|
|
|
|
u.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
else
|
|
|
|
v.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
/* If x + y exponent is very large and z exponent is very small,
|
|
|
|
it doesn't matter if we don't adjust it. */
|
|
|
|
if (w.ieee.exponent > DBL_MANT_DIG)
|
|
|
|
w.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
adjust = 1;
|
|
|
|
}
|
|
|
|
else if (w.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
|
|
|
|
{
|
|
|
|
/* Similarly.
|
|
|
|
If z exponent is very large and x and y exponents are
|
2012-11-06 14:12:54 +00:00
|
|
|
very small, adjust them up to avoid spurious underflows,
|
|
|
|
rather than down. */
|
|
|
|
if (u.ieee.exponent + v.ieee.exponent
|
Fix fma spurious underflows (bug 18824).
Various fma implementations have logic that, when computing fma (x, y,
z) where z is large (so care needs taking to avoid internal overflow)
but x * y is small, scale x * y up instead of down to avoid internal
underflows resulting from scaling down. (In these cases, x * y is
small enough that only its sign actually matters rather than the exact
value.)
The threshold for scaling up instead of down was correct for "if the
unscaled values were multiplied, the low part of the multiplication
could underflow", and the scaling was sufficient to ensure that the
low part of the multiplication did not underflow (given that cases of
very small x * y - less than half the least subnormal - were
previously dealt with). However, the choice in the functions wasn't
between scaling up or no scaling, but between scaling up and scaling
down (scaling down actually being needed when x * y isn't so small
compared to z and so the exact value does matter). Thus a larger
threshold is needed to ensure that scaling down doesn't produce values
the multiplication of whose low parts underflows. This patch
increases the thresholds accordingly.
Tested for x86_64, x86 and mips64 (with the MIPS version of s_fmal.c
removed so that the ldbl-128 version gets tested instead of the
soft-fp one).
[BZ #18824]
* sysdeps/ieee754/dbl-64/s_fma.c (__fma): Increase threshold for
scaling x * y up instead of down.
* sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
* sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
* math/auto-libm-test-in: Add more tests of fma.
* math/auto-libm-test-out: Regenerated.
2015-08-14 17:15:06 +00:00
|
|
|
<= IEEE754_DOUBLE_BIAS + 2 * DBL_MANT_DIG)
|
2012-11-06 14:12:54 +00:00
|
|
|
{
|
|
|
|
if (u.ieee.exponent > v.ieee.exponent)
|
|
|
|
u.ieee.exponent += 2 * DBL_MANT_DIG + 2;
|
|
|
|
else
|
|
|
|
v.ieee.exponent += 2 * DBL_MANT_DIG + 2;
|
|
|
|
}
|
|
|
|
else if (u.ieee.exponent > v.ieee.exponent)
|
2010-10-14 02:27:03 +00:00
|
|
|
{
|
|
|
|
if (u.ieee.exponent > DBL_MANT_DIG)
|
|
|
|
u.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
}
|
|
|
|
else if (v.ieee.exponent > DBL_MANT_DIG)
|
|
|
|
v.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
w.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
adjust = 1;
|
|
|
|
}
|
|
|
|
else if (u.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
|
|
|
|
{
|
|
|
|
u.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
if (v.ieee.exponent)
|
|
|
|
v.ieee.exponent += DBL_MANT_DIG;
|
|
|
|
else
|
|
|
|
v.d *= 0x1p53;
|
|
|
|
}
|
2010-10-15 19:25:14 +00:00
|
|
|
else if (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
|
2010-10-14 02:27:03 +00:00
|
|
|
{
|
|
|
|
v.ieee.exponent -= DBL_MANT_DIG;
|
|
|
|
if (u.ieee.exponent)
|
|
|
|
u.ieee.exponent += DBL_MANT_DIG;
|
|
|
|
else
|
|
|
|
u.d *= 0x1p53;
|
|
|
|
}
|
2010-10-15 19:25:14 +00:00
|
|
|
else /* if (u.ieee.exponent + v.ieee.exponent
|
|
|
|
<= IEEE754_DOUBLE_BIAS + DBL_MANT_DIG) */
|
|
|
|
{
|
|
|
|
if (u.ieee.exponent > v.ieee.exponent)
|
2012-11-06 14:12:54 +00:00
|
|
|
u.ieee.exponent += 2 * DBL_MANT_DIG + 2;
|
2010-10-15 19:25:14 +00:00
|
|
|
else
|
2012-11-06 14:12:54 +00:00
|
|
|
v.ieee.exponent += 2 * DBL_MANT_DIG + 2;
|
|
|
|
if (w.ieee.exponent <= 4 * DBL_MANT_DIG + 6)
|
2010-10-15 19:25:14 +00:00
|
|
|
{
|
|
|
|
if (w.ieee.exponent)
|
2012-11-06 14:12:54 +00:00
|
|
|
w.ieee.exponent += 2 * DBL_MANT_DIG + 2;
|
2010-10-15 19:25:14 +00:00
|
|
|
else
|
2012-11-06 14:12:54 +00:00
|
|
|
w.d *= 0x1p108;
|
2010-10-15 19:25:14 +00:00
|
|
|
adjust = -1;
|
|
|
|
}
|
|
|
|
/* Otherwise x * y should just affect inexact
|
|
|
|
and nothing else. */
|
|
|
|
}
|
2010-10-14 02:27:03 +00:00
|
|
|
x = u.d;
|
|
|
|
y = v.d;
|
|
|
|
z = w.d;
|
|
|
|
}
|
2012-09-29 18:31:54 +00:00
|
|
|
|
|
|
|
/* Ensure correct sign of exact 0 + 0. */
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely ((x == 0 || y == 0) && z == 0))
|
2016-01-15 13:22:59 +00:00
|
|
|
{
|
|
|
|
x = math_opt_barrier (x);
|
|
|
|
return x * y + z;
|
|
|
|
}
|
2012-09-29 18:31:54 +00:00
|
|
|
|
2012-11-03 19:48:53 +00:00
|
|
|
fenv_t env;
|
|
|
|
libc_feholdexcept_setround (&env, FE_TONEAREST);
|
|
|
|
|
2010-10-14 02:27:03 +00:00
|
|
|
/* Multiplication m1 + m2 = x * y using Dekker's algorithm. */
|
|
|
|
#define C ((1 << (DBL_MANT_DIG + 1) / 2) + 1)
|
|
|
|
double x1 = x * C;
|
|
|
|
double y1 = y * C;
|
|
|
|
double m1 = x * y;
|
|
|
|
x1 = (x - x1) + x1;
|
|
|
|
y1 = (y - y1) + y1;
|
|
|
|
double x2 = x - x1;
|
|
|
|
double y2 = y - y1;
|
|
|
|
double m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2;
|
|
|
|
|
|
|
|
/* Addition a1 + a2 = z + m1 using Knuth's algorithm. */
|
|
|
|
double a1 = z + m1;
|
|
|
|
double t1 = a1 - z;
|
|
|
|
double t2 = a1 - t1;
|
|
|
|
t1 = m1 - t1;
|
|
|
|
t2 = z - t2;
|
|
|
|
double a2 = t1 + t2;
|
2014-08-01 22:13:50 +00:00
|
|
|
/* Ensure the arithmetic is not scheduled after feclearexcept call. */
|
|
|
|
math_force_eval (m2);
|
|
|
|
math_force_eval (a2);
|
2012-11-03 19:48:53 +00:00
|
|
|
feclearexcept (FE_INEXACT);
|
2010-10-14 02:27:03 +00:00
|
|
|
|
2014-08-01 22:13:50 +00:00
|
|
|
/* If the result is an exact zero, ensure it has the correct sign. */
|
2012-11-03 19:48:53 +00:00
|
|
|
if (a1 == 0 && m2 == 0)
|
|
|
|
{
|
|
|
|
libc_feupdateenv (&env);
|
2014-08-01 22:13:50 +00:00
|
|
|
/* Ensure that round-to-nearest value of z + m1 is not reused. */
|
|
|
|
z = math_opt_barrier (z);
|
2012-11-03 19:48:53 +00:00
|
|
|
return z + m1;
|
|
|
|
}
|
|
|
|
|
|
|
|
libc_fesetround (FE_TOWARDZERO);
|
2012-03-10 16:53:05 +00:00
|
|
|
|
2010-10-14 02:27:03 +00:00
|
|
|
/* Perform m2 + a2 addition with round to odd. */
|
|
|
|
u.d = a2 + m2;
|
|
|
|
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (adjust < 0))
|
2012-03-10 16:53:05 +00:00
|
|
|
{
|
|
|
|
if ((u.ieee.mantissa1 & 1) == 0)
|
|
|
|
u.ieee.mantissa1 |= libc_fetestexcept (FE_INEXACT) != 0;
|
|
|
|
v.d = a1 + u.d;
|
2012-06-01 19:01:17 +00:00
|
|
|
/* Ensure the addition is not scheduled after fetestexcept call. */
|
|
|
|
math_force_eval (v.d);
|
2012-03-10 16:53:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset rounding mode and test for inexact simultaneously. */
|
|
|
|
int j = libc_feupdateenv_test (&env, FE_INEXACT) != 0;
|
|
|
|
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_likely (adjust == 0))
|
2010-10-15 19:25:14 +00:00
|
|
|
{
|
|
|
|
if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff)
|
2012-03-10 16:53:05 +00:00
|
|
|
u.ieee.mantissa1 |= j;
|
2010-10-15 19:25:14 +00:00
|
|
|
/* Result is a1 + u.d. */
|
|
|
|
return a1 + u.d;
|
|
|
|
}
|
2014-02-10 13:45:42 +00:00
|
|
|
else if (__glibc_likely (adjust > 0))
|
2010-10-15 19:25:14 +00:00
|
|
|
{
|
|
|
|
if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff)
|
2012-03-10 16:53:05 +00:00
|
|
|
u.ieee.mantissa1 |= j;
|
2010-10-15 19:25:14 +00:00
|
|
|
/* Result is a1 + u.d, scaled up. */
|
|
|
|
return (a1 + u.d) * 0x1p53;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If a1 + u.d is exact, the only rounding happens during
|
|
|
|
scaling down. */
|
|
|
|
if (j == 0)
|
2012-11-06 14:12:54 +00:00
|
|
|
return v.d * 0x1p-108;
|
2010-10-15 19:25:14 +00:00
|
|
|
/* If result rounded to zero is not subnormal, no double
|
|
|
|
rounding will occur. */
|
2012-11-06 14:12:54 +00:00
|
|
|
if (v.ieee.exponent > 108)
|
|
|
|
return (a1 + u.d) * 0x1p-108;
|
|
|
|
/* If v.d * 0x1p-108 with round to zero is a subnormal above
|
|
|
|
or equal to DBL_MIN / 2, then v.d * 0x1p-108 shifts mantissa
|
2010-10-15 19:25:14 +00:00
|
|
|
down just by 1 bit, which means v.ieee.mantissa1 |= j would
|
|
|
|
change the round bit, not sticky or guard bit.
|
2012-11-06 14:12:54 +00:00
|
|
|
v.d * 0x1p-108 never normalizes by shifting up,
|
2010-10-15 19:25:14 +00:00
|
|
|
so round bit plus sticky bit should be already enough
|
|
|
|
for proper rounding. */
|
2012-11-06 14:12:54 +00:00
|
|
|
if (v.ieee.exponent == 108)
|
2010-10-15 19:25:14 +00:00
|
|
|
{
|
2012-10-31 13:01:17 +00:00
|
|
|
/* If the exponent would be in the normal range when
|
|
|
|
rounding to normal precision with unbounded exponent
|
|
|
|
range, the exact result is known and spurious underflows
|
|
|
|
must be avoided on systems detecting tininess after
|
|
|
|
rounding. */
|
|
|
|
if (TININESS_AFTER_ROUNDING)
|
|
|
|
{
|
|
|
|
w.d = a1 + u.d;
|
2012-11-06 14:12:54 +00:00
|
|
|
if (w.ieee.exponent == 109)
|
|
|
|
return w.d * 0x1p-108;
|
2012-10-31 13:01:17 +00:00
|
|
|
}
|
2010-10-15 19:25:14 +00:00
|
|
|
/* v.ieee.mantissa1 & 2 is LSB bit of the result before rounding,
|
|
|
|
v.ieee.mantissa1 & 1 is the round bit and j is our sticky
|
2012-10-30 13:54:50 +00:00
|
|
|
bit. */
|
|
|
|
w.d = 0.0;
|
|
|
|
w.ieee.mantissa1 = ((v.ieee.mantissa1 & 3) << 1) | j;
|
|
|
|
w.ieee.negative = v.ieee.negative;
|
|
|
|
v.ieee.mantissa1 &= ~3U;
|
2012-11-06 14:12:54 +00:00
|
|
|
v.d *= 0x1p-108;
|
2012-10-30 13:54:50 +00:00
|
|
|
w.d *= 0x1p-2;
|
|
|
|
return v.d + w.d;
|
2010-10-15 19:25:14 +00:00
|
|
|
}
|
|
|
|
v.ieee.mantissa1 |= j;
|
2012-11-06 14:12:54 +00:00
|
|
|
return v.d * 0x1p-108;
|
2010-10-15 19:25:14 +00:00
|
|
|
}
|
2020-05-29 22:58:33 +00:00
|
|
|
#endif /* ! USE_FMA_BUILTIN */
|
2010-10-14 02:27:03 +00:00
|
|
|
}
|
|
|
|
#ifndef __fma
|
2017-10-04 20:32:48 +00:00
|
|
|
libm_alias_double (__fma, fma)
|
Add narrowing fma functions
This patch adds the narrowing fused multiply-add functions from TS
18661-1 / TS 18661-3 / C2X to glibc's libm: ffma, ffmal, dfmal,
f32fmaf64, f32fmaf32x, f32xfmaf64 for all configurations; f32fmaf64x,
f32fmaf128, f64fmaf64x, f64fmaf128, f32xfmaf64x, f32xfmaf128,
f64xfmaf128 for configurations with _Float64x and _Float128;
__f32fmaieee128 and __f64fmaieee128 aliases in the powerpc64le case
(for calls to ffmal and dfmal when long double is IEEE binary128).
Corresponding tgmath.h macro support is also added.
The changes are mostly similar to those for the other narrowing
functions previously added, especially that for sqrt, so the
description of those generally applies to this patch as well. As with
sqrt, I reused the same test inputs in auto-libm-test-in as for
non-narrowing fma rather than adding extra or separate inputs for
narrowing fma. The tests in libm-test-narrow-fma.inc also follow
those for non-narrowing fma.
The non-narrowing fma has a known bug (bug 6801) that it does not set
errno on errors (overflow, underflow, Inf * 0, Inf - Inf). Rather
than fixing this or having narrowing fma check for errors when
non-narrowing does not (complicating the cases when narrowing fma can
otherwise be an alias for a non-narrowing function), this patch does
not attempt to check for errors from narrowing fma and set errno; the
CHECK_NARROW_FMA macro is still present, but as a placeholder that
does nothing, and this missing errno setting is considered to be
covered by the existing bug rather than needing a separate open bug.
missing-errno annotations are duly added to many of the
auto-libm-test-in test inputs for fma.
This completes adding all the new functions from TS 18661-1 to glibc,
so will be followed by corresponding stdc-predef.h changes to define
__STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__, as the support
for TS 18661-1 will be at a similar level to that for C standard
floating-point facilities up to C11 (pragmas not implemented, but
library functions done). (There are still further changes to be done
to implement changes to the types of fromfp functions from N2548.)
Tested as followed: natively with the full glibc testsuite for x86_64
(GCC 11, 7, 6) and x86 (GCC 11); with build-many-glibcs.py with GCC
11, 7 and 6; cross testing of math/ tests for powerpc64le, powerpc32
hard float, mips64 (all three ABIs, both hard and soft float). The
different GCC versions are to cover the different cases in tgmath.h
and tgmath.h tests properly (GCC 6 has _Float* only as typedefs in
glibc headers, GCC 7 has proper _Float* support, GCC 8 adds
__builtin_tgmath).
2021-09-22 21:25:31 +00:00
|
|
|
libm_alias_double_narrow (__fma, fma)
|
2010-10-14 02:27:03 +00:00
|
|
|
#endif
|