blob: 25bda9759b0a1f78368dbf6935047a9b799fd9bc [file] [log] [blame]
Daniel Dunbarb3a69012009-06-26 16:47:03 +00001//===-- floattisf.c - Implement __floattisf -------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements __floattisf for the compiler_rt library.
11//
12//===----------------------------------------------------------------------===//
13
14#if __x86_64
15
16#include "int_lib.h"
17#include <float.h>
18
19// Returns: convert a to a float, rounding toward even.
20
21// Assumption: float is a IEEE 32 bit floating point type
22// ti_int is a 128 bit integral type
23
24// seee eeee emmm mmmm mmmm mmmm mmmm mmmm
25
26si_int __clzti2(ti_int a);
27
28float
29__floattisf(ti_int a)
30{
31 if (a == 0)
32 return 0.0F;
33 const unsigned N = sizeof(ti_int) * CHAR_BIT;
34 const ti_int s = a >> (N-1);
35 a = (a ^ s) - s;
36 int sd = N - __clzti2(a); // number of significant digits
37 int e = sd - 1; // exponent
38 if (sd > FLT_MANT_DIG)
39 {
40 // start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
41 // finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
42 // 12345678901234567890123456
43 // 1 = msb 1 bit
44 // P = bit FLT_MANT_DIG-1 bits to the right of 1
45 // Q = bit FLT_MANT_DIG bits to the right of 1
46 // R = "or" of all bits to the right of Q
47 switch (sd)
48 {
49 case FLT_MANT_DIG + 1:
50 a <<= 1;
51 break;
52 case FLT_MANT_DIG + 2:
53 break;
54 default:
55 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
57 };
58 // 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 FLT_MANT_DIG or FLT_MANT_DIG+1 bits
63 if (a & ((tu_int)1 << FLT_MANT_DIG))
64 {
65 a >>= 1;
66 ++e;
67 }
68 // a is now rounded to FLT_MANT_DIG bits
69 }
70 else
71 {
72 a <<= (FLT_MANT_DIG - sd);
73 // a is now rounded to FLT_MANT_DIG bits
74 }
75 float_bits fb;
76 fb.u = ((su_int)s & 0x80000000) | // sign
77 ((e + 127) << 23) | // exponent
78 ((su_int)a & 0x007FFFFF); // mantissa
79 return fb.f;
80}
81
82#endif