1 /* Copyright (C) 1995,1996,1997,1998,1999,2002,2003
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 /* Convert a `__float128' in IEEE854 quad-precision format to a
26 multi-precision integer representing the significand scaled up by its
27 number of bits (113 for long double) and an integral power of two
31 mpn_extract_flt128 (mp_ptr res_ptr
, mp_size_t size
,
32 int *expt
, int *is_neg
,
38 *is_neg
= u
.ieee
.negative
;
39 *expt
= (int) u
.ieee
.exponent
- IEEE854_FLOAT128_BIAS
;
41 #if BITS_PER_MP_LIMB == 32
42 res_ptr
[0] = u
.ieee
.mant_low
; /* Low-order 32 bits of fraction. */
43 res_ptr
[1] = (u
.ieee
.mant_low
>> 32);
44 res_ptr
[2] = u
.ieee
.mant_high
;
45 res_ptr
[3] = (u
.ieee
.mant_high
>> 32); /* High-order 32 bits. */
47 #elif BITS_PER_MP_LIMB == 64
48 res_ptr
[0] = u
.ieee
.mant_low
;
49 res_ptr
[1] = u
.ieee
.mant_high
;
52 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for"
54 /* The format does not fill the last limb. There are some zeros. */
55 #define NUM_LEADING_ZEROS (BITS_PER_MP_LIMB \
56 - (FLT128_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB)))
58 if (u
.ieee
.exponent
== 0)
60 /* A biased exponent of zero is a special case.
61 Either it is a zero or it is a denormal number. */
62 if (res_ptr
[0] == 0 && res_ptr
[1] == 0
63 && res_ptr
[N
- 2] == 0 && res_ptr
[N
- 1] == 0) /* Assumes N<=4. */
68 /* It is a denormal number, meaning it has no implicit leading
69 one bit, and its exponent is in fact the format minimum. */
73 if (res_ptr
[N
- 1] != 0)
75 count_leading_zeros (cnt
, res_ptr
[N
- 1]);
76 cnt
-= NUM_LEADING_ZEROS
;
77 res_ptr
[N
- 1] = res_ptr
[N
- 1] << cnt
78 | (res_ptr
[0] >> (BITS_PER_MP_LIMB
- cnt
));
80 *expt
= FLT128_MIN_EXP
- 1 - cnt
;
84 count_leading_zeros (cnt
, res_ptr
[0]);
85 if (cnt
>= NUM_LEADING_ZEROS
)
87 res_ptr
[N
- 1] = res_ptr
[0] << (cnt
- NUM_LEADING_ZEROS
);
92 res_ptr
[N
- 1] = res_ptr
[0] >> (NUM_LEADING_ZEROS
- cnt
);
93 res_ptr
[0] <<= BITS_PER_MP_LIMB
- (NUM_LEADING_ZEROS
- cnt
);
95 *expt
= FLT128_MIN_EXP
- 1
96 - (BITS_PER_MP_LIMB
- NUM_LEADING_ZEROS
) - cnt
;
101 for (j
= N
- 1; j
> 0; j
--)
105 count_leading_zeros (cnt
, res_ptr
[j
]);
106 cnt
-= NUM_LEADING_ZEROS
;
110 cnt
+= BITS_PER_MP_LIMB
;
114 for (k
= N
- 1; k
>= l
; k
--)
115 res_ptr
[k
] = res_ptr
[k
-l
];
118 for (k
= N
- 1; k
> l
; k
--)
119 res_ptr
[k
] = res_ptr
[k
-l
] << cnt
120 | res_ptr
[k
-l
-1] >> (BITS_PER_MP_LIMB
- cnt
);
121 res_ptr
[k
--] = res_ptr
[0] << cnt
;
126 *expt
= FLT128_MIN_EXP
- 1 - l
* BITS_PER_MP_LIMB
- cnt
;
131 /* Add the implicit leading one bit for a normalized number. */
132 res_ptr
[N
- 1] |= (mp_limb_t
) 1 << (FLT128_MANT_DIG
- 1
133 - ((N
- 1) * BITS_PER_MP_LIMB
));