xref: /aosp_15_r20/external/compiler-rt/lib/builtins/floatdidf.c (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1*7c3d14c8STreehugger Robot /*===-- floatdidf.c - Implement __floatdidf -------------------------------===
2*7c3d14c8STreehugger Robot  *
3*7c3d14c8STreehugger Robot  *                     The LLVM Compiler Infrastructure
4*7c3d14c8STreehugger Robot  *
5*7c3d14c8STreehugger Robot  * This file is dual licensed under the MIT and the University of Illinois Open
6*7c3d14c8STreehugger Robot  * Source Licenses. See LICENSE.TXT for details.
7*7c3d14c8STreehugger Robot  *
8*7c3d14c8STreehugger Robot  *===----------------------------------------------------------------------===
9*7c3d14c8STreehugger Robot  *
10*7c3d14c8STreehugger Robot  * This file implements __floatdidf for the compiler_rt library.
11*7c3d14c8STreehugger Robot  *
12*7c3d14c8STreehugger Robot  *===----------------------------------------------------------------------===
13*7c3d14c8STreehugger Robot  */
14*7c3d14c8STreehugger Robot 
15*7c3d14c8STreehugger Robot #include "int_lib.h"
16*7c3d14c8STreehugger Robot 
17*7c3d14c8STreehugger Robot /* Returns: convert a to a double, rounding toward even. */
18*7c3d14c8STreehugger Robot 
19*7c3d14c8STreehugger Robot /* Assumption: double is a IEEE 64 bit floating point type
20*7c3d14c8STreehugger Robot  *             di_int is a 64 bit integral type
21*7c3d14c8STreehugger Robot  */
22*7c3d14c8STreehugger Robot 
23*7c3d14c8STreehugger Robot /* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */
24*7c3d14c8STreehugger Robot 
ARM_EABI_FNALIAS(l2d,floatdidf)25*7c3d14c8STreehugger Robot ARM_EABI_FNALIAS(l2d, floatdidf)
26*7c3d14c8STreehugger Robot 
27*7c3d14c8STreehugger Robot #ifndef __SOFT_FP__
28*7c3d14c8STreehugger Robot /* Support for systems that have hardware floating-point; we'll set the inexact flag
29*7c3d14c8STreehugger Robot  * as a side-effect of this computation.
30*7c3d14c8STreehugger Robot  */
31*7c3d14c8STreehugger Robot 
32*7c3d14c8STreehugger Robot COMPILER_RT_ABI double
33*7c3d14c8STreehugger Robot __floatdidf(di_int a)
34*7c3d14c8STreehugger Robot {
35*7c3d14c8STreehugger Robot     static const double twop52 = 4503599627370496.0; // 0x1.0p52
36*7c3d14c8STreehugger Robot     static const double twop32 = 4294967296.0; // 0x1.0p32
37*7c3d14c8STreehugger Robot 
38*7c3d14c8STreehugger Robot     union { int64_t x; double d; } low = { .d = twop52 };
39*7c3d14c8STreehugger Robot 
40*7c3d14c8STreehugger Robot     const double high = (int32_t)(a >> 32) * twop32;
41*7c3d14c8STreehugger Robot     low.x |= a & INT64_C(0x00000000ffffffff);
42*7c3d14c8STreehugger Robot 
43*7c3d14c8STreehugger Robot     const double result = (high - twop52) + low.d;
44*7c3d14c8STreehugger Robot     return result;
45*7c3d14c8STreehugger Robot }
46*7c3d14c8STreehugger Robot 
47*7c3d14c8STreehugger Robot #else
48*7c3d14c8STreehugger Robot /* Support for systems that don't have hardware floating-point; there are no flags to
49*7c3d14c8STreehugger Robot  * set, and we don't want to code-gen to an unknown soft-float implementation.
50*7c3d14c8STreehugger Robot  */
51*7c3d14c8STreehugger Robot 
52*7c3d14c8STreehugger Robot COMPILER_RT_ABI double
53*7c3d14c8STreehugger Robot __floatdidf(di_int a)
54*7c3d14c8STreehugger Robot {
55*7c3d14c8STreehugger Robot     if (a == 0)
56*7c3d14c8STreehugger Robot         return 0.0;
57*7c3d14c8STreehugger Robot     const unsigned N = sizeof(di_int) * CHAR_BIT;
58*7c3d14c8STreehugger Robot     const di_int s = a >> (N-1);
59*7c3d14c8STreehugger Robot     a = (a ^ s) - s;
60*7c3d14c8STreehugger Robot     int sd = N - __builtin_clzll(a);  /* number of significant digits */
61*7c3d14c8STreehugger Robot     int e = sd - 1;             /* exponent */
62*7c3d14c8STreehugger Robot     if (sd > DBL_MANT_DIG)
63*7c3d14c8STreehugger Robot     {
64*7c3d14c8STreehugger Robot         /*  start:  0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx
65*7c3d14c8STreehugger Robot          *  finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR
66*7c3d14c8STreehugger Robot          *                                                12345678901234567890123456
67*7c3d14c8STreehugger Robot          *  1 = msb 1 bit
68*7c3d14c8STreehugger Robot          *  P = bit DBL_MANT_DIG-1 bits to the right of 1
69*7c3d14c8STreehugger Robot          * Q = bit DBL_MANT_DIG bits to the right of 1
70*7c3d14c8STreehugger Robot          *  R = "or" of all bits to the right of Q
71*7c3d14c8STreehugger Robot         */
72*7c3d14c8STreehugger Robot         switch (sd)
73*7c3d14c8STreehugger Robot         {
74*7c3d14c8STreehugger Robot         case DBL_MANT_DIG + 1:
75*7c3d14c8STreehugger Robot             a <<= 1;
76*7c3d14c8STreehugger Robot             break;
77*7c3d14c8STreehugger Robot         case DBL_MANT_DIG + 2:
78*7c3d14c8STreehugger Robot             break;
79*7c3d14c8STreehugger Robot         default:
80*7c3d14c8STreehugger Robot             a = ((du_int)a >> (sd - (DBL_MANT_DIG+2))) |
81*7c3d14c8STreehugger Robot                 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
82*7c3d14c8STreehugger Robot         };
83*7c3d14c8STreehugger Robot         /* finish: */
84*7c3d14c8STreehugger Robot         a |= (a & 4) != 0;  /* Or P into R */
85*7c3d14c8STreehugger Robot         ++a;  /* round - this step may add a significant bit */
86*7c3d14c8STreehugger Robot         a >>= 2;  /* dump Q and R */
87*7c3d14c8STreehugger Robot         /* a is now rounded to DBL_MANT_DIG or DBL_MANT_DIG+1 bits */
88*7c3d14c8STreehugger Robot         if (a & ((du_int)1 << DBL_MANT_DIG))
89*7c3d14c8STreehugger Robot         {
90*7c3d14c8STreehugger Robot             a >>= 1;
91*7c3d14c8STreehugger Robot             ++e;
92*7c3d14c8STreehugger Robot         }
93*7c3d14c8STreehugger Robot         /* a is now rounded to DBL_MANT_DIG bits */
94*7c3d14c8STreehugger Robot     }
95*7c3d14c8STreehugger Robot     else
96*7c3d14c8STreehugger Robot     {
97*7c3d14c8STreehugger Robot         a <<= (DBL_MANT_DIG - sd);
98*7c3d14c8STreehugger Robot         /* a is now rounded to DBL_MANT_DIG bits */
99*7c3d14c8STreehugger Robot     }
100*7c3d14c8STreehugger Robot     double_bits fb;
101*7c3d14c8STreehugger Robot     fb.u.s.high = ((su_int)s & 0x80000000) |        /* sign */
102*7c3d14c8STreehugger Robot                   ((e + 1023) << 20)       |        /* exponent */
103*7c3d14c8STreehugger Robot                   ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
104*7c3d14c8STreehugger Robot     fb.u.s.low = (su_int)a;                         /* mantissa-low */
105*7c3d14c8STreehugger Robot     return fb.f;
106*7c3d14c8STreehugger Robot }
107*7c3d14c8STreehugger Robot #endif
108