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
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 source fragment 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 ===============================================================================
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 #if defined(TARGET_XTENSA)
83 /* Define for architectures which deviate from IEEE in not supporting
84 * signaling NaNs (so all NaNs are treated as quiet).
86 #define NO_SIGNALING_NANS 1
89 /*----------------------------------------------------------------------------
90 | The pattern for a default generated half-precision NaN.
91 *----------------------------------------------------------------------------*/
92 float16
float16_default_nan(float_status
*status
)
94 #if defined(TARGET_ARM)
95 return const_float16(0x7E00);
97 if (status
->snan_bit_is_one
) {
98 return const_float16(0x7DFF);
100 #if defined(TARGET_MIPS)
101 return const_float16(0x7E00);
103 return const_float16(0xFE00);
109 /*----------------------------------------------------------------------------
110 | The pattern for a default generated single-precision NaN.
111 *----------------------------------------------------------------------------*/
112 float32
float32_default_nan(float_status
*status
)
114 #if defined(TARGET_SPARC) || defined(TARGET_M68K)
115 return const_float32(0x7FFFFFFF);
116 #elif defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_ALPHA) || \
117 defined(TARGET_XTENSA) || defined(TARGET_S390X) || defined(TARGET_TRICORE)
118 return const_float32(0x7FC00000);
119 #elif defined(TARGET_HPPA)
120 return const_float32(0x7FA00000);
122 if (status
->snan_bit_is_one
) {
123 return const_float32(0x7FBFFFFF);
125 #if defined(TARGET_MIPS)
126 return const_float32(0x7FC00000);
128 return const_float32(0xFFC00000);
134 /*----------------------------------------------------------------------------
135 | The pattern for a default generated double-precision NaN.
136 *----------------------------------------------------------------------------*/
137 float64
float64_default_nan(float_status
*status
)
139 #if defined(TARGET_SPARC) || defined(TARGET_M68K)
140 return const_float64(LIT64(0x7FFFFFFFFFFFFFFF));
141 #elif defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_ALPHA) || \
142 defined(TARGET_S390X)
143 return const_float64(LIT64(0x7FF8000000000000));
144 #elif defined(TARGET_HPPA)
145 return const_float64(LIT64(0x7FF4000000000000));
147 if (status
->snan_bit_is_one
) {
148 return const_float64(LIT64(0x7FF7FFFFFFFFFFFF));
150 #if defined(TARGET_MIPS)
151 return const_float64(LIT64(0x7FF8000000000000));
153 return const_float64(LIT64(0xFFF8000000000000));
159 /*----------------------------------------------------------------------------
160 | The pattern for a default generated extended double-precision NaN.
161 *----------------------------------------------------------------------------*/
162 floatx80
floatx80_default_nan(float_status
*status
)
165 #if defined(TARGET_M68K)
166 r
.low
= LIT64(0xFFFFFFFFFFFFFFFF);
169 if (status
->snan_bit_is_one
) {
170 r
.low
= LIT64(0xBFFFFFFFFFFFFFFF);
173 r
.low
= LIT64(0xC000000000000000);
180 /*----------------------------------------------------------------------------
181 | The pattern for a default generated extended double-precision inf.
182 *----------------------------------------------------------------------------*/
184 #define floatx80_infinity_high 0x7FFF
185 #if defined(TARGET_M68K)
186 #define floatx80_infinity_low LIT64(0x0000000000000000)
188 #define floatx80_infinity_low LIT64(0x8000000000000000)
191 const floatx80 floatx80_infinity
192 = make_floatx80_init(floatx80_infinity_high
, floatx80_infinity_low
);
194 /*----------------------------------------------------------------------------
195 | The pattern for a default generated quadruple-precision NaN.
196 *----------------------------------------------------------------------------*/
197 float128
float128_default_nan(float_status
*status
)
201 if (status
->snan_bit_is_one
) {
202 r
.low
= LIT64(0xFFFFFFFFFFFFFFFF);
203 r
.high
= LIT64(0x7FFF7FFFFFFFFFFF);
205 r
.low
= LIT64(0x0000000000000000);
206 #if defined(TARGET_S390X) || defined(TARGET_PPC)
207 r
.high
= LIT64(0x7FFF800000000000);
209 r
.high
= LIT64(0xFFFF800000000000);
215 /*----------------------------------------------------------------------------
216 | Raises the exceptions specified by `flags'. Floating-point traps can be
217 | defined here if desired. It is currently not possible for such a trap
218 | to substitute a result value. If traps are not implemented, this routine
219 | should be simply `float_exception_flags |= flags;'.
220 *----------------------------------------------------------------------------*/
222 void float_raise(uint8_t flags
, float_status
*status
)
224 status
->float_exception_flags
|= flags
;
227 /*----------------------------------------------------------------------------
228 | Internal canonical NaN format.
229 *----------------------------------------------------------------------------*/
235 #ifdef NO_SIGNALING_NANS
236 int float16_is_quiet_nan(float16 a_
, float_status
*status
)
238 return float16_is_any_nan(a_
);
241 int float16_is_signaling_nan(float16 a_
, float_status
*status
)
246 /*----------------------------------------------------------------------------
247 | Returns 1 if the half-precision floating-point value `a' is a quiet
248 | NaN; otherwise returns 0.
249 *----------------------------------------------------------------------------*/
251 int float16_is_quiet_nan(float16 a_
, float_status
*status
)
253 uint16_t a
= float16_val(a_
);
254 if (status
->snan_bit_is_one
) {
255 return (((a
>> 9) & 0x3F) == 0x3E) && (a
& 0x1FF);
257 return ((a
& ~0x8000) >= 0x7C80);
261 /*----------------------------------------------------------------------------
262 | Returns 1 if the half-precision floating-point value `a' is a signaling
263 | NaN; otherwise returns 0.
264 *----------------------------------------------------------------------------*/
266 int float16_is_signaling_nan(float16 a_
, float_status
*status
)
268 uint16_t a
= float16_val(a_
);
269 if (status
->snan_bit_is_one
) {
270 return ((a
& ~0x8000) >= 0x7C80);
272 return (((a
>> 9) & 0x3F) == 0x3E) && (a
& 0x1FF);
277 /*----------------------------------------------------------------------------
278 | Returns a quiet NaN if the half-precision floating point value `a' is a
279 | signaling NaN; otherwise returns `a'.
280 *----------------------------------------------------------------------------*/
281 float16
float16_maybe_silence_nan(float16 a_
, float_status
*status
)
283 if (float16_is_signaling_nan(a_
, status
)) {
284 if (status
->snan_bit_is_one
) {
285 return float16_default_nan(status
);
287 uint16_t a
= float16_val(a_
);
289 return make_float16(a
);
295 /*----------------------------------------------------------------------------
296 | Returns the result of converting the half-precision floating-point NaN
297 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
298 | exception is raised.
299 *----------------------------------------------------------------------------*/
301 static commonNaNT
float16ToCommonNaN(float16 a
, float_status
*status
)
305 if (float16_is_signaling_nan(a
, status
)) {
306 float_raise(float_flag_invalid
, status
);
308 z
.sign
= float16_val(a
) >> 15;
310 z
.high
= ((uint64_t) float16_val(a
)) << 54;
314 /*----------------------------------------------------------------------------
315 | Returns the result of converting the canonical NaN `a' to the half-
316 | precision floating-point format.
317 *----------------------------------------------------------------------------*/
319 static float16
commonNaNToFloat16(commonNaNT a
, float_status
*status
)
321 uint16_t mantissa
= a
.high
>> 54;
323 if (status
->default_nan_mode
) {
324 return float16_default_nan(status
);
328 return make_float16(((((uint16_t) a
.sign
) << 15)
329 | (0x1F << 10) | mantissa
));
331 return float16_default_nan(status
);
335 #ifdef NO_SIGNALING_NANS
336 int float32_is_quiet_nan(float32 a_
, float_status
*status
)
338 return float32_is_any_nan(a_
);
341 int float32_is_signaling_nan(float32 a_
, float_status
*status
)
346 /*----------------------------------------------------------------------------
347 | Returns 1 if the single-precision floating-point value `a' is a quiet
348 | NaN; otherwise returns 0.
349 *----------------------------------------------------------------------------*/
351 int float32_is_quiet_nan(float32 a_
, float_status
*status
)
353 uint32_t a
= float32_val(a_
);
354 if (status
->snan_bit_is_one
) {
355 return (((a
>> 22) & 0x1FF) == 0x1FE) && (a
& 0x003FFFFF);
357 return ((uint32_t)(a
<< 1) >= 0xFF800000);
361 /*----------------------------------------------------------------------------
362 | Returns 1 if the single-precision floating-point value `a' is a signaling
363 | NaN; otherwise returns 0.
364 *----------------------------------------------------------------------------*/
366 int float32_is_signaling_nan(float32 a_
, float_status
*status
)
368 uint32_t a
= float32_val(a_
);
369 if (status
->snan_bit_is_one
) {
370 return ((uint32_t)(a
<< 1) >= 0xFF800000);
372 return (((a
>> 22) & 0x1FF) == 0x1FE) && (a
& 0x003FFFFF);
377 /*----------------------------------------------------------------------------
378 | Returns a quiet NaN if the single-precision floating point value `a' is a
379 | signaling NaN; otherwise returns `a'.
380 *----------------------------------------------------------------------------*/
382 float32
float32_maybe_silence_nan(float32 a_
, float_status
*status
)
384 if (float32_is_signaling_nan(a_
, status
)) {
385 if (status
->snan_bit_is_one
) {
387 uint32_t a
= float32_val(a_
);
390 return make_float32(a
);
392 return float32_default_nan(status
);
395 uint32_t a
= float32_val(a_
);
397 return make_float32(a
);
403 /*----------------------------------------------------------------------------
404 | Returns the result of converting the single-precision floating-point NaN
405 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
406 | exception is raised.
407 *----------------------------------------------------------------------------*/
409 static commonNaNT
float32ToCommonNaN(float32 a
, float_status
*status
)
413 if (float32_is_signaling_nan(a
, status
)) {
414 float_raise(float_flag_invalid
, status
);
416 z
.sign
= float32_val(a
) >> 31;
418 z
.high
= ((uint64_t)float32_val(a
)) << 41;
422 /*----------------------------------------------------------------------------
423 | Returns the result of converting the canonical NaN `a' to the single-
424 | precision floating-point format.
425 *----------------------------------------------------------------------------*/
427 static float32
commonNaNToFloat32(commonNaNT a
, float_status
*status
)
429 uint32_t mantissa
= a
.high
>> 41;
431 if (status
->default_nan_mode
) {
432 return float32_default_nan(status
);
437 (((uint32_t)a
.sign
) << 31) | 0x7F800000 | (a
.high
>> 41));
439 return float32_default_nan(status
);
443 /*----------------------------------------------------------------------------
444 | Select which NaN to propagate for a two-input operation.
445 | IEEE754 doesn't specify all the details of this, so the
446 | algorithm is target-specific.
447 | The routine is passed various bits of information about the
448 | two NaNs and should return 0 to select NaN a and 1 for NaN b.
449 | Note that signalling NaNs are always squashed to quiet NaNs
450 | by the caller, by calling floatXX_maybe_silence_nan() before
453 | aIsLargerSignificand is only valid if both a and b are NaNs
454 | of some kind, and is true if a has the larger significand,
455 | or if both a and b have the same significand but a is
456 | positive but b is negative. It is only needed for the x87
458 *----------------------------------------------------------------------------*/
460 #if defined(TARGET_ARM)
461 static int pickNaN(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
462 flag aIsLargerSignificand
)
464 /* ARM mandated NaN propagation rules (see FPProcessNaNs()), take
466 * 1. A if it is signaling
467 * 2. B if it is signaling
470 * A signaling NaN is always quietened before returning it.
474 } else if (bIsSNaN
) {
476 } else if (aIsQNaN
) {
482 #elif defined(TARGET_MIPS) || defined(TARGET_HPPA)
483 static int pickNaN(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
484 flag aIsLargerSignificand
)
486 /* According to MIPS specifications, if one of the two operands is
487 * a sNaN, a new qNaN has to be generated. This is done in
488 * floatXX_maybe_silence_nan(). For qNaN inputs the specifications
489 * says: "When possible, this QNaN result is one of the operand QNaN
490 * values." In practice it seems that most implementations choose
491 * the first operand if both operands are qNaN. In short this gives
492 * the following rules:
493 * 1. A if it is signaling
494 * 2. B if it is signaling
497 * A signaling NaN is always silenced before returning it.
501 } else if (bIsSNaN
) {
503 } else if (aIsQNaN
) {
509 #elif defined(TARGET_PPC) || defined(TARGET_XTENSA)
510 static int pickNaN(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
511 flag aIsLargerSignificand
)
513 /* PowerPC propagation rules:
514 * 1. A if it sNaN or qNaN
515 * 2. B if it sNaN or qNaN
516 * A signaling NaN is always silenced before returning it.
518 if (aIsSNaN
|| aIsQNaN
) {
524 #elif defined(TARGET_M68K)
525 static int pickNaN(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
526 flag aIsLargerSignificand
)
528 /* M68000 FAMILY PROGRAMMER'S REFERENCE MANUAL
529 * 3.4 FLOATING-POINT INSTRUCTION DETAILS
530 * If either operand, but not both operands, of an operation is a
531 * nonsignaling NaN, then that NaN is returned as the result. If both
532 * operands are nonsignaling NaNs, then the destination operand
533 * nonsignaling NaN is returned as the result.
534 * If either operand to an operation is a signaling NaN (SNaN), then the
535 * SNaN bit is set in the FPSR EXC byte. If the SNaN exception enable bit
536 * is set in the FPCR ENABLE byte, then the exception is taken and the
537 * destination is not modified. If the SNaN exception enable bit is not
538 * set, setting the SNaN bit in the operand to a one converts the SNaN to
539 * a nonsignaling NaN. The operation then continues as described in the
540 * preceding paragraph for nonsignaling NaNs.
542 if (aIsQNaN
|| aIsSNaN
) { /* a is the destination operand */
543 return 0; /* return the destination operand */
545 return 1; /* return b */
549 static int pickNaN(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
550 flag aIsLargerSignificand
)
552 /* This implements x87 NaN propagation rules:
553 * SNaN + QNaN => return the QNaN
554 * two SNaNs => return the one with the larger significand, silenced
555 * two QNaNs => return the one with the larger significand
556 * SNaN and a non-NaN => return the SNaN, silenced
557 * QNaN and a non-NaN => return the QNaN
559 * If we get down to comparing significands and they are the same,
560 * return the NaN with the positive sign bit (if any).
564 return aIsLargerSignificand
? 0 : 1;
566 return bIsQNaN
? 1 : 0;
567 } else if (aIsQNaN
) {
568 if (bIsSNaN
|| !bIsQNaN
) {
571 return aIsLargerSignificand
? 0 : 1;
579 /*----------------------------------------------------------------------------
580 | Select which NaN to propagate for a three-input operation.
581 | For the moment we assume that no CPU needs the 'larger significand'
583 | Return values : 0 : a; 1 : b; 2 : c; 3 : default-NaN
584 *----------------------------------------------------------------------------*/
585 #if defined(TARGET_ARM)
586 static int pickNaNMulAdd(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
587 flag cIsQNaN
, flag cIsSNaN
, flag infzero
,
588 float_status
*status
)
590 /* For ARM, the (inf,zero,qnan) case sets InvalidOp and returns
593 if (infzero
&& cIsQNaN
) {
594 float_raise(float_flag_invalid
, status
);
598 /* This looks different from the ARM ARM pseudocode, because the ARM ARM
599 * puts the operands to a fused mac operation (a*b)+c in the order c,a,b.
603 } else if (aIsSNaN
) {
605 } else if (bIsSNaN
) {
607 } else if (cIsQNaN
) {
609 } else if (aIsQNaN
) {
615 #elif defined(TARGET_MIPS)
616 static int pickNaNMulAdd(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
617 flag cIsQNaN
, flag cIsSNaN
, flag infzero
,
618 float_status
*status
)
620 /* For MIPS, the (inf,zero,qnan) case sets InvalidOp and returns
624 float_raise(float_flag_invalid
, status
);
628 if (status
->snan_bit_is_one
) {
629 /* Prefer sNaN over qNaN, in the a, b, c order. */
632 } else if (bIsSNaN
) {
634 } else if (cIsSNaN
) {
636 } else if (aIsQNaN
) {
638 } else if (bIsQNaN
) {
644 /* Prefer sNaN over qNaN, in the c, a, b order. */
647 } else if (aIsSNaN
) {
649 } else if (bIsSNaN
) {
651 } else if (cIsQNaN
) {
653 } else if (aIsQNaN
) {
660 #elif defined(TARGET_PPC)
661 static int pickNaNMulAdd(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
662 flag cIsQNaN
, flag cIsSNaN
, flag infzero
,
663 float_status
*status
)
665 /* For PPC, the (inf,zero,qnan) case sets InvalidOp, but we prefer
666 * to return an input NaN if we have one (ie c) rather than generating
670 float_raise(float_flag_invalid
, status
);
674 /* If fRA is a NaN return it; otherwise if fRB is a NaN return it;
675 * otherwise return fRC. Note that muladd on PPC is (fRA * fRC) + frB
677 if (aIsSNaN
|| aIsQNaN
) {
679 } else if (cIsSNaN
|| cIsQNaN
) {
686 /* A default implementation: prefer a to b to c.
687 * This is unlikely to actually match any real implementation.
689 static int pickNaNMulAdd(flag aIsQNaN
, flag aIsSNaN
, flag bIsQNaN
, flag bIsSNaN
,
690 flag cIsQNaN
, flag cIsSNaN
, flag infzero
,
691 float_status
*status
)
693 if (aIsSNaN
|| aIsQNaN
) {
695 } else if (bIsSNaN
|| bIsQNaN
) {
703 /*----------------------------------------------------------------------------
704 | Takes two single-precision floating-point values `a' and `b', one of which
705 | is a NaN, and returns the appropriate NaN result. If either `a' or `b' is a
706 | signaling NaN, the invalid exception is raised.
707 *----------------------------------------------------------------------------*/
709 static float32
propagateFloat32NaN(float32 a
, float32 b
, float_status
*status
)
711 flag aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
;
712 flag aIsLargerSignificand
;
715 aIsQuietNaN
= float32_is_quiet_nan(a
, status
);
716 aIsSignalingNaN
= float32_is_signaling_nan(a
, status
);
717 bIsQuietNaN
= float32_is_quiet_nan(b
, status
);
718 bIsSignalingNaN
= float32_is_signaling_nan(b
, status
);
722 if (aIsSignalingNaN
| bIsSignalingNaN
) {
723 float_raise(float_flag_invalid
, status
);
726 if (status
->default_nan_mode
) {
727 return float32_default_nan(status
);
730 if ((uint32_t)(av
<< 1) < (uint32_t)(bv
<< 1)) {
731 aIsLargerSignificand
= 0;
732 } else if ((uint32_t)(bv
<< 1) < (uint32_t)(av
<< 1)) {
733 aIsLargerSignificand
= 1;
735 aIsLargerSignificand
= (av
< bv
) ? 1 : 0;
738 if (pickNaN(aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
,
739 aIsLargerSignificand
)) {
740 return float32_maybe_silence_nan(b
, status
);
742 return float32_maybe_silence_nan(a
, status
);
746 #ifdef NO_SIGNALING_NANS
747 int float64_is_quiet_nan(float64 a_
, float_status
*status
)
749 return float64_is_any_nan(a_
);
752 int float64_is_signaling_nan(float64 a_
, float_status
*status
)
757 /*----------------------------------------------------------------------------
758 | Returns 1 if the double-precision floating-point value `a' is a quiet
759 | NaN; otherwise returns 0.
760 *----------------------------------------------------------------------------*/
762 int float64_is_quiet_nan(float64 a_
, float_status
*status
)
764 uint64_t a
= float64_val(a_
);
765 if (status
->snan_bit_is_one
) {
766 return (((a
>> 51) & 0xFFF) == 0xFFE)
767 && (a
& 0x0007FFFFFFFFFFFFULL
);
769 return ((a
<< 1) >= 0xFFF0000000000000ULL
);
773 /*----------------------------------------------------------------------------
774 | Returns 1 if the double-precision floating-point value `a' is a signaling
775 | NaN; otherwise returns 0.
776 *----------------------------------------------------------------------------*/
778 int float64_is_signaling_nan(float64 a_
, float_status
*status
)
780 uint64_t a
= float64_val(a_
);
781 if (status
->snan_bit_is_one
) {
782 return ((a
<< 1) >= 0xFFF0000000000000ULL
);
784 return (((a
>> 51) & 0xFFF) == 0xFFE)
785 && (a
& LIT64(0x0007FFFFFFFFFFFF));
790 /*----------------------------------------------------------------------------
791 | Returns a quiet NaN if the double-precision floating point value `a' is a
792 | signaling NaN; otherwise returns `a'.
793 *----------------------------------------------------------------------------*/
795 float64
float64_maybe_silence_nan(float64 a_
, float_status
*status
)
797 if (float64_is_signaling_nan(a_
, status
)) {
798 if (status
->snan_bit_is_one
) {
800 uint64_t a
= float64_val(a_
);
801 a
&= ~0x0008000000000000ULL
;
802 a
|= 0x0004000000000000ULL
;
803 return make_float64(a
);
805 return float64_default_nan(status
);
808 uint64_t a
= float64_val(a_
);
809 a
|= LIT64(0x0008000000000000);
810 return make_float64(a
);
816 /*----------------------------------------------------------------------------
817 | Returns the result of converting the double-precision floating-point NaN
818 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
819 | exception is raised.
820 *----------------------------------------------------------------------------*/
822 static commonNaNT
float64ToCommonNaN(float64 a
, float_status
*status
)
826 if (float64_is_signaling_nan(a
, status
)) {
827 float_raise(float_flag_invalid
, status
);
829 z
.sign
= float64_val(a
) >> 63;
831 z
.high
= float64_val(a
) << 12;
835 /*----------------------------------------------------------------------------
836 | Returns the result of converting the canonical NaN `a' to the double-
837 | precision floating-point format.
838 *----------------------------------------------------------------------------*/
840 static float64
commonNaNToFloat64(commonNaNT a
, float_status
*status
)
842 uint64_t mantissa
= a
.high
>> 12;
844 if (status
->default_nan_mode
) {
845 return float64_default_nan(status
);
850 (((uint64_t) a
.sign
) << 63)
851 | LIT64(0x7FF0000000000000)
854 return float64_default_nan(status
);
858 /*----------------------------------------------------------------------------
859 | Takes two double-precision floating-point values `a' and `b', one of which
860 | is a NaN, and returns the appropriate NaN result. If either `a' or `b' is a
861 | signaling NaN, the invalid exception is raised.
862 *----------------------------------------------------------------------------*/
864 static float64
propagateFloat64NaN(float64 a
, float64 b
, float_status
*status
)
866 flag aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
;
867 flag aIsLargerSignificand
;
870 aIsQuietNaN
= float64_is_quiet_nan(a
, status
);
871 aIsSignalingNaN
= float64_is_signaling_nan(a
, status
);
872 bIsQuietNaN
= float64_is_quiet_nan(b
, status
);
873 bIsSignalingNaN
= float64_is_signaling_nan(b
, status
);
877 if (aIsSignalingNaN
| bIsSignalingNaN
) {
878 float_raise(float_flag_invalid
, status
);
881 if (status
->default_nan_mode
) {
882 return float64_default_nan(status
);
885 if ((uint64_t)(av
<< 1) < (uint64_t)(bv
<< 1)) {
886 aIsLargerSignificand
= 0;
887 } else if ((uint64_t)(bv
<< 1) < (uint64_t)(av
<< 1)) {
888 aIsLargerSignificand
= 1;
890 aIsLargerSignificand
= (av
< bv
) ? 1 : 0;
893 if (pickNaN(aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
,
894 aIsLargerSignificand
)) {
895 return float64_maybe_silence_nan(b
, status
);
897 return float64_maybe_silence_nan(a
, status
);
901 #ifdef NO_SIGNALING_NANS
902 int floatx80_is_quiet_nan(floatx80 a_
, float_status
*status
)
904 return floatx80_is_any_nan(a_
);
907 int floatx80_is_signaling_nan(floatx80 a_
, float_status
*status
)
912 /*----------------------------------------------------------------------------
913 | Returns 1 if the extended double-precision floating-point value `a' is a
914 | quiet NaN; otherwise returns 0. This slightly differs from the same
915 | function for other types as floatx80 has an explicit bit.
916 *----------------------------------------------------------------------------*/
918 int floatx80_is_quiet_nan(floatx80 a
, float_status
*status
)
920 if (status
->snan_bit_is_one
) {
923 aLow
= a
.low
& ~0x4000000000000000ULL
;
924 return ((a
.high
& 0x7FFF) == 0x7FFF)
928 return ((a
.high
& 0x7FFF) == 0x7FFF)
929 && (LIT64(0x8000000000000000) <= ((uint64_t)(a
.low
<< 1)));
933 /*----------------------------------------------------------------------------
934 | Returns 1 if the extended double-precision floating-point value `a' is a
935 | signaling NaN; otherwise returns 0. This slightly differs from the same
936 | function for other types as floatx80 has an explicit bit.
937 *----------------------------------------------------------------------------*/
939 int floatx80_is_signaling_nan(floatx80 a
, float_status
*status
)
941 if (status
->snan_bit_is_one
) {
942 return ((a
.high
& 0x7FFF) == 0x7FFF)
943 && ((a
.low
<< 1) >= 0x8000000000000000ULL
);
947 aLow
= a
.low
& ~LIT64(0x4000000000000000);
948 return ((a
.high
& 0x7FFF) == 0x7FFF)
949 && (uint64_t)(aLow
<< 1)
955 /*----------------------------------------------------------------------------
956 | Returns a quiet NaN if the extended double-precision floating point value
957 | `a' is a signaling NaN; otherwise returns `a'.
958 *----------------------------------------------------------------------------*/
960 floatx80
floatx80_maybe_silence_nan(floatx80 a
, float_status
*status
)
962 if (floatx80_is_signaling_nan(a
, status
)) {
963 if (status
->snan_bit_is_one
) {
964 a
= floatx80_default_nan(status
);
966 a
.low
|= LIT64(0xC000000000000000);
973 /*----------------------------------------------------------------------------
974 | Returns the result of converting the extended double-precision floating-
975 | point NaN `a' to the canonical NaN format. If `a' is a signaling NaN, the
976 | invalid exception is raised.
977 *----------------------------------------------------------------------------*/
979 static commonNaNT
floatx80ToCommonNaN(floatx80 a
, float_status
*status
)
984 if (floatx80_is_signaling_nan(a
, status
)) {
985 float_raise(float_flag_invalid
, status
);
988 z
.sign
= a
.high
>> 15;
992 dflt
= floatx80_default_nan(status
);
993 z
.sign
= dflt
.high
>> 15;
995 z
.high
= dflt
.low
<< 1;
1000 /*----------------------------------------------------------------------------
1001 | Returns the result of converting the canonical NaN `a' to the extended
1002 | double-precision floating-point format.
1003 *----------------------------------------------------------------------------*/
1005 static floatx80
commonNaNToFloatx80(commonNaNT a
, float_status
*status
)
1009 if (status
->default_nan_mode
) {
1010 return floatx80_default_nan(status
);
1014 z
.low
= LIT64(0x8000000000000000) | a
.high
>> 1;
1015 z
.high
= (((uint16_t)a
.sign
) << 15) | 0x7FFF;
1017 z
= floatx80_default_nan(status
);
1022 /*----------------------------------------------------------------------------
1023 | Takes two extended double-precision floating-point values `a' and `b', one
1024 | of which is a NaN, and returns the appropriate NaN result. If either `a' or
1025 | `b' is a signaling NaN, the invalid exception is raised.
1026 *----------------------------------------------------------------------------*/
1028 floatx80
propagateFloatx80NaN(floatx80 a
, floatx80 b
, float_status
*status
)
1030 flag aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
;
1031 flag aIsLargerSignificand
;
1033 aIsQuietNaN
= floatx80_is_quiet_nan(a
, status
);
1034 aIsSignalingNaN
= floatx80_is_signaling_nan(a
, status
);
1035 bIsQuietNaN
= floatx80_is_quiet_nan(b
, status
);
1036 bIsSignalingNaN
= floatx80_is_signaling_nan(b
, status
);
1038 if (aIsSignalingNaN
| bIsSignalingNaN
) {
1039 float_raise(float_flag_invalid
, status
);
1042 if (status
->default_nan_mode
) {
1043 return floatx80_default_nan(status
);
1046 if (a
.low
< b
.low
) {
1047 aIsLargerSignificand
= 0;
1048 } else if (b
.low
< a
.low
) {
1049 aIsLargerSignificand
= 1;
1051 aIsLargerSignificand
= (a
.high
< b
.high
) ? 1 : 0;
1054 if (pickNaN(aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
,
1055 aIsLargerSignificand
)) {
1056 return floatx80_maybe_silence_nan(b
, status
);
1058 return floatx80_maybe_silence_nan(a
, status
);
1062 #ifdef NO_SIGNALING_NANS
1063 int float128_is_quiet_nan(float128 a_
, float_status
*status
)
1065 return float128_is_any_nan(a_
);
1068 int float128_is_signaling_nan(float128 a_
, float_status
*status
)
1073 /*----------------------------------------------------------------------------
1074 | Returns 1 if the quadruple-precision floating-point value `a' is a quiet
1075 | NaN; otherwise returns 0.
1076 *----------------------------------------------------------------------------*/
1078 int float128_is_quiet_nan(float128 a
, float_status
*status
)
1080 if (status
->snan_bit_is_one
) {
1081 return (((a
.high
>> 47) & 0xFFFF) == 0xFFFE)
1082 && (a
.low
|| (a
.high
& 0x00007FFFFFFFFFFFULL
));
1084 return ((a
.high
<< 1) >= 0xFFFF000000000000ULL
)
1085 && (a
.low
|| (a
.high
& 0x0000FFFFFFFFFFFFULL
));
1089 /*----------------------------------------------------------------------------
1090 | Returns 1 if the quadruple-precision floating-point value `a' is a
1091 | signaling NaN; otherwise returns 0.
1092 *----------------------------------------------------------------------------*/
1094 int float128_is_signaling_nan(float128 a
, float_status
*status
)
1096 if (status
->snan_bit_is_one
) {
1097 return ((a
.high
<< 1) >= 0xFFFF000000000000ULL
)
1098 && (a
.low
|| (a
.high
& 0x0000FFFFFFFFFFFFULL
));
1100 return (((a
.high
>> 47) & 0xFFFF) == 0xFFFE)
1101 && (a
.low
|| (a
.high
& LIT64(0x00007FFFFFFFFFFF)));
1106 /*----------------------------------------------------------------------------
1107 | Returns a quiet NaN if the quadruple-precision floating point value `a' is
1108 | a signaling NaN; otherwise returns `a'.
1109 *----------------------------------------------------------------------------*/
1111 float128
float128_maybe_silence_nan(float128 a
, float_status
*status
)
1113 if (float128_is_signaling_nan(a
, status
)) {
1114 if (status
->snan_bit_is_one
) {
1115 a
= float128_default_nan(status
);
1117 a
.high
|= LIT64(0x0000800000000000);
1124 /*----------------------------------------------------------------------------
1125 | Returns the result of converting the quadruple-precision floating-point NaN
1126 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
1127 | exception is raised.
1128 *----------------------------------------------------------------------------*/
1130 static commonNaNT
float128ToCommonNaN(float128 a
, float_status
*status
)
1134 if (float128_is_signaling_nan(a
, status
)) {
1135 float_raise(float_flag_invalid
, status
);
1137 z
.sign
= a
.high
>> 63;
1138 shortShift128Left(a
.high
, a
.low
, 16, &z
.high
, &z
.low
);
1142 /*----------------------------------------------------------------------------
1143 | Returns the result of converting the canonical NaN `a' to the quadruple-
1144 | precision floating-point format.
1145 *----------------------------------------------------------------------------*/
1147 static float128
commonNaNToFloat128(commonNaNT a
, float_status
*status
)
1151 if (status
->default_nan_mode
) {
1152 return float128_default_nan(status
);
1155 shift128Right(a
.high
, a
.low
, 16, &z
.high
, &z
.low
);
1156 z
.high
|= (((uint64_t)a
.sign
) << 63) | LIT64(0x7FFF000000000000);
1160 /*----------------------------------------------------------------------------
1161 | Takes two quadruple-precision floating-point values `a' and `b', one of
1162 | which is a NaN, and returns the appropriate NaN result. If either `a' or
1163 | `b' is a signaling NaN, the invalid exception is raised.
1164 *----------------------------------------------------------------------------*/
1166 static float128
propagateFloat128NaN(float128 a
, float128 b
,
1167 float_status
*status
)
1169 flag aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
;
1170 flag aIsLargerSignificand
;
1172 aIsQuietNaN
= float128_is_quiet_nan(a
, status
);
1173 aIsSignalingNaN
= float128_is_signaling_nan(a
, status
);
1174 bIsQuietNaN
= float128_is_quiet_nan(b
, status
);
1175 bIsSignalingNaN
= float128_is_signaling_nan(b
, status
);
1177 if (aIsSignalingNaN
| bIsSignalingNaN
) {
1178 float_raise(float_flag_invalid
, status
);
1181 if (status
->default_nan_mode
) {
1182 return float128_default_nan(status
);
1185 if (lt128(a
.high
<< 1, a
.low
, b
.high
<< 1, b
.low
)) {
1186 aIsLargerSignificand
= 0;
1187 } else if (lt128(b
.high
<< 1, b
.low
, a
.high
<< 1, a
.low
)) {
1188 aIsLargerSignificand
= 1;
1190 aIsLargerSignificand
= (a
.high
< b
.high
) ? 1 : 0;
1193 if (pickNaN(aIsQuietNaN
, aIsSignalingNaN
, bIsQuietNaN
, bIsSignalingNaN
,
1194 aIsLargerSignificand
)) {
1195 return float128_maybe_silence_nan(b
, status
);
1197 return float128_maybe_silence_nan(a
, status
);