1 /* ===-- floattidf.c - Implement __floattidf -------------------------------===
3 * The LLVM Compiler Infrastructure
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
8 * ===----------------------------------------------------------------------===
10 * This file implements __floattidf for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
19 /* Returns: convert a to a double, rounding toward even.*/
21 /* Assumption: double is a IEEE 64 bit floating point type
22 * ti_int is a 128 bit integral type
25 /* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */
27 si_int
__clzti2(ti_int a
);
34 const unsigned N
= sizeof(ti_int
) * CHAR_BIT
;
35 const ti_int s
= a
>> (N
-1);
37 int sd
= N
- __clzti2(a
); /* number of significant digits */
38 int e
= sd
- 1; /* exponent */
39 if (sd
> DBL_MANT_DIG
)
41 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
42 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
43 * 12345678901234567890123456
45 * P = bit DBL_MANT_DIG-1 bits to the right of 1
46 * Q = bit DBL_MANT_DIG bits to the right of 1
47 * R = "or" of all bits to the right of Q
51 case DBL_MANT_DIG
+ 1:
54 case DBL_MANT_DIG
+ 2:
57 a
= ((tu_int
)a
>> (sd
- (DBL_MANT_DIG
+2))) |
58 ((a
& ((tu_int
)(-1) >> ((N
+ DBL_MANT_DIG
+2) - sd
))) != 0);
61 a
|= (a
& 4) != 0; /* Or P into R */
62 ++a
; /* round - this step may add a significant bit */
63 a
>>= 2; /* dump Q and R */
64 /* a is now rounded to DBL_MANT_DIG or DBL_MANT_DIG+1 bits */
65 if (a
& ((tu_int
)1 << DBL_MANT_DIG
))
70 /* a is now rounded to DBL_MANT_DIG bits */
74 a
<<= (DBL_MANT_DIG
- sd
);
75 /* a is now rounded to DBL_MANT_DIG bits */
78 fb
.u
.s
.high
= ((su_int
)s
& 0x80000000) | /* sign */
79 ((e
+ 1023) << 20) | /* exponent */
80 ((su_int
)(a
>> 32) & 0x000FFFFF); /* mantissa-high */
81 fb
.u
.s
.low
= (su_int
)a
; /* mantissa-low */