blob: a84709aef60b66fd8980a14ffa0148dc8f883ee7 [file] [log] [blame]
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00001/* ===-- floatuntixf.c - Implement __floatuntixf ---------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant5b791f62010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __floatuntixf for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000014
15#if __x86_64
16
17#include "int_lib.h"
18#include <float.h>
19
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000020/* Returns: convert a to a long double, rounding toward even. */
Daniel Dunbarfd089992009-06-26 16:47:03 +000021
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000022/* Assumption: long double is a IEEE 80 bit floating point type padded to 128 bits
23 * tu_int is a 128 bit integral type
24 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000025
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000026/* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
27 * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
28 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000029
30si_int __clzti2(ti_int a);
31
32long double
33__floatuntixf(tu_int a)
34{
35 if (a == 0)
36 return 0.0;
37 const unsigned N = sizeof(tu_int) * CHAR_BIT;
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000038 int sd = N - __clzti2(a); /* number of significant digits */
39 int e = sd - 1; /* exponent */
Daniel Dunbarfd089992009-06-26 16:47:03 +000040 if (sd > LDBL_MANT_DIG)
41 {
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000042 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
43 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
44 * 12345678901234567890123456
45 * 1 = msb 1 bit
46 * P = bit LDBL_MANT_DIG-1 bits to the right of 1
47 * Q = bit LDBL_MANT_DIG bits to the right of 1
48 * R = "or" of all bits to the right of Q
49 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000050 switch (sd)
51 {
52 case LDBL_MANT_DIG + 1:
53 a <<= 1;
54 break;
55 case LDBL_MANT_DIG + 2:
56 break;
57 default:
58 a = (a >> (sd - (LDBL_MANT_DIG+2))) |
59 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
60 };
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000061 /* finish: */
62 a |= (a & 4) != 0; /* Or P into R */
63 ++a; /* round - this step may add a significant bit */
64 a >>= 2; /* dump Q and R */
65 /* a is now rounded to LDBL_MANT_DIG or LDBL_MANT_DIG+1 bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000066 if (a & ((tu_int)1 << LDBL_MANT_DIG))
67 {
68 a >>= 1;
69 ++e;
70 }
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000071 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000072 }
73 else
74 {
75 a <<= (LDBL_MANT_DIG - sd);
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000076 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000077 }
78 long_double_bits fb;
Edward O'Callaghan665671e2009-09-03 09:12:20 +000079 fb.u.high.s.low = (e + 16383); /* exponent */
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000080 fb.u.low.all = (du_int)a; /* mantissa */
Daniel Dunbarfd089992009-06-26 16:47:03 +000081 return fb.f;
82}
83
84#endif