glibc/sysdeps/ieee754/ldbl-128
Joseph Myers 0acb8a2a85 Refactor long double information into bits/long-double.h.
Information about whether the ABI of long double is the same as that
of double is split between bits/mathdef.h and bits/wordsize.h.

When the ABIs are the same, bits/mathdef.h defines
__NO_LONG_DOUBLE_MATH.  In addition, in the case where the same glibc
binary supports both -mlong-double-64 and -mlong-double-128,
bits/wordsize.h defines __LONG_DOUBLE_MATH_OPTIONAL, along with
__NO_LONG_DOUBLE_MATH if this particular compilation is with
-mlong-double-64.

As part of the refactoring I proposed in
<https://sourceware.org/ml/libc-alpha/2016-11/msg00745.html>, this
patch puts all that information in a single header,
bits/long-double.h.  It is included from sys/cdefs.h alongside the
include of bits/wordsize.h, so other headers generally do not need to
include bits/long-double.h directly.

Previously, various bits/mathdef.h headers and bits/wordsize.h headers
had this long double information (including implicitly in some
bits/mathdef.h headers through not having the defines present in the
default version).  After the patch, it's all in six bits/long-double.h
headers.  Furthermore, most of those new headers are not
architecture-specific.  Architectures with optional long double all
use the ldbl-opt sysdeps directory, either in the order (ldbl-64-128,
ldbl-opt, ldbl-128) or (ldbl-128ibm, ldbl-opt).  Thus a generic header
for the case where long double = double, and headers in ldbl-128,
ldbl-96 and ldbl-opt, suffices to cover every architecture except for
cases where long double properties vary between different ABIs sharing
a set of installed headers; fortunately all the ldbl-opt cases share a
single compiler-predefined macro __LONG_DOUBLE_128__ that can be used
to tell whether this compilation is -mlong-double-64 or
-mlong-double-128.

The two cases where a set of headers is shared between ABIs with
different long double properties, MIPS (o32 has long double = double,
other ABIs use ldbl-128) and SPARC (32-bit has optional long double,
64-bit has required long double), need their own bits/long-double.h
headers.

As with bits/wordsize.h, multiple-include protection for this header
is generally implicit through the include guards on sys/cdefs.h, and
multiple inclusion is harmless in any case.  There is one subtlety:
the header must not define __LONG_DOUBLE_MATH_OPTIONAL if
__NO_LONG_DOUBLE_MATH was defined before its inclusion, because doing
so breaks how sysdeps/ieee754/ldbl-opt/nldbl-compat.h defines
__NO_LONG_DOUBLE_MATH itself before including system headers.  Subject
to keeping that working, it would be reasonable to move these macros
from defined/undefined #ifdef to always-defined 1/0 #if semantics, but
this patch does not attempt to do so, just rearranges where the macros
are defined.

After this patch, the only use of bits/mathdef.h is the alpha one for
modifying complex function ABIs for old GCC.  Thus, all versions of
the header other than the default and alpha versions are removed, as
is the include from math.h.

Tested for x86_64 and x86.  Also did compilation-only testing with
build-many-glibcs.py.

	* bits/long-double.h: New file.
	* sysdeps/ieee754/ldbl-128/bits/long-double.h: Likewise.
	* sysdeps/ieee754/ldbl-96/bits/long-double.h: Likewise.
	* sysdeps/ieee754/ldbl-opt/bits/long-double.h: Likewise.
	* sysdeps/mips/bits/long-double.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/long-double.h: Likewise.
	* math/Makefile (headers): Add bits/long-double.h.
	* misc/sys/cdefs.h: Include <bits/long-double.h>.
	* stdlib/strtold.c: Include <bits/long-double.h> instead of
	<bits/wordsize.h>.
	* bits/mathdef.h [!_COMPLEX_H]: Do not allow inclusion.
	[!__NO_LONG_DOUBLE_MATH]: Remove conditional code.
	* math/math.h: Do not include <bits/mathdef.h>.
	* sysdeps/aarch64/bits/mathdef.h: Remove file.
	* sysdeps/alpha/bits/mathdef.h [!_COMPLEX_H]: Do not allow
	inclusion.
	* sysdeps/ia64/bits/mathdef.h: Remove file.
	* sysdeps/m68k/m680x0/bits/mathdef.h: Likewise.
	* sysdeps/mips/bits/mathdef.h: Likewise.
	* sysdeps/powerpc/bits/mathdef.h: Likewise.
	* sysdeps/s390/bits/mathdef.h: Likewise.
	* sysdeps/sparc/bits/mathdef.h: Likewise.
	* sysdeps/x86/bits/mathdef.h: Likewise.
	* sysdeps/s390/s390-32/bits/wordsize.h
	[!__NO_LONG_DOUBLE_MATH && !__LONG_DOUBLE_MATH_OPTIONAL]: Remove
	conditional code.
	* sysdeps/s390/s390-64/bits/wordsize.h
	[!__NO_LONG_DOUBLE_MATH && !__LONG_DOUBLE_MATH_OPTIONAL]:
	Likewise.
	* sysdeps/unix/sysv/linux/alpha/bits/wordsize.h
	[!__NO_LONG_DOUBLE_MATH && !__LONG_DOUBLE_MATH_OPTIONAL]:
	Likewise.
	* sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h
	[!__NO_LONG_DOUBLE_MATH && !__LONG_DOUBLE_MATH_OPTIONAL]:
	Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/wordsize.h
	[!__NO_LONG_DOUBLE_MATH && !__LONG_DOUBLE_MATH_OPTIONAL]:
	Likewise.
