blob: ea81cb1bcdae11e0ef58681e8cff5ed08828ad4f [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
Daniel Dunbarfd089992009-06-26 16:47:03 +000015#include "int_lib.h"
Daniel Dunbarfd089992009-06-26 16:47:03 +000016
Joerg Sonnenberger938b0df2014-02-21 23:53:03 +000017#ifdef CRT_HAS_128BIT
Chandler Carruth6e2bf8f2012-06-22 21:09:22 +000018
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000019/* Returns: convert a to a long double, rounding toward even. */
Daniel Dunbarfd089992009-06-26 16:47:03 +000020
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000021/* Assumption: long double is a IEEE 80 bit floating point type padded to 128 bits
22 * tu_int is a 128 bit integral type
23 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000024
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000025/* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
26 * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
27 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000028
Joerg Sonnenberger6e99daa2014-03-01 15:30:50 +000029COMPILER_RT_ABI long double
Daniel Dunbarfd089992009-06-26 16:47:03 +000030__floatuntixf(tu_int a)
31{
32 if (a == 0)
33 return 0.0;
34 const unsigned N = sizeof(tu_int) * CHAR_BIT;
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000035 int sd = N - __clzti2(a); /* number of significant digits */
36 int e = sd - 1; /* exponent */
Daniel Dunbarfd089992009-06-26 16:47:03 +000037 if (sd > LDBL_MANT_DIG)
38 {
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000039 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
40 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
41 * 12345678901234567890123456
42 * 1 = msb 1 bit
43 * P = bit LDBL_MANT_DIG-1 bits to the right of 1
44 * Q = bit LDBL_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:03 +000047 switch (sd)
48 {
49 case LDBL_MANT_DIG + 1:
50 a <<= 1;
51 break;
52 case LDBL_MANT_DIG + 2:
53 break;
54 default:
55 a = (a >> (sd - (LDBL_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
57 };
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000058 /* 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 LDBL_MANT_DIG or LDBL_MANT_DIG+1 bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000063 if (a & ((tu_int)1 << LDBL_MANT_DIG))
64 {
65 a >>= 1;
66 ++e;
67 }
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000068 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000069 }
70 else
71 {
72 a <<= (LDBL_MANT_DIG - sd);
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000073 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000074 }
75 long_double_bits fb;
Edward O'Callaghan665671e2009-09-03 09:12:20 +000076 fb.u.high.s.low = (e + 16383); /* exponent */
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000077 fb.u.low.all = (du_int)a; /* mantissa */
Daniel Dunbarfd089992009-06-26 16:47:03 +000078 return fb.f;
79}
80
81#endif