blob: eea45a745949d2547a48c9611f693ea684970cac [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
Anton Korobeynikov1c5f89b2011-04-19 17:52:09 +000015#include "abi.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +000016#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 * du_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
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000026#include "int_lib.h"
27
28ARM_EABI_FNALIAS(ul2f, floatundisf);
29
Anton Korobeynikov1c5f89b2011-04-19 17:52:09 +000030COMPILER_RT_ABI float
Daniel Dunbarb3a69012009-06-26 16:47:03 +000031__floatundisf(du_int a)
32{
33 if (a == 0)
34 return 0.0F;
35 const unsigned N = sizeof(du_int) * CHAR_BIT;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000036 int sd = N - __builtin_clzll(a); /* number of significant digits */
37 int e = sd - 1; /* 8 exponent */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000038 if (sd > FLT_MANT_DIG)
39 {
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000040 /* 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 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000048 switch (sd)
49 {
50 case FLT_MANT_DIG + 1:
51 a <<= 1;
52 break;
53 case FLT_MANT_DIG + 2:
54 break;
55 default:
56 a = (a >> (sd - (FLT_MANT_DIG+2))) |
57 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
58 };
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000059 /* finish: */
60 a |= (a & 4) != 0; /* Or P into R */
61 ++a; /* round - this step may add a significant bit */
62 a >>= 2; /* dump Q and R */
63 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000064 if (a & ((du_int)1 << FLT_MANT_DIG))
65 {
66 a >>= 1;
67 ++e;
68 }
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000069 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000070 }
71 else
72 {
73 a <<= (FLT_MANT_DIG - sd);
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000074 /* a is now rounded to FLT_MANT_DIG bits */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000075 }
76 float_bits fb;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000077 fb.u = ((e + 127) << 23) | /* exponent */
78 ((su_int)a & 0x007FFFFF); /* mantissa */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000079 return fb.f;
80}