]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/ieee754/dbl-64/s_setpayload_main.c
d7a3609c39f13582d49b1fcf71c008e250517435
[thirdparty/glibc.git] / sysdeps / ieee754 / dbl-64 / s_setpayload_main.c
1 /* Set NaN payload. dbl-64 version.
2 Copyright (C) 2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <math.h>
20 #include <math_private.h>
21 #include <nan-high-order-bit.h>
22 #include <stdint.h>
23
24 #define SET_HIGH_BIT (HIGH_ORDER_BIT_IS_SET_FOR_SNAN ? SIG : !SIG)
25 #define BIAS 0x3ff
26 #define PAYLOAD_DIG 51
27 #define EXPLICIT_MANT_DIG 52
28
29 int
30 FUNC (double *x, double payload)
31 {
32 uint32_t hx, lx;
33 EXTRACT_WORDS (hx, lx, payload);
34 int exponent = hx >> (EXPLICIT_MANT_DIG - 32);
35 /* Test if argument is (a) negative or too large; (b) too small,
36 except for 0 when allowed; (c) not an integer. */
37 if (exponent >= BIAS + PAYLOAD_DIG
38 || (exponent < BIAS && !(SET_HIGH_BIT && hx == 0 && lx == 0)))
39 {
40 INSERT_WORDS (*x, 0, 0);
41 return 1;
42 }
43 int shift = BIAS + EXPLICIT_MANT_DIG - exponent;
44 if (shift < 32
45 ? (lx & ((1U << shift) - 1)) != 0
46 : (lx != 0 || (hx & ((1U << (shift - 32)) - 1)) != 0))
47 {
48 INSERT_WORDS (*x, 0, 0);
49 return 1;
50 }
51 if (exponent != 0)
52 {
53 hx &= (1U << (EXPLICIT_MANT_DIG - 32)) - 1;
54 hx |= 1U << (EXPLICIT_MANT_DIG - 32);
55 if (shift >= 32)
56 {
57 lx = hx >> (shift - 32);
58 hx = 0;
59 }
60 else if (shift != 0)
61 {
62 lx = (lx >> shift) | (hx << (32 - shift));
63 hx >>= shift;
64 }
65 }
66 hx |= 0x7ff00000 | (SET_HIGH_BIT ? 0x80000 : 0);
67 INSERT_WORDS (*x, hx, lx);
68 return 0;
69 }