blob: d0889a0744f0873c54123ecac43a7bba752298bd [file] [log] [blame]
Edward O'Callaghandabf71f2009-08-05 19:06:501/* ===-- floatuntidf.c - Implement __floatuntidf ---------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant5b791f62010-11-16 22:13:335 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghandabf71f2009-08-05 19:06:507 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __floatuntidf for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:0314
15#if __x86_64
16
17#include "int_lib.h"
Daniel Dunbarfd089992009-06-26 16:47:0318
Edward O'Callaghandabf71f2009-08-05 19:06:5019/* Returns: convert a to a double, rounding toward even. */
Daniel Dunbarfd089992009-06-26 16:47:0320
Edward O'Callaghandabf71f2009-08-05 19:06:5021/* Assumption: double is a IEEE 64 bit floating point type
22 * tu_int is a 128 bit integral type
23 */
Daniel Dunbarfd089992009-06-26 16:47:0324
Edward O'Callaghandabf71f2009-08-05 19:06:5025/* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */
Daniel Dunbarfd089992009-06-26 16:47:0326
27si_int __clzti2(ti_int a);
28
29double
30__floatuntidf(tu_int a)
31{
32 if (a == 0)
33 return 0.0;
34 const unsigned N = sizeof(tu_int) * CHAR_BIT;
Edward O'Callaghandabf71f2009-08-05 19:06:5035 int sd = N - __clzti2(a); /* number of significant digits */
36 int e = sd - 1; /* exponent */
Daniel Dunbarfd089992009-06-26 16:47:0337 if (sd > DBL_MANT_DIG)
38 {
Edward O'Callaghandabf71f2009-08-05 19:06:5039 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
40 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
41 * 12345678901234567890123456
42 * 1 = msb 1 bit
43 * P = bit DBL_MANT_DIG-1 bits to the right of 1
44 * Q = bit DBL_MANT_DIG bits to the right of 1
45 * R = "or" of all bits to the right of Q
46 */
Daniel Dunbarfd089992009-06-26 16:47:0347 switch (sd)
48 {
49 case DBL_MANT_DIG + 1:
50 a <<= 1;
51 break;
52 case DBL_MANT_DIG + 2:
53 break;
54 default:
55 a = (a >> (sd - (DBL_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
57 };
Edward O'Callaghandabf71f2009-08-05 19:06:5058 /* finish: */
59 a |= (a & 4) != 0; /* Or P into R */
60 ++a; /* round - this step may add a significant bit */
61 a >>= 2; /* dump Q and R */
62 /* a is now rounded to DBL_MANT_DIG or DBL_MANT_DIG+1 bits */
Daniel Dunbarfd089992009-06-26 16:47:0363 if (a & ((tu_int)1 << DBL_MANT_DIG))
64 {
65 a >>= 1;
66 ++e;
67 }
Edward O'Callaghandabf71f2009-08-05 19:06:5068 /* a is now rounded to DBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:0369 }
70 else
71 {
72 a <<= (DBL_MANT_DIG - sd);
Edward O'Callaghandabf71f2009-08-05 19:06:5073 /* a is now rounded to DBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:0374 }
75 double_bits fb;
Edward O'Callaghan665671e2009-09-03 09:12:2076 fb.u.s.high = ((e + 1023) << 20) | /* exponent */
Edward O'Callaghandabf71f2009-08-05 19:06:5077 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
Edward O'Callaghan665671e2009-09-03 09:12:2078 fb.u.s.low = (su_int)a; /* mantissa-low */
Daniel Dunbarfd089992009-06-26 16:47:0379 return fb.f;
80}
81
82#endif