Fix bug with -0.0L in previous patch.
[gnulib.git] / tests / test-isnanl.h
1 /* Test of isnanl() substitute.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <float.h>
20 #include <limits.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23
24 #define ASSERT(expr) \
25   do                                                                         \
26     {                                                                        \
27       if (!(expr))                                                           \
28         {                                                                    \
29           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
30           abort ();                                                          \
31         }                                                                    \
32     }                                                                        \
33   while (0)
34
35 int
36 main ()
37 {
38   #define NWORDS \
39     ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
40   typedef union { unsigned int word[NWORDS]; long double value; }
41           memory_long_double;
42
43   /* Finite values.  */
44   ASSERT (!isnanl (3.141L));
45   ASSERT (!isnanl (3.141e30L));
46   ASSERT (!isnanl (3.141e-30L));
47   ASSERT (!isnanl (-2.718L));
48   ASSERT (!isnanl (-2.718e30L));
49   ASSERT (!isnanl (-2.718e-30L));
50   ASSERT (!isnanl (0.0L));
51   ASSERT (!isnanl (-0.0L));
52   /* Infinite values.  */
53   ASSERT (!isnanl (1.0L / 0.0L));
54   ASSERT (!isnanl (-1.0L / 0.0L));
55   /* Quiet NaN.  */
56   ASSERT (isnanl (0.0L / 0.0L));
57
58 #if defined LDBL_EXPBIT0_WORD && defined LDBL_EXPBIT0_BIT
59   /* A bit pattern that is different from a Quiet NaN.  With a bit of luck,
60      it's a Signalling NaN.  */
61   {
62     memory_long_double m;
63     m.value = 0.0L / 0.0L;
64 # if LDBL_EXPBIT0_BIT > 0
65     m.word[LDBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (LDBL_EXPBIT0_BIT - 1);
66 # else
67     m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
68       ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
69 # endif
70     m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
71       |= (unsigned int) 1 << LDBL_EXPBIT0_BIT;
72     ASSERT (isnanl (m.value));
73   }
74 #endif
75
76 #if ((defined __ia64 && LDBL_MANT_DIG == 64) || (defined __x86_64__ || defined __amd64__) || (defined __i386 || defined __i386__ || defined _I386 || defined _M_IX86 || defined _X86_))
77 /* Representation of an 80-bit 'long double' as an initializer for a sequence
78    of 'unsigned int' words.  */
79 # ifdef WORDS_BIGENDIAN
80 #  define LDBL80_WORDS(exponent,manthi,mantlo) \
81      { ((unsigned int) (exponent) << 16) | ((unsigned int) (manthi) >> 16), \
82        ((unsigned int) (manthi) << 16) | (unsigned int) (mantlo) >> 16),    \
83        (unsigned int) (mantlo) << 16                                        \
84      }
85 # else
86 #  define LDBL80_WORDS(exponent,manthi,mantlo) \
87      { mantlo, manthi, exponent }
88 # endif
89   { /* Quiet NaN.  */
90     static memory_long_double x =
91       { LDBL80_WORDS (0xFFFF, 0xC3333333, 0x00000000) };
92     ASSERT (isnanl (x.value));
93   }
94   {
95     /* Signalling NaN.  */
96     static memory_long_double x =
97       { LDBL80_WORDS (0xFFFF, 0x83333333, 0x00000000) };
98     ASSERT (isnanl (x.value));
99   }
100   /* The isnanl function should recognize Pseudo-NaNs, Pseudo-Infinities,
101      Pseudo-Zeroes, Unnormalized Numbers, and Pseudo-Denormals, as defined in
102        Intel IA-64 Architecture Software Developer's Manual, Volume 1:
103        Application Architecture.
104        Table 5-2 "Floating-Point Register Encodings"
105        Figure 5-6 "Memory to Floating-Point Register Data Translation"
106    */
107   { /* Pseudo-NaN.  */
108     static memory_long_double x =
109       { LDBL80_WORDS (0xFFFF, 0x40000001, 0x00000000) };
110     ASSERT (isnanl (x.value));
111   }
112   { /* Pseudo-Infinity.  */
113     static memory_long_double x =
114       { LDBL80_WORDS (0xFFFF, 0x00000000, 0x00000000) };
115     ASSERT (isnanl (x.value));
116   }
117   { /* Pseudo-Zero.  */
118     static memory_long_double x =
119       { LDBL80_WORDS (0x4004, 0x00000000, 0x00000000) };
120     ASSERT (isnanl (x.value));
121   }
122   { /* Unnormalized number.  */
123     static memory_long_double x =
124       { LDBL80_WORDS (0x4000, 0x63333333, 0x00000000) };
125     ASSERT (isnanl (x.value));
126   }
127   { /* Pseudo-Denormal.  */
128     static memory_long_double x =
129       { LDBL80_WORDS (0x0000, 0x83333333, 0x00000000) };
130     ASSERT (isnanl (x.value));
131   }
132 #endif
133
134   return 0;
135 }