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