2016-12-14 18:27:56 +00:00
..
bits Refactor long double information into bits/long-double.h. 2016-12-14 18:27:56 +00:00
e_acoshl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_acosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_asinl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_atan2l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_atanhl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_coshl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_exp10l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_expl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_fmodl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
e_gammal_r.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_hypotl.c Fix hypot sNaN handling (bug 20940). 2016-12-07 01:16:36 +00:00
e_ilogbl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
e_j0l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_j1l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_jnl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_lgammal_r.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_log2l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_log10l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_logl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_powl.c Fix sysdeps/ieee754 pow handling of sNaN arguments (bug 20916). 2016-12-02 23:21:15 +00:00
e_rem_pio2l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_remainderl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
e_sinhl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
gamma_productl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
ieee754.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
k_cosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
k_sincosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
k_sinl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
k_tanl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
ldbl2mpn.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lgamma_negl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
lgamma_productl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
Makefile * sysdeps/ieee754/ldbl-128/Makefile: New file. 2007-03-14 17:36:18 +00:00
math_ldbl.h ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
mpn2ldbl.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
printf_fphex.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
s_asinhl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_atanl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_cbrtl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_ceill.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_copysignl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_cosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_erfl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_expm1l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_fabsl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_finitel.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_floorl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_fma.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
s_fmal.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_fpclassifyl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_frexpl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_getpayloadl.c Make ldbl-128 getpayload, setpayload functions use _Float128. 2016-12-01 23:23:51 +00:00
s_isinfl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_isnanl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_issignalingl.c Define HIGH_ORDER_BIT_IS_SET_FOR_SNAN to 0 or 1. 2016-10-17 22:48:51 +00:00
s_llrintl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_llroundl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_log1pl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_logbl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_lrintl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_lroundl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_modfl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_nearbyintl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_nextafterl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_nexttoward.c Make nextafter, nexttoward set errno (bug 6799). 2015-11-02 18:54:19 +00:00
s_nexttowardf.c Make nextafter, nexttoward set errno (bug 6799). 2015-11-02 18:54:19 +00:00
s_nextupl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_remquol.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_rintl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_roundl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_scalblnl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_scalbnl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_setpayloadl_main.c Make ldbl-128 getpayload, setpayload functions use _Float128. 2016-12-01 23:23:51 +00:00
s_setpayloadl.c Add setpayload, setpayloadf, setpayloadl. 2016-11-19 00:16:28 +00:00
s_setpayloadsigl.c Add setpayloadsig, setpayloadsigf, setpayloadsigl. 2016-11-24 23:56:48 +00:00
s_signbitl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
s_sincosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_sinl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_tanhl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_tanl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
s_totalorderl.c Define HIGH_ORDER_BIT_IS_SET_FOR_SNAN to 0 or 1. 2016-10-17 22:48:51 +00:00
s_totalordermagl.c Define HIGH_ORDER_BIT_IS_SET_FOR_SNAN to 0 or 1. 2016-10-17 22:48:51 +00:00
s_truncl.c ldbl-128: Rename 'long double' to '_Float128' 2016-08-31 10:38:11 -05:00
strtod_nan_ldouble.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
strtold_l.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
t_expl.h ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
t_sincosl.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00
w_expl.c This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use standard C99 macros. This has no effect on generated code. 2015-06-03 15:41:36 +01:00
x2y2m1l.c ldbl-128: Use L(x) macro for long double constants 2016-09-13 15:33:59 -05:00