Update to 2.17
[platform/upstream/glibc.git] / soft-fp / double.h
1 /* Software floating-point emulation.
2    Definitions for IEEE Double Precision
3    Copyright (C) 1997-2015 Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5    Contributed by Richard Henderson (rth@cygnus.com),
6                   Jakub Jelinek (jj@ultra.linux.cz),
7                   David S. Miller (davem@redhat.com) and
8                   Peter Maydell (pmaydell@chiark.greenend.org.uk).
9
10    The GNU C Library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Lesser General Public
12    License as published by the Free Software Foundation; either
13    version 2.1 of the License, or (at your option) any later version.
14
15    In addition to the permissions in the GNU Lesser General Public
16    License, the Free Software Foundation gives you unlimited
17    permission to link the compiled version of this file into
18    combinations with other programs, and to distribute those
19    combinations without any restriction coming from the use of this
20    file.  (The Lesser General Public License restrictions do apply in
21    other respects; for example, they cover modification of the file,
22    and distribution when not linked into a combine executable.)
23
24    The GNU C Library is distributed in the hope that it will be useful,
25    but WITHOUT ANY WARRANTY; without even the implied warranty of
26    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27    Lesser General Public License for more details.
28
29    You should have received a copy of the GNU Lesser General Public
30    License along with the GNU C Library; if not, see
31    <http://www.gnu.org/licenses/>.  */
32
33 #if _FP_W_TYPE_SIZE < 32
34 # error "Here's a nickel kid.  Go buy yourself a real computer."
35 #endif
36
37 #if _FP_W_TYPE_SIZE < 64
38 # define _FP_FRACTBITS_D        (2 * _FP_W_TYPE_SIZE)
39 # define _FP_FRACTBITS_DW_D     (4 * _FP_W_TYPE_SIZE)
40 #else
41 # define _FP_FRACTBITS_D        _FP_W_TYPE_SIZE
42 # define _FP_FRACTBITS_DW_D     (2 * _FP_W_TYPE_SIZE)
43 #endif
44
45 #define _FP_FRACBITS_D          53
46 #define _FP_FRACXBITS_D         (_FP_FRACTBITS_D - _FP_FRACBITS_D)
47 #define _FP_WFRACBITS_D         (_FP_WORKBITS + _FP_FRACBITS_D)
48 #define _FP_WFRACXBITS_D        (_FP_FRACTBITS_D - _FP_WFRACBITS_D)
49 #define _FP_EXPBITS_D           11
50 #define _FP_EXPBIAS_D           1023
51 #define _FP_EXPMAX_D            2047
52
53 #define _FP_QNANBIT_D           \
54         ((_FP_W_TYPE) 1 << (_FP_FRACBITS_D-2) % _FP_W_TYPE_SIZE)
55 #define _FP_QNANBIT_SH_D                \
56         ((_FP_W_TYPE) 1 << (_FP_FRACBITS_D-2+_FP_WORKBITS) % _FP_W_TYPE_SIZE)
57 #define _FP_IMPLBIT_D           \
58         ((_FP_W_TYPE) 1 << (_FP_FRACBITS_D-1) % _FP_W_TYPE_SIZE)
59 #define _FP_IMPLBIT_SH_D                \
60         ((_FP_W_TYPE) 1 << (_FP_FRACBITS_D-1+_FP_WORKBITS) % _FP_W_TYPE_SIZE)
61 #define _FP_OVERFLOW_D          \
62         ((_FP_W_TYPE) 1 << _FP_WFRACBITS_D % _FP_W_TYPE_SIZE)
63
64 #define _FP_WFRACBITS_DW_D      (2 * _FP_WFRACBITS_D)
65 #define _FP_WFRACXBITS_DW_D     (_FP_FRACTBITS_DW_D - _FP_WFRACBITS_DW_D)
66 #define _FP_HIGHBIT_DW_D        \
67   ((_FP_W_TYPE) 1 << (_FP_WFRACBITS_DW_D - 1) % _FP_W_TYPE_SIZE)
68
69 typedef float DFtype __attribute__ ((mode (DF)));
70
71 #if _FP_W_TYPE_SIZE < 64
72
73 union _FP_UNION_D
74 {
75   DFtype flt;
76   struct _FP_STRUCT_LAYOUT
77   {
78 # if __BYTE_ORDER == __BIG_ENDIAN
79     unsigned sign  : 1;
80     unsigned exp   : _FP_EXPBITS_D;
81     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
82     unsigned frac0 : _FP_W_TYPE_SIZE;
83 # else
84     unsigned frac0 : _FP_W_TYPE_SIZE;
85     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
86     unsigned exp   : _FP_EXPBITS_D;
87     unsigned sign  : 1;
88 # endif
89   } bits __attribute__ ((packed));
90 };
91
92 # define FP_DECL_D(X)           _FP_DECL (2, X)
93 # define FP_UNPACK_RAW_D(X, val)        _FP_UNPACK_RAW_2 (D, X, (val))
94 # define FP_UNPACK_RAW_DP(X, val)       _FP_UNPACK_RAW_2_P (D, X, (val))
95 # define FP_PACK_RAW_D(val, X)  _FP_PACK_RAW_2 (D, (val), X)
96 # define FP_PACK_RAW_DP(val, X)                 \
97   do                                            \
98     {                                           \
99       if (!FP_INHIBIT_RESULTS)                  \
100         _FP_PACK_RAW_2_P (D, (val), X);         \
101     }                                           \
102   while (0)
103
104 # define FP_UNPACK_D(X, val)                    \
105   do                                            \
106     {                                           \
107       _FP_UNPACK_RAW_2 (D, X, (val));           \
108       _FP_UNPACK_CANONICAL (D, 2, X);           \
109     }                                           \
110   while (0)
111
112 # define FP_UNPACK_DP(X, val)                   \
113   do                                            \
114     {                                           \
115       _FP_UNPACK_RAW_2_P (D, X, (val));         \
116       _FP_UNPACK_CANONICAL (D, 2, X);           \
117     }                                           \
118   while (0)
119
120 # define FP_UNPACK_SEMIRAW_D(X, val)            \
121   do                                            \
122     {                                           \
123       _FP_UNPACK_RAW_2 (D, X, (val));           \
124       _FP_UNPACK_SEMIRAW (D, 2, X);             \
125     }                                           \
126   while (0)
127
128 # define FP_UNPACK_SEMIRAW_DP(X, val)           \
129   do                                            \
130     {                                           \
131       _FP_UNPACK_RAW_2_P (D, X, (val));         \
132       _FP_UNPACK_SEMIRAW (D, 2, X);             \
133     }                                           \
134   while (0)
135
136 # define FP_PACK_D(val, X)                      \
137   do                                            \
138     {                                           \
139       _FP_PACK_CANONICAL (D, 2, X);             \
140       _FP_PACK_RAW_2 (D, (val), X);             \
141     }                                           \
142   while (0)
143
144 # define FP_PACK_DP(val, X)                     \
145   do                                            \
146     {                                           \
147       _FP_PACK_CANONICAL (D, 2, X);             \
148       if (!FP_INHIBIT_RESULTS)                  \
149         _FP_PACK_RAW_2_P (D, (val), X);         \
150     }                                           \
151   while (0)
152
153 # define FP_PACK_SEMIRAW_D(val, X)              \
154   do                                            \
155     {                                           \
156       _FP_PACK_SEMIRAW (D, 2, X);               \
157       _FP_PACK_RAW_2 (D, (val), X);             \
158     }                                           \
159   while (0)
160
161 # define FP_PACK_SEMIRAW_DP(val, X)             \
162   do                                            \
163     {                                           \
164       _FP_PACK_SEMIRAW (D, 2, X);               \
165       if (!FP_INHIBIT_RESULTS)                  \
166         _FP_PACK_RAW_2_P (D, (val), X);         \
167     }                                           \
168   while (0)
169
170 # define FP_ISSIGNAN_D(X)               _FP_ISSIGNAN (D, 2, X)
171 # define FP_NEG_D(R, X)                 _FP_NEG (D, 2, R, X)
172 # define FP_ADD_D(R, X, Y)              _FP_ADD (D, 2, R, X, Y)
173 # define FP_SUB_D(R, X, Y)              _FP_SUB (D, 2, R, X, Y)
174 # define FP_MUL_D(R, X, Y)              _FP_MUL (D, 2, R, X, Y)
175 # define FP_DIV_D(R, X, Y)              _FP_DIV (D, 2, R, X, Y)
176 # define FP_SQRT_D(R, X)                _FP_SQRT (D, 2, R, X)
177 # define _FP_SQRT_MEAT_D(R, S, T, X, Q) _FP_SQRT_MEAT_2 (R, S, T, X, (Q))
178 # define FP_FMA_D(R, X, Y, Z)           _FP_FMA (D, 2, 4, R, X, Y, Z)
179
180 # define FP_CMP_D(r, X, Y, un, ex)      _FP_CMP (D, 2, (r), X, Y, (un), (ex))
181 # define FP_CMP_EQ_D(r, X, Y, ex)       _FP_CMP_EQ (D, 2, (r), X, Y, (ex))
182 # define FP_CMP_UNORD_D(r, X, Y, ex)    _FP_CMP_UNORD (D, 2, (r), X, Y, (ex))
183
184 # define FP_TO_INT_D(r, X, rsz, rsg)    _FP_TO_INT (D, 2, (r), X, (rsz), (rsg))
185 # define FP_TO_INT_ROUND_D(r, X, rsz, rsg)      \
186   _FP_TO_INT_ROUND (D, 2, (r), X, (rsz), (rsg))
187 # define FP_FROM_INT_D(X, r, rs, rt)    _FP_FROM_INT (D, 2, X, (r), (rs), rt)
188
189 # define _FP_FRAC_HIGH_D(X)     _FP_FRAC_HIGH_2 (X)
190 # define _FP_FRAC_HIGH_RAW_D(X) _FP_FRAC_HIGH_2 (X)
191
192 # define _FP_FRAC_HIGH_DW_D(X)  _FP_FRAC_HIGH_4 (X)
193
194 #else
195
196 union _FP_UNION_D
197 {
198   DFtype flt;
199   struct _FP_STRUCT_LAYOUT
200   {
201 # if __BYTE_ORDER == __BIG_ENDIAN
202     unsigned sign   : 1;
203     unsigned exp    : _FP_EXPBITS_D;
204     _FP_W_TYPE frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
205 # else
206     _FP_W_TYPE frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
207     unsigned exp    : _FP_EXPBITS_D;
208     unsigned sign   : 1;
209 # endif
210   } bits __attribute__ ((packed));
211 };
212
213 # define FP_DECL_D(X)           _FP_DECL (1, X)
214 # define FP_UNPACK_RAW_D(X, val)        _FP_UNPACK_RAW_1 (D, X, (val))
215 # define FP_UNPACK_RAW_DP(X, val)       _FP_UNPACK_RAW_1_P (D, X, (val))
216 # define FP_PACK_RAW_D(val, X)  _FP_PACK_RAW_1 (D, (val), X)
217 # define FP_PACK_RAW_DP(val, X)                 \
218   do                                            \
219     {                                           \
220       if (!FP_INHIBIT_RESULTS)                  \
221         _FP_PACK_RAW_1_P (D, (val), X);         \
222     }                                           \
223   while (0)
224
225 # define FP_UNPACK_D(X, val)                    \
226   do                                            \
227     {                                           \
228       _FP_UNPACK_RAW_1 (D, X, (val));           \
229       _FP_UNPACK_CANONICAL (D, 1, X);           \
230     }                                           \
231   while (0)
232
233 # define FP_UNPACK_DP(X, val)                   \
234   do                                            \
235     {                                           \
236       _FP_UNPACK_RAW_1_P (D, X, (val));         \
237       _FP_UNPACK_CANONICAL (D, 1, X);           \
238     }                                           \
239   while (0)
240
241 # define FP_UNPACK_SEMIRAW_D(X, val)            \
242   do                                            \
243     {                                           \
244       _FP_UNPACK_RAW_1 (D, X, (val));           \
245       _FP_UNPACK_SEMIRAW (D, 1, X);             \
246     }                                           \
247   while (0)
248
249 # define FP_UNPACK_SEMIRAW_DP(X, val)           \
250   do                                            \
251     {                                           \
252       _FP_UNPACK_RAW_1_P (D, X, (val));         \
253       _FP_UNPACK_SEMIRAW (D, 1, X);             \
254     }                                           \
255   while (0)
256
257 # define FP_PACK_D(val, X)                      \
258   do                                            \
259     {                                           \
260       _FP_PACK_CANONICAL (D, 1, X);             \
261       _FP_PACK_RAW_1 (D, (val), X);             \
262     }                                           \
263   while (0)
264
265 # define FP_PACK_DP(val, X)                     \
266   do                                            \
267     {                                           \
268       _FP_PACK_CANONICAL (D, 1, X);             \
269       if (!FP_INHIBIT_RESULTS)                  \
270         _FP_PACK_RAW_1_P (D, (val), X);         \
271     }                                           \
272   while (0)
273
274 # define FP_PACK_SEMIRAW_D(val, X)              \
275   do                                            \
276     {                                           \
277       _FP_PACK_SEMIRAW (D, 1, X);               \
278       _FP_PACK_RAW_1 (D, (val), X);             \
279     }                                           \
280   while (0)
281
282 # define FP_PACK_SEMIRAW_DP(val, X)             \
283   do                                            \
284     {                                           \
285       _FP_PACK_SEMIRAW (D, 1, X);               \
286       if (!FP_INHIBIT_RESULTS)                  \
287         _FP_PACK_RAW_1_P (D, (val), X);         \
288     }                                           \
289   while (0)
290
291 # define FP_ISSIGNAN_D(X)               _FP_ISSIGNAN (D, 1, X)
292 # define FP_NEG_D(R, X)                 _FP_NEG (D, 1, R, X)
293 # define FP_ADD_D(R, X, Y)              _FP_ADD (D, 1, R, X, Y)
294 # define FP_SUB_D(R, X, Y)              _FP_SUB (D, 1, R, X, Y)
295 # define FP_MUL_D(R, X, Y)              _FP_MUL (D, 1, R, X, Y)
296 # define FP_DIV_D(R, X, Y)              _FP_DIV (D, 1, R, X, Y)
297 # define FP_SQRT_D(R, X)                _FP_SQRT (D, 1, R, X)
298 # define _FP_SQRT_MEAT_D(R, S, T, X, Q) _FP_SQRT_MEAT_1 (R, S, T, X, (Q))
299 # define FP_FMA_D(R, X, Y, Z)           _FP_FMA (D, 1, 2, R, X, Y, Z)
300
301 /* The implementation of _FP_MUL_D and _FP_DIV_D should be chosen by
302    the target machine.  */
303
304 # define FP_CMP_D(r, X, Y, un, ex)      _FP_CMP (D, 1, (r), X, Y, (un), (ex))
305 # define FP_CMP_EQ_D(r, X, Y, ex)       _FP_CMP_EQ (D, 1, (r), X, Y, (ex))
306 # define FP_CMP_UNORD_D(r, X, Y, ex)    _FP_CMP_UNORD (D, 1, (r), X, Y, (ex))
307
308 # define FP_TO_INT_D(r, X, rsz, rsg)    _FP_TO_INT (D, 1, (r), X, (rsz), (rsg))
309 # define FP_TO_INT_ROUND_D(r, X, rsz, rsg)      \
310   _FP_TO_INT_ROUND (D, 1, (r), X, (rsz), (rsg))
311 # define FP_FROM_INT_D(X, r, rs, rt)    _FP_FROM_INT (D, 1, X, (r), (rs), rt)
312
313 # define _FP_FRAC_HIGH_D(X)     _FP_FRAC_HIGH_1 (X)
314 # define _FP_FRAC_HIGH_RAW_D(X) _FP_FRAC_HIGH_1 (X)
315
316 # define _FP_FRAC_HIGH_DW_D(X)  _FP_FRAC_HIGH_2 (X)
317
318 #endif /* W_TYPE_SIZE < 64 */