blob: f3de21959c0b47b46cbf36558beae71023bf6372 [file] [log] [blame]
Stephen Canon5c6d2ec2010-07-01 17:58:24 +00001//===-- lib/truncdfsf2.c - double -> single conversion ------------*- C -*-===//
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.
Stephen Canon5c6d2ec2010-07-01 17:58:24 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a fairly generic conversion from a wider to a narrower
11// IEEE-754 floating-point type in the default (round to nearest, ties to even)
12// rounding mode. The constants and types defined following the includes below
13// parameterize the conversion.
14//
15// This routine can be trivially adapted to support conversions to
16// half-precision or from quad-precision. It does not support types that don't
17// use the usual IEEE-754 interchange formats; specifically, some work would be
18// needed to adapt it to (for example) the Intel 80-bit format or PowerPC
19// double-double format.
20//
21// Note please, however, that this implementation is only intended to support
22// *narrowing* operations; if you need to convert to a *wider* floating-point
23// type (e.g. float -> double), then this routine will not do what you want it
24// to.
25//
26// It also requires that integer types at least as large as both formats
27// are available on the target platform; this may pose a problem when trying
28// to add support for quad on some 32-bit systems, for example.
29//
30// Finally, the following assumptions are made:
31//
32// 1. floating-point types and integer types have the same endianness on the
33// target platform
34//
35// 2. quiet NaNs, if supported, are indicated by the leading bit of the
36// significand field being set
37//
38//===----------------------------------------------------------------------===//
39
40#include <stdint.h>
41#include <limits.h>
42#include <stdbool.h>
43
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000044#include "int_lib.h"
45
Stephen Canon5c6d2ec2010-07-01 17:58:24 +000046typedef double src_t;
47typedef uint64_t src_rep_t;
48#define SRC_REP_C UINT64_C
49static const int srcSigBits = 52;
50
51typedef float dst_t;
52typedef uint32_t dst_rep_t;
53#define DST_REP_C UINT32_C
54static const int dstSigBits = 23;
55
56// End of specialization parameters. Two helper routines for conversion to and
57// from the representation of floating-point data as integer values follow.
58
59static inline src_rep_t srcToRep(src_t x) {
60 const union { src_t f; src_rep_t i; } rep = {.f = x};
61 return rep.i;
62}
63
64static inline dst_t dstFromRep(dst_rep_t x) {
65 const union { dst_t f; dst_rep_t i; } rep = {.i = x};
66 return rep.f;
67}
68
69// End helper routines. Conversion implementation follows.
70
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000071ARM_EABI_FNALIAS(d2f, truncdfsf2);
72
Stephen Canon5c6d2ec2010-07-01 17:58:24 +000073dst_t __truncdfsf2(src_t a) {
74
75 // Various constants whose values follow from the type parameters.
76 // Any reasonable optimizer will fold and propagate all of these.
77 const int srcBits = sizeof(src_t)*CHAR_BIT;
78 const int srcExpBits = srcBits - srcSigBits - 1;
79 const int srcInfExp = (1 << srcExpBits) - 1;
80 const int srcExpBias = srcInfExp >> 1;
81
82 const src_rep_t srcMinNormal = SRC_REP_C(1) << srcSigBits;
Stephen Canon45013792010-07-01 18:02:15 +000083 const src_rep_t significandMask = srcMinNormal - 1;
Stephen Canon5c6d2ec2010-07-01 17:58:24 +000084 const src_rep_t srcInfinity = (src_rep_t)srcInfExp << srcSigBits;
85 const src_rep_t srcSignMask = SRC_REP_C(1) << (srcSigBits + srcExpBits);
86 const src_rep_t srcAbsMask = srcSignMask - 1;
Stephen Canon5c6d2ec2010-07-01 17:58:24 +000087 const src_rep_t roundMask = (SRC_REP_C(1) << (srcSigBits - dstSigBits)) - 1;
88 const src_rep_t halfway = SRC_REP_C(1) << (srcSigBits - dstSigBits - 1);
89
90 const int dstBits = sizeof(dst_t)*CHAR_BIT;
91 const int dstExpBits = dstBits - dstSigBits - 1;
92 const int dstInfExp = (1 << dstExpBits) - 1;
93 const int dstExpBias = dstInfExp >> 1;
94
95 const int underflowExponent = srcExpBias + 1 - dstExpBias;
96 const int overflowExponent = srcExpBias + dstInfExp - dstExpBias;
97 const src_rep_t underflow = (src_rep_t)underflowExponent << srcSigBits;
98 const src_rep_t overflow = (src_rep_t)overflowExponent << srcSigBits;
99
100 const dst_rep_t dstQNaN = DST_REP_C(1) << (dstSigBits - 1);
101 const dst_rep_t dstNaNCode = dstQNaN - 1;
102
103 // Break a into a sign and representation of the absolute value
104 const src_rep_t aRep = srcToRep(a);
105 const src_rep_t aAbs = aRep & srcAbsMask;
106 const src_rep_t sign = aRep & srcSignMask;
107 dst_rep_t absResult;
108
109 if (aAbs - underflow < aAbs - overflow) {
110 // The exponent of a is within the range of normal numbers in the
111 // destination format. We can convert by simply right-shifting with
112 // rounding and adjusting the exponent.
113 absResult = aAbs >> (srcSigBits - dstSigBits);
114 absResult -= (dst_rep_t)(srcExpBias - dstExpBias) << dstSigBits;
115
116 const src_rep_t roundBits = aAbs & roundMask;
117
118 // Round to nearest
119 if (roundBits > halfway)
120 absResult++;
121
122 // Ties to even
123 else if (roundBits == halfway)
124 absResult += absResult & 1;
125 }
126
127 else if (aAbs > srcInfinity) {
128 // a is NaN.
129 // Conjure the result by beginning with infinity, setting the qNaN
130 // bit and inserting the (truncated) trailing NaN field.
131 absResult = (dst_rep_t)dstInfExp << dstSigBits;
132 absResult |= dstQNaN;
133 absResult |= aAbs & dstNaNCode;
134 }
135
136 else if (aAbs > overflow) {
137 // a overflows to infinity.
138 absResult = (dst_rep_t)dstInfExp << dstSigBits;
139 }
140
141 else {
142 // a underflows on conversion to the destination type or is an exact
143 // zero. The result may be a denormal or zero. Extract the exponent
144 // to get the shift amount for the denormalization.
145 const int aExp = aAbs >> srcSigBits;
146 const int shift = srcExpBias - dstExpBias - aExp + 1;
147
Stephen Canon45013792010-07-01 18:02:15 +0000148 const src_rep_t significand = (aRep & significandMask) | srcMinNormal;
Stephen Canon5c6d2ec2010-07-01 17:58:24 +0000149
150 // Right shift by the denormalization amount with sticky.
151 if (shift > srcSigBits) {
152 absResult = 0;
153 } else {
154 const bool sticky = significand << (srcBits - shift);
155 src_rep_t denormalizedSignificand = significand >> shift | sticky;
156 absResult = denormalizedSignificand >> (srcSigBits - dstSigBits);
157 const src_rep_t roundBits = denormalizedSignificand & roundMask;
158 // Round to nearest
159 if (roundBits > halfway)
160 absResult++;
161 // Ties to even
162 else if (roundBits == halfway)
163 absResult += absResult & 1;
164 }
165 }
166
167 // Apply the signbit to (dst_t)abs(a).
168 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
169 return dstFromRep(result);
170
171}