blob: 4776125ded79f0341bc7c50ef27a5e4e52dd598e [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/* ===-- floattisf.c - Implement __floattisf -------------------------------===
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'Callaghan37a6a452009-08-07 20:30:09 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __floattisf 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'Callaghan37a6a452009-08-07 20:30:09 +000019/* Returns: convert a to a float, rounding toward even. */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000021/* Assumption: float is a IEEE 32 bit floating point type
22 * ti_int is a 128 bit integral type
23 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000024
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000025/* seee eeee emmm mmmm mmmm mmmm mmmm mmmm */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000026
27si_int __clzti2(ti_int a);
28
29float
30__floattisf(ti_int a)
31{
32 if (a == 0)
33 return 0.0F;
34 const unsigned N = sizeof(ti_int) * CHAR_BIT;
35 const ti_int s = a >> (N-1);
36 a = (a ^ s) - s;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000037 int sd = N - __clzti2(a); /* number of significant digits */
38 int e = sd - 1; /* exponent */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000039 if (sd > FLT_MANT_DIG)
40 {
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000041 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
42 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
43 * 12345678901234567890123456
44 * 1 = msb 1 bit
45 * P = bit FLT_MANT_DIG-1 bits to the right of 1
46 * Q = bit FLT_MANT_DIG bits to the right of 1
47 * R = "or" of all bits to the right of Q
48 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000049 switch (sd)
50 {
51 case FLT_MANT_DIG + 1:
52 a <<= 1;
53 break;
54 case FLT_MANT_DIG + 2:
55 break;
56 default:
57 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
58 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
59 };
Edward O'Callaghan37a6a452009-08-07 20:30:09 +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 FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000065 if (a & ((tu_int)1 << FLT_MANT_DIG))
66 {
67 a >>= 1;
68 ++e;
69 }
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000070 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000071 }
72 else
73 {
74 a <<= (FLT_MANT_DIG - sd);
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000075 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000076 }
77 float_bits fb;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000078 fb.u = ((su_int)s & 0x80000000) | /* sign */
79 ((e + 127) << 23) | /* exponent */
80 ((su_int)a & 0x007FFFFF); /* mantissa */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000081 return fb.f;
82}
83
84#endif