blob: 75cf6b9177df8221af8c6f7031dc69c34b4d0b75 [file] [log] [blame]
Stephen Canon79732952010-07-03 00:56:03 +00001//===-- lib/floatunsidf.c - uint -> double-precision conversion ---*- C -*-===//
Stephen Canon04b97962010-07-02 23:05:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnant5b791f62010-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.
Stephen Canon04b97962010-07-02 23:05:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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
12// mode.
13//
14//===----------------------------------------------------------------------===//
15
16#define DOUBLE_PRECISION
17#include "fp_lib.h"
18
Anton Korobeynikov75e3c192011-04-19 17:51:24 +000019#include "int_lib.h"
20
Joerg Sonnenberger6e99daa2014-03-01 15:30:50 +000021COMPILER_RT_ABI fp_t
22__floatunsidf(unsigned int a) {
Stephen Canon04b97962010-07-02 23:05:46 +000023
24 const int aWidth = sizeof a * CHAR_BIT;
25
26 // Handle zero as a special case to protect clz
27 if (a == 0) return fromRep(0);
28
29 // Exponent of (fp_t)a is the width of abs(a).
30 const int exponent = (aWidth - 1) - __builtin_clz(a);
31 rep_t result;
32
Stephen Canon5f0e6e72010-08-17 19:13:45 +000033 // Shift a into the significand field and clear the implicit bit.
34 const int shift = significandBits - exponent;
35 result = (rep_t)a << shift ^ implicitBit;
Stephen Canon04b97962010-07-02 23:05:46 +000036
37 // Insert the exponent
38 result += (rep_t)(exponent + exponentBias) << significandBits;
39 return fromRep(result);
40}
Saleem Abdulrasool36ac5dd2017-05-16 16:41:37 +000041
42#if defined(__ARM_EABI__)
Eli Friedman0d586d02017-10-03 21:25:07 +000043#if defined(COMPILER_RT_ARMHF_TARGET)
Saleem Abdulrasool36ac5dd2017-05-16 16:41:37 +000044AEABI_RTABI fp_t __aeabi_ui2d(unsigned int a) {
45 return __floatunsidf(a);
46}
Eli Friedman0d586d02017-10-03 21:25:07 +000047#else
48AEABI_RTABI fp_t __aeabi_ui2d(unsigned int a) COMPILER_RT_ALIAS(__floatunsidf);
Saleem Abdulrasool36ac5dd2017-05-16 16:41:37 +000049#endif
Eli Friedman0d586d02017-10-03 21:25:07 +000050#endif