blob: 71d603b568f71e64f3cf69b6883dc0c98b105636 [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/*===-- floatdisf.c - Implement __floatdisf -------------------------------===
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 __floatdisf for the compiler_rt library.
11 *
12 *===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
15#include "int_lib.h"
16#include <float.h>
17
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000018/* Returns: convert a to a float, rounding toward even.*/
Daniel Dunbarb3a69012009-06-26 16:47:03 +000019
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000020/* Assumption: float is a IEEE 32 bit floating point type
21 * di_int is a 64 bit integral type
22 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000023
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000024/* seee eeee emmm mmmm mmmm mmmm mmmm mmmm */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000025
26float
27__floatdisf(di_int a)
28{
29 if (a == 0)
30 return 0.0F;
31 const unsigned N = sizeof(di_int) * CHAR_BIT;
32 const di_int s = a >> (N-1);
33 a = (a ^ s) - s;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000034 int sd = N - __builtin_clzll(a); /* number of significant digits */
35 int e = sd - 1; /* exponent */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000036 if (sd > FLT_MANT_DIG)
37 {
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000038 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
39 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
40 * 12345678901234567890123456
41 * 1 = msb 1 bit
42 * P = bit FLT_MANT_DIG-1 bits to the right of 1
43 * Q = bit FLT_MANT_DIG bits to the right of 1
44 * R = "or" of all bits to the right of Q
45 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000046 switch (sd)
47 {
48 case FLT_MANT_DIG + 1:
49 a <<= 1;
50 break;
51 case FLT_MANT_DIG + 2:
52 break;
53 default:
54 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
55 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
56 };
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000057 /* finish: */
58 a |= (a & 4) != 0; /* Or P into R */
59 ++a; /* round - this step may add a significant bit */
60 a >>= 2; /* dump Q and R */
61 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000062 if (a & ((du_int)1 << FLT_MANT_DIG))
63 {
64 a >>= 1;
65 ++e;
66 }
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000067 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000068 }
69 else
70 {
71 a <<= (FLT_MANT_DIG - sd);
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000072 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000073 }
74 float_bits fb;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000075 fb.u = ((su_int)s & 0x80000000) | /* sign */
76 ((e + 127) << 23) | /* exponent */
77 ((su_int)a & 0x007FFFFF); /* mantissa */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000078 return fb.f;
79}