about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>2017-05-04 17:00:33 -0300
committerGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>2017-05-15 10:23:28 -0300
commit81f26b53b5e9a3520fb3cfd0be743339e13dfb56 (patch)
tree13b24c1c3a98b50ccbd0d8a6ea20edf34716284e /ChangeLog
parent33d523d7f8c8ffdeecd03df452d80bfda3bc25d4 (diff)
downloadglibc-81f26b53b5e9a3520fb3cfd0be743339e13dfb56.tar.gz
glibc-81f26b53b5e9a3520fb3cfd0be743339e13dfb56.tar.xz
glibc-81f26b53b5e9a3520fb3cfd0be743339e13dfb56.zip
float128: Add private _Float128 declarations for libm.
Add the necessary bits to the private headers to support
building the _Float128 libm functions.

A local override for float.h is provided to include the
missing *FLT128 macros implied by TS 18661-3 for this
type when compiling prior to GCC 7.

	* include/complex.h (__kernel_casinhf128): New declaration.
	* include/float.h: New file.
	* include/math.h (__finitef128): Add a hidden def.
	(__isinff128): Likewise.
	(__isnanf128): Likewise.
	(__fpclassify): Likewise.
	(__issignalling): Likewise.
	(__expf128): Likewise.
	(__expm1f128): Likewise.

	* sysdeps/generic/fix-fp-int-convert-overflow.h:
	(FIX_FLT128_LONG_CONVERT_OVERFLOW): New macro.
	(FIX_FLT128_LLONG_CONVERT_OVERFLOW): Likewise.

	* sysdeps/generic/math-type-macros-float128.h: New file.

	* sysdeps/generic/math_private.h: Include bits/floatn.h and
	math_private_calls.h for _Float128.
	(__isinff128): New inline implementation used when GCC < 7.0,
	since in this case __builtin_isinf_sign is broken.
	(fabsf128): New inline implementation that calls the builtin.
	(__EXPR_FLT128): New macro.
	(min_of_type): Optionally include _Float128 types too.

	* sysdeps/generic/math_private_calls.h (__kernel_sincos):
	Declare for _Float128.
	(__kernel_rem_pio2): Likewise.

	* sysdeps/ieee754/ldbl-opt/s_sin.c:
	(__DECL_SIMD_sincos_disablef128): New macro.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog34
1 files changed, 34 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 75ccb4b16b..d2282058ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,37 @@
+2017-05-14  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
+	    Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
+
+	* include/complex.h (__kernel_casinhf128): New declaration.
+	* include/float.h: New file.
+	* include/math.h (__finitef128): Add a hidden def.
+	(__isinff128): Likewise.
+	(__isnanf128): Likewise.
+	(__fpclassify): Likewise.
+	(__issignalling): Likewise.
+	(__expf128): Likewise.
+	(__expm1f128): Likewise.
+
+	* sysdeps/generic/fix-fp-int-convert-overflow.h:
+	(FIX_FLT128_LONG_CONVERT_OVERFLOW): New macro.
+	(FIX_FLT128_LLONG_CONVERT_OVERFLOW): Likewise.
+
+	* sysdeps/generic/math-type-macros-float128.h: New file.
+
+	* sysdeps/generic/math_private.h: Include bits/floatn.h and
+	math_private_calls.h for _Float128.
+	(__isinff128): New inline implementation used when GCC < 7.0,
+	since in this case __builtin_isinf_sign is broken.
+	(fabsf128): New inline implementation that calls the builtin.
+	(__EXPR_FLT128): New macro.
+	(min_of_type): Optionally include _Float128 types too.
+
+	* sysdeps/generic/math_private_calls.h (__kernel_sincos):
+	Declare for _Float128.
+	(__kernel_rem_pio2): Likewise.
+
+	* sysdeps/ieee754/ldbl-opt/s_sin.c:
+	(__DECL_SIMD_sincos_disablef128): New macro.
+
 2017-05-14  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
 
 	* math/math.h: Include bits/math-finite.h for float128.