blob: 2ae395bdc1db9135e9e4e385a6a6802faf612d61 [file] [log] [blame]
Stephen Canon04b97962010-07-02 23:05:46 +00001//===-- lib/floatsidf.c - integer -> double-precision conversion --*- C -*-===//
2//
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 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__floatsidf(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)
28 return fromRep(0);
29
30 // All other cases begin by extracting the sign and absolute value of a
31 rep_t sign = 0;
32 if (a < 0) {
33 sign = signBit;
34 a = -a;
35 }
36
37 // Exponent of (fp_t)a is the width of abs(a).
38 const int exponent = (aWidth - 1) - __builtin_clz(a);
39 rep_t result;
40
Stephen Canon5f0e6e72010-08-17 19:13:45 +000041 // Shift a into the significand field and clear the implicit bit. Extra
42 // cast to unsigned int is necessary to get the correct behavior for
43 // the input INT_MIN.
44 const int shift = significandBits - exponent;
45 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
Stephen Canon04b97962010-07-02 23:05:46 +000046
47 // Insert the exponent
48 result += (rep_t)(exponent + exponentBias) << significandBits;
49 // Insert the sign bit and return
50 return fromRep(result | sign);
51}
Saleem Abdulrasool36ac5dd2017-05-16 16:41:37 +000052
53#if defined(__ARM_EABI__)
54AEABI_RTABI fp_t __aeabi_i2d(int a) {
55 return __floatsidf(a);
56}
57#endif
58