2004-05-26 04:47:00 +00:00
|
|
|
/* Single-precision floating point square root.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 1997-2021 Free Software Foundation, Inc.
|
2004-05-26 04:47:00 +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/>. */
|
2004-05-26 04:47:00 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <math_private.h>
|
|
|
|
#include <fenv_libc.h>
|
2019-07-16 15:17:22 +00:00
|
|
|
#include <libm-alias-finite.h>
|
2020-06-04 19:47:16 +00:00
|
|
|
#include <math-use-builtins.h>
|
2004-05-26 04:47:00 +00:00
|
|
|
|
2020-06-04 19:47:16 +00:00
|
|
|
float
|
|
|
|
__ieee754_sqrtf (float x)
|
|
|
|
{
|
|
|
|
#if USE_SQRTF_BUILTIN
|
|
|
|
return __builtin_sqrtf (x);
|
|
|
|
#else
|
2004-05-26 04:47:00 +00:00
|
|
|
/* The method is based on a description in
|
|
|
|
Computation of elementary functions on the IBM RISC System/6000 processor,
|
|
|
|
P. W. Markstein, IBM J. Res. Develop, 34(1) 1990.
|
2009-11-06 17:33:27 +00:00
|
|
|
Basically, it consists of two interleaved Newton-Raphson approximations,
|
2004-05-26 04:47:00 +00:00
|
|
|
one to find the actual square root, and one to find its reciprocal
|
|
|
|
without the expense of a division operation. The tricky bit here
|
|
|
|
is the use of the POWER/PowerPC multiply-add operation to get the
|
|
|
|
required accuracy with high speed.
|
|
|
|
|
|
|
|
The argument reduction works by a combination of table lookup to
|
|
|
|
obtain the initial guesses, and some careful modification of the
|
|
|
|
generated guesses (which mostly runs on the integer unit, while the
|
2009-11-06 17:33:27 +00:00
|
|
|
Newton-Raphson is running on the FPU). */
|
2004-05-26 04:47:00 +00:00
|
|
|
|
2020-06-04 19:47:16 +00:00
|
|
|
extern const float __t_sqrt[1024];
|
2004-05-26 04:47:00 +00:00
|
|
|
|
|
|
|
if (x > 0)
|
|
|
|
{
|
2020-06-04 19:47:16 +00:00
|
|
|
if (x != INFINITY)
|
2004-05-26 04:47:00 +00:00
|
|
|
{
|
|
|
|
/* Variables named starting with 's' exist in the
|
|
|
|
argument-reduced space, so that 2 > sx >= 0.5,
|
|
|
|
1.41... > sg >= 0.70.., 0.70.. >= sy > 0.35... .
|
|
|
|
Variables named ending with 'i' are integer versions of
|
|
|
|
floating-point values. */
|
|
|
|
float sx; /* The value of which we're trying to find the square
|
|
|
|
root. */
|
|
|
|
float sg, g; /* Guess of the square root of x. */
|
|
|
|
float sd, d; /* Difference between the square of the guess and x. */
|
|
|
|
float sy; /* Estimate of 1/2g (overestimated by 1ulp). */
|
|
|
|
float sy2; /* 2*sy */
|
|
|
|
float e; /* Difference between y*g and 1/2 (note that e==se). */
|
|
|
|
float shx; /* == sx * fsg */
|
|
|
|
float fsg; /* sg*fsg == g. */
|
|
|
|
fenv_t fe; /* Saved floating-point environment (stores rounding
|
|
|
|
mode and whether the inexact exception is
|
|
|
|
enabled). */
|
|
|
|
uint32_t xi, sxi, fsgi;
|
|
|
|
const float *t_sqrt;
|
|
|
|
|
|
|
|
GET_FLOAT_WORD (xi, x);
|
|
|
|
fe = fegetenv_register ();
|
|
|
|
relax_fenv_state ();
|
|
|
|
sxi = (xi & 0x3fffffff) | 0x3f000000;
|
|
|
|
SET_FLOAT_WORD (sx, sxi);
|
|
|
|
t_sqrt = __t_sqrt + (xi >> (23 - 8 - 1) & 0x3fe);
|
|
|
|
sg = t_sqrt[0];
|
|
|
|
sy = t_sqrt[1];
|
|
|
|
|
2009-11-06 17:33:27 +00:00
|
|
|
/* Here we have three Newton-Raphson iterations each of a
|
2004-05-26 04:47:00 +00:00
|
|
|
division and a square root and the remainder of the
|
|
|
|
argument reduction, all interleaved. */
|
2015-02-13 16:20:36 +00:00
|
|
|
sd = -__builtin_fmaf (sg, sg, -sx);
|
2004-05-26 04:47:00 +00:00
|
|
|
fsgi = (xi + 0x40000000) >> 1 & 0x7f800000;
|
|
|
|
sy2 = sy + sy;
|
2015-02-13 16:20:36 +00:00
|
|
|
sg = __builtin_fmaf (sy, sd, sg); /* 16-bit approximation to
|
|
|
|
sqrt(sx). */
|
2020-06-04 19:47:16 +00:00
|
|
|
e = -__builtin_fmaf (sy, sg, -0x1.0000020365653p-1);
|
2004-05-26 04:47:00 +00:00
|
|
|
SET_FLOAT_WORD (fsg, fsgi);
|
2015-02-13 16:20:36 +00:00
|
|
|
sd = -__builtin_fmaf (sg, sg, -sx);
|
|
|
|
sy = __builtin_fmaf (e, sy2, sy);
|
2004-05-26 04:47:00 +00:00
|
|
|
if ((xi & 0x7f800000) == 0)
|
|
|
|
goto denorm;
|
|
|
|
shx = sx * fsg;
|
2015-02-13 16:20:36 +00:00
|
|
|
sg = __builtin_fmaf (sy, sd, sg); /* 32-bit approximation to
|
|
|
|
sqrt(sx), but perhaps
|
|
|
|
rounded incorrectly. */
|
2004-05-26 04:47:00 +00:00
|
|
|
sy2 = sy + sy;
|
|
|
|
g = sg * fsg;
|
2020-06-04 19:47:16 +00:00
|
|
|
e = -__builtin_fmaf (sy, sg, -0x1.0000020365653p-1);
|
2015-02-13 16:20:36 +00:00
|
|
|
d = -__builtin_fmaf (g, sg, -shx);
|
|
|
|
sy = __builtin_fmaf (e, sy2, sy);
|
2004-05-26 04:47:00 +00:00
|
|
|
fesetenv_register (fe);
|
2015-02-13 16:20:36 +00:00
|
|
|
return __builtin_fmaf (sy, d, g);
|
2004-05-26 04:47:00 +00:00
|
|
|
denorm:
|
|
|
|
/* For denormalised numbers, we normalise, calculate the
|
|
|
|
square root, and return an adjusted result. */
|
|
|
|
fesetenv_register (fe);
|
2020-06-04 19:47:16 +00:00
|
|
|
return __ieee754_sqrtf (x * 0x1p+48) * 0x1p-24;
|
2004-05-26 04:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (x < 0)
|
|
|
|
{
|
|
|
|
/* For some reason, some PowerPC32 processors don't implement
|
2011-10-12 15:27:51 +00:00
|
|
|
FE_INVALID_SQRT. */
|
2020-06-04 19:47:16 +00:00
|
|
|
# ifdef FE_INVALID_SQRT
|
2004-05-26 04:47:00 +00:00
|
|
|
feraiseexcept (FE_INVALID_SQRT);
|
2008-04-12 03:39:30 +00:00
|
|
|
|
|
|
|
fenv_union_t u = { .fenv = fegetenv_register () };
|
2013-08-17 08:58:55 +00:00
|
|
|
if ((u.l & FE_INVALID) == 0)
|
2020-06-04 19:47:16 +00:00
|
|
|
# endif
|
2004-05-26 04:47:00 +00:00
|
|
|
feraiseexcept (FE_INVALID);
|
2020-06-04 19:47:16 +00:00
|
|
|
x = NAN;
|
2004-05-26 04:47:00 +00:00
|
|
|
}
|
|
|
|
return f_washf (x);
|
2020-06-04 19:47:16 +00:00
|
|
|
#endif /* USE_SQRTF_BUILTIN */
|
2004-05-26 04:47:00 +00:00
|
|
|
}
|
2019-07-16 15:17:22 +00:00
|
|
|
libm_alias_finite (__ieee754_sqrtf, __sqrtf)
|