2018-05-29 20:52:24 +00:00
|
|
|
/* Multiply by integral power of radix.
|
|
|
|
|
2023-01-06 21:08:04 +00:00
|
|
|
Copyright (C) 2011-2023 Free Software Foundation, Inc.
|
2018-05-29 20:52:24 +00:00
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
This file is part of the GNU C Library.
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
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.
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
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/>. */
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2005-12-14 15:06:39 +00:00
|
|
|
#include <math.h>
|
2011-10-08 09:16:04 +00:00
|
|
|
#include <math_private.h>
|
2019-07-16 15:17:22 +00:00
|
|
|
#include <libm-alias-finite.h>
|
2011-10-12 15:27:51 +00:00
|
|
|
|
2018-05-29 20:52:24 +00:00
|
|
|
static FLOAT
|
2011-10-12 15:27:51 +00:00
|
|
|
__attribute__ ((noinline))
|
2018-05-29 20:52:24 +00:00
|
|
|
invalid_fn (FLOAT x, FLOAT fn)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2018-05-29 20:52:24 +00:00
|
|
|
if (M_SUF (rint) (fn) != fn)
|
Do not call __nan in scalb functions.
When libm functions return a NaN: if it is for NaN input, it should be
computed from that input (e.g. adding it to itself), so that payloads
are propagated and signaling NaNs quieted, while if it is for non-NaN
input, it should be produced by a computation such as
(x - x) / (x - x), which raises "invalid" at the same time as
producing an appropriate NaN, so avoiding any need for a call to
feraiseexcept.
Various libm functions, however, call __nan ("") (or __nanf or __nanl)
to determine the NaN to return, together with using feraiseexcept
(FE_INVALID) to raise the exception. sysdeps/generic/math_private.h
has an optimization for those functions with constant "" argument so
this doesn't actually involve a call to the __nan function, but it is
still not the preferred approach for producing NaNs. (The optimized
code also always uses the NAN macro, i.e. produces a default NaN for
float converted to whatever the target type is, and on some
architectures that may not be the same as the preferred default NaN
for double or long double.)
This patch fixes the scalb functions to use the conventional method of
generating NaNs and raising "invalid" with an appropriate
computation. (Most instances of this issue are in the complex
functions, where it can more readily be fixed once they have been made
type-generic and so only a third as many places need fixing. Some of
the complex functions use __nan ("") + __nan (""), where the addition
serves no purpose whatsoever.)
Tested for x86_64 and x86.
* math/e_scalb.c: Do not include <fenv.h>.
(invalid_fn): Do calculation resulting in NaN instead of raising
FE_INVALID and returning a NaN explicitly.
* math/e_scalbf.c: Do not include <fenv.h>.
(invalid_fn): Do calculation resulting in NaN instead of raising
FE_INVALID and returning a NaN explicitly.
* math/e_scalbl.c: Do not include <fenv.h>.
(invalid_fn): Do calculation resulting in NaN instead of raising
FE_INVALID and returning a NaN explicitly.
2016-08-04 20:50:31 +00:00
|
|
|
return (fn - fn) / (fn - fn);
|
2018-05-29 20:52:24 +00:00
|
|
|
else if (fn > M_LIT (65000.0))
|
|
|
|
return M_SUF (__scalbn) (x, 65000);
|
2011-10-12 15:27:51 +00:00
|
|
|
else
|
2018-05-29 20:52:24 +00:00
|
|
|
return M_SUF (__scalbn) (x,-65000);
|
2011-10-12 15:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-29 20:52:24 +00:00
|
|
|
FLOAT
|
|
|
|
M_DECL_FUNC (__ieee754_scalb) (FLOAT x, FLOAT fn)
|
2011-10-12 15:27:51 +00:00
|
|
|
{
|
2015-06-03 14:36:34 +00:00
|
|
|
if (__glibc_unlikely (isnan (x)))
|
2011-10-12 15:27:51 +00:00
|
|
|
return x * fn;
|
2015-06-03 14:36:34 +00:00
|
|
|
if (__glibc_unlikely (!isfinite (fn)))
|
2011-10-12 15:27:51 +00:00
|
|
|
{
|
2018-05-29 20:52:24 +00:00
|
|
|
if (isnan (fn) || fn > M_LIT (0.0))
|
2011-10-12 15:27:51 +00:00
|
|
|
return x * fn;
|
2018-05-29 20:52:24 +00:00
|
|
|
if (x == M_LIT (0.0))
|
2011-10-12 15:27:51 +00:00
|
|
|
return x;
|
|
|
|
return x / -fn;
|
|
|
|
}
|
2018-05-29 20:52:24 +00:00
|
|
|
if (__glibc_unlikely (M_FABS (fn) >= M_LIT (0x1p31)
|
|
|
|
|| (FLOAT) (int) fn != fn))
|
2011-10-12 15:27:51 +00:00
|
|
|
return invalid_fn (x, fn);
|
|
|
|
|
2018-05-29 20:52:24 +00:00
|
|
|
return M_SCALBN (x, (int) fn);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2018-05-29 20:52:24 +00:00
|
|
|
declare_mgen_finite_alias (__ieee754_scalb, __scalb)
|