2001-03-12 00:04:52 +00:00
|
|
|
/*
|
|
|
|
* IBM Accurate Mathematical Library
|
2002-07-06 06:36:39 +00:00
|
|
|
* written by International Business Machines Corp.
|
2018-01-01 00:32:25 +00:00
|
|
|
* Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
2001-03-12 00:04:52 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
2002-08-26 22:40:48 +00:00
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
2001-03-12 00:04:52 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
2002-08-20 21:51:55 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2001-03-12 00:04:52 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2012-02-09 23:18:22 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-03-12 00:04:52 +00:00
|
|
|
*/
|
|
|
|
/***************************************************************************/
|
|
|
|
/* MODULE_NAME:uexp.c */
|
|
|
|
/* */
|
|
|
|
/* FUNCTION:uexp */
|
|
|
|
/* exp1 */
|
|
|
|
/* */
|
|
|
|
/* FILES NEEDED:dla.h endian.h mpa.h mydefs.h uexp.h */
|
|
|
|
/* */
|
|
|
|
/* An ultimate exp routine. Given an IEEE double machine number x */
|
2018-01-30 14:48:22 +00:00
|
|
|
/* it computes an almost correctly rounded (to nearest) value of e^x */
|
2001-03-12 00:04:52 +00:00
|
|
|
/* Assumption: Machine arithmetic operations are performed in */
|
|
|
|
/* round to nearest mode of IEEE 754 standard. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2014-03-24 22:00:32 +00:00
|
|
|
#include <math.h>
|
2001-03-12 00:04:52 +00:00
|
|
|
#include "endian.h"
|
2001-05-12 14:32:12 +00:00
|
|
|
#include "uexp.h"
|
2001-03-12 00:04:52 +00:00
|
|
|
#include "mydefs.h"
|
|
|
|
#include "MathLib.h"
|
2017-12-19 18:11:37 +00:00
|
|
|
#include "uexp.tbl"
|
2018-05-11 15:11:38 +00:00
|
|
|
#include <math-barriers.h>
|
2017-12-19 18:11:37 +00:00
|
|
|
#include <math_private.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>
|
2012-03-02 15:12:53 +00:00
|
|
|
#include <fenv.h>
|
2013-12-03 21:49:56 +00:00
|
|
|
#include <float.h>
|
Improves __ieee754_exp(x) performance by 18-37% when |x| < 1.0397
Adds a fast path to e_exp.c when |x| < 1.03972053527832.
When values are tested in isolation, reduction in execution
time is: aarch 30%, sparc 18%, x86 37%.
When comparing benchtests/bench.out which includes values
outside that range, the gains are:
aarch 8%, sparc 5%, x86 9%.
make check is clean (no increase in ulp for any math test).
Testing 20M values for each rounding mode in that range shows
approximately one in 200 values is off by 1 ulp. No value tested
for exp(x) changed by 2 or more ulp.
No observed change in performance or accuracy for x outside
fast path range.
These changes will be active for all platforms that don't provide
their own exp() routines. They will also be active for ieee754
versions of ccos, ccosh, cosh, csin, csinh, sinh, exp10, gamma, and
erf.
2018-04-15 22:46:37 +00:00
|
|
|
#include "eexp.tbl"
|
2001-05-12 14:32:12 +00:00
|
|
|
|
2017-12-19 18:11:37 +00:00
|
|
|
#ifndef SECTION
|
|
|
|
# define SECTION
|
|
|
|
#endif
|
2011-10-25 04:56:33 +00:00
|
|
|
|
|
|
|
double
|
2017-12-19 18:11:37 +00:00
|
|
|
SECTION
|
|
|
|
__ieee754_exp (double x)
|
2013-10-08 10:52:28 +00:00
|
|
|
{
|
2017-12-19 18:11:37 +00:00
|
|
|
double bexp, t, eps, del, base, y, al, bet, res, rem, cor;
|
Improves __ieee754_exp(x) performance by 18-37% when |x| < 1.0397
Adds a fast path to e_exp.c when |x| < 1.03972053527832.
When values are tested in isolation, reduction in execution
time is: aarch 30%, sparc 18%, x86 37%.
When comparing benchtests/bench.out which includes values
outside that range, the gains are:
aarch 8%, sparc 5%, x86 9%.
make check is clean (no increase in ulp for any math test).
Testing 20M values for each rounding mode in that range shows
approximately one in 200 values is off by 1 ulp. No value tested
for exp(x) changed by 2 or more ulp.
No observed change in performance or accuracy for x outside
fast path range.
These changes will be active for all platforms that don't provide
their own exp() routines. They will also be active for ieee754
versions of ccos, ccosh, cosh, csin, csinh, sinh, exp10, gamma, and
erf.
2018-04-15 22:46:37 +00:00
|
|
|
double z;
|
2017-12-19 18:11:37 +00:00
|
|
|
mynumber junk1, junk2, binexp = {{0, 0}};
|
|
|
|
int4 i, j, m, n, ex;
|
Improves __ieee754_exp(x) performance by 18-37% when |x| < 1.0397
Adds a fast path to e_exp.c when |x| < 1.03972053527832.
When values are tested in isolation, reduction in execution
time is: aarch 30%, sparc 18%, x86 37%.
When comparing benchtests/bench.out which includes values
outside that range, the gains are:
aarch 8%, sparc 5%, x86 9%.
make check is clean (no increase in ulp for any math test).
Testing 20M values for each rounding mode in that range shows
approximately one in 200 values is off by 1 ulp. No value tested
for exp(x) changed by 2 or more ulp.
No observed change in performance or accuracy for x outside
fast path range.
These changes will be active for all platforms that don't provide
their own exp() routines. They will also be active for ieee754
versions of ccos, ccosh, cosh, csin, csinh, sinh, exp10, gamma, and
erf.
2018-04-15 22:46:37 +00:00
|
|
|
int4 k;
|
2012-03-02 15:12:53 +00:00
|
|
|
double retval;
|
Improve __ieee754_exp() performance by greater than 5x on sparc/x86.
These changes will be active for all platforms that don't provide
their own exp() routines. They will also be active for ieee754
versions of ccos, ccosh, cosh, csin, csinh, sinh, exp10, gamma, and
erf.
Typical performance gains is typically around 5x when measured on
Sparc s7 for common values between exp(1) and exp(40).
Using the glibc perf tests on sparc,
sparc (nsec) x86 (nsec)
old new old new
max 17629 395 5173 144
min 399 54 15 13
mean 5317 200 1349 23
The extreme max times for the old (ieee754) exp are due to the
multiprecision computation in the old algorithm when the true value is
very near 0.5 ulp away from an value representable in double
precision. The new algorithm does not take special measures for those
cases. The current glibc exp perf tests overrepresent those values.
Informal testing suggests approximately one in 200 cases might
invoke the high cost computation. The performance advantage of the new
algorithm for other values is still large but not as large as indicated
by the chart above.
Glibc correctness tests for exp() and expf() were run. Within the
test suite 3 input values were found to cause 1 bit differences (ulp)
when "FE_TONEAREST" rounding mode is set. No differences in exp() were
seen for the tested values for the other rounding modes.
Typical example:
exp(-0x1.760cd2p+0) (-1.46113312244415283203125)
new code: 2.31973271630014299393707e-01 0x1.db14cd799387ap-3
old code: 2.31973271630014271638132e-01 0x1.db14cd7993879p-3
exp = 2.31973271630014285508337 (high precision)
Old delta: off by 0.49 ulp
New delta: off by 0.51 ulp
In addition, because ieee754_exp() is used by other routines, cexp()
showed test results with very small imaginary input values where the
imaginary portion of the result was off by 3 ulp when in upward
rounding mode, but not in the other rounding modes. For x86, tgamma
showed a few values where the ulp increased to 6 (max ulp for tgamma
is 5). Sparc tgamma did not show these failures. I presume the tgamma
differences are due to compiler optimization differences within the
gamma function.The gamma function is known to be difficult to compute
accurately.
* sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
<errno.h>. Include "eexp.tbl".
(half): New constant.
(one): Likewise.
(__ieee754_exp): Rewrite.
(__slowexp): Remove prototype.
* sysdeps/ieee754/dbl-64/eexp.tbl: New file.
* sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
* sysdeps/i386/fpu/slowexp.c: Likewise.
* sysdeps/ia64/fpu/slowexp.c: Likewise.
* sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
* sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
* sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
* sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
* sysdeps/generic/math_private.h (__slowexp): Remove prototype.
* sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
comment.
* sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
(CPPFLAGS-slowexp.c): Remove variable.
* sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
(CFLAGS-slowexp-fma.c): Remove variable.
(CFLAGS-slowexp-fma4.c): Likewise.
(CFLAGS-slowexp-avx.c): Likewise.
* sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
define as macro.
* sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
* sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
* math/Makefile (type-double-routines): Remove slowexp.
* manual/probes.texi (slowexp_p6): Remove.
(slowexp_p32): Likewise.
2017-12-19 17:25:14 +00:00
|
|
|
|
2017-12-19 18:11:37 +00:00
|
|
|
{
|
|
|
|
SET_RESTORE_ROUND (FE_TONEAREST);
|
|
|
|
|
|
|
|
junk1.x = x;
|
|
|
|
m = junk1.i[HIGH_HALF];
|
|
|
|
n = m & hugeint;
|
|
|
|
|
Improves __ieee754_exp(x) performance by 18-37% when |x| < 1.0397
Adds a fast path to e_exp.c when |x| < 1.03972053527832.
When values are tested in isolation, reduction in execution
time is: aarch 30%, sparc 18%, x86 37%.
When comparing benchtests/bench.out which includes values
outside that range, the gains are:
aarch 8%, sparc 5%, x86 9%.
make check is clean (no increase in ulp for any math test).
Testing 20M values for each rounding mode in that range shows
approximately one in 200 values is off by 1 ulp. No value tested
for exp(x) changed by 2 or more ulp.
No observed change in performance or accuracy for x outside
fast path range.
These changes will be active for all platforms that don't provide
their own exp() routines. They will also be active for ieee754
versions of ccos, ccosh, cosh, csin, csinh, sinh, exp10, gamma, and
erf.
2018-04-15 22:46:37 +00:00
|
|
|
if (n < 0x3ff0a2b2) /* |x| < 1.03972053527832 */
|
|
|
|
{
|
|
|
|
if (n < 0x3f862e42) /* |x| < 3/2 ln 2 */
|
|
|
|
{
|
|
|
|
if (n < 0x3ed00000) /* |x| < 1/64 ln 2 */
|
|
|
|
{
|
|
|
|
if (n < 0x3e300000) /* |x| < 2^18 */
|
|
|
|
{
|
|
|
|
retval = one + junk1.x;
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
retval = one + junk1.x * (one + half * junk1.x);
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
t = junk1.x * junk1.x;
|
|
|
|
retval = junk1.x + (t * (half + junk1.x * t2) +
|
|
|
|
(t * t) * (t3 + junk1.x * t4 + t * t5));
|
|
|
|
retval = one + retval;
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the multiple of 2^-6 nearest x. */
|
|
|
|
k = n >> 20;
|
|
|
|
j = (0x00100000 | (n & 0x000fffff)) >> (0x40c - k);
|
|
|
|
j = (j - 1) & ~1;
|
|
|
|
if (m < 0)
|
|
|
|
j += 134;
|
|
|
|
z = junk1.x - TBL2[j];
|
|
|
|
t = z * z;
|
|
|
|
retval = z + (t * (half + (z * t2))
|
|
|
|
+ (t * t) * (t3 + z * t4 + t * t5));
|
|
|
|
retval = TBL2[j + 1] + TBL2[j + 1] * retval;
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < bigint) /* && |x| >= 1.03972053527832 */
|
2017-12-19 18:11:37 +00:00
|
|
|
{
|
|
|
|
y = x * log2e.x + three51.x;
|
|
|
|
bexp = y - three51.x; /* multiply the result by 2**bexp */
|
|
|
|
|
|
|
|
junk1.x = y;
|
|
|
|
|
|
|
|
eps = bexp * ln_two2.x; /* x = bexp*ln(2) + t - eps */
|
|
|
|
t = x - bexp * ln_two1.x;
|
|
|
|
|
|
|
|
y = t + three33.x;
|
|
|
|
base = y - three33.x; /* t rounded to a multiple of 2**-18 */
|
|
|
|
junk2.x = y;
|
|
|
|
del = (t - base) - eps; /* x = bexp*ln(2) + base + del */
|
|
|
|
eps = del + del * del * (p3.x * del + p2.x);
|
|
|
|
|
|
|
|
binexp.i[HIGH_HALF] = (junk1.i[LOW_HALF] + 1023) << 20;
|
|
|
|
|
|
|
|
i = ((junk2.i[LOW_HALF] >> 8) & 0xfffffffe) + 356;
|
|
|
|
j = (junk2.i[LOW_HALF] & 511) << 1;
|
|
|
|
|
|
|
|
al = coar.x[i] * fine.x[j];
|
|
|
|
bet = ((coar.x[i] * fine.x[j + 1] + coar.x[i + 1] * fine.x[j])
|
|
|
|
+ coar.x[i + 1] * fine.x[j + 1]);
|
|
|
|
|
|
|
|
rem = (bet + bet * eps) + al * eps;
|
|
|
|
res = al + rem;
|
2018-01-30 14:48:22 +00:00
|
|
|
/* Maximum relative error is 7.8e-22 (70.1 bits).
|
|
|
|
Maximum ULP error is 0.500007. */
|
|
|
|
retval = res * binexp.x;
|
|
|
|
goto ret;
|
2017-12-19 18:11:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (n >= badint)
|
|
|
|
{
|
|
|
|
if (n > infint)
|
|
|
|
{
|
|
|
|
retval = x + x;
|
|
|
|
goto ret;
|
|
|
|
} /* x is NaN */
|
|
|
|
if (n < infint)
|
|
|
|
{
|
|
|
|
if (x > 0)
|
|
|
|
goto ret_huge;
|
|
|
|
else
|
|
|
|
goto ret_tiny;
|
|
|
|
}
|
|
|
|
/* x is finite, cause either overflow or underflow */
|
|
|
|
if (junk1.i[LOW_HALF] != 0)
|
|
|
|
{
|
|
|
|
retval = x + x;
|
|
|
|
goto ret;
|
|
|
|
} /* x is NaN */
|
|
|
|
retval = (x > 0) ? inf.x : zero; /* |x| = inf; return either inf or 0 */
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
y = x * log2e.x + three51.x;
|
|
|
|
bexp = y - three51.x;
|
|
|
|
junk1.x = y;
|
|
|
|
eps = bexp * ln_two2.x;
|
|
|
|
t = x - bexp * ln_two1.x;
|
|
|
|
y = t + three33.x;
|
|
|
|
base = y - three33.x;
|
|
|
|
junk2.x = y;
|
|
|
|
del = (t - base) - eps;
|
|
|
|
eps = del + del * del * (p3.x * del + p2.x);
|
|
|
|
i = ((junk2.i[LOW_HALF] >> 8) & 0xfffffffe) + 356;
|
|
|
|
j = (junk2.i[LOW_HALF] & 511) << 1;
|
|
|
|
al = coar.x[i] * fine.x[j];
|
|
|
|
bet = ((coar.x[i] * fine.x[j + 1] + coar.x[i + 1] * fine.x[j])
|
|
|
|
+ coar.x[i + 1] * fine.x[j + 1]);
|
|
|
|
rem = (bet + bet * eps) + al * eps;
|
|
|
|
res = al + rem;
|
|
|
|
cor = (al - res) + rem;
|
|
|
|
if (m >> 31)
|
|
|
|
{
|
|
|
|
ex = junk1.i[LOW_HALF];
|
|
|
|
if (res < 1.0)
|
|
|
|
{
|
|
|
|
res += res;
|
|
|
|
cor += cor;
|
|
|
|
ex -= 1;
|
|
|
|
}
|
|
|
|
if (ex >= -1022)
|
|
|
|
{
|
|
|
|
binexp.i[HIGH_HALF] = (1023 + ex) << 20;
|
2018-01-30 14:48:22 +00:00
|
|
|
/* Does not underflow: res >= 1.0, binexp >= 0x1p-1022
|
|
|
|
Maximum relative error is 7.8e-22 (70.1 bits).
|
|
|
|
Maximum ULP error is 0.500007. */
|
|
|
|
retval = res * binexp.x;
|
|
|
|
goto ret;
|
2017-12-19 18:11:37 +00:00
|
|
|
}
|
|
|
|
ex = -(1022 + ex);
|
|
|
|
binexp.i[HIGH_HALF] = (1023 - ex) << 20;
|
|
|
|
res *= binexp.x;
|
|
|
|
cor *= binexp.x;
|
|
|
|
t = 1.0 + res;
|
|
|
|
y = ((1.0 - t) + res) + cor;
|
|
|
|
res = t + y;
|
2018-01-30 14:48:22 +00:00
|
|
|
/* Maximum ULP error is 0.5000035. */
|
|
|
|
binexp.i[HIGH_HALF] = 0x00100000;
|
|
|
|
retval = (res - 1.0) * binexp.x;
|
2017-12-19 18:11:37 +00:00
|
|
|
if (retval < DBL_MIN)
|
|
|
|
{
|
|
|
|
double force_underflow = tiny * tiny;
|
|
|
|
math_force_eval (force_underflow);
|
|
|
|
}
|
|
|
|
if (retval == 0)
|
|
|
|
goto ret_tiny;
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
binexp.i[HIGH_HALF] = (junk1.i[LOW_HALF] + 767) << 20;
|
2018-01-30 14:48:22 +00:00
|
|
|
/* Maximum relative error is 7.8e-22 (70.1 bits).
|
|
|
|
Maximum ULP error is 0.500007. */
|
|
|
|
retval = res * binexp.x * t256.x;
|
2017-12-19 18:11:37 +00:00
|
|
|
if (isinf (retval))
|
|
|
|
goto ret_huge;
|
|
|
|
else
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret:
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
ret_huge:
|
|
|
|
return hhuge * hhuge;
|
|
|
|
|
|
|
|
ret_tiny:
|
|
|
|
return tiny * tiny;
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
2011-10-25 00:19:17 +00:00
|
|
|
#ifndef __ieee754_exp
|
2011-10-16 00:22:59 +00:00
|
|
|
strong_alias (__ieee754_exp, __exp_finite)
|
2011-10-25 00:19:17 +00:00
|
|
|
#endif
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2018-02-12 10:42:42 +00:00
|
|
|
/* Compute e^(x+xx). */
|
2011-10-25 04:56:33 +00:00
|
|
|
double
|
|
|
|
SECTION
|
2018-02-12 10:42:42 +00:00
|
|
|
__exp1 (double x, double xx)
|
2013-10-08 10:52:28 +00:00
|
|
|
{
|
2001-03-12 00:04:52 +00:00
|
|
|
double bexp, t, eps, del, base, y, al, bet, res, rem, cor;
|
2013-10-08 10:52:28 +00:00
|
|
|
mynumber junk1, junk2, binexp = {{0, 0}};
|
|
|
|
int4 i, j, m, n, ex;
|
2001-03-12 00:04:52 +00:00
|
|
|
|
|
|
|
junk1.x = x;
|
|
|
|
m = junk1.i[HIGH_HALF];
|
2013-10-08 10:52:28 +00:00
|
|
|
n = m & hugeint; /* no sign */
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2018-02-12 10:42:42 +00:00
|
|
|
/* fabs (x) > 5.551112e-17 and fabs (x) < 7.080010e+02. */
|
2013-10-08 10:52:28 +00:00
|
|
|
if (n > smallint && n < bigint)
|
|
|
|
{
|
|
|
|
y = x * log2e.x + three51.x;
|
|
|
|
bexp = y - three51.x; /* multiply the result by 2**bexp */
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
junk1.x = y;
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
eps = bexp * ln_two2.x; /* x = bexp*ln(2) + t - eps */
|
|
|
|
t = x - bexp * ln_two1.x;
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
y = t + three33.x;
|
|
|
|
base = y - three33.x; /* t rounded to a multiple of 2**-18 */
|
|
|
|
junk2.x = y;
|
|
|
|
del = (t - base) + (xx - eps); /* x = bexp*ln(2) + base + del */
|
|
|
|
eps = del + del * del * (p3.x * del + p2.x);
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
binexp.i[HIGH_HALF] = (junk1.i[LOW_HALF] + 1023) << 20;
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
i = ((junk2.i[LOW_HALF] >> 8) & 0xfffffffe) + 356;
|
|
|
|
j = (junk2.i[LOW_HALF] & 511) << 1;
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
al = coar.x[i] * fine.x[j];
|
|
|
|
bet = ((coar.x[i] * fine.x[j + 1] + coar.x[i + 1] * fine.x[j])
|
|
|
|
+ coar.x[i + 1] * fine.x[j + 1]);
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
rem = (bet + bet * eps) + al * eps;
|
|
|
|
res = al + rem;
|
2018-02-12 10:42:42 +00:00
|
|
|
/* Maximum relative error before rounding is 8.8e-22 (69.9 bits).
|
|
|
|
Maximum ULP error is 0.500008. */
|
|
|
|
return res * binexp.x;
|
2013-10-08 10:52:28 +00:00
|
|
|
}
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
if (n <= smallint)
|
|
|
|
return 1.0; /* if x->0 e^x=1 */
|
|
|
|
|
|
|
|
if (n >= badint)
|
|
|
|
{
|
|
|
|
if (n > infint)
|
|
|
|
return (zero / zero); /* x is NaN, return invalid */
|
|
|
|
if (n < infint)
|
|
|
|
return ((x > 0) ? (hhuge * hhuge) : (tiny * tiny));
|
|
|
|
/* x is finite, cause either overflow or underflow */
|
|
|
|
if (junk1.i[LOW_HALF] != 0)
|
|
|
|
return (zero / zero); /* x is NaN */
|
|
|
|
return ((x > 0) ? inf.x : zero); /* |x| = inf; return either inf or 0 */
|
|
|
|
}
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2013-10-08 10:52:28 +00:00
|
|
|
y = x * log2e.x + three51.x;
|
2001-03-12 00:04:52 +00:00
|
|
|
bexp = y - three51.x;
|
|
|
|
junk1.x = y;
|
2013-10-08 10:52:28 +00:00
|
|
|
eps = bexp * ln_two2.x;
|
|
|
|
t = x - bexp * ln_two1.x;
|
2001-03-12 00:04:52 +00:00
|
|
|
y = t + three33.x;
|
|
|
|
base = y - three33.x;
|
|
|
|
junk2.x = y;
|
2013-10-08 10:52:28 +00:00
|
|
|
del = (t - base) + (xx - eps);
|
|
|
|
eps = del + del * del * (p3.x * del + p2.x);
|
|
|
|
i = ((junk2.i[LOW_HALF] >> 8) & 0xfffffffe) + 356;
|
|
|
|
j = (junk2.i[LOW_HALF] & 511) << 1;
|
|
|
|
al = coar.x[i] * fine.x[j];
|
|
|
|
bet = ((coar.x[i] * fine.x[j + 1] + coar.x[i + 1] * fine.x[j])
|
|
|
|
+ coar.x[i + 1] * fine.x[j + 1]);
|
|
|
|
rem = (bet + bet * eps) + al * eps;
|
2001-03-12 00:04:52 +00:00
|
|
|
res = al + rem;
|
|
|
|
cor = (al - res) + rem;
|
2013-10-08 10:52:28 +00:00
|
|
|
if (m >> 31)
|
|
|
|
{
|
2018-02-12 10:42:42 +00:00
|
|
|
/* x < 0. */
|
2013-10-08 10:52:28 +00:00
|
|
|
ex = junk1.i[LOW_HALF];
|
|
|
|
if (res < 1.0)
|
|
|
|
{
|
|
|
|
res += res;
|
|
|
|
cor += cor;
|
|
|
|
ex -= 1;
|
|
|
|
}
|
|
|
|
if (ex >= -1022)
|
|
|
|
{
|
|
|
|
binexp.i[HIGH_HALF] = (1023 + ex) << 20;
|
2018-02-12 10:42:42 +00:00
|
|
|
/* Maximum ULP error is 0.500008. */
|
|
|
|
return res * binexp.x;
|
2013-10-08 10:52:28 +00:00
|
|
|
}
|
2018-02-12 10:42:42 +00:00
|
|
|
/* Denormal case - ex < -1022. */
|
2013-10-08 10:52:28 +00:00
|
|
|
ex = -(1022 + ex);
|
|
|
|
binexp.i[HIGH_HALF] = (1023 - ex) << 20;
|
|
|
|
res *= binexp.x;
|
|
|
|
cor *= binexp.x;
|
|
|
|
t = 1.0 + res;
|
|
|
|
y = ((1.0 - t) + res) + cor;
|
|
|
|
res = t + y;
|
2018-02-12 10:42:42 +00:00
|
|
|
binexp.i[HIGH_HALF] = 0x00100000;
|
|
|
|
/* Maximum ULP error is 0.500004. */
|
|
|
|
return (res - 1.0) * binexp.x;
|
2013-10-08 10:52:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
binexp.i[HIGH_HALF] = (junk1.i[LOW_HALF] + 767) << 20;
|
2018-02-12 10:42:42 +00:00
|
|
|
/* Maximum ULP error is 0.500008. */
|
|
|
|
return res * binexp.x * t256.x;
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|