block: fix deadlock in bdrv_co_flush
[qemu/kevin.git] / fpu / softfloat-specialize.h
blobf5aed72e8f6c30ca6492c3979cd8d7476a56f067
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 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 ===============================================================================
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 #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
87 #endif
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);
96 #else
97 if (status->snan_bit_is_one) {
98 return const_float16(0x7DFF);
99 } else {
100 #if defined(TARGET_MIPS)
101 return const_float16(0x7E00);
102 #else
103 return const_float16(0xFE00);
104 #endif
106 #endif
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)
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 #else
120 if (status->snan_bit_is_one) {
121 return const_float32(0x7FBFFFFF);
122 } else {
123 #if defined(TARGET_MIPS)
124 return const_float32(0x7FC00000);
125 #else
126 return const_float32(0xFFC00000);
127 #endif
129 #endif
132 /*----------------------------------------------------------------------------
133 | The pattern for a default generated double-precision NaN.
134 *----------------------------------------------------------------------------*/
135 float64 float64_default_nan(float_status *status)
137 #if defined(TARGET_SPARC)
138 return const_float64(LIT64(0x7FFFFFFFFFFFFFFF));
139 #elif defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_ALPHA) || \
140 defined(TARGET_S390X)
141 return const_float64(LIT64(0x7FF8000000000000));
142 #else
143 if (status->snan_bit_is_one) {
144 return const_float64(LIT64(0x7FF7FFFFFFFFFFFF));
145 } else {
146 #if defined(TARGET_MIPS)
147 return const_float64(LIT64(0x7FF8000000000000));
148 #else
149 return const_float64(LIT64(0xFFF8000000000000));
150 #endif
152 #endif
155 /*----------------------------------------------------------------------------
156 | The pattern for a default generated extended double-precision NaN.
157 *----------------------------------------------------------------------------*/
158 floatx80 floatx80_default_nan(float_status *status)
160 floatx80 r;
162 if (status->snan_bit_is_one) {
163 r.low = LIT64(0xBFFFFFFFFFFFFFFF);
164 r.high = 0x7FFF;
165 } else {
166 r.low = LIT64(0xC000000000000000);
167 r.high = 0xFFFF;
169 return r;
172 /*----------------------------------------------------------------------------
173 | The pattern for a default generated quadruple-precision NaN.
174 *----------------------------------------------------------------------------*/
175 float128 float128_default_nan(float_status *status)
177 float128 r;
179 if (status->snan_bit_is_one) {
180 r.low = LIT64(0xFFFFFFFFFFFFFFFF);
181 r.high = LIT64(0x7FFF7FFFFFFFFFFF);
182 } else {
183 r.low = LIT64(0x0000000000000000);
184 #if defined(TARGET_S390X)
185 r.high = LIT64(0x7FFF800000000000);
186 #else
187 r.high = LIT64(0xFFFF800000000000);
188 #endif
190 return r;
193 /*----------------------------------------------------------------------------
194 | Raises the exceptions specified by `flags'. Floating-point traps can be
195 | defined here if desired. It is currently not possible for such a trap
196 | to substitute a result value. If traps are not implemented, this routine
197 | should be simply `float_exception_flags |= flags;'.
198 *----------------------------------------------------------------------------*/
200 void float_raise(uint8_t flags, float_status *status)
202 status->float_exception_flags |= flags;
205 /*----------------------------------------------------------------------------
206 | Internal canonical NaN format.
207 *----------------------------------------------------------------------------*/
208 typedef struct {
209 flag sign;
210 uint64_t high, low;
211 } commonNaNT;
213 #ifdef NO_SIGNALING_NANS
214 int float16_is_quiet_nan(float16 a_, float_status *status)
216 return float16_is_any_nan(a_);
219 int float16_is_signaling_nan(float16 a_, float_status *status)
221 return 0;
223 #else
224 /*----------------------------------------------------------------------------
225 | Returns 1 if the half-precision floating-point value `a' is a quiet
226 | NaN; otherwise returns 0.
227 *----------------------------------------------------------------------------*/
229 int float16_is_quiet_nan(float16 a_, float_status *status)
231 uint16_t a = float16_val(a_);
232 if (status->snan_bit_is_one) {
233 return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
234 } else {
235 return ((a & ~0x8000) >= 0x7C80);
239 /*----------------------------------------------------------------------------
240 | Returns 1 if the half-precision floating-point value `a' is a signaling
241 | NaN; otherwise returns 0.
242 *----------------------------------------------------------------------------*/
244 int float16_is_signaling_nan(float16 a_, float_status *status)
246 uint16_t a = float16_val(a_);
247 if (status->snan_bit_is_one) {
248 return ((a & ~0x8000) >= 0x7C80);
249 } else {
250 return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
253 #endif
255 /*----------------------------------------------------------------------------
256 | Returns a quiet NaN if the half-precision floating point value `a' is a
257 | signaling NaN; otherwise returns `a'.
258 *----------------------------------------------------------------------------*/
259 float16 float16_maybe_silence_nan(float16 a_, float_status *status)
261 if (float16_is_signaling_nan(a_, status)) {
262 if (status->snan_bit_is_one) {
263 return float16_default_nan(status);
264 } else {
265 uint16_t a = float16_val(a_);
266 a |= (1 << 9);
267 return make_float16(a);
270 return a_;
273 /*----------------------------------------------------------------------------
274 | Returns the result of converting the half-precision floating-point NaN
275 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
276 | exception is raised.
277 *----------------------------------------------------------------------------*/
279 static commonNaNT float16ToCommonNaN(float16 a, float_status *status)
281 commonNaNT z;
283 if (float16_is_signaling_nan(a, status)) {
284 float_raise(float_flag_invalid, status);
286 z.sign = float16_val(a) >> 15;
287 z.low = 0;
288 z.high = ((uint64_t) float16_val(a)) << 54;
289 return z;
292 /*----------------------------------------------------------------------------
293 | Returns the result of converting the canonical NaN `a' to the half-
294 | precision floating-point format.
295 *----------------------------------------------------------------------------*/
297 static float16 commonNaNToFloat16(commonNaNT a, float_status *status)
299 uint16_t mantissa = a.high >> 54;
301 if (status->default_nan_mode) {
302 return float16_default_nan(status);
305 if (mantissa) {
306 return make_float16(((((uint16_t) a.sign) << 15)
307 | (0x1F << 10) | mantissa));
308 } else {
309 return float16_default_nan(status);
313 #ifdef NO_SIGNALING_NANS
314 int float32_is_quiet_nan(float32 a_, float_status *status)
316 return float32_is_any_nan(a_);
319 int float32_is_signaling_nan(float32 a_, float_status *status)
321 return 0;
323 #else
324 /*----------------------------------------------------------------------------
325 | Returns 1 if the single-precision floating-point value `a' is a quiet
326 | NaN; otherwise returns 0.
327 *----------------------------------------------------------------------------*/
329 int float32_is_quiet_nan(float32 a_, float_status *status)
331 uint32_t a = float32_val(a_);
332 if (status->snan_bit_is_one) {
333 return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
334 } else {
335 return ((uint32_t)(a << 1) >= 0xFF800000);
339 /*----------------------------------------------------------------------------
340 | Returns 1 if the single-precision floating-point value `a' is a signaling
341 | NaN; otherwise returns 0.
342 *----------------------------------------------------------------------------*/
344 int float32_is_signaling_nan(float32 a_, float_status *status)
346 uint32_t a = float32_val(a_);
347 if (status->snan_bit_is_one) {
348 return ((uint32_t)(a << 1) >= 0xFF800000);
349 } else {
350 return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
353 #endif
355 /*----------------------------------------------------------------------------
356 | Returns a quiet NaN if the single-precision floating point value `a' is a
357 | signaling NaN; otherwise returns `a'.
358 *----------------------------------------------------------------------------*/
360 float32 float32_maybe_silence_nan(float32 a_, float_status *status)
362 if (float32_is_signaling_nan(a_, status)) {
363 if (status->snan_bit_is_one) {
364 return float32_default_nan(status);
365 } else {
366 uint32_t a = float32_val(a_);
367 a |= (1 << 22);
368 return make_float32(a);
371 return a_;
374 /*----------------------------------------------------------------------------
375 | Returns the result of converting the single-precision floating-point NaN
376 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
377 | exception is raised.
378 *----------------------------------------------------------------------------*/
380 static commonNaNT float32ToCommonNaN(float32 a, float_status *status)
382 commonNaNT z;
384 if (float32_is_signaling_nan(a, status)) {
385 float_raise(float_flag_invalid, status);
387 z.sign = float32_val(a) >> 31;
388 z.low = 0;
389 z.high = ((uint64_t)float32_val(a)) << 41;
390 return z;
393 /*----------------------------------------------------------------------------
394 | Returns the result of converting the canonical NaN `a' to the single-
395 | precision floating-point format.
396 *----------------------------------------------------------------------------*/
398 static float32 commonNaNToFloat32(commonNaNT a, float_status *status)
400 uint32_t mantissa = a.high >> 41;
402 if (status->default_nan_mode) {
403 return float32_default_nan(status);
406 if (mantissa) {
407 return make_float32(
408 (((uint32_t)a.sign) << 31) | 0x7F800000 | (a.high >> 41));
409 } else {
410 return float32_default_nan(status);
414 /*----------------------------------------------------------------------------
415 | Select which NaN to propagate for a two-input operation.
416 | IEEE754 doesn't specify all the details of this, so the
417 | algorithm is target-specific.
418 | The routine is passed various bits of information about the
419 | two NaNs and should return 0 to select NaN a and 1 for NaN b.
420 | Note that signalling NaNs are always squashed to quiet NaNs
421 | by the caller, by calling floatXX_maybe_silence_nan() before
422 | returning them.
424 | aIsLargerSignificand is only valid if both a and b are NaNs
425 | of some kind, and is true if a has the larger significand,
426 | or if both a and b have the same significand but a is
427 | positive but b is negative. It is only needed for the x87
428 | tie-break rule.
429 *----------------------------------------------------------------------------*/
431 #if defined(TARGET_ARM)
432 static int pickNaN(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
433 flag aIsLargerSignificand)
435 /* ARM mandated NaN propagation rules: take the first of:
436 * 1. A if it is signaling
437 * 2. B if it is signaling
438 * 3. A (quiet)
439 * 4. B (quiet)
440 * A signaling NaN is always quietened before returning it.
442 if (aIsSNaN) {
443 return 0;
444 } else if (bIsSNaN) {
445 return 1;
446 } else if (aIsQNaN) {
447 return 0;
448 } else {
449 return 1;
452 #elif defined(TARGET_MIPS)
453 static int pickNaN(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
454 flag aIsLargerSignificand)
456 /* According to MIPS specifications, if one of the two operands is
457 * a sNaN, a new qNaN has to be generated. This is done in
458 * floatXX_maybe_silence_nan(). For qNaN inputs the specifications
459 * says: "When possible, this QNaN result is one of the operand QNaN
460 * values." In practice it seems that most implementations choose
461 * the first operand if both operands are qNaN. In short this gives
462 * the following rules:
463 * 1. A if it is signaling
464 * 2. B if it is signaling
465 * 3. A (quiet)
466 * 4. B (quiet)
467 * A signaling NaN is always silenced before returning it.
469 if (aIsSNaN) {
470 return 0;
471 } else if (bIsSNaN) {
472 return 1;
473 } else if (aIsQNaN) {
474 return 0;
475 } else {
476 return 1;
479 #elif defined(TARGET_PPC) || defined(TARGET_XTENSA)
480 static int pickNaN(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
481 flag aIsLargerSignificand)
483 /* PowerPC propagation rules:
484 * 1. A if it sNaN or qNaN
485 * 2. B if it sNaN or qNaN
486 * A signaling NaN is always silenced before returning it.
488 if (aIsSNaN || aIsQNaN) {
489 return 0;
490 } else {
491 return 1;
494 #else
495 static int pickNaN(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
496 flag aIsLargerSignificand)
498 /* This implements x87 NaN propagation rules:
499 * SNaN + QNaN => return the QNaN
500 * two SNaNs => return the one with the larger significand, silenced
501 * two QNaNs => return the one with the larger significand
502 * SNaN and a non-NaN => return the SNaN, silenced
503 * QNaN and a non-NaN => return the QNaN
505 * If we get down to comparing significands and they are the same,
506 * return the NaN with the positive sign bit (if any).
508 if (aIsSNaN) {
509 if (bIsSNaN) {
510 return aIsLargerSignificand ? 0 : 1;
512 return bIsQNaN ? 1 : 0;
513 } else if (aIsQNaN) {
514 if (bIsSNaN || !bIsQNaN) {
515 return 0;
516 } else {
517 return aIsLargerSignificand ? 0 : 1;
519 } else {
520 return 1;
523 #endif
525 /*----------------------------------------------------------------------------
526 | Select which NaN to propagate for a three-input operation.
527 | For the moment we assume that no CPU needs the 'larger significand'
528 | information.
529 | Return values : 0 : a; 1 : b; 2 : c; 3 : default-NaN
530 *----------------------------------------------------------------------------*/
531 #if defined(TARGET_ARM)
532 static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
533 flag cIsQNaN, flag cIsSNaN, flag infzero,
534 float_status *status)
536 /* For ARM, the (inf,zero,qnan) case sets InvalidOp and returns
537 * the default NaN
539 if (infzero && cIsQNaN) {
540 float_raise(float_flag_invalid, status);
541 return 3;
544 /* This looks different from the ARM ARM pseudocode, because the ARM ARM
545 * puts the operands to a fused mac operation (a*b)+c in the order c,a,b.
547 if (cIsSNaN) {
548 return 2;
549 } else if (aIsSNaN) {
550 return 0;
551 } else if (bIsSNaN) {
552 return 1;
553 } else if (cIsQNaN) {
554 return 2;
555 } else if (aIsQNaN) {
556 return 0;
557 } else {
558 return 1;
561 #elif defined(TARGET_MIPS)
562 static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
563 flag cIsQNaN, flag cIsSNaN, flag infzero,
564 float_status *status)
566 /* For MIPS, the (inf,zero,qnan) case sets InvalidOp and returns
567 * the default NaN
569 if (infzero) {
570 float_raise(float_flag_invalid, status);
571 return 3;
574 if (status->snan_bit_is_one) {
575 /* Prefer sNaN over qNaN, in the a, b, c order. */
576 if (aIsSNaN) {
577 return 0;
578 } else if (bIsSNaN) {
579 return 1;
580 } else if (cIsSNaN) {
581 return 2;
582 } else if (aIsQNaN) {
583 return 0;
584 } else if (bIsQNaN) {
585 return 1;
586 } else {
587 return 2;
589 } else {
590 /* Prefer sNaN over qNaN, in the c, a, b order. */
591 if (cIsSNaN) {
592 return 2;
593 } else if (aIsSNaN) {
594 return 0;
595 } else if (bIsSNaN) {
596 return 1;
597 } else if (cIsQNaN) {
598 return 2;
599 } else if (aIsQNaN) {
600 return 0;
601 } else {
602 return 1;
606 #elif defined(TARGET_PPC)
607 static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
608 flag cIsQNaN, flag cIsSNaN, flag infzero,
609 float_status *status)
611 /* For PPC, the (inf,zero,qnan) case sets InvalidOp, but we prefer
612 * to return an input NaN if we have one (ie c) rather than generating
613 * a default NaN
615 if (infzero) {
616 float_raise(float_flag_invalid, status);
617 return 2;
620 /* If fRA is a NaN return it; otherwise if fRB is a NaN return it;
621 * otherwise return fRC. Note that muladd on PPC is (fRA * fRC) + frB
623 if (aIsSNaN || aIsQNaN) {
624 return 0;
625 } else if (cIsSNaN || cIsQNaN) {
626 return 2;
627 } else {
628 return 1;
631 #else
632 /* A default implementation: prefer a to b to c.
633 * This is unlikely to actually match any real implementation.
635 static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
636 flag cIsQNaN, flag cIsSNaN, flag infzero,
637 float_status *status)
639 if (aIsSNaN || aIsQNaN) {
640 return 0;
641 } else if (bIsSNaN || bIsQNaN) {
642 return 1;
643 } else {
644 return 2;
647 #endif
649 /*----------------------------------------------------------------------------
650 | Takes two single-precision floating-point values `a' and `b', one of which
651 | is a NaN, and returns the appropriate NaN result. If either `a' or `b' is a
652 | signaling NaN, the invalid exception is raised.
653 *----------------------------------------------------------------------------*/
655 static float32 propagateFloat32NaN(float32 a, float32 b, float_status *status)
657 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN;
658 flag aIsLargerSignificand;
659 uint32_t av, bv;
661 aIsQuietNaN = float32_is_quiet_nan(a, status);
662 aIsSignalingNaN = float32_is_signaling_nan(a, status);
663 bIsQuietNaN = float32_is_quiet_nan(b, status);
664 bIsSignalingNaN = float32_is_signaling_nan(b, status);
665 av = float32_val(a);
666 bv = float32_val(b);
668 if (aIsSignalingNaN | bIsSignalingNaN) {
669 float_raise(float_flag_invalid, status);
672 if (status->default_nan_mode) {
673 return float32_default_nan(status);
676 if ((uint32_t)(av << 1) < (uint32_t)(bv << 1)) {
677 aIsLargerSignificand = 0;
678 } else if ((uint32_t)(bv << 1) < (uint32_t)(av << 1)) {
679 aIsLargerSignificand = 1;
680 } else {
681 aIsLargerSignificand = (av < bv) ? 1 : 0;
684 if (pickNaN(aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
685 aIsLargerSignificand)) {
686 return float32_maybe_silence_nan(b, status);
687 } else {
688 return float32_maybe_silence_nan(a, status);
692 /*----------------------------------------------------------------------------
693 | Takes three single-precision floating-point values `a', `b' and `c', one of
694 | which is a NaN, and returns the appropriate NaN result. If any of `a',
695 | `b' or `c' is a signaling NaN, the invalid exception is raised.
696 | The input infzero indicates whether a*b was 0*inf or inf*0 (in which case
697 | obviously c is a NaN, and whether to propagate c or some other NaN is
698 | implementation defined).
699 *----------------------------------------------------------------------------*/
701 static float32 propagateFloat32MulAddNaN(float32 a, float32 b,
702 float32 c, flag infzero,
703 float_status *status)
705 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
706 cIsQuietNaN, cIsSignalingNaN;
707 int which;
709 aIsQuietNaN = float32_is_quiet_nan(a, status);
710 aIsSignalingNaN = float32_is_signaling_nan(a, status);
711 bIsQuietNaN = float32_is_quiet_nan(b, status);
712 bIsSignalingNaN = float32_is_signaling_nan(b, status);
713 cIsQuietNaN = float32_is_quiet_nan(c, status);
714 cIsSignalingNaN = float32_is_signaling_nan(c, status);
716 if (aIsSignalingNaN | bIsSignalingNaN | cIsSignalingNaN) {
717 float_raise(float_flag_invalid, status);
720 which = pickNaNMulAdd(aIsQuietNaN, aIsSignalingNaN,
721 bIsQuietNaN, bIsSignalingNaN,
722 cIsQuietNaN, cIsSignalingNaN, infzero, status);
724 if (status->default_nan_mode) {
725 /* Note that this check is after pickNaNMulAdd so that function
726 * has an opportunity to set the Invalid flag.
728 return float32_default_nan(status);
731 switch (which) {
732 case 0:
733 return float32_maybe_silence_nan(a, status);
734 case 1:
735 return float32_maybe_silence_nan(b, status);
736 case 2:
737 return float32_maybe_silence_nan(c, status);
738 case 3:
739 default:
740 return float32_default_nan(status);
744 #ifdef NO_SIGNALING_NANS
745 int float64_is_quiet_nan(float64 a_, float_status *status)
747 return float64_is_any_nan(a_);
750 int float64_is_signaling_nan(float64 a_, float_status *status)
752 return 0;
754 #else
755 /*----------------------------------------------------------------------------
756 | Returns 1 if the double-precision floating-point value `a' is a quiet
757 | NaN; otherwise returns 0.
758 *----------------------------------------------------------------------------*/
760 int float64_is_quiet_nan(float64 a_, float_status *status)
762 uint64_t a = float64_val(a_);
763 if (status->snan_bit_is_one) {
764 return (((a >> 51) & 0xFFF) == 0xFFE)
765 && (a & 0x0007FFFFFFFFFFFFULL);
766 } else {
767 return ((a << 1) >= 0xFFF0000000000000ULL);
771 /*----------------------------------------------------------------------------
772 | Returns 1 if the double-precision floating-point value `a' is a signaling
773 | NaN; otherwise returns 0.
774 *----------------------------------------------------------------------------*/
776 int float64_is_signaling_nan(float64 a_, float_status *status)
778 uint64_t a = float64_val(a_);
779 if (status->snan_bit_is_one) {
780 return ((a << 1) >= 0xFFF0000000000000ULL);
781 } else {
782 return (((a >> 51) & 0xFFF) == 0xFFE)
783 && (a & LIT64(0x0007FFFFFFFFFFFF));
786 #endif
788 /*----------------------------------------------------------------------------
789 | Returns a quiet NaN if the double-precision floating point value `a' is a
790 | signaling NaN; otherwise returns `a'.
791 *----------------------------------------------------------------------------*/
793 float64 float64_maybe_silence_nan(float64 a_, float_status *status)
795 if (float64_is_signaling_nan(a_, status)) {
796 if (status->snan_bit_is_one) {
797 return float64_default_nan(status);
798 } else {
799 uint64_t a = float64_val(a_);
800 a |= LIT64(0x0008000000000000);
801 return make_float64(a);
804 return a_;
807 /*----------------------------------------------------------------------------
808 | Returns the result of converting the double-precision floating-point NaN
809 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
810 | exception is raised.
811 *----------------------------------------------------------------------------*/
813 static commonNaNT float64ToCommonNaN(float64 a, float_status *status)
815 commonNaNT z;
817 if (float64_is_signaling_nan(a, status)) {
818 float_raise(float_flag_invalid, status);
820 z.sign = float64_val(a) >> 63;
821 z.low = 0;
822 z.high = float64_val(a) << 12;
823 return z;
826 /*----------------------------------------------------------------------------
827 | Returns the result of converting the canonical NaN `a' to the double-
828 | precision floating-point format.
829 *----------------------------------------------------------------------------*/
831 static float64 commonNaNToFloat64(commonNaNT a, float_status *status)
833 uint64_t mantissa = a.high >> 12;
835 if (status->default_nan_mode) {
836 return float64_default_nan(status);
839 if (mantissa) {
840 return make_float64(
841 (((uint64_t) a.sign) << 63)
842 | LIT64(0x7FF0000000000000)
843 | (a.high >> 12));
844 } else {
845 return float64_default_nan(status);
849 /*----------------------------------------------------------------------------
850 | Takes two double-precision floating-point values `a' and `b', one of which
851 | is a NaN, and returns the appropriate NaN result. If either `a' or `b' is a
852 | signaling NaN, the invalid exception is raised.
853 *----------------------------------------------------------------------------*/
855 static float64 propagateFloat64NaN(float64 a, float64 b, float_status *status)
857 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN;
858 flag aIsLargerSignificand;
859 uint64_t av, bv;
861 aIsQuietNaN = float64_is_quiet_nan(a, status);
862 aIsSignalingNaN = float64_is_signaling_nan(a, status);
863 bIsQuietNaN = float64_is_quiet_nan(b, status);
864 bIsSignalingNaN = float64_is_signaling_nan(b, status);
865 av = float64_val(a);
866 bv = float64_val(b);
868 if (aIsSignalingNaN | bIsSignalingNaN) {
869 float_raise(float_flag_invalid, status);
872 if (status->default_nan_mode) {
873 return float64_default_nan(status);
876 if ((uint64_t)(av << 1) < (uint64_t)(bv << 1)) {
877 aIsLargerSignificand = 0;
878 } else if ((uint64_t)(bv << 1) < (uint64_t)(av << 1)) {
879 aIsLargerSignificand = 1;
880 } else {
881 aIsLargerSignificand = (av < bv) ? 1 : 0;
884 if (pickNaN(aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
885 aIsLargerSignificand)) {
886 return float64_maybe_silence_nan(b, status);
887 } else {
888 return float64_maybe_silence_nan(a, status);
892 /*----------------------------------------------------------------------------
893 | Takes three double-precision floating-point values `a', `b' and `c', one of
894 | which is a NaN, and returns the appropriate NaN result. If any of `a',
895 | `b' or `c' is a signaling NaN, the invalid exception is raised.
896 | The input infzero indicates whether a*b was 0*inf or inf*0 (in which case
897 | obviously c is a NaN, and whether to propagate c or some other NaN is
898 | implementation defined).
899 *----------------------------------------------------------------------------*/
901 static float64 propagateFloat64MulAddNaN(float64 a, float64 b,
902 float64 c, flag infzero,
903 float_status *status)
905 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
906 cIsQuietNaN, cIsSignalingNaN;
907 int which;
909 aIsQuietNaN = float64_is_quiet_nan(a, status);
910 aIsSignalingNaN = float64_is_signaling_nan(a, status);
911 bIsQuietNaN = float64_is_quiet_nan(b, status);
912 bIsSignalingNaN = float64_is_signaling_nan(b, status);
913 cIsQuietNaN = float64_is_quiet_nan(c, status);
914 cIsSignalingNaN = float64_is_signaling_nan(c, status);
916 if (aIsSignalingNaN | bIsSignalingNaN | cIsSignalingNaN) {
917 float_raise(float_flag_invalid, status);
920 which = pickNaNMulAdd(aIsQuietNaN, aIsSignalingNaN,
921 bIsQuietNaN, bIsSignalingNaN,
922 cIsQuietNaN, cIsSignalingNaN, infzero, status);
924 if (status->default_nan_mode) {
925 /* Note that this check is after pickNaNMulAdd so that function
926 * has an opportunity to set the Invalid flag.
928 return float64_default_nan(status);
931 switch (which) {
932 case 0:
933 return float64_maybe_silence_nan(a, status);
934 case 1:
935 return float64_maybe_silence_nan(b, status);
936 case 2:
937 return float64_maybe_silence_nan(c, status);
938 case 3:
939 default:
940 return float64_default_nan(status);
944 #ifdef NO_SIGNALING_NANS
945 int floatx80_is_quiet_nan(floatx80 a_, float_status *status)
947 return floatx80_is_any_nan(a_);
950 int floatx80_is_signaling_nan(floatx80 a_, float_status *status)
952 return 0;
954 #else
955 /*----------------------------------------------------------------------------
956 | Returns 1 if the extended double-precision floating-point value `a' is a
957 | quiet NaN; otherwise returns 0. This slightly differs from the same
958 | function for other types as floatx80 has an explicit bit.
959 *----------------------------------------------------------------------------*/
961 int floatx80_is_quiet_nan(floatx80 a, float_status *status)
963 if (status->snan_bit_is_one) {
964 uint64_t aLow;
966 aLow = a.low & ~0x4000000000000000ULL;
967 return ((a.high & 0x7FFF) == 0x7FFF)
968 && (aLow << 1)
969 && (a.low == aLow);
970 } else {
971 return ((a.high & 0x7FFF) == 0x7FFF)
972 && (LIT64(0x8000000000000000) <= ((uint64_t)(a.low << 1)));
976 /*----------------------------------------------------------------------------
977 | Returns 1 if the extended double-precision floating-point value `a' is a
978 | signaling NaN; otherwise returns 0. This slightly differs from the same
979 | function for other types as floatx80 has an explicit bit.
980 *----------------------------------------------------------------------------*/
982 int floatx80_is_signaling_nan(floatx80 a, float_status *status)
984 if (status->snan_bit_is_one) {
985 return ((a.high & 0x7FFF) == 0x7FFF)
986 && ((a.low << 1) >= 0x8000000000000000ULL);
987 } else {
988 uint64_t aLow;
990 aLow = a.low & ~LIT64(0x4000000000000000);
991 return ((a.high & 0x7FFF) == 0x7FFF)
992 && (uint64_t)(aLow << 1)
993 && (a.low == aLow);
996 #endif
998 /*----------------------------------------------------------------------------
999 | Returns a quiet NaN if the extended double-precision floating point value
1000 | `a' is a signaling NaN; otherwise returns `a'.
1001 *----------------------------------------------------------------------------*/
1003 floatx80 floatx80_maybe_silence_nan(floatx80 a, float_status *status)
1005 if (floatx80_is_signaling_nan(a, status)) {
1006 if (status->snan_bit_is_one) {
1007 a = floatx80_default_nan(status);
1008 } else {
1009 a.low |= LIT64(0xC000000000000000);
1010 return a;
1013 return a;
1016 /*----------------------------------------------------------------------------
1017 | Returns the result of converting the extended double-precision floating-
1018 | point NaN `a' to the canonical NaN format. If `a' is a signaling NaN, the
1019 | invalid exception is raised.
1020 *----------------------------------------------------------------------------*/
1022 static commonNaNT floatx80ToCommonNaN(floatx80 a, float_status *status)
1024 floatx80 dflt;
1025 commonNaNT z;
1027 if (floatx80_is_signaling_nan(a, status)) {
1028 float_raise(float_flag_invalid, status);
1030 if (a.low >> 63) {
1031 z.sign = a.high >> 15;
1032 z.low = 0;
1033 z.high = a.low << 1;
1034 } else {
1035 dflt = floatx80_default_nan(status);
1036 z.sign = dflt.high >> 15;
1037 z.low = 0;
1038 z.high = dflt.low << 1;
1040 return z;
1043 /*----------------------------------------------------------------------------
1044 | Returns the result of converting the canonical NaN `a' to the extended
1045 | double-precision floating-point format.
1046 *----------------------------------------------------------------------------*/
1048 static floatx80 commonNaNToFloatx80(commonNaNT a, float_status *status)
1050 floatx80 z;
1052 if (status->default_nan_mode) {
1053 return floatx80_default_nan(status);
1056 if (a.high >> 1) {
1057 z.low = LIT64(0x8000000000000000) | a.high >> 1;
1058 z.high = (((uint16_t)a.sign) << 15) | 0x7FFF;
1059 } else {
1060 z = floatx80_default_nan(status);
1062 return z;
1065 /*----------------------------------------------------------------------------
1066 | Takes two extended double-precision floating-point values `a' and `b', one
1067 | of which is a NaN, and returns the appropriate NaN result. If either `a' or
1068 | `b' is a signaling NaN, the invalid exception is raised.
1069 *----------------------------------------------------------------------------*/
1071 static floatx80 propagateFloatx80NaN(floatx80 a, floatx80 b,
1072 float_status *status)
1074 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN;
1075 flag aIsLargerSignificand;
1077 aIsQuietNaN = floatx80_is_quiet_nan(a, status);
1078 aIsSignalingNaN = floatx80_is_signaling_nan(a, status);
1079 bIsQuietNaN = floatx80_is_quiet_nan(b, status);
1080 bIsSignalingNaN = floatx80_is_signaling_nan(b, status);
1082 if (aIsSignalingNaN | bIsSignalingNaN) {
1083 float_raise(float_flag_invalid, status);
1086 if (status->default_nan_mode) {
1087 return floatx80_default_nan(status);
1090 if (a.low < b.low) {
1091 aIsLargerSignificand = 0;
1092 } else if (b.low < a.low) {
1093 aIsLargerSignificand = 1;
1094 } else {
1095 aIsLargerSignificand = (a.high < b.high) ? 1 : 0;
1098 if (pickNaN(aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
1099 aIsLargerSignificand)) {
1100 return floatx80_maybe_silence_nan(b, status);
1101 } else {
1102 return floatx80_maybe_silence_nan(a, status);
1106 #ifdef NO_SIGNALING_NANS
1107 int float128_is_quiet_nan(float128 a_, float_status *status)
1109 return float128_is_any_nan(a_);
1112 int float128_is_signaling_nan(float128 a_, float_status *status)
1114 return 0;
1116 #else
1117 /*----------------------------------------------------------------------------
1118 | Returns 1 if the quadruple-precision floating-point value `a' is a quiet
1119 | NaN; otherwise returns 0.
1120 *----------------------------------------------------------------------------*/
1122 int float128_is_quiet_nan(float128 a, float_status *status)
1124 if (status->snan_bit_is_one) {
1125 return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
1126 && (a.low || (a.high & 0x00007FFFFFFFFFFFULL));
1127 } else {
1128 return ((a.high << 1) >= 0xFFFF000000000000ULL)
1129 && (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
1133 /*----------------------------------------------------------------------------
1134 | Returns 1 if the quadruple-precision floating-point value `a' is a
1135 | signaling NaN; otherwise returns 0.
1136 *----------------------------------------------------------------------------*/
1138 int float128_is_signaling_nan(float128 a, float_status *status)
1140 if (status->snan_bit_is_one) {
1141 return ((a.high << 1) >= 0xFFFF000000000000ULL)
1142 && (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
1143 } else {
1144 return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
1145 && (a.low || (a.high & LIT64(0x00007FFFFFFFFFFF)));
1148 #endif
1150 /*----------------------------------------------------------------------------
1151 | Returns a quiet NaN if the quadruple-precision floating point value `a' is
1152 | a signaling NaN; otherwise returns `a'.
1153 *----------------------------------------------------------------------------*/
1155 float128 float128_maybe_silence_nan(float128 a, float_status *status)
1157 if (float128_is_signaling_nan(a, status)) {
1158 if (status->snan_bit_is_one) {
1159 a = float128_default_nan(status);
1160 } else {
1161 a.high |= LIT64(0x0000800000000000);
1162 return a;
1165 return a;
1168 /*----------------------------------------------------------------------------
1169 | Returns the result of converting the quadruple-precision floating-point NaN
1170 | `a' to the canonical NaN format. If `a' is a signaling NaN, the invalid
1171 | exception is raised.
1172 *----------------------------------------------------------------------------*/
1174 static commonNaNT float128ToCommonNaN(float128 a, float_status *status)
1176 commonNaNT z;
1178 if (float128_is_signaling_nan(a, status)) {
1179 float_raise(float_flag_invalid, status);
1181 z.sign = a.high >> 63;
1182 shortShift128Left(a.high, a.low, 16, &z.high, &z.low);
1183 return z;
1186 /*----------------------------------------------------------------------------
1187 | Returns the result of converting the canonical NaN `a' to the quadruple-
1188 | precision floating-point format.
1189 *----------------------------------------------------------------------------*/
1191 static float128 commonNaNToFloat128(commonNaNT a, float_status *status)
1193 float128 z;
1195 if (status->default_nan_mode) {
1196 return float128_default_nan(status);
1199 shift128Right(a.high, a.low, 16, &z.high, &z.low);
1200 z.high |= (((uint64_t)a.sign) << 63) | LIT64(0x7FFF000000000000);
1201 return z;
1204 /*----------------------------------------------------------------------------
1205 | Takes two quadruple-precision floating-point values `a' and `b', one of
1206 | which is a NaN, and returns the appropriate NaN result. If either `a' or
1207 | `b' is a signaling NaN, the invalid exception is raised.
1208 *----------------------------------------------------------------------------*/
1210 static float128 propagateFloat128NaN(float128 a, float128 b,
1211 float_status *status)
1213 flag aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN;
1214 flag aIsLargerSignificand;
1216 aIsQuietNaN = float128_is_quiet_nan(a, status);
1217 aIsSignalingNaN = float128_is_signaling_nan(a, status);
1218 bIsQuietNaN = float128_is_quiet_nan(b, status);
1219 bIsSignalingNaN = float128_is_signaling_nan(b, status);
1221 if (aIsSignalingNaN | bIsSignalingNaN) {
1222 float_raise(float_flag_invalid, status);
1225 if (status->default_nan_mode) {
1226 return float128_default_nan(status);
1229 if (lt128(a.high << 1, a.low, b.high << 1, b.low)) {
1230 aIsLargerSignificand = 0;
1231 } else if (lt128(b.high << 1, b.low, a.high << 1, a.low)) {
1232 aIsLargerSignificand = 1;
1233 } else {
1234 aIsLargerSignificand = (a.high < b.high) ? 1 : 0;
1237 if (pickNaN(aIsQuietNaN, aIsSignalingNaN, bIsQuietNaN, bIsSignalingNaN,
1238 aIsLargerSignificand)) {
1239 return float128_maybe_silence_nan(b, status);
1240 } else {
1241 return float128_maybe_silence_nan(a, status);