blob: 713a44abc8bd1a2bc13be259b76e94df8949edc9 [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/*===-- floatundisf.c - Implement __floatundisf ---------------------------===
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 __floatundisf for the compiler_rt library.
11 *
12 *===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000015/* Returns: convert a to a float, rounding toward even. */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000016
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000017/* Assumption: float is a IEEE 32 bit floating point type
18 * du_int is a 64 bit integral type
19 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000021/* seee eeee emmm mmmm mmmm mmmm mmmm mmmm */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000022
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000023#include "int_lib.h"
24
Chandler Carruth0193b742012-06-22 21:09:15 +000025ARM_EABI_FNALIAS(ul2f, floatundisf)
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000026
Anton Korobeynikov1c5f89b2011-04-19 17:52:09 +000027COMPILER_RT_ABI float
Daniel Dunbarb3a69012009-06-26 16:47:03 +000028__floatundisf(du_int a)
29{
30 if (a == 0)
31 return 0.0F;
32 const unsigned N = sizeof(du_int) * CHAR_BIT;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000033 int sd = N - __builtin_clzll(a); /* number of significant digits */
34 int e = sd - 1; /* 8 exponent */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000035 if (sd > FLT_MANT_DIG)
36 {
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000037 /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
38 * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
39 * 12345678901234567890123456
40 * 1 = msb 1 bit
41 * P = bit FLT_MANT_DIG-1 bits to the right of 1
42 * Q = bit FLT_MANT_DIG bits to the right of 1
43 * R = "or" of all bits to the right of Q
44 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000045 switch (sd)
46 {
47 case FLT_MANT_DIG + 1:
48 a <<= 1;
49 break;
50 case FLT_MANT_DIG + 2:
51 break;
52 default:
53 a = (a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
55 };
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000056 /* finish: */
57 a |= (a & 4) != 0; /* Or P into R */
58 ++a; /* round - this step may add a significant bit */
59 a >>= 2; /* dump Q and R */
60 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000061 if (a & ((du_int)1 << FLT_MANT_DIG))
62 {
63 a >>= 1;
64 ++e;
65 }
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000066 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000067 }
68 else
69 {
70 a <<= (FLT_MANT_DIG - sd);
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000071 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000072 }
73 float_bits fb;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000074 fb.u = ((e + 127) << 23) | /* exponent */
75 ((su_int)a & 0x007FFFFF); /* mantissa */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000076 return fb.f;
77}