1 //===-- lib/floatunsidf.c - uint -> double-precision conversion ---*- C -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements unsigned integer to double-precision conversion for the
11 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
14 //===----------------------------------------------------------------------===//
16 #define DOUBLE_PRECISION
21 ARM_EABI_FNALIAS(ui2d
, floatunsidf
)
23 fp_t
__floatunsidf(unsigned int a
) {
25 const int aWidth
= sizeof a
* CHAR_BIT
;
27 // Handle zero as a special case to protect clz
28 if (a
== 0) return fromRep(0);
30 // Exponent of (fp_t)a is the width of abs(a).
31 const int exponent
= (aWidth
- 1) - __builtin_clz(a
);
34 // Shift a into the significand field and clear the implicit bit.
35 const int shift
= significandBits
- exponent
;
36 result
= (rep_t
)a
<< shift
^ implicitBit
;
38 // Insert the exponent
39 result
+= (rep_t
)(exponent
+ exponentBias
) << significandBits
;
40 return fromRep(result
);