2012-03-22 12:55:19 +00:00
|
|
|
/* Compute 2^x.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 2012-2016 Free Software Foundation, Inc.
|
2012-03-22 12:55:19 +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
|
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
#include <math.h>
|
2011-10-08 09:16:04 +00:00
|
|
|
#include <math_private.h>
|
2012-03-22 12:55:19 +00:00
|
|
|
#include <float.h>
|
2005-12-14 08:43:25 +00:00
|
|
|
|
2015-02-12 19:02:45 +00:00
|
|
|
/* To avoid spurious underflows, use this definition to treat IBM long
|
|
|
|
double as approximating an IEEE-style format. */
|
|
|
|
#if LDBL_MANT_DIG == 106
|
|
|
|
# undef LDBL_EPSILON
|
|
|
|
# define LDBL_EPSILON 0x1p-106L
|
|
|
|
#endif
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
long double
|
|
|
|
__ieee754_exp2l (long double x)
|
|
|
|
{
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_likely (isless (x, (long double) LDBL_MAX_EXP)))
|
2012-03-22 12:55:19 +00:00
|
|
|
{
|
|
|
|
if (__builtin_expect (isgreaterequal (x, (long double) (LDBL_MIN_EXP
|
|
|
|
- LDBL_MANT_DIG
|
|
|
|
- 1)), 1))
|
|
|
|
{
|
|
|
|
int intx = (int) x;
|
|
|
|
long double fractx = x - intx;
|
2015-09-14 22:00:12 +00:00
|
|
|
long double result;
|
2015-02-12 19:02:45 +00:00
|
|
|
if (fabsl (fractx) < LDBL_EPSILON / 4.0L)
|
2015-09-14 22:00:12 +00:00
|
|
|
result = __scalbnl (1.0L + fractx, intx);
|
|
|
|
else
|
|
|
|
result = __scalbnl (__ieee754_expl (M_LN2l * fractx), intx);
|
2015-09-23 22:42:30 +00:00
|
|
|
math_check_force_underflow_nonneg (result);
|
2015-09-14 22:00:12 +00:00
|
|
|
return result;
|
2012-03-22 12:55:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Underflow or exact zero. */
|
2015-06-03 14:36:34 +00:00
|
|
|
if (isinf (x))
|
2012-03-22 12:55:19 +00:00
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return LDBL_MIN * LDBL_MIN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* Infinity, NaN or overflow. */
|
|
|
|
return LDBL_MAX * x;
|
2005-12-14 08:43:25 +00:00
|
|
|
}
|
2011-10-12 15:27:51 +00:00
|
|
|
strong_alias (__ieee754_exp2l, __exp2l_finite)
|