2 dnl Copyright (C) 2007-2020 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_ISNANL],
9 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 gl_HAVE_ISNANL_NO_LIBM
12 if test $gl_cv_func_isnanl_no_libm = no; then
13 gl_HAVE_ISNANL_IN_LIBM
14 if test $gl_cv_func_isnanl_in_libm = yes; then
18 dnl The variable gl_func_isnanl set here is used by isnan.m4.
19 if test $gl_cv_func_isnanl_no_libm = yes \
20 || test $gl_cv_func_isnanl_in_libm = yes; then
22 LIBS="$LIBS $ISNANL_LIBM"
25 case "$gl_cv_func_isnanl_works" in
26 *yes) gl_func_isnanl=yes ;;
27 *) gl_func_isnanl=no; ISNANL_LIBM= ;;
32 if test $gl_func_isnanl != yes; then
35 AC_SUBST([ISNANL_LIBM])
38 AC_DEFUN([gl_FUNC_ISNANL_NO_LIBM],
40 gl_HAVE_ISNANL_NO_LIBM
41 gl_func_isnanl_no_libm=$gl_cv_func_isnanl_no_libm
42 if test $gl_func_isnanl_no_libm = yes; then
44 case "$gl_cv_func_isnanl_works" in
46 *) gl_func_isnanl_no_libm=no ;;
49 if test $gl_func_isnanl_no_libm = yes; then
50 AC_DEFINE([HAVE_ISNANL_IN_LIBC], [1],
51 [Define if the isnan(long double) function is available in libc.])
55 dnl Prerequisites of replacement isnanl definition. It does not need -lm.
56 AC_DEFUN([gl_PREREQ_ISNANL],
58 gl_LONG_DOUBLE_EXPONENT_LOCATION
59 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
62 dnl Test whether isnanl() can be used without libm.
63 AC_DEFUN([gl_HAVE_ISNANL_NO_LIBM],
65 AC_CACHE_CHECK([whether isnan(long double) can be used without linking with libm],
66 [gl_cv_func_isnanl_no_libm],
71 #if (__GNUC__ >= 4) || (__clang_major__ >= 4)
73 # define isnanl(x) __builtin_isnan ((long double)(x))
76 # define isnanl(x) isnan ((long double)(x))
79 [[return isnanl (x);]])],
80 [gl_cv_func_isnanl_no_libm=yes],
81 [gl_cv_func_isnanl_no_libm=no])
85 dnl Test whether isnanl() can be used with libm.
86 AC_DEFUN([gl_HAVE_ISNANL_IN_LIBM],
88 AC_CACHE_CHECK([whether isnan(long double) can be used with libm],
89 [gl_cv_func_isnanl_in_libm],
96 #if (__GNUC__ >= 4) || (__clang_major__ >= 4)
98 # define isnanl(x) __builtin_isnan ((long double)(x))
101 # define isnanl(x) isnan ((long double)(x))
104 [[return isnanl (x);]])],
105 [gl_cv_func_isnanl_in_libm=yes],
106 [gl_cv_func_isnanl_in_libm=no])
111 dnl Test whether isnanl() recognizes all canonical numbers which are neither
112 dnl finite nor infinite.
113 AC_DEFUN([gl_FUNC_ISNANL_WORKS],
115 AC_REQUIRE([AC_PROG_CC])
116 AC_REQUIRE([gl_BIGENDIAN])
117 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
118 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
119 AC_CACHE_CHECK([whether isnanl works], [gl_cv_func_isnanl_works],
126 #if (__GNUC__ >= 4) || (__clang_major__ >= 4)
128 # define isnanl(x) __builtin_isnan ((long double)(x))
131 # define isnanl(x) isnan ((long double)(x))
134 ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
135 typedef union { unsigned int word[NWORDS]; long double value; }
137 /* On Irix 6.5, gcc 3.4.3 can't compute compile-time NaN, and needs the
138 runtime type conversion. */
140 static long double NaNl ()
146 # define NaNl() (0.0L / 0.0L)
152 if (!isnanl (NaNl ()))
156 memory_long_double m;
159 /* The isnanl function should be immune against changes in the sign bit and
160 in the mantissa bits. The xor operation twiddles a bit that can only be
161 a sign bit or a mantissa bit (since the exponent never extends to
164 m.word[NWORDS / 2] ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
165 for (i = 0; i < NWORDS; i++)
167 if (!isnanl (m.value))
171 #if ((defined __ia64 && LDBL_MANT_DIG == 64) || (defined __x86_64__ || defined __amd64__) || (defined __i386 || defined __i386__ || defined _I386 || defined _M_IX86 || defined _X86_)) && !HAVE_SAME_LONG_DOUBLE_AS_DOUBLE
172 /* Representation of an 80-bit 'long double' as an initializer for a sequence
173 of 'unsigned int' words. */
174 # ifdef WORDS_BIGENDIAN
175 # define LDBL80_WORDS(exponent,manthi,mantlo) \
176 { ((unsigned int) (exponent) << 16) | ((unsigned int) (manthi) >> 16), \
177 ((unsigned int) (manthi) << 16) | ((unsigned int) (mantlo) >> 16), \
178 (unsigned int) (mantlo) << 16 \
181 # define LDBL80_WORDS(exponent,manthi,mantlo) \
182 { mantlo, manthi, exponent }
185 static memory_long_double x =
186 { LDBL80_WORDS (0xFFFF, 0xC3333333, 0x00000000) };
187 if (!isnanl (x.value))
191 /* Signalling NaN. */
192 static memory_long_double x =
193 { LDBL80_WORDS (0xFFFF, 0x83333333, 0x00000000) };
194 if (!isnanl (x.value))
197 /* isnanl should return something even for noncanonical values. */
199 static memory_long_double x =
200 { LDBL80_WORDS (0xFFFF, 0x40000001, 0x00000000) };
201 if (isnanl (x.value) && !isnanl (x.value))
204 { /* Pseudo-Infinity. */
205 static memory_long_double x =
206 { LDBL80_WORDS (0xFFFF, 0x00000000, 0x00000000) };
207 if (isnanl (x.value) && !isnanl (x.value))
211 static memory_long_double x =
212 { LDBL80_WORDS (0x4004, 0x00000000, 0x00000000) };
213 if (isnanl (x.value) && !isnanl (x.value))
216 { /* Unnormalized number. */
217 static memory_long_double x =
218 { LDBL80_WORDS (0x4000, 0x63333333, 0x00000000) };
219 if (isnanl (x.value) && !isnanl (x.value))
222 { /* Pseudo-Denormal. */
223 static memory_long_double x =
224 { LDBL80_WORDS (0x0000, 0x83333333, 0x00000000) };
225 if (isnanl (x.value) && !isnanl (x.value))
232 [gl_cv_func_isnanl_works=yes],
233 [gl_cv_func_isnanl_works=no],
235 mingw*) # Guess yes on mingw, no on MSVC.
236 AC_EGREP_CPP([Known], [
241 [gl_cv_func_isnanl_works="guessing yes"],
242 [gl_cv_func_isnanl_works="guessing no"])
244 *) gl_cv_func_isnanl_works="guessing yes" ;;