2017-09-04 16:48:46 +00:00
|
|
|
/* Single-precision log function.
|
2019-01-01 00:11:28 +00:00
|
|
|
Copyright (C) 2017-2019 Free Software Foundation, Inc.
|
2017-09-04 16:48:46 +00:00
|
|
|
This file is part of the GNU C Library.
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2017-09-04 16:48:46 +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.
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
2017-09-04 16:48:46 +00:00
|
|
|
#include <stdint.h>
|
2017-09-13 17:14:26 +00:00
|
|
|
#include <shlib-compat.h>
|
2017-10-10 21:29:11 +00:00
|
|
|
#include <libm-alias-float.h>
|
2017-09-04 16:48:46 +00:00
|
|
|
#include "math_config.h"
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2017-09-04 16:48:46 +00:00
|
|
|
/*
|
|
|
|
LOGF_TABLE_BITS = 4
|
|
|
|
LOGF_POLY_ORDER = 4
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2017-09-04 16:48:46 +00:00
|
|
|
ULP error: 0.818 (nearest rounding.)
|
|
|
|
Relative error: 1.957 * 2^-26 (before rounding.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define T __logf_data.tab
|
|
|
|
#define A __logf_data.poly
|
|
|
|
#define Ln2 __logf_data.ln2
|
|
|
|
#define N (1 << LOGF_TABLE_BITS)
|
|
|
|
#define OFF 0x3f330000
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
float
|
2017-09-13 17:14:26 +00:00
|
|
|
__logf (float x)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2017-09-04 16:48:46 +00:00
|
|
|
/* double_t for better performance on targets with FLT_EVAL_METHOD==2. */
|
|
|
|
double_t z, r, r2, y, y0, invc, logc;
|
|
|
|
uint32_t ix, iz, tmp;
|
|
|
|
int k, i;
|
|
|
|
|
|
|
|
ix = asuint (x);
|
|
|
|
#if WANT_ROUNDING
|
|
|
|
/* Fix sign of zero with downward rounding when x==1. */
|
|
|
|
if (__glibc_unlikely (ix == 0x3f800000))
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
if (__glibc_unlikely (ix - 0x00800000 >= 0x7f800000 - 0x00800000))
|
|
|
|
{
|
|
|
|
/* x < 0x1p-126 or inf or nan. */
|
|
|
|
if (ix * 2 == 0)
|
|
|
|
return __math_divzerof (1);
|
|
|
|
if (ix == 0x7f800000) /* log(inf) == inf. */
|
|
|
|
return x;
|
|
|
|
if ((ix & 0x80000000) || ix * 2 >= 0xff000000)
|
|
|
|
return __math_invalidf (x);
|
|
|
|
/* x is subnormal, normalize it. */
|
|
|
|
ix = asuint (x * 0x1p23f);
|
|
|
|
ix -= 23 << 23;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* x = 2^k z; where z is in range [OFF,2*OFF] and exact.
|
|
|
|
The range is split into N subintervals.
|
|
|
|
The ith subinterval contains z and c is near its center. */
|
|
|
|
tmp = ix - OFF;
|
|
|
|
i = (tmp >> (23 - LOGF_TABLE_BITS)) % N;
|
|
|
|
k = (int32_t) tmp >> 23; /* arithmetic shift */
|
|
|
|
iz = ix - (tmp & 0x1ff << 23);
|
|
|
|
invc = T[i].invc;
|
|
|
|
logc = T[i].logc;
|
|
|
|
z = (double_t) asfloat (iz);
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2017-09-04 16:48:46 +00:00
|
|
|
/* log(x) = log1p(z/c-1) + log(c) + k*Ln2 */
|
|
|
|
r = z * invc - 1;
|
|
|
|
y0 = logc + (double_t) k * Ln2;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2017-09-04 16:48:46 +00:00
|
|
|
/* Pipelined polynomial evaluation to approximate log1p(r). */
|
|
|
|
r2 = r * r;
|
|
|
|
y = A[1] * r + A[2];
|
|
|
|
y = A[0] * r2 + y;
|
|
|
|
y = y * r2 + (y0 + r);
|
|
|
|
return (float) y;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2017-09-13 17:14:26 +00:00
|
|
|
#ifndef __logf
|
|
|
|
strong_alias (__logf, __ieee754_logf)
|
|
|
|
strong_alias (__logf, __logf_finite)
|
|
|
|
versioned_symbol (libm, __logf, logf, GLIBC_2_27);
|
2017-10-10 21:29:11 +00:00
|
|
|
libm_alias_float_other (__log, log)
|
2017-09-13 17:14:26 +00:00
|
|
|
#endif
|