diff options
author | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-05-16 13:34:34 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-05-17 14:44:08 -0300 |
commit | 7620dc123570e2c8080a4dcc51d220a9d92c8841 (patch) | |
tree | b6494a7a8a234c5d74af6e40a12e770185bd1c2d /math/e_exp2l.c | |
parent | ad2f35cb396d24391150675fb55311c98d1e1592 (diff) | |
download | glibc-7620dc123570e2c8080a4dcc51d220a9d92c8841.tar.gz glibc-7620dc123570e2c8080a4dcc51d220a9d92c8841.tar.xz glibc-7620dc123570e2c8080a4dcc51d220a9d92c8841.zip |
Convert e_exp2l.c into a template
This patch converts the implementation of exp2l in math/e_exp2l.c into a template in math/e_exp2_template.c, then adjusts Makefile to use this template for long double (the implementations for float and double in sysdeps have higher precedence and are not used). This template can also be used for float128, thus reducing the amount of duplicated code that gets added when adding support the new type. Tested for powerpc64le and s390x. * math/Makefile (libm-calls): Move e_exp2F to gen-libm-calls. (gen-libm-calls): Add e_exp2F to use the template. * math/e_exp2l.c: Rename to math/e_exp2_template.c. * math/e_exp2_template.c: New file, renamed from math/e_exp2l.c, and made into a template. * sysdeps/generic/math-type-macros.h (M_MIN_EXP): New macro.
Diffstat (limited to 'math/e_exp2l.c')
-rw-r--r-- | math/e_exp2l.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/math/e_exp2l.c b/math/e_exp2l.c deleted file mode 100644 index bd68e62cd4..0000000000 --- a/math/e_exp2l.c +++ /dev/null @@ -1,62 +0,0 @@ -/* Compute 2^x. - Copyright (C) 2012-2017 Free Software Foundation, Inc. - 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/>. */ - -#include <math.h> -#include <math_private.h> -#include <float.h> - -/* 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 - -long double -__ieee754_exp2l (long double x) -{ - if (__glibc_likely (isless (x, (long double) LDBL_MAX_EXP))) - { - if (__builtin_expect (isgreaterequal (x, (long double) (LDBL_MIN_EXP - - LDBL_MANT_DIG - - 1)), 1)) - { - int intx = (int) x; - long double fractx = x - intx; - long double result; - if (fabsl (fractx) < LDBL_EPSILON / 4.0L) - result = __scalbnl (1.0L + fractx, intx); - else - result = __scalbnl (__ieee754_expl (M_LN2l * fractx), intx); - math_check_force_underflow_nonneg (result); - return result; - } - else - { - /* Underflow or exact zero. */ - if (isinf (x)) - return 0; - else - return LDBL_MIN * LDBL_MIN; - } - } - else - /* Infinity, NaN or overflow. */ - return LDBL_MAX * x; -} -strong_alias (__ieee754_exp2l, __exp2l_finite) |