tests: IRIX 6.2 cc can't compile -0.0 into .data
[pspp] / tests / test-isnanl.h
1 /* Test of isnanl() substitute.
2    Copyright (C) 2007-2009 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           fflush (stderr);                                                   \
31           abort ();                                                          \
32         }                                                                    \
33     }                                                                        \
34   while (0)
35
36 /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
37    So we use minus_zero instead.
38    IRIX cc can't put -0.0L into .data, but can compute at runtime.
39    Note that the expression -LDBL_MIN * LDBL_MIN does not work on other
40    platforms, such as when cross-compiling to PowerPC on MacOS X 10.5.  */
41 #if defined __hpux || defined __sgi
42 static long double
43 compute_minus_zero (void)
44 {
45   return -LDBL_MIN * LDBL_MIN;
46 }
47 # define minus_zero compute_minus_zero ()
48 #else
49 long double minus_zero = -0.0L;
50 #endif
51
52 int
53 main ()
54 {
55   #define NWORDS \
56     ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
57   typedef union { unsigned int word[NWORDS]; long double value; }
58           memory_long_double;
59
60   /* Finite values.  */
61   ASSERT (!isnanl (3.141L));
62   ASSERT (!isnanl (3.141e30L));
63   ASSERT (!isnanl (3.141e-30L));
64   ASSERT (!isnanl (-2.718L));
65   ASSERT (!isnanl (-2.718e30L));
66   ASSERT (!isnanl (-2.718e-30L));
67   ASSERT (!isnanl (0.0L));
68   ASSERT (!isnanl (minus_zero));
69   /* Infinite values.  */
70   ASSERT (!isnanl (1.0L / 0.0L));
71   ASSERT (!isnanl (-1.0L / 0.0L));
72   /* Quiet NaN.  */
73   ASSERT (isnanl (0.0L / 0.0L));
74
75 #if defined LDBL_EXPBIT0_WORD && defined LDBL_EXPBIT0_BIT
76   /* A bit pattern that is different from a Quiet NaN.  With a bit of luck,
77      it's a Signalling NaN.  */
78   {
79     memory_long_double m;
80     m.value = 0.0L / 0.0L;
81 # if LDBL_EXPBIT0_BIT > 0
82     m.word[LDBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (LDBL_EXPBIT0_BIT - 1);
83 # else
84     m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
85       ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
86 # endif
87     m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
88       |= (unsigned int) 1 << LDBL_EXPBIT0_BIT;
89     ASSERT (isnanl (m.value));
90   }
91 #endif
92
93 #if ((defined __ia64 && LDBL_MANT_DIG == 64) || (defined __x86_64__ || defined __amd64__) || (defined __i386 || defined __i386__ || defined _I386 || defined _M_IX86 || defined _X86_))
94 /* Representation of an 80-bit 'long double' as an initializer for a sequence
95    of 'unsigned int' words.  */
96 # ifdef WORDS_BIGENDIAN
97 #  define LDBL80_WORDS(exponent,manthi,mantlo) \
98      { ((unsigned int) (exponent) << 16) | ((unsigned int) (manthi) >> 16), \
99        ((unsigned int) (manthi) << 16) | (unsigned int) (mantlo) >> 16),    \
100        (unsigned int) (mantlo) << 16                                        \
101      }
102 # else
103 #  define LDBL80_WORDS(exponent,manthi,mantlo) \
104      { mantlo, manthi, exponent }
105 # endif
106   { /* Quiet NaN.  */
107     static memory_long_double x =
108       { LDBL80_WORDS (0xFFFF, 0xC3333333, 0x00000000) };
109     ASSERT (isnanl (x.value));
110   }
111   {
112     /* Signalling NaN.  */
113     static memory_long_double x =
114       { LDBL80_WORDS (0xFFFF, 0x83333333, 0x00000000) };
115     ASSERT (isnanl (x.value));
116   }
117   /* The isnanl function should recognize Pseudo-NaNs, Pseudo-Infinities,
118      Pseudo-Zeroes, Unnormalized Numbers, and Pseudo-Denormals, as defined in
119        Intel IA-64 Architecture Software Developer's Manual, Volume 1:
120        Application Architecture.
121        Table 5-2 "Floating-Point Register Encodings"
122        Figure 5-6 "Memory to Floating-Point Register Data Translation"
123    */
124   { /* Pseudo-NaN.  */
125     static memory_long_double x =
126       { LDBL80_WORDS (0xFFFF, 0x40000001, 0x00000000) };
127     ASSERT (isnanl (x.value));
128   }
129   { /* Pseudo-Infinity.  */
130     static memory_long_double x =
131       { LDBL80_WORDS (0xFFFF, 0x00000000, 0x00000000) };
132     ASSERT (isnanl (x.value));
133   }
134   { /* Pseudo-Zero.  */
135     static memory_long_double x =
136       { LDBL80_WORDS (0x4004, 0x00000000, 0x00000000) };
137     ASSERT (isnanl (x.value));
138   }
139   { /* Unnormalized number.  */
140     static memory_long_double x =
141       { LDBL80_WORDS (0x4000, 0x63333333, 0x00000000) };
142     ASSERT (isnanl (x.value));
143   }
144   { /* Pseudo-Denormal.  */
145     static memory_long_double x =
146       { LDBL80_WORDS (0x0000, 0x83333333, 0x00000000) };
147     ASSERT (isnanl (x.value));
148   }
149 #endif
150
151   return 0;
152 }