Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-ldexpl.c
1 /* Test of multiplying a 'long double' by a power of 2.
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 <config.h>
20
21 #include <math.h>
22
23 #include <float.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include "fpucw.h"
28 #include "isnanl-nolibm.h"
29 #include "nan.h"
30
31 #define ASSERT(expr) \
32   do                                                                         \
33     {                                                                        \
34       if (!(expr))                                                           \
35         {                                                                    \
36           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
37           fflush (stderr);                                                   \
38           abort ();                                                          \
39         }                                                                    \
40     }                                                                        \
41   while (0)
42
43 /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
44    So we use minus_zero instead.
45    IRIX cc can't put -0.0L into .data, but can compute at runtime.
46    Note that the expression -LDBL_MIN * LDBL_MIN does not work on other
47    platforms, such as when cross-compiling to PowerPC on MacOS X 10.5.  */
48 #if defined __hpux || defined __sgi
49 static long double
50 compute_minus_zero (void)
51 {
52   return -LDBL_MIN * LDBL_MIN;
53 }
54 # define minus_zero compute_minus_zero ()
55 #else
56 long double minus_zero = -0.0L;
57 #endif
58
59 int
60 main ()
61 {
62   int i;
63   long double x;
64   long double y;
65   DECL_LONG_DOUBLE_ROUNDING
66
67   BEGIN_LONG_DOUBLE_ROUNDING ();
68
69   { /* NaN.  */
70     x = NaNl ();
71     y = ldexpl (x, 0); ASSERT (isnanl (y));
72     y = ldexpl (x, 5); ASSERT (isnanl (y));
73     y = ldexpl (x, -5); ASSERT (isnanl (y));
74   }
75
76   { /* Positive infinity.  */
77     x = 1.0L / 0.0L;
78     y = ldexpl (x, 0); ASSERT (y == x);
79     y = ldexpl (x, 5); ASSERT (y == x);
80     y = ldexpl (x, -5); ASSERT (y == x);
81   }
82
83   { /* Negative infinity.  */
84     x = -1.0L / 0.0L;
85     y = ldexpl (x, 0); ASSERT (y == x);
86     y = ldexpl (x, 5); ASSERT (y == x);
87     y = ldexpl (x, -5); ASSERT (y == x);
88   }
89
90   { /* Positive zero.  */
91     x = 0.0L;
92     y = ldexpl (x, 0); ASSERT (y == x); ASSERT (!signbit (x));
93     y = ldexpl (x, 5); ASSERT (y == x); ASSERT (!signbit (x));
94     y = ldexpl (x, -5); ASSERT (y == x); ASSERT (!signbit (x));
95   }
96
97   { /* Negative zero.  */
98     x = minus_zero;
99     y = ldexpl (x, 0); ASSERT (y == x); ASSERT (signbit (x));
100     y = ldexpl (x, 5); ASSERT (y == x); ASSERT (signbit (x));
101     y = ldexpl (x, -5); ASSERT (y == x); ASSERT (signbit (x));
102   }
103
104   { /* Positive finite number.  */
105     x = 1.73205L;
106     y = ldexpl (x, 0); ASSERT (y == x);
107     y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
108     y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
109   }
110
111   { /* Negative finite number.  */
112     x = -20.085536923187667742L;
113     y = ldexpl (x, 0); ASSERT (y == x);
114     y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
115     y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
116   }
117
118   for (i = 1, x = 1.73205L; i <= LDBL_MAX_EXP; i++, x *= 2.0L)
119     {
120       y = ldexpl (x, 0); ASSERT (y == x);
121       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
122       y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
123     }
124   for (i = 1, x = 1.73205L; i >= LDBL_MIN_EXP; i--, x *= 0.5L)
125     {
126       y = ldexpl (x, 0); ASSERT (y == x);
127       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
128       if (i - 5 >= LDBL_MIN_EXP)
129         {
130           y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
131         }
132     }
133   for (; i >= LDBL_MIN_EXP - 100 && x > 0.0L; i--, x *= 0.5L)
134     {
135       y = ldexpl (x, 0); ASSERT (y == x);
136       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
137     }
138
139   return 0;
140 }