hw/riscv: sifive_u: Sort the SoC memmap table entries
[qemu/ar7.git] / include / fpu / softfloat.h
blob16ca697a73b7bd2e9c2f74c0b0ac0592240db7e8
1 /*
2 * QEMU float support
4 * The code in this source file is derived from release 2a of the SoftFloat
5 * IEC/IEEE Floating-point Arithmetic Package. Those parts of the code (and
6 * some later contributions) are provided under that license, as detailed below.
7 * It has subsequently been modified by contributors to the QEMU Project,
8 * so some portions are provided under:
9 * the SoftFloat-2a license
10 * the BSD license
11 * GPL-v2-or-later
13 * Any future contributions to this file after December 1st 2014 will be
14 * taken to be licensed under the Softfloat-2a license unless specifically
15 * indicated otherwise.
19 ===============================================================================
20 This C header file is part of the SoftFloat IEC/IEEE Floating-point
21 Arithmetic Package, Release 2a.
23 Written by John R. Hauser. This work was made possible in part by the
24 International Computer Science Institute, located at Suite 600, 1947 Center
25 Street, Berkeley, California 94704. Funding was partially provided by the
26 National Science Foundation under grant MIP-9311980. The original version
27 of this code was written as part of a project to build a fixed-point vector
28 processor in collaboration with the University of California at Berkeley,
29 overseen by Profs. Nelson Morgan and John Wawrzynek. More information
30 is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
31 arithmetic/SoftFloat.html'.
33 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort
34 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
35 TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO
36 PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
37 AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
39 Derivative works are acceptable, even for commercial purposes, so long as
40 (1) they include prominent notice that the work is derivative, and (2) they
41 include prominent notice akin to these four paragraphs for those parts of
42 this code that are retained.
44 ===============================================================================
47 /* BSD licensing:
48 * Copyright (c) 2006, Fabrice Bellard
49 * All rights reserved.
51 * Redistribution and use in source and binary forms, with or without
52 * modification, are permitted provided that the following conditions are met:
54 * 1. Redistributions of source code must retain the above copyright notice,
55 * this list of conditions and the following disclaimer.
57 * 2. Redistributions in binary form must reproduce the above copyright notice,
58 * this list of conditions and the following disclaimer in the documentation
59 * and/or other materials provided with the distribution.
61 * 3. Neither the name of the copyright holder nor the names of its contributors
62 * may be used to endorse or promote products derived from this software without
63 * specific prior written permission.
65 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
66 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
67 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
68 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
69 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
70 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
71 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
72 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
73 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
74 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
75 * THE POSSIBILITY OF SUCH DAMAGE.
78 /* Portions of this work are licensed under the terms of the GNU GPL,
79 * version 2 or later. See the COPYING file in the top-level directory.
82 #ifndef SOFTFLOAT_H
83 #define SOFTFLOAT_H
85 /*----------------------------------------------------------------------------
86 | Software IEC/IEEE floating-point ordering relations
87 *----------------------------------------------------------------------------*/
89 typedef enum {
90 float_relation_less = -1,
91 float_relation_equal = 0,
92 float_relation_greater = 1,
93 float_relation_unordered = 2
94 } FloatRelation;
96 #include "fpu/softfloat-types.h"
97 #include "fpu/softfloat-helpers.h"
99 /*----------------------------------------------------------------------------
100 | Routine to raise any or all of the software IEC/IEEE floating-point
101 | exception flags.
102 *----------------------------------------------------------------------------*/
103 void float_raise(uint8_t flags, float_status *status);
105 /*----------------------------------------------------------------------------
106 | If `a' is denormal and we are in flush-to-zero mode then set the
107 | input-denormal exception and return zero. Otherwise just return the value.
108 *----------------------------------------------------------------------------*/
109 float16 float16_squash_input_denormal(float16 a, float_status *status);
110 float32 float32_squash_input_denormal(float32 a, float_status *status);
111 float64 float64_squash_input_denormal(float64 a, float_status *status);
113 /*----------------------------------------------------------------------------
114 | Options to indicate which negations to perform in float*_muladd()
115 | Using these differs from negating an input or output before calling
116 | the muladd function in that this means that a NaN doesn't have its
117 | sign bit inverted before it is propagated.
118 | We also support halving the result before rounding, as a special
119 | case to support the ARM fused-sqrt-step instruction FRSQRTS.
120 *----------------------------------------------------------------------------*/
121 enum {
122 float_muladd_negate_c = 1,
123 float_muladd_negate_product = 2,
124 float_muladd_negate_result = 4,
125 float_muladd_halve_result = 8,
128 /*----------------------------------------------------------------------------
129 | Software IEC/IEEE integer-to-floating-point conversion routines.
130 *----------------------------------------------------------------------------*/
132 float16 int16_to_float16_scalbn(int16_t a, int, float_status *status);
133 float16 int32_to_float16_scalbn(int32_t a, int, float_status *status);
134 float16 int64_to_float16_scalbn(int64_t a, int, float_status *status);
135 float16 uint16_to_float16_scalbn(uint16_t a, int, float_status *status);
136 float16 uint32_to_float16_scalbn(uint32_t a, int, float_status *status);
137 float16 uint64_to_float16_scalbn(uint64_t a, int, float_status *status);
139 float16 int16_to_float16(int16_t a, float_status *status);
140 float16 int32_to_float16(int32_t a, float_status *status);
141 float16 int64_to_float16(int64_t a, float_status *status);
142 float16 uint16_to_float16(uint16_t a, float_status *status);
143 float16 uint32_to_float16(uint32_t a, float_status *status);
144 float16 uint64_to_float16(uint64_t a, float_status *status);
146 float32 int16_to_float32_scalbn(int16_t, int, float_status *status);
147 float32 int32_to_float32_scalbn(int32_t, int, float_status *status);
148 float32 int64_to_float32_scalbn(int64_t, int, float_status *status);
149 float32 uint16_to_float32_scalbn(uint16_t, int, float_status *status);
150 float32 uint32_to_float32_scalbn(uint32_t, int, float_status *status);
151 float32 uint64_to_float32_scalbn(uint64_t, int, float_status *status);
153 float32 int16_to_float32(int16_t, float_status *status);
154 float32 int32_to_float32(int32_t, float_status *status);
155 float32 int64_to_float32(int64_t, float_status *status);
156 float32 uint16_to_float32(uint16_t, float_status *status);
157 float32 uint32_to_float32(uint32_t, float_status *status);
158 float32 uint64_to_float32(uint64_t, float_status *status);
160 float64 int16_to_float64_scalbn(int16_t, int, float_status *status);
161 float64 int32_to_float64_scalbn(int32_t, int, float_status *status);
162 float64 int64_to_float64_scalbn(int64_t, int, float_status *status);
163 float64 uint16_to_float64_scalbn(uint16_t, int, float_status *status);
164 float64 uint32_to_float64_scalbn(uint32_t, int, float_status *status);
165 float64 uint64_to_float64_scalbn(uint64_t, int, float_status *status);
167 float64 int16_to_float64(int16_t, float_status *status);
168 float64 int32_to_float64(int32_t, float_status *status);
169 float64 int64_to_float64(int64_t, float_status *status);
170 float64 uint16_to_float64(uint16_t, float_status *status);
171 float64 uint32_to_float64(uint32_t, float_status *status);
172 float64 uint64_to_float64(uint64_t, float_status *status);
174 floatx80 int32_to_floatx80(int32_t, float_status *status);
175 floatx80 int64_to_floatx80(int64_t, float_status *status);
177 float128 int32_to_float128(int32_t, float_status *status);
178 float128 int64_to_float128(int64_t, float_status *status);
179 float128 uint64_to_float128(uint64_t, float_status *status);
181 /*----------------------------------------------------------------------------
182 | Software half-precision conversion routines.
183 *----------------------------------------------------------------------------*/
185 float16 float32_to_float16(float32, bool ieee, float_status *status);
186 float32 float16_to_float32(float16, bool ieee, float_status *status);
187 float16 float64_to_float16(float64 a, bool ieee, float_status *status);
188 float64 float16_to_float64(float16 a, bool ieee, float_status *status);
190 int16_t float16_to_int16_scalbn(float16, FloatRoundMode, int, float_status *);
191 int32_t float16_to_int32_scalbn(float16, FloatRoundMode, int, float_status *);
192 int64_t float16_to_int64_scalbn(float16, FloatRoundMode, int, float_status *);
194 int16_t float16_to_int16(float16, float_status *status);
195 int32_t float16_to_int32(float16, float_status *status);
196 int64_t float16_to_int64(float16, float_status *status);
198 int16_t float16_to_int16_round_to_zero(float16, float_status *status);
199 int32_t float16_to_int32_round_to_zero(float16, float_status *status);
200 int64_t float16_to_int64_round_to_zero(float16, float_status *status);
202 uint16_t float16_to_uint16_scalbn(float16 a, FloatRoundMode,
203 int, float_status *status);
204 uint32_t float16_to_uint32_scalbn(float16 a, FloatRoundMode,
205 int, float_status *status);
206 uint64_t float16_to_uint64_scalbn(float16 a, FloatRoundMode,
207 int, float_status *status);
209 uint16_t float16_to_uint16(float16 a, float_status *status);
210 uint32_t float16_to_uint32(float16 a, float_status *status);
211 uint64_t float16_to_uint64(float16 a, float_status *status);
213 uint16_t float16_to_uint16_round_to_zero(float16 a, float_status *status);
214 uint32_t float16_to_uint32_round_to_zero(float16 a, float_status *status);
215 uint64_t float16_to_uint64_round_to_zero(float16 a, float_status *status);
217 /*----------------------------------------------------------------------------
218 | Software half-precision operations.
219 *----------------------------------------------------------------------------*/
221 float16 float16_round_to_int(float16, float_status *status);
222 float16 float16_add(float16, float16, float_status *status);
223 float16 float16_sub(float16, float16, float_status *status);
224 float16 float16_mul(float16, float16, float_status *status);
225 float16 float16_muladd(float16, float16, float16, int, float_status *status);
226 float16 float16_div(float16, float16, float_status *status);
227 float16 float16_scalbn(float16, int, float_status *status);
228 float16 float16_min(float16, float16, float_status *status);
229 float16 float16_max(float16, float16, float_status *status);
230 float16 float16_minnum(float16, float16, float_status *status);
231 float16 float16_maxnum(float16, float16, float_status *status);
232 float16 float16_minnummag(float16, float16, float_status *status);
233 float16 float16_maxnummag(float16, float16, float_status *status);
234 float16 float16_sqrt(float16, float_status *status);
235 FloatRelation float16_compare(float16, float16, float_status *status);
236 FloatRelation float16_compare_quiet(float16, float16, float_status *status);
238 bool float16_is_quiet_nan(float16, float_status *status);
239 bool float16_is_signaling_nan(float16, float_status *status);
240 float16 float16_silence_nan(float16, float_status *status);
242 static inline bool float16_is_any_nan(float16 a)
244 return ((float16_val(a) & ~0x8000) > 0x7c00);
247 static inline bool float16_is_neg(float16 a)
249 return float16_val(a) >> 15;
252 static inline bool float16_is_infinity(float16 a)
254 return (float16_val(a) & 0x7fff) == 0x7c00;
257 static inline bool float16_is_zero(float16 a)
259 return (float16_val(a) & 0x7fff) == 0;
262 static inline bool float16_is_zero_or_denormal(float16 a)
264 return (float16_val(a) & 0x7c00) == 0;
267 static inline float16 float16_abs(float16 a)
269 /* Note that abs does *not* handle NaN specially, nor does
270 * it flush denormal inputs to zero.
272 return make_float16(float16_val(a) & 0x7fff);
275 static inline float16 float16_chs(float16 a)
277 /* Note that chs does *not* handle NaN specially, nor does
278 * it flush denormal inputs to zero.
280 return make_float16(float16_val(a) ^ 0x8000);
283 static inline float16 float16_set_sign(float16 a, int sign)
285 return make_float16((float16_val(a) & 0x7fff) | (sign << 15));
288 #define float16_zero make_float16(0)
289 #define float16_half make_float16(0x3800)
290 #define float16_one make_float16(0x3c00)
291 #define float16_one_point_five make_float16(0x3e00)
292 #define float16_two make_float16(0x4000)
293 #define float16_three make_float16(0x4200)
294 #define float16_infinity make_float16(0x7c00)
296 /*----------------------------------------------------------------------------
297 | The pattern for a default generated half-precision NaN.
298 *----------------------------------------------------------------------------*/
299 float16 float16_default_nan(float_status *status);
301 /*----------------------------------------------------------------------------
302 | Software IEC/IEEE single-precision conversion routines.
303 *----------------------------------------------------------------------------*/
305 int16_t float32_to_int16_scalbn(float32, FloatRoundMode, int, float_status *);
306 int32_t float32_to_int32_scalbn(float32, FloatRoundMode, int, float_status *);
307 int64_t float32_to_int64_scalbn(float32, FloatRoundMode, int, float_status *);
309 int16_t float32_to_int16(float32, float_status *status);
310 int32_t float32_to_int32(float32, float_status *status);
311 int64_t float32_to_int64(float32, float_status *status);
313 int16_t float32_to_int16_round_to_zero(float32, float_status *status);
314 int32_t float32_to_int32_round_to_zero(float32, float_status *status);
315 int64_t float32_to_int64_round_to_zero(float32, float_status *status);
317 uint16_t float32_to_uint16_scalbn(float32, FloatRoundMode, int, float_status *);
318 uint32_t float32_to_uint32_scalbn(float32, FloatRoundMode, int, float_status *);
319 uint64_t float32_to_uint64_scalbn(float32, FloatRoundMode, int, float_status *);
321 uint16_t float32_to_uint16(float32, float_status *status);
322 uint32_t float32_to_uint32(float32, float_status *status);
323 uint64_t float32_to_uint64(float32, float_status *status);
325 uint16_t float32_to_uint16_round_to_zero(float32, float_status *status);
326 uint32_t float32_to_uint32_round_to_zero(float32, float_status *status);
327 uint64_t float32_to_uint64_round_to_zero(float32, float_status *status);
329 float64 float32_to_float64(float32, float_status *status);
330 floatx80 float32_to_floatx80(float32, float_status *status);
331 float128 float32_to_float128(float32, float_status *status);
333 /*----------------------------------------------------------------------------
334 | Software IEC/IEEE single-precision operations.
335 *----------------------------------------------------------------------------*/
336 float32 float32_round_to_int(float32, float_status *status);
337 float32 float32_add(float32, float32, float_status *status);
338 float32 float32_sub(float32, float32, float_status *status);
339 float32 float32_mul(float32, float32, float_status *status);
340 float32 float32_div(float32, float32, float_status *status);
341 float32 float32_rem(float32, float32, float_status *status);
342 float32 float32_muladd(float32, float32, float32, int, float_status *status);
343 float32 float32_sqrt(float32, float_status *status);
344 float32 float32_exp2(float32, float_status *status);
345 float32 float32_log2(float32, float_status *status);
346 FloatRelation float32_compare(float32, float32, float_status *status);
347 FloatRelation float32_compare_quiet(float32, float32, float_status *status);
348 float32 float32_min(float32, float32, float_status *status);
349 float32 float32_max(float32, float32, float_status *status);
350 float32 float32_minnum(float32, float32, float_status *status);
351 float32 float32_maxnum(float32, float32, float_status *status);
352 float32 float32_minnummag(float32, float32, float_status *status);
353 float32 float32_maxnummag(float32, float32, float_status *status);
354 bool float32_is_quiet_nan(float32, float_status *status);
355 bool float32_is_signaling_nan(float32, float_status *status);
356 float32 float32_silence_nan(float32, float_status *status);
357 float32 float32_scalbn(float32, int, float_status *status);
359 static inline float32 float32_abs(float32 a)
361 /* Note that abs does *not* handle NaN specially, nor does
362 * it flush denormal inputs to zero.
364 return make_float32(float32_val(a) & 0x7fffffff);
367 static inline float32 float32_chs(float32 a)
369 /* Note that chs does *not* handle NaN specially, nor does
370 * it flush denormal inputs to zero.
372 return make_float32(float32_val(a) ^ 0x80000000);
375 static inline bool float32_is_infinity(float32 a)
377 return (float32_val(a) & 0x7fffffff) == 0x7f800000;
380 static inline bool float32_is_neg(float32 a)
382 return float32_val(a) >> 31;
385 static inline bool float32_is_zero(float32 a)
387 return (float32_val(a) & 0x7fffffff) == 0;
390 static inline bool float32_is_any_nan(float32 a)
392 return ((float32_val(a) & ~(1 << 31)) > 0x7f800000UL);
395 static inline bool float32_is_zero_or_denormal(float32 a)
397 return (float32_val(a) & 0x7f800000) == 0;
400 static inline bool float32_is_normal(float32 a)
402 return (((float32_val(a) >> 23) + 1) & 0xff) >= 2;
405 static inline bool float32_is_denormal(float32 a)
407 return float32_is_zero_or_denormal(a) && !float32_is_zero(a);
410 static inline bool float32_is_zero_or_normal(float32 a)
412 return float32_is_normal(a) || float32_is_zero(a);
415 static inline float32 float32_set_sign(float32 a, int sign)
417 return make_float32((float32_val(a) & 0x7fffffff) | (sign << 31));
420 static inline bool float32_eq(float32 a, float32 b, float_status *s)
422 return float32_compare(a, b, s) == float_relation_equal;
425 static inline bool float32_le(float32 a, float32 b, float_status *s)
427 return float32_compare(a, b, s) <= float_relation_equal;
430 static inline bool float32_lt(float32 a, float32 b, float_status *s)
432 return float32_compare(a, b, s) < float_relation_equal;
435 static inline bool float32_unordered(float32 a, float32 b, float_status *s)
437 return float32_compare(a, b, s) == float_relation_unordered;
440 static inline bool float32_eq_quiet(float32 a, float32 b, float_status *s)
442 return float32_compare_quiet(a, b, s) == float_relation_equal;
445 static inline bool float32_le_quiet(float32 a, float32 b, float_status *s)
447 return float32_compare_quiet(a, b, s) <= float_relation_equal;
450 static inline bool float32_lt_quiet(float32 a, float32 b, float_status *s)
452 return float32_compare_quiet(a, b, s) < float_relation_equal;
455 static inline bool float32_unordered_quiet(float32 a, float32 b,
456 float_status *s)
458 return float32_compare_quiet(a, b, s) == float_relation_unordered;
461 #define float32_zero make_float32(0)
462 #define float32_half make_float32(0x3f000000)
463 #define float32_one make_float32(0x3f800000)
464 #define float32_one_point_five make_float32(0x3fc00000)
465 #define float32_two make_float32(0x40000000)
466 #define float32_three make_float32(0x40400000)
467 #define float32_infinity make_float32(0x7f800000)
469 /*----------------------------------------------------------------------------
470 | Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
471 | single-precision floating-point value, returning the result. After being
472 | shifted into the proper positions, the three fields are simply added
473 | together to form the result. This means that any integer portion of `zSig'
474 | will be added into the exponent. Since a properly normalized significand
475 | will have an integer portion equal to 1, the `zExp' input should be 1 less
476 | than the desired result exponent whenever `zSig' is a complete, normalized
477 | significand.
478 *----------------------------------------------------------------------------*/
480 static inline float32 packFloat32(bool zSign, int zExp, uint32_t zSig)
482 return make_float32(
483 (((uint32_t)zSign) << 31) + (((uint32_t)zExp) << 23) + zSig);
486 /*----------------------------------------------------------------------------
487 | The pattern for a default generated single-precision NaN.
488 *----------------------------------------------------------------------------*/
489 float32 float32_default_nan(float_status *status);
491 /*----------------------------------------------------------------------------
492 | Software IEC/IEEE double-precision conversion routines.
493 *----------------------------------------------------------------------------*/
495 int16_t float64_to_int16_scalbn(float64, FloatRoundMode, int, float_status *);
496 int32_t float64_to_int32_scalbn(float64, FloatRoundMode, int, float_status *);
497 int64_t float64_to_int64_scalbn(float64, FloatRoundMode, int, float_status *);
499 int16_t float64_to_int16(float64, float_status *status);
500 int32_t float64_to_int32(float64, float_status *status);
501 int64_t float64_to_int64(float64, float_status *status);
503 int16_t float64_to_int16_round_to_zero(float64, float_status *status);
504 int32_t float64_to_int32_round_to_zero(float64, float_status *status);
505 int64_t float64_to_int64_round_to_zero(float64, float_status *status);
507 uint16_t float64_to_uint16_scalbn(float64, FloatRoundMode, int, float_status *);
508 uint32_t float64_to_uint32_scalbn(float64, FloatRoundMode, int, float_status *);
509 uint64_t float64_to_uint64_scalbn(float64, FloatRoundMode, int, float_status *);
511 uint16_t float64_to_uint16(float64, float_status *status);
512 uint32_t float64_to_uint32(float64, float_status *status);
513 uint64_t float64_to_uint64(float64, float_status *status);
515 uint16_t float64_to_uint16_round_to_zero(float64, float_status *status);
516 uint32_t float64_to_uint32_round_to_zero(float64, float_status *status);
517 uint64_t float64_to_uint64_round_to_zero(float64, float_status *status);
519 float32 float64_to_float32(float64, float_status *status);
520 floatx80 float64_to_floatx80(float64, float_status *status);
521 float128 float64_to_float128(float64, float_status *status);
523 /*----------------------------------------------------------------------------
524 | Software IEC/IEEE double-precision operations.
525 *----------------------------------------------------------------------------*/
526 float64 float64_round_to_int(float64, float_status *status);
527 float64 float64_add(float64, float64, float_status *status);
528 float64 float64_sub(float64, float64, float_status *status);
529 float64 float64_mul(float64, float64, float_status *status);
530 float64 float64_div(float64, float64, float_status *status);
531 float64 float64_rem(float64, float64, float_status *status);
532 float64 float64_muladd(float64, float64, float64, int, float_status *status);
533 float64 float64_sqrt(float64, float_status *status);
534 float64 float64_log2(float64, float_status *status);
535 FloatRelation float64_compare(float64, float64, float_status *status);
536 FloatRelation float64_compare_quiet(float64, float64, float_status *status);
537 float64 float64_min(float64, float64, float_status *status);
538 float64 float64_max(float64, float64, float_status *status);
539 float64 float64_minnum(float64, float64, float_status *status);
540 float64 float64_maxnum(float64, float64, float_status *status);
541 float64 float64_minnummag(float64, float64, float_status *status);
542 float64 float64_maxnummag(float64, float64, float_status *status);
543 bool float64_is_quiet_nan(float64 a, float_status *status);
544 bool float64_is_signaling_nan(float64, float_status *status);
545 float64 float64_silence_nan(float64, float_status *status);
546 float64 float64_scalbn(float64, int, float_status *status);
548 static inline float64 float64_abs(float64 a)
550 /* Note that abs does *not* handle NaN specially, nor does
551 * it flush denormal inputs to zero.
553 return make_float64(float64_val(a) & 0x7fffffffffffffffLL);
556 static inline float64 float64_chs(float64 a)
558 /* Note that chs does *not* handle NaN specially, nor does
559 * it flush denormal inputs to zero.
561 return make_float64(float64_val(a) ^ 0x8000000000000000LL);
564 static inline bool float64_is_infinity(float64 a)
566 return (float64_val(a) & 0x7fffffffffffffffLL ) == 0x7ff0000000000000LL;
569 static inline bool float64_is_neg(float64 a)
571 return float64_val(a) >> 63;
574 static inline bool float64_is_zero(float64 a)
576 return (float64_val(a) & 0x7fffffffffffffffLL) == 0;
579 static inline bool float64_is_any_nan(float64 a)
581 return ((float64_val(a) & ~(1ULL << 63)) > 0x7ff0000000000000ULL);
584 static inline bool float64_is_zero_or_denormal(float64 a)
586 return (float64_val(a) & 0x7ff0000000000000LL) == 0;
589 static inline bool float64_is_normal(float64 a)
591 return (((float64_val(a) >> 52) + 1) & 0x7ff) >= 2;
594 static inline bool float64_is_denormal(float64 a)
596 return float64_is_zero_or_denormal(a) && !float64_is_zero(a);
599 static inline bool float64_is_zero_or_normal(float64 a)
601 return float64_is_normal(a) || float64_is_zero(a);
604 static inline float64 float64_set_sign(float64 a, int sign)
606 return make_float64((float64_val(a) & 0x7fffffffffffffffULL)
607 | ((int64_t)sign << 63));
610 static inline bool float64_eq(float64 a, float64 b, float_status *s)
612 return float64_compare(a, b, s) == float_relation_equal;
615 static inline bool float64_le(float64 a, float64 b, float_status *s)
617 return float64_compare(a, b, s) <= float_relation_equal;
620 static inline bool float64_lt(float64 a, float64 b, float_status *s)
622 return float64_compare(a, b, s) < float_relation_equal;
625 static inline bool float64_unordered(float64 a, float64 b, float_status *s)
627 return float64_compare(a, b, s) == float_relation_unordered;
630 static inline bool float64_eq_quiet(float64 a, float64 b, float_status *s)
632 return float64_compare_quiet(a, b, s) == float_relation_equal;
635 static inline bool float64_le_quiet(float64 a, float64 b, float_status *s)
637 return float64_compare_quiet(a, b, s) <= float_relation_equal;
640 static inline bool float64_lt_quiet(float64 a, float64 b, float_status *s)
642 return float64_compare_quiet(a, b, s) < float_relation_equal;
645 static inline bool float64_unordered_quiet(float64 a, float64 b,
646 float_status *s)
648 return float64_compare_quiet(a, b, s) == float_relation_unordered;
651 #define float64_zero make_float64(0)
652 #define float64_half make_float64(0x3fe0000000000000LL)
653 #define float64_one make_float64(0x3ff0000000000000LL)
654 #define float64_one_point_five make_float64(0x3FF8000000000000ULL)
655 #define float64_two make_float64(0x4000000000000000ULL)
656 #define float64_three make_float64(0x4008000000000000ULL)
657 #define float64_ln2 make_float64(0x3fe62e42fefa39efLL)
658 #define float64_infinity make_float64(0x7ff0000000000000LL)
660 /*----------------------------------------------------------------------------
661 | The pattern for a default generated double-precision NaN.
662 *----------------------------------------------------------------------------*/
663 float64 float64_default_nan(float_status *status);
665 /*----------------------------------------------------------------------------
666 | Software IEC/IEEE extended double-precision conversion routines.
667 *----------------------------------------------------------------------------*/
668 int32_t floatx80_to_int32(floatx80, float_status *status);
669 int32_t floatx80_to_int32_round_to_zero(floatx80, float_status *status);
670 int64_t floatx80_to_int64(floatx80, float_status *status);
671 int64_t floatx80_to_int64_round_to_zero(floatx80, float_status *status);
672 float32 floatx80_to_float32(floatx80, float_status *status);
673 float64 floatx80_to_float64(floatx80, float_status *status);
674 float128 floatx80_to_float128(floatx80, float_status *status);
676 /*----------------------------------------------------------------------------
677 | The pattern for an extended double-precision inf.
678 *----------------------------------------------------------------------------*/
679 extern const floatx80 floatx80_infinity;
681 /*----------------------------------------------------------------------------
682 | Software IEC/IEEE extended double-precision operations.
683 *----------------------------------------------------------------------------*/
684 floatx80 floatx80_round(floatx80 a, float_status *status);
685 floatx80 floatx80_round_to_int(floatx80, float_status *status);
686 floatx80 floatx80_add(floatx80, floatx80, float_status *status);
687 floatx80 floatx80_sub(floatx80, floatx80, float_status *status);
688 floatx80 floatx80_mul(floatx80, floatx80, float_status *status);
689 floatx80 floatx80_div(floatx80, floatx80, float_status *status);
690 floatx80 floatx80_rem(floatx80, floatx80, float_status *status);
691 floatx80 floatx80_sqrt(floatx80, float_status *status);
692 FloatRelation floatx80_compare(floatx80, floatx80, float_status *status);
693 FloatRelation floatx80_compare_quiet(floatx80, floatx80, float_status *status);
694 int floatx80_is_quiet_nan(floatx80, float_status *status);
695 int floatx80_is_signaling_nan(floatx80, float_status *status);
696 floatx80 floatx80_silence_nan(floatx80, float_status *status);
697 floatx80 floatx80_scalbn(floatx80, int, float_status *status);
699 static inline floatx80 floatx80_abs(floatx80 a)
701 a.high &= 0x7fff;
702 return a;
705 static inline floatx80 floatx80_chs(floatx80 a)
707 a.high ^= 0x8000;
708 return a;
711 static inline bool floatx80_is_infinity(floatx80 a)
713 #if defined(TARGET_M68K)
714 return (a.high & 0x7fff) == floatx80_infinity.high && !(a.low << 1);
715 #else
716 return (a.high & 0x7fff) == floatx80_infinity.high &&
717 a.low == floatx80_infinity.low;
718 #endif
721 static inline bool floatx80_is_neg(floatx80 a)
723 return a.high >> 15;
726 static inline bool floatx80_is_zero(floatx80 a)
728 return (a.high & 0x7fff) == 0 && a.low == 0;
731 static inline bool floatx80_is_zero_or_denormal(floatx80 a)
733 return (a.high & 0x7fff) == 0;
736 static inline bool floatx80_is_any_nan(floatx80 a)
738 return ((a.high & 0x7fff) == 0x7fff) && (a.low<<1);
741 static inline bool floatx80_eq(floatx80 a, floatx80 b, float_status *s)
743 return floatx80_compare(a, b, s) == float_relation_equal;
746 static inline bool floatx80_le(floatx80 a, floatx80 b, float_status *s)
748 return floatx80_compare(a, b, s) <= float_relation_equal;
751 static inline bool floatx80_lt(floatx80 a, floatx80 b, float_status *s)
753 return floatx80_compare(a, b, s) < float_relation_equal;
756 static inline bool floatx80_unordered(floatx80 a, floatx80 b, float_status *s)
758 return floatx80_compare(a, b, s) == float_relation_unordered;
761 static inline bool floatx80_eq_quiet(floatx80 a, floatx80 b, float_status *s)
763 return floatx80_compare_quiet(a, b, s) == float_relation_equal;
766 static inline bool floatx80_le_quiet(floatx80 a, floatx80 b, float_status *s)
768 return floatx80_compare_quiet(a, b, s) <= float_relation_equal;
771 static inline bool floatx80_lt_quiet(floatx80 a, floatx80 b, float_status *s)
773 return floatx80_compare_quiet(a, b, s) < float_relation_equal;
776 static inline bool floatx80_unordered_quiet(floatx80 a, floatx80 b,
777 float_status *s)
779 return floatx80_compare_quiet(a, b, s) == float_relation_unordered;
782 /*----------------------------------------------------------------------------
783 | Return whether the given value is an invalid floatx80 encoding.
784 | Invalid floatx80 encodings arise when the integer bit is not set, but
785 | the exponent is not zero. The only times the integer bit is permitted to
786 | be zero is in subnormal numbers and the value zero.
787 | This includes what the Intel software developer's manual calls pseudo-NaNs,
788 | pseudo-infinities and un-normal numbers. It does not include
789 | pseudo-denormals, which must still be correctly handled as inputs even
790 | if they are never generated as outputs.
791 *----------------------------------------------------------------------------*/
792 static inline bool floatx80_invalid_encoding(floatx80 a)
794 return (a.low & (1ULL << 63)) == 0 && (a.high & 0x7FFF) != 0;
797 #define floatx80_zero make_floatx80(0x0000, 0x0000000000000000LL)
798 #define floatx80_one make_floatx80(0x3fff, 0x8000000000000000LL)
799 #define floatx80_ln2 make_floatx80(0x3ffe, 0xb17217f7d1cf79acLL)
800 #define floatx80_pi make_floatx80(0x4000, 0xc90fdaa22168c235LL)
801 #define floatx80_half make_floatx80(0x3ffe, 0x8000000000000000LL)
803 /*----------------------------------------------------------------------------
804 | Returns the fraction bits of the extended double-precision floating-point
805 | value `a'.
806 *----------------------------------------------------------------------------*/
808 static inline uint64_t extractFloatx80Frac(floatx80 a)
810 return a.low;
813 /*----------------------------------------------------------------------------
814 | Returns the exponent bits of the extended double-precision floating-point
815 | value `a'.
816 *----------------------------------------------------------------------------*/
818 static inline int32_t extractFloatx80Exp(floatx80 a)
820 return a.high & 0x7FFF;
823 /*----------------------------------------------------------------------------
824 | Returns the sign bit of the extended double-precision floating-point value
825 | `a'.
826 *----------------------------------------------------------------------------*/
828 static inline bool extractFloatx80Sign(floatx80 a)
830 return a.high >> 15;
833 /*----------------------------------------------------------------------------
834 | Packs the sign `zSign', exponent `zExp', and significand `zSig' into an
835 | extended double-precision floating-point value, returning the result.
836 *----------------------------------------------------------------------------*/
838 static inline floatx80 packFloatx80(bool zSign, int32_t zExp, uint64_t zSig)
840 floatx80 z;
842 z.low = zSig;
843 z.high = (((uint16_t)zSign) << 15) + zExp;
844 return z;
847 /*----------------------------------------------------------------------------
848 | Normalizes the subnormal extended double-precision floating-point value
849 | represented by the denormalized significand `aSig'. The normalized exponent
850 | and significand are stored at the locations pointed to by `zExpPtr' and
851 | `zSigPtr', respectively.
852 *----------------------------------------------------------------------------*/
854 void normalizeFloatx80Subnormal(uint64_t aSig, int32_t *zExpPtr,
855 uint64_t *zSigPtr);
857 /*----------------------------------------------------------------------------
858 | Takes two extended double-precision floating-point values `a' and `b', one
859 | of which is a NaN, and returns the appropriate NaN result. If either `a' or
860 | `b' is a signaling NaN, the invalid exception is raised.
861 *----------------------------------------------------------------------------*/
863 floatx80 propagateFloatx80NaN(floatx80 a, floatx80 b, float_status *status);
865 /*----------------------------------------------------------------------------
866 | Takes an abstract floating-point value having sign `zSign', exponent `zExp',
867 | and extended significand formed by the concatenation of `zSig0' and `zSig1',
868 | and returns the proper extended double-precision floating-point value
869 | corresponding to the abstract input. Ordinarily, the abstract value is
870 | rounded and packed into the extended double-precision format, with the
871 | inexact exception raised if the abstract input cannot be represented
872 | exactly. However, if the abstract value is too large, the overflow and
873 | inexact exceptions are raised and an infinity or maximal finite value is
874 | returned. If the abstract value is too small, the input value is rounded to
875 | a subnormal number, and the underflow and inexact exceptions are raised if
876 | the abstract input cannot be represented exactly as a subnormal extended
877 | double-precision floating-point number.
878 | If `roundingPrecision' is 32 or 64, the result is rounded to the same
879 | number of bits as single or double precision, respectively. Otherwise, the
880 | result is rounded to the full precision of the extended double-precision
881 | format.
882 | The input significand must be normalized or smaller. If the input
883 | significand is not normalized, `zExp' must be 0; in that case, the result
884 | returned is a subnormal number, and it must not require rounding. The
885 | handling of underflow and overflow follows the IEC/IEEE Standard for Binary
886 | Floating-Point Arithmetic.
887 *----------------------------------------------------------------------------*/
889 floatx80 roundAndPackFloatx80(int8_t roundingPrecision, bool zSign,
890 int32_t zExp, uint64_t zSig0, uint64_t zSig1,
891 float_status *status);
893 /*----------------------------------------------------------------------------
894 | Takes an abstract floating-point value having sign `zSign', exponent
895 | `zExp', and significand formed by the concatenation of `zSig0' and `zSig1',
896 | and returns the proper extended double-precision floating-point value
897 | corresponding to the abstract input. This routine is just like
898 | `roundAndPackFloatx80' except that the input significand does not have to be
899 | normalized.
900 *----------------------------------------------------------------------------*/
902 floatx80 normalizeRoundAndPackFloatx80(int8_t roundingPrecision,
903 bool zSign, int32_t zExp,
904 uint64_t zSig0, uint64_t zSig1,
905 float_status *status);
907 /*----------------------------------------------------------------------------
908 | The pattern for a default generated extended double-precision NaN.
909 *----------------------------------------------------------------------------*/
910 floatx80 floatx80_default_nan(float_status *status);
912 /*----------------------------------------------------------------------------
913 | Software IEC/IEEE quadruple-precision conversion routines.
914 *----------------------------------------------------------------------------*/
915 int32_t float128_to_int32(float128, float_status *status);
916 int32_t float128_to_int32_round_to_zero(float128, float_status *status);
917 int64_t float128_to_int64(float128, float_status *status);
918 int64_t float128_to_int64_round_to_zero(float128, float_status *status);
919 uint64_t float128_to_uint64(float128, float_status *status);
920 uint64_t float128_to_uint64_round_to_zero(float128, float_status *status);
921 uint32_t float128_to_uint32(float128, float_status *status);
922 uint32_t float128_to_uint32_round_to_zero(float128, float_status *status);
923 float32 float128_to_float32(float128, float_status *status);
924 float64 float128_to_float64(float128, float_status *status);
925 floatx80 float128_to_floatx80(float128, float_status *status);
927 /*----------------------------------------------------------------------------
928 | Software IEC/IEEE quadruple-precision operations.
929 *----------------------------------------------------------------------------*/
930 float128 float128_round_to_int(float128, float_status *status);
931 float128 float128_add(float128, float128, float_status *status);
932 float128 float128_sub(float128, float128, float_status *status);
933 float128 float128_mul(float128, float128, float_status *status);
934 float128 float128_div(float128, float128, float_status *status);
935 float128 float128_rem(float128, float128, float_status *status);
936 float128 float128_sqrt(float128, float_status *status);
937 FloatRelation float128_compare(float128, float128, float_status *status);
938 FloatRelation float128_compare_quiet(float128, float128, float_status *status);
939 bool float128_is_quiet_nan(float128, float_status *status);
940 bool float128_is_signaling_nan(float128, float_status *status);
941 float128 float128_silence_nan(float128, float_status *status);
942 float128 float128_scalbn(float128, int, float_status *status);
944 static inline float128 float128_abs(float128 a)
946 a.high &= 0x7fffffffffffffffLL;
947 return a;
950 static inline float128 float128_chs(float128 a)
952 a.high ^= 0x8000000000000000LL;
953 return a;
956 static inline bool float128_is_infinity(float128 a)
958 return (a.high & 0x7fffffffffffffffLL) == 0x7fff000000000000LL && a.low == 0;
961 static inline bool float128_is_neg(float128 a)
963 return a.high >> 63;
966 static inline bool float128_is_zero(float128 a)
968 return (a.high & 0x7fffffffffffffffLL) == 0 && a.low == 0;
971 static inline bool float128_is_zero_or_denormal(float128 a)
973 return (a.high & 0x7fff000000000000LL) == 0;
976 static inline bool float128_is_normal(float128 a)
978 return (((a.high >> 48) + 1) & 0x7fff) >= 2;
981 static inline bool float128_is_denormal(float128 a)
983 return float128_is_zero_or_denormal(a) && !float128_is_zero(a);
986 static inline bool float128_is_any_nan(float128 a)
988 return ((a.high >> 48) & 0x7fff) == 0x7fff &&
989 ((a.low != 0) || ((a.high & 0xffffffffffffLL) != 0));
992 static inline bool float128_eq(float128 a, float128 b, float_status *s)
994 return float128_compare(a, b, s) == float_relation_equal;
997 static inline bool float128_le(float128 a, float128 b, float_status *s)
999 return float128_compare(a, b, s) <= float_relation_equal;
1002 static inline bool float128_lt(float128 a, float128 b, float_status *s)
1004 return float128_compare(a, b, s) < float_relation_equal;
1007 static inline bool float128_unordered(float128 a, float128 b, float_status *s)
1009 return float128_compare(a, b, s) == float_relation_unordered;
1012 static inline bool float128_eq_quiet(float128 a, float128 b, float_status *s)
1014 return float128_compare_quiet(a, b, s) == float_relation_equal;
1017 static inline bool float128_le_quiet(float128 a, float128 b, float_status *s)
1019 return float128_compare_quiet(a, b, s) <= float_relation_equal;
1022 static inline bool float128_lt_quiet(float128 a, float128 b, float_status *s)
1024 return float128_compare_quiet(a, b, s) < float_relation_equal;
1027 static inline bool float128_unordered_quiet(float128 a, float128 b,
1028 float_status *s)
1030 return float128_compare_quiet(a, b, s) == float_relation_unordered;
1033 #define float128_zero make_float128(0, 0)
1035 /*----------------------------------------------------------------------------
1036 | The pattern for a default generated quadruple-precision NaN.
1037 *----------------------------------------------------------------------------*/
1038 float128 float128_default_nan(float_status *status);
1040 #endif /* SOFTFLOAT_H */