isnan.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /* Test for NaN that does not need libm.
  2. Copyright (C) 2007-2011 Free Software Foundation, Inc.
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
  14. #include <config.h>
  15. /* Specification. */
  16. #ifdef USE_LONG_DOUBLE
  17. /* Specification found in math.h or isnanl-nolibm.h. */
  18. extern int rpl_isnanl (long double x);
  19. #elif ! defined USE_FLOAT
  20. /* Specification found in math.h or isnand-nolibm.h. */
  21. extern int rpl_isnand (double x);
  22. #else /* defined USE_FLOAT */
  23. /* Specification found in math.h or isnanf-nolibm.h. */
  24. extern int rpl_isnanf (float x);
  25. #endif
  26. #include <float.h>
  27. #include <string.h>
  28. #include "float+.h"
  29. #ifdef USE_LONG_DOUBLE
  30. # define FUNC rpl_isnanl
  31. # define DOUBLE long double
  32. # define MAX_EXP LDBL_MAX_EXP
  33. # define MIN_EXP LDBL_MIN_EXP
  34. # if defined LDBL_EXPBIT0_WORD && defined LDBL_EXPBIT0_BIT
  35. # define KNOWN_EXPBIT0_LOCATION
  36. # define EXPBIT0_WORD LDBL_EXPBIT0_WORD
  37. # define EXPBIT0_BIT LDBL_EXPBIT0_BIT
  38. # endif
  39. # define SIZE SIZEOF_LDBL
  40. # define L_(literal) literal##L
  41. #elif ! defined USE_FLOAT
  42. # define FUNC rpl_isnand
  43. # define DOUBLE double
  44. # define MAX_EXP DBL_MAX_EXP
  45. # define MIN_EXP DBL_MIN_EXP
  46. # if defined DBL_EXPBIT0_WORD && defined DBL_EXPBIT0_BIT
  47. # define KNOWN_EXPBIT0_LOCATION
  48. # define EXPBIT0_WORD DBL_EXPBIT0_WORD
  49. # define EXPBIT0_BIT DBL_EXPBIT0_BIT
  50. # endif
  51. # define SIZE SIZEOF_DBL
  52. # define L_(literal) literal
  53. #else /* defined USE_FLOAT */
  54. # define FUNC rpl_isnanf
  55. # define DOUBLE float
  56. # define MAX_EXP FLT_MAX_EXP
  57. # define MIN_EXP FLT_MIN_EXP
  58. # if defined FLT_EXPBIT0_WORD && defined FLT_EXPBIT0_BIT
  59. # define KNOWN_EXPBIT0_LOCATION
  60. # define EXPBIT0_WORD FLT_EXPBIT0_WORD
  61. # define EXPBIT0_BIT FLT_EXPBIT0_BIT
  62. # endif
  63. # define SIZE SIZEOF_FLT
  64. # define L_(literal) literal##f
  65. #endif
  66. #define EXP_MASK ((MAX_EXP - MIN_EXP) | 7)
  67. #define NWORDS \
  68. ((sizeof (DOUBLE) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
  69. typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double;
  70. int
  71. FUNC (DOUBLE x)
  72. {
  73. #ifdef KNOWN_EXPBIT0_LOCATION
  74. # if defined USE_LONG_DOUBLE && ((defined __ia64 && LDBL_MANT_DIG == 64) || (defined __x86_64__ || defined __amd64__) || (defined __i386 || defined __i386__ || defined _I386 || defined _M_IX86 || defined _X86_))
  75. /* Special CPU dependent code is needed to treat bit patterns outside the
  76. IEEE 754 specification (such as Pseudo-NaNs, Pseudo-Infinities,
  77. Pseudo-Zeroes, Unnormalized Numbers, and Pseudo-Denormals) as NaNs.
  78. These bit patterns are:
  79. - exponent = 0x0001..0x7FFF, mantissa bit 63 = 0,
  80. - exponent = 0x0000, mantissa bit 63 = 1.
  81. The NaN bit pattern is:
  82. - exponent = 0x7FFF, mantissa >= 0x8000000000000001. */
  83. memory_double m;
  84. unsigned int exponent;
  85. m.value = x;
  86. exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
  87. # ifdef WORDS_BIGENDIAN
  88. /* Big endian: EXPBIT0_WORD = 0, EXPBIT0_BIT = 16. */
  89. if (exponent == 0)
  90. return 1 & (m.word[0] >> 15);
  91. else if (exponent == EXP_MASK)
  92. return (((m.word[0] ^ 0x8000U) << 16) | m.word[1] | (m.word[2] >> 16)) != 0;
  93. else
  94. return 1 & ~(m.word[0] >> 15);
  95. # else
  96. /* Little endian: EXPBIT0_WORD = 2, EXPBIT0_BIT = 0. */
  97. if (exponent == 0)
  98. return (m.word[1] >> 31);
  99. else if (exponent == EXP_MASK)
  100. return ((m.word[1] ^ 0x80000000U) | m.word[0]) != 0;
  101. else
  102. return (m.word[1] >> 31) ^ 1;
  103. # endif
  104. # else
  105. /* Be careful to not do any floating-point operation on x, such as x == x,
  106. because x may be a signaling NaN. */
  107. # if defined __TINYC__ || defined __SUNPRO_C || defined __DECC \
  108. || (defined __sgi && !defined __GNUC__) || defined __ICC
  109. /* The Sun C 5.0, Intel ICC 10.0, and Compaq (ex-DEC) 6.4 compilers don't
  110. recognize the initializers as constant expressions. The latter compiler
  111. also fails when constant-folding 0.0 / 0.0 even when constant-folding is
  112. not required. The SGI MIPSpro C compiler complains about "floating-point
  113. operation result is out of range". */
  114. static DOUBLE zero = L_(0.0);
  115. memory_double nan;
  116. DOUBLE plus_inf = L_(1.0) / L_(0.0);
  117. DOUBLE minus_inf = -L_(1.0) / L_(0.0);
  118. nan.value = zero / zero;
  119. # else
  120. static memory_double nan = { L_(0.0) / L_(0.0) };
  121. static DOUBLE plus_inf = L_(1.0) / L_(0.0);
  122. static DOUBLE minus_inf = -L_(1.0) / L_(0.0);
  123. # endif
  124. {
  125. memory_double m;
  126. /* A NaN can be recognized through its exponent. But exclude +Infinity and
  127. -Infinity, which have the same exponent. */
  128. m.value = x;
  129. if (((m.word[EXPBIT0_WORD] ^ nan.word[EXPBIT0_WORD])
  130. & (EXP_MASK << EXPBIT0_BIT))
  131. == 0)
  132. return (memcmp (&m.value, &plus_inf, SIZE) != 0
  133. && memcmp (&m.value, &minus_inf, SIZE) != 0);
  134. else
  135. return 0;
  136. }
  137. # endif
  138. #else
  139. /* The configuration did not find sufficient information. Give up about
  140. the signaling NaNs, handle only the quiet NaNs. */
  141. if (x == x)
  142. {
  143. # if defined USE_LONG_DOUBLE && ((defined __ia64 && LDBL_MANT_DIG == 64) || (defined __x86_64__ || defined __amd64__) || (defined __i386 || defined __i386__ || defined _I386 || defined _M_IX86 || defined _X86_))
  144. /* Detect any special bit patterns that pass ==; see comment above. */
  145. memory_double m1;
  146. memory_double m2;
  147. memset (&m1.value, 0, SIZE);
  148. memset (&m2.value, 0, SIZE);
  149. m1.value = x;
  150. m2.value = x + (x ? 0.0L : -0.0L);
  151. if (memcmp (&m1.value, &m2.value, SIZE) != 0)
  152. return 1;
  153. # endif
  154. return 0;
  155. }
  156. else
  157. return 1;
  158. #endif
  159. }