blob: 1203b3a96e754e9a182a6bceb14a74cb0ea4148f [file] [log] [blame]
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00001/* ===-- floattixf.c - Implement __floattixf -------------------------------===
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 __floattixf 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 * ti_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__floattixf(ti_int a)
31{
32 if (a == 0)
33 return 0.0;
34 const unsigned N = sizeof(ti_int) * CHAR_BIT;
35 const ti_int s = a >> (N-1);
36 a = (a ^ s) - s;
Edward O'Callaghan55836322009-08-07 20:30:09 +000037 int sd = N - __clzti2(a); /* number of significant digits */
38 int e = sd - 1; /* exponent */
Daniel Dunbarfd089992009-06-26 16:47:03 +000039 if (sd > LDBL_MANT_DIG)
40 {
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000041 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
42 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
43 * 12345678901234567890123456
44 * 1 = msb 1 bit
45 * P = bit LDBL_MANT_DIG-1 bits to the right of 1
46 * Q = bit LDBL_MANT_DIG bits to the right of 1
47 * R = "or" of all bits to the right of Q
Joerg Sonnenberger938b0df2014-02-21 23:53:03 +000048 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000049 switch (sd)
50 {
51 case LDBL_MANT_DIG + 1:
52 a <<= 1;
53 break;
54 case LDBL_MANT_DIG + 2:
55 break;
56 default:
57 a = ((tu_int)a >> (sd - (LDBL_MANT_DIG+2))) |
58 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
59 };
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000060 /* finish: */
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 LDBL_MANT_DIG or LDBL_MANT_DIG+1 bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000065 if (a & ((tu_int)1 << LDBL_MANT_DIG))
66 {
67 a >>= 1;
68 ++e;
69 }
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000070 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000071 }
72 else
73 {
74 a <<= (LDBL_MANT_DIG - sd);
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000075 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarfd089992009-06-26 16:47:03 +000076 }
77 long_double_bits fb;
Edward O'Callaghan665671e2009-09-03 09:12:20 +000078 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000079 (e + 16383); /* exponent */
80 fb.u.low.all = (du_int)a; /* mantissa */
Daniel Dunbarfd089992009-06-26 16:47:03 +000081 return fb.f;
82}
83
Joerg Sonnenberger938b0df2014-02-21 23:53:03 +000084#endif /* CRT_HAS_128BIT */