blob: 3813dc6b775426358727050b262f859091d8b9d1 [file] [log] [blame]
Edward O'Callaghan2bf62722009-08-05 04:02:56 +00001/* ===-- floattixf.c - Implement __floattixf -------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant9ad441f2010-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'Callaghan2bf62722009-08-05 04:02:56 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __floattixf for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
Daniel Dunbarb3a69012009-06-26 16:47:03 +000015#include "int_lib.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +000016
Chandler Carruth7f2d7c72012-06-22 21:09:22 +000017#if __x86_64
18
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000019/* Returns: convert a to a long double, rounding toward even. */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
Edward O'Callaghan2bf62722009-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 Dunbarb3a69012009-06-26 16:47:03 +000024
Edward O'Callaghan2bf62722009-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 Dunbarb3a69012009-06-26 16:47:03 +000028
29si_int __clzti2(ti_int a);
30
31long double
32__floattixf(ti_int a)
33{
34 if (a == 0)
35 return 0.0;
36 const unsigned N = sizeof(ti_int) * CHAR_BIT;
37 const ti_int s = a >> (N-1);
38 a = (a ^ s) - s;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000039 int sd = N - __clzti2(a); /* number of significant digits */
40 int e = sd - 1; /* exponent */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000041 if (sd > LDBL_MANT_DIG)
42 {
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000043 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
44 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
45 * 12345678901234567890123456
46 * 1 = msb 1 bit
47 * P = bit LDBL_MANT_DIG-1 bits to the right of 1
48 * Q = bit LDBL_MANT_DIG bits to the right of 1
49 * R = "or" of all bits to the right of Q
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000050 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000051 switch (sd)
52 {
53 case LDBL_MANT_DIG + 1:
54 a <<= 1;
55 break;
56 case LDBL_MANT_DIG + 2:
57 break;
58 default:
59 a = ((tu_int)a >> (sd - (LDBL_MANT_DIG+2))) |
60 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
61 };
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000062 /* finish: */
63 a |= (a & 4) != 0; /* Or P into R */
64 ++a; /* round - this step may add a significant bit */
65 a >>= 2; /* dump Q and R */
66 /* a is now rounded to LDBL_MANT_DIG or LDBL_MANT_DIG+1 bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000067 if (a & ((tu_int)1 << LDBL_MANT_DIG))
68 {
69 a >>= 1;
70 ++e;
71 }
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000072 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000073 }
74 else
75 {
76 a <<= (LDBL_MANT_DIG - sd);
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000077 /* a is now rounded to LDBL_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000078 }
79 long_double_bits fb;
Edward O'Callaghanaabd9612009-09-03 09:12:20 +000080 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000081 (e + 16383); /* exponent */
82 fb.u.low.all = (du_int)a; /* mantissa */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000083 return fb.f;
84}
85
86#endif