blob: c64da6e137ea3c4fce85d053da1d3f7d100885f7 [file] [log] [blame]
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001//===-- APFloat.cpp - Implement APFloat class -----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb39cdde2007-08-20 22:49:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a class to represent arbitrary precision floating
11// point values and provide a variety of arithmetic operations on them.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner36d26c22007-12-08 19:00:03 +000015#include "llvm/ADT/APFloat.h"
Jeffrey Yasskin3d42bfb2011-07-15 07:04:56 +000016#include "llvm/ADT/APSInt.h"
Erick Tryzelaara15d8902009-08-16 23:36:19 +000017#include "llvm/ADT/StringRef.h"
Ted Kremenek1f801fa2008-02-11 17:24:50 +000018#include "llvm/ADT/FoldingSet.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000019#include "llvm/Support/ErrorHandling.h"
Dale Johannesend3b51fd2007-08-24 05:08:11 +000020#include "llvm/Support/MathExtras.h"
John McCall8b3f3302010-02-26 22:20:41 +000021#include <limits.h>
Chris Lattnerfad86b02008-08-17 07:19:36 +000022#include <cstring>
Chris Lattnerb39cdde2007-08-20 22:49:32 +000023
24using namespace llvm;
25
26#define convolve(lhs, rhs) ((lhs) * 4 + (rhs))
27
Neil Bootha30b0ee2007-10-03 22:26:02 +000028/* Assumed in hexadecimal significand parsing, and conversion to
29 hexadecimal strings. */
Chris Lattner9f17eb02008-08-17 04:58:58 +000030#define COMPILE_TIME_ASSERT(cond) extern int CTAssert[(cond) ? 1 : -1]
Chris Lattnerb39cdde2007-08-20 22:49:32 +000031COMPILE_TIME_ASSERT(integerPartWidth % 4 == 0);
32
33namespace llvm {
34
35 /* Represents floating point arithmetic semantics. */
36 struct fltSemantics {
37 /* The largest E such that 2^E is representable; this matches the
38 definition of IEEE 754. */
39 exponent_t maxExponent;
40
41 /* The smallest E such that 2^E is a normalized number; this
42 matches the definition of IEEE 754. */
43 exponent_t minExponent;
44
45 /* Number of bits in the significand. This includes the integer
46 bit. */
Neil Booth7a951ca2007-10-12 15:33:27 +000047 unsigned int precision;
Neil Boothcaf19d72007-10-14 10:29:28 +000048
49 /* True if arithmetic is supported. */
50 unsigned int arithmeticOK;
Chris Lattnerb39cdde2007-08-20 22:49:32 +000051 };
52
Chris Lattnercc4287a2009-10-16 02:13:51 +000053 const fltSemantics APFloat::IEEEhalf = { 15, -14, 11, true };
Neil Boothcaf19d72007-10-14 10:29:28 +000054 const fltSemantics APFloat::IEEEsingle = { 127, -126, 24, true };
55 const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53, true };
56 const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113, true };
57 const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, true };
58 const fltSemantics APFloat::Bogus = { 0, 0, 0, true };
Dale Johannesena471c2e2007-10-11 18:07:22 +000059
60 // The PowerPC format consists of two doubles. It does not map cleanly
61 // onto the usual format above. For now only storage of constants of
62 // this type is supported, no arithmetic.
Neil Boothcaf19d72007-10-14 10:29:28 +000063 const fltSemantics APFloat::PPCDoubleDouble = { 1023, -1022, 106, false };
Neil Booth96c74712007-10-12 16:02:31 +000064
65 /* A tight upper bound on number of parts required to hold the value
66 pow(5, power) is
67
Neil Booth686700e2007-10-15 15:00:55 +000068 power * 815 / (351 * integerPartWidth) + 1
Dan Gohman16e02092010-03-24 19:38:02 +000069
Neil Booth96c74712007-10-12 16:02:31 +000070 However, whilst the result may require only this many parts,
71 because we are multiplying two values to get it, the
72 multiplication may require an extra part with the excess part
73 being zero (consider the trivial case of 1 * 1, tcFullMultiply
74 requires two parts to hold the single-part result). So we add an
75 extra one to guarantee enough space whilst multiplying. */
76 const unsigned int maxExponent = 16383;
77 const unsigned int maxPrecision = 113;
78 const unsigned int maxPowerOfFiveExponent = maxExponent + maxPrecision - 1;
Neil Booth686700e2007-10-15 15:00:55 +000079 const unsigned int maxPowerOfFiveParts = 2 + ((maxPowerOfFiveExponent * 815)
80 / (351 * integerPartWidth));
Chris Lattnerb39cdde2007-08-20 22:49:32 +000081}
82
Chris Lattnere213f3f2009-03-12 23:59:55 +000083/* A bunch of private, handy routines. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +000084
Chris Lattnere213f3f2009-03-12 23:59:55 +000085static inline unsigned int
86partCountForBits(unsigned int bits)
87{
88 return ((bits) + integerPartWidth - 1) / integerPartWidth;
89}
Chris Lattnerb39cdde2007-08-20 22:49:32 +000090
Chris Lattnere213f3f2009-03-12 23:59:55 +000091/* Returns 0U-9U. Return values >= 10U are not digits. */
92static inline unsigned int
93decDigitValue(unsigned int c)
94{
95 return c - '0';
96}
Chris Lattnerb39cdde2007-08-20 22:49:32 +000097
Chris Lattnere213f3f2009-03-12 23:59:55 +000098static unsigned int
99hexDigitValue(unsigned int c)
100{
101 unsigned int r;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000102
Chris Lattnere213f3f2009-03-12 23:59:55 +0000103 r = c - '0';
Dan Gohman16e02092010-03-24 19:38:02 +0000104 if (r <= 9)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000105 return r;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000106
Chris Lattnere213f3f2009-03-12 23:59:55 +0000107 r = c - 'A';
Dan Gohman16e02092010-03-24 19:38:02 +0000108 if (r <= 5)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000109 return r + 10;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000110
Chris Lattnere213f3f2009-03-12 23:59:55 +0000111 r = c - 'a';
Dan Gohman16e02092010-03-24 19:38:02 +0000112 if (r <= 5)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000113 return r + 10;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000114
Chris Lattnere213f3f2009-03-12 23:59:55 +0000115 return -1U;
116}
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000117
Chris Lattnere213f3f2009-03-12 23:59:55 +0000118static inline void
119assertArithmeticOK(const llvm::fltSemantics &semantics) {
Dan Gohman16e02092010-03-24 19:38:02 +0000120 assert(semantics.arithmeticOK &&
121 "Compile-time arithmetic does not support these semantics");
Chris Lattnere213f3f2009-03-12 23:59:55 +0000122}
Neil Boothcaf19d72007-10-14 10:29:28 +0000123
Chris Lattnere213f3f2009-03-12 23:59:55 +0000124/* Return the value of a decimal exponent of the form
125 [+-]ddddddd.
Neil Booth1870f292007-10-14 10:16:12 +0000126
Chris Lattnere213f3f2009-03-12 23:59:55 +0000127 If the exponent overflows, returns a large exponent with the
128 appropriate sign. */
129static int
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000130readExponent(StringRef::iterator begin, StringRef::iterator end)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000131{
132 bool isNegative;
133 unsigned int absExponent;
134 const unsigned int overlargeExponent = 24000; /* FIXME. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000135 StringRef::iterator p = begin;
136
137 assert(p != end && "Exponent has no digits");
Neil Booth1870f292007-10-14 10:16:12 +0000138
Chris Lattnere213f3f2009-03-12 23:59:55 +0000139 isNegative = (*p == '-');
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000140 if (*p == '-' || *p == '+') {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000141 p++;
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000142 assert(p != end && "Exponent has no digits");
143 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000144
Chris Lattnere213f3f2009-03-12 23:59:55 +0000145 absExponent = decDigitValue(*p++);
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000146 assert(absExponent < 10U && "Invalid character in exponent");
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000147
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000148 for (; p != end; ++p) {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000149 unsigned int value;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000150
Chris Lattnere213f3f2009-03-12 23:59:55 +0000151 value = decDigitValue(*p);
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000152 assert(value < 10U && "Invalid character in exponent");
Chris Lattnere213f3f2009-03-12 23:59:55 +0000153
Chris Lattnere213f3f2009-03-12 23:59:55 +0000154 value += absExponent * 10;
155 if (absExponent >= overlargeExponent) {
156 absExponent = overlargeExponent;
Dale Johannesenb1508d12010-08-19 17:58:35 +0000157 p = end; /* outwit assert below */
Chris Lattnere213f3f2009-03-12 23:59:55 +0000158 break;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000159 }
Chris Lattnere213f3f2009-03-12 23:59:55 +0000160 absExponent = value;
161 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000162
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000163 assert(p == end && "Invalid exponent in exponent");
164
Chris Lattnere213f3f2009-03-12 23:59:55 +0000165 if (isNegative)
166 return -(int) absExponent;
167 else
168 return (int) absExponent;
169}
170
171/* This is ugly and needs cleaning up, but I don't immediately see
172 how whilst remaining safe. */
173static int
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000174totalExponent(StringRef::iterator p, StringRef::iterator end,
175 int exponentAdjustment)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000176{
177 int unsignedExponent;
178 bool negative, overflow;
Ted Kremenek584520e2011-01-23 17:05:06 +0000179 int exponent = 0;
Chris Lattnere213f3f2009-03-12 23:59:55 +0000180
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000181 assert(p != end && "Exponent has no digits");
182
Chris Lattnere213f3f2009-03-12 23:59:55 +0000183 negative = *p == '-';
Dan Gohman16e02092010-03-24 19:38:02 +0000184 if (*p == '-' || *p == '+') {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000185 p++;
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000186 assert(p != end && "Exponent has no digits");
187 }
Chris Lattnere213f3f2009-03-12 23:59:55 +0000188
189 unsignedExponent = 0;
190 overflow = false;
Dan Gohman16e02092010-03-24 19:38:02 +0000191 for (; p != end; ++p) {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000192 unsigned int value;
193
194 value = decDigitValue(*p);
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000195 assert(value < 10U && "Invalid character in exponent");
Chris Lattnere213f3f2009-03-12 23:59:55 +0000196
Chris Lattnere213f3f2009-03-12 23:59:55 +0000197 unsignedExponent = unsignedExponent * 10 + value;
Abramo Bagnara4bb46f42011-01-06 16:55:14 +0000198 if (unsignedExponent > 32767)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000199 overflow = true;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000200 }
201
Abramo Bagnara4bb46f42011-01-06 16:55:14 +0000202 if (exponentAdjustment > 32767 || exponentAdjustment < -32768)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000203 overflow = true;
204
Dan Gohman16e02092010-03-24 19:38:02 +0000205 if (!overflow) {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000206 exponent = unsignedExponent;
Dan Gohman16e02092010-03-24 19:38:02 +0000207 if (negative)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000208 exponent = -exponent;
209 exponent += exponentAdjustment;
Abramo Bagnara4bb46f42011-01-06 16:55:14 +0000210 if (exponent > 32767 || exponent < -32768)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000211 overflow = true;
212 }
213
Dan Gohman16e02092010-03-24 19:38:02 +0000214 if (overflow)
Abramo Bagnara4bb46f42011-01-06 16:55:14 +0000215 exponent = negative ? -32768: 32767;
Chris Lattnere213f3f2009-03-12 23:59:55 +0000216
217 return exponent;
218}
219
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000220static StringRef::iterator
221skipLeadingZeroesAndAnyDot(StringRef::iterator begin, StringRef::iterator end,
222 StringRef::iterator *dot)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000223{
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000224 StringRef::iterator p = begin;
225 *dot = end;
Dan Gohman16e02092010-03-24 19:38:02 +0000226 while (*p == '0' && p != end)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000227 p++;
228
Dan Gohman16e02092010-03-24 19:38:02 +0000229 if (*p == '.') {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000230 *dot = p++;
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000231
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000232 assert(end - begin != 1 && "Significand has no digits");
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000233
Dan Gohman16e02092010-03-24 19:38:02 +0000234 while (*p == '0' && p != end)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000235 p++;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000236 }
237
Chris Lattnere213f3f2009-03-12 23:59:55 +0000238 return p;
239}
Neil Booth1870f292007-10-14 10:16:12 +0000240
Chris Lattnere213f3f2009-03-12 23:59:55 +0000241/* Given a normal decimal floating point number of the form
Neil Booth1870f292007-10-14 10:16:12 +0000242
Chris Lattnere213f3f2009-03-12 23:59:55 +0000243 dddd.dddd[eE][+-]ddd
Neil Booth686700e2007-10-15 15:00:55 +0000244
Chris Lattnere213f3f2009-03-12 23:59:55 +0000245 where the decimal point and exponent are optional, fill out the
246 structure D. Exponent is appropriate if the significand is
247 treated as an integer, and normalizedExponent if the significand
248 is taken to have the decimal point after a single leading
249 non-zero digit.
Neil Booth1870f292007-10-14 10:16:12 +0000250
Chris Lattnere213f3f2009-03-12 23:59:55 +0000251 If the value is zero, V->firstSigDigit points to a non-digit, and
252 the return exponent is zero.
253*/
254struct decimalInfo {
255 const char *firstSigDigit;
256 const char *lastSigDigit;
257 int exponent;
258 int normalizedExponent;
259};
Neil Booth1870f292007-10-14 10:16:12 +0000260
Chris Lattnere213f3f2009-03-12 23:59:55 +0000261static void
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000262interpretDecimal(StringRef::iterator begin, StringRef::iterator end,
263 decimalInfo *D)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000264{
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000265 StringRef::iterator dot = end;
266 StringRef::iterator p = skipLeadingZeroesAndAnyDot (begin, end, &dot);
Neil Booth1870f292007-10-14 10:16:12 +0000267
Chris Lattnere213f3f2009-03-12 23:59:55 +0000268 D->firstSigDigit = p;
269 D->exponent = 0;
270 D->normalizedExponent = 0;
271
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000272 for (; p != end; ++p) {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000273 if (*p == '.') {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000274 assert(dot == end && "String contains multiple dots");
Chris Lattnere213f3f2009-03-12 23:59:55 +0000275 dot = p++;
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000276 if (p == end)
277 break;
Neil Booth1870f292007-10-14 10:16:12 +0000278 }
Chris Lattnere213f3f2009-03-12 23:59:55 +0000279 if (decDigitValue(*p) >= 10U)
280 break;
Chris Lattnere213f3f2009-03-12 23:59:55 +0000281 }
Neil Booth1870f292007-10-14 10:16:12 +0000282
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000283 if (p != end) {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000284 assert((*p == 'e' || *p == 'E') && "Invalid character in significand");
285 assert(p != begin && "Significand has no digits");
286 assert((dot == end || p - begin != 1) && "Significand has no digits");
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000287
288 /* p points to the first non-digit in the string */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +0000289 D->exponent = readExponent(p + 1, end);
Neil Booth1870f292007-10-14 10:16:12 +0000290
Chris Lattnere213f3f2009-03-12 23:59:55 +0000291 /* Implied decimal point? */
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000292 if (dot == end)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000293 dot = p;
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000294 }
Neil Booth1870f292007-10-14 10:16:12 +0000295
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000296 /* If number is all zeroes accept any exponent. */
297 if (p != D->firstSigDigit) {
Chris Lattnere213f3f2009-03-12 23:59:55 +0000298 /* Drop insignificant trailing zeroes. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000299 if (p != begin) {
Neil Booth1870f292007-10-14 10:16:12 +0000300 do
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000301 do
302 p--;
303 while (p != begin && *p == '0');
304 while (p != begin && *p == '.');
305 }
Neil Booth1870f292007-10-14 10:16:12 +0000306
Chris Lattnere213f3f2009-03-12 23:59:55 +0000307 /* Adjust the exponents for any decimal point. */
308 D->exponent += static_cast<exponent_t>((dot - p) - (dot > p));
309 D->normalizedExponent = (D->exponent +
310 static_cast<exponent_t>((p - D->firstSigDigit)
311 - (dot > D->firstSigDigit && dot < p)));
Neil Booth1870f292007-10-14 10:16:12 +0000312 }
313
Chris Lattnere213f3f2009-03-12 23:59:55 +0000314 D->lastSigDigit = p;
315}
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000316
Chris Lattnere213f3f2009-03-12 23:59:55 +0000317/* Return the trailing fraction of a hexadecimal number.
318 DIGITVALUE is the first hex digit of the fraction, P points to
319 the next digit. */
320static lostFraction
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000321trailingHexadecimalFraction(StringRef::iterator p, StringRef::iterator end,
322 unsigned int digitValue)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000323{
324 unsigned int hexDigit;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000325
Chris Lattnere213f3f2009-03-12 23:59:55 +0000326 /* If the first trailing digit isn't 0 or 8 we can work out the
327 fraction immediately. */
Dan Gohman16e02092010-03-24 19:38:02 +0000328 if (digitValue > 8)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000329 return lfMoreThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +0000330 else if (digitValue < 8 && digitValue > 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000331 return lfLessThanHalf;
Chris Lattnere213f3f2009-03-12 23:59:55 +0000332
333 /* Otherwise we need to find the first non-zero digit. */
Dan Gohman16e02092010-03-24 19:38:02 +0000334 while (*p == '0')
Chris Lattnere213f3f2009-03-12 23:59:55 +0000335 p++;
336
Erick Tryzelaara15d8902009-08-16 23:36:19 +0000337 assert(p != end && "Invalid trailing hexadecimal fraction!");
338
Chris Lattnere213f3f2009-03-12 23:59:55 +0000339 hexDigit = hexDigitValue(*p);
340
341 /* If we ran off the end it is exactly zero or one-half, otherwise
342 a little more. */
Dan Gohman16e02092010-03-24 19:38:02 +0000343 if (hexDigit == -1U)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000344 return digitValue == 0 ? lfExactlyZero: lfExactlyHalf;
345 else
346 return digitValue == 0 ? lfLessThanHalf: lfMoreThanHalf;
347}
348
349/* Return the fraction lost were a bignum truncated losing the least
350 significant BITS bits. */
351static lostFraction
352lostFractionThroughTruncation(const integerPart *parts,
353 unsigned int partCount,
354 unsigned int bits)
355{
356 unsigned int lsb;
357
358 lsb = APInt::tcLSB(parts, partCount);
359
360 /* Note this is guaranteed true if bits == 0, or LSB == -1U. */
Dan Gohman16e02092010-03-24 19:38:02 +0000361 if (bits <= lsb)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000362 return lfExactlyZero;
Dan Gohman16e02092010-03-24 19:38:02 +0000363 if (bits == lsb + 1)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000364 return lfExactlyHalf;
Dan Gohman16e02092010-03-24 19:38:02 +0000365 if (bits <= partCount * integerPartWidth &&
366 APInt::tcExtractBit(parts, bits - 1))
Chris Lattnere213f3f2009-03-12 23:59:55 +0000367 return lfMoreThanHalf;
368
369 return lfLessThanHalf;
370}
371
372/* Shift DST right BITS bits noting lost fraction. */
373static lostFraction
374shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
375{
376 lostFraction lost_fraction;
377
378 lost_fraction = lostFractionThroughTruncation(dst, parts, bits);
379
380 APInt::tcShiftRight(dst, parts, bits);
381
382 return lost_fraction;
383}
384
385/* Combine the effect of two lost fractions. */
386static lostFraction
387combineLostFractions(lostFraction moreSignificant,
388 lostFraction lessSignificant)
389{
Dan Gohman16e02092010-03-24 19:38:02 +0000390 if (lessSignificant != lfExactlyZero) {
391 if (moreSignificant == lfExactlyZero)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000392 moreSignificant = lfLessThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +0000393 else if (moreSignificant == lfExactlyHalf)
Chris Lattnere213f3f2009-03-12 23:59:55 +0000394 moreSignificant = lfMoreThanHalf;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000395 }
396
Chris Lattnere213f3f2009-03-12 23:59:55 +0000397 return moreSignificant;
398}
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000399
Chris Lattnere213f3f2009-03-12 23:59:55 +0000400/* The error from the true value, in half-ulps, on multiplying two
401 floating point numbers, which differ from the value they
402 approximate by at most HUE1 and HUE2 half-ulps, is strictly less
403 than the returned value.
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000404
Chris Lattnere213f3f2009-03-12 23:59:55 +0000405 See "How to Read Floating Point Numbers Accurately" by William D
406 Clinger. */
407static unsigned int
408HUerrBound(bool inexactMultiply, unsigned int HUerr1, unsigned int HUerr2)
409{
410 assert(HUerr1 < 2 || HUerr2 < 2 || (HUerr1 + HUerr2 < 8));
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000411
Chris Lattnere213f3f2009-03-12 23:59:55 +0000412 if (HUerr1 + HUerr2 == 0)
413 return inexactMultiply * 2; /* <= inexactMultiply half-ulps. */
414 else
415 return inexactMultiply + 2 * (HUerr1 + HUerr2);
416}
Neil Bootha30b0ee2007-10-03 22:26:02 +0000417
Chris Lattnere213f3f2009-03-12 23:59:55 +0000418/* The number of ulps from the boundary (zero, or half if ISNEAREST)
419 when the least significant BITS are truncated. BITS cannot be
420 zero. */
421static integerPart
422ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest)
423{
424 unsigned int count, partBits;
425 integerPart part, boundary;
Neil Booth33d4c922007-10-07 08:51:21 +0000426
Evan Cheng99ebfa52009-10-27 21:35:42 +0000427 assert(bits != 0);
Neil Bootha30b0ee2007-10-03 22:26:02 +0000428
Chris Lattnere213f3f2009-03-12 23:59:55 +0000429 bits--;
430 count = bits / integerPartWidth;
431 partBits = bits % integerPartWidth + 1;
Neil Booth96c74712007-10-12 16:02:31 +0000432
Chris Lattnere213f3f2009-03-12 23:59:55 +0000433 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
Neil Booth96c74712007-10-12 16:02:31 +0000434
Chris Lattnere213f3f2009-03-12 23:59:55 +0000435 if (isNearest)
436 boundary = (integerPart) 1 << (partBits - 1);
437 else
438 boundary = 0;
439
440 if (count == 0) {
441 if (part - boundary <= boundary - part)
442 return part - boundary;
Neil Booth96c74712007-10-12 16:02:31 +0000443 else
Chris Lattnere213f3f2009-03-12 23:59:55 +0000444 return boundary - part;
Neil Booth96c74712007-10-12 16:02:31 +0000445 }
446
Chris Lattnere213f3f2009-03-12 23:59:55 +0000447 if (part == boundary) {
448 while (--count)
449 if (parts[count])
450 return ~(integerPart) 0; /* A lot. */
Neil Booth96c74712007-10-12 16:02:31 +0000451
Chris Lattnere213f3f2009-03-12 23:59:55 +0000452 return parts[0];
453 } else if (part == boundary - 1) {
454 while (--count)
455 if (~parts[count])
456 return ~(integerPart) 0; /* A lot. */
Neil Booth96c74712007-10-12 16:02:31 +0000457
Chris Lattnere213f3f2009-03-12 23:59:55 +0000458 return -parts[0];
459 }
Neil Booth96c74712007-10-12 16:02:31 +0000460
Chris Lattnere213f3f2009-03-12 23:59:55 +0000461 return ~(integerPart) 0; /* A lot. */
462}
Neil Booth96c74712007-10-12 16:02:31 +0000463
Chris Lattnere213f3f2009-03-12 23:59:55 +0000464/* Place pow(5, power) in DST, and return the number of parts used.
465 DST must be at least one part larger than size of the answer. */
466static unsigned int
467powerOf5(integerPart *dst, unsigned int power)
468{
469 static const integerPart firstEightPowers[] = { 1, 5, 25, 125, 625, 3125,
470 15625, 78125 };
Chris Lattneree167a72009-03-13 00:24:01 +0000471 integerPart pow5s[maxPowerOfFiveParts * 2 + 5];
472 pow5s[0] = 78125 * 5;
Dan Gohman16e02092010-03-24 19:38:02 +0000473
Chris Lattner807926a2009-03-13 00:03:51 +0000474 unsigned int partsCount[16] = { 1 };
Chris Lattnere213f3f2009-03-12 23:59:55 +0000475 integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5;
476 unsigned int result;
Chris Lattnere213f3f2009-03-12 23:59:55 +0000477 assert(power <= maxExponent);
478
479 p1 = dst;
480 p2 = scratch;
481
482 *p1 = firstEightPowers[power & 7];
483 power >>= 3;
484
485 result = 1;
486 pow5 = pow5s;
487
488 for (unsigned int n = 0; power; power >>= 1, n++) {
489 unsigned int pc;
490
491 pc = partsCount[n];
492
493 /* Calculate pow(5,pow(2,n+3)) if we haven't yet. */
494 if (pc == 0) {
495 pc = partsCount[n - 1];
496 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc);
497 pc *= 2;
498 if (pow5[pc - 1] == 0)
499 pc--;
500 partsCount[n] = pc;
Neil Booth96c74712007-10-12 16:02:31 +0000501 }
502
Chris Lattnere213f3f2009-03-12 23:59:55 +0000503 if (power & 1) {
504 integerPart *tmp;
Neil Booth96c74712007-10-12 16:02:31 +0000505
Chris Lattnere213f3f2009-03-12 23:59:55 +0000506 APInt::tcFullMultiply(p2, p1, pow5, result, pc);
507 result += pc;
508 if (p2[result - 1] == 0)
509 result--;
Neil Booth96c74712007-10-12 16:02:31 +0000510
Chris Lattnere213f3f2009-03-12 23:59:55 +0000511 /* Now result is in p1 with partsCount parts and p2 is scratch
512 space. */
513 tmp = p1, p1 = p2, p2 = tmp;
Neil Booth96c74712007-10-12 16:02:31 +0000514 }
515
Chris Lattnere213f3f2009-03-12 23:59:55 +0000516 pow5 += pc;
Neil Booth96c74712007-10-12 16:02:31 +0000517 }
518
Chris Lattnere213f3f2009-03-12 23:59:55 +0000519 if (p1 != dst)
520 APInt::tcAssign(dst, p1, result);
Neil Booth96c74712007-10-12 16:02:31 +0000521
Chris Lattnere213f3f2009-03-12 23:59:55 +0000522 return result;
523}
Neil Booth96c74712007-10-12 16:02:31 +0000524
Chris Lattnere213f3f2009-03-12 23:59:55 +0000525/* Zero at the end to avoid modular arithmetic when adding one; used
526 when rounding up during hexadecimal output. */
527static const char hexDigitsLower[] = "0123456789abcdef0";
528static const char hexDigitsUpper[] = "0123456789ABCDEF0";
529static const char infinityL[] = "infinity";
530static const char infinityU[] = "INFINITY";
531static const char NaNL[] = "nan";
532static const char NaNU[] = "NAN";
Neil Booth96c74712007-10-12 16:02:31 +0000533
Chris Lattnere213f3f2009-03-12 23:59:55 +0000534/* Write out an integerPart in hexadecimal, starting with the most
535 significant nibble. Write out exactly COUNT hexdigits, return
536 COUNT. */
537static unsigned int
538partAsHex (char *dst, integerPart part, unsigned int count,
539 const char *hexDigitChars)
540{
541 unsigned int result = count;
Neil Booth96c74712007-10-12 16:02:31 +0000542
Evan Cheng99ebfa52009-10-27 21:35:42 +0000543 assert(count != 0 && count <= integerPartWidth / 4);
Neil Booth96c74712007-10-12 16:02:31 +0000544
Chris Lattnere213f3f2009-03-12 23:59:55 +0000545 part >>= (integerPartWidth - 4 * count);
546 while (count--) {
547 dst[count] = hexDigitChars[part & 0xf];
548 part >>= 4;
Neil Booth96c74712007-10-12 16:02:31 +0000549 }
550
Chris Lattnere213f3f2009-03-12 23:59:55 +0000551 return result;
552}
Neil Bootha30b0ee2007-10-03 22:26:02 +0000553
Chris Lattnere213f3f2009-03-12 23:59:55 +0000554/* Write out an unsigned decimal integer. */
555static char *
556writeUnsignedDecimal (char *dst, unsigned int n)
557{
558 char buff[40], *p;
Neil Bootha30b0ee2007-10-03 22:26:02 +0000559
Chris Lattnere213f3f2009-03-12 23:59:55 +0000560 p = buff;
561 do
562 *p++ = '0' + n % 10;
563 while (n /= 10);
Neil Bootha30b0ee2007-10-03 22:26:02 +0000564
Chris Lattnere213f3f2009-03-12 23:59:55 +0000565 do
566 *dst++ = *--p;
567 while (p != buff);
Neil Bootha30b0ee2007-10-03 22:26:02 +0000568
Chris Lattnere213f3f2009-03-12 23:59:55 +0000569 return dst;
570}
Neil Bootha30b0ee2007-10-03 22:26:02 +0000571
Chris Lattnere213f3f2009-03-12 23:59:55 +0000572/* Write out a signed decimal integer. */
573static char *
574writeSignedDecimal (char *dst, int value)
575{
576 if (value < 0) {
577 *dst++ = '-';
578 dst = writeUnsignedDecimal(dst, -(unsigned) value);
579 } else
580 dst = writeUnsignedDecimal(dst, value);
Neil Bootha30b0ee2007-10-03 22:26:02 +0000581
Chris Lattnere213f3f2009-03-12 23:59:55 +0000582 return dst;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000583}
584
585/* Constructors. */
586void
587APFloat::initialize(const fltSemantics *ourSemantics)
588{
589 unsigned int count;
590
591 semantics = ourSemantics;
592 count = partCount();
Dan Gohman16e02092010-03-24 19:38:02 +0000593 if (count > 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000594 significand.parts = new integerPart[count];
595}
596
597void
598APFloat::freeSignificand()
599{
Dan Gohman16e02092010-03-24 19:38:02 +0000600 if (partCount() > 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000601 delete [] significand.parts;
602}
603
604void
605APFloat::assign(const APFloat &rhs)
606{
607 assert(semantics == rhs.semantics);
608
609 sign = rhs.sign;
610 category = rhs.category;
611 exponent = rhs.exponent;
Dale Johannesena471c2e2007-10-11 18:07:22 +0000612 sign2 = rhs.sign2;
613 exponent2 = rhs.exponent2;
Dan Gohman16e02092010-03-24 19:38:02 +0000614 if (category == fcNormal || category == fcNaN)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000615 copySignificand(rhs);
616}
617
618void
619APFloat::copySignificand(const APFloat &rhs)
620{
Dale Johanneseneaf08942007-08-31 04:03:46 +0000621 assert(category == fcNormal || category == fcNaN);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000622 assert(rhs.partCount() >= partCount());
623
624 APInt::tcAssign(significandParts(), rhs.significandParts(),
Neil Booth4f881702007-09-26 21:33:42 +0000625 partCount());
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000626}
627
Neil Boothe5e01942007-10-14 10:39:51 +0000628/* Make this number a NaN, with an arbitrary but deterministic value
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000629 for the significand. If double or longer, this is a signalling NaN,
Mike Stumpc5ca7132009-05-30 03:49:43 +0000630 which may not be ideal. If float, this is QNaN(0). */
John McCalle12b7382010-02-28 02:51:25 +0000631void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
Neil Boothe5e01942007-10-14 10:39:51 +0000632{
633 category = fcNaN;
John McCalle12b7382010-02-28 02:51:25 +0000634 sign = Negative;
635
John McCall165e96b2010-02-28 12:49:50 +0000636 integerPart *significand = significandParts();
637 unsigned numParts = partCount();
638
John McCalle12b7382010-02-28 02:51:25 +0000639 // Set the significand bits to the fill.
John McCall165e96b2010-02-28 12:49:50 +0000640 if (!fill || fill->getNumWords() < numParts)
641 APInt::tcSet(significand, 0, numParts);
642 if (fill) {
John McCalld44c6cc2010-03-01 18:38:45 +0000643 APInt::tcAssign(significand, fill->getRawData(),
644 std::min(fill->getNumWords(), numParts));
John McCall165e96b2010-02-28 12:49:50 +0000645
646 // Zero out the excess bits of the significand.
647 unsigned bitsToPreserve = semantics->precision - 1;
648 unsigned part = bitsToPreserve / 64;
649 bitsToPreserve %= 64;
650 significand[part] &= ((1ULL << bitsToPreserve) - 1);
651 for (part++; part != numParts; ++part)
652 significand[part] = 0;
653 }
654
655 unsigned QNaNBit = semantics->precision - 2;
John McCalle12b7382010-02-28 02:51:25 +0000656
657 if (SNaN) {
658 // We always have to clear the QNaN bit to make it an SNaN.
John McCall165e96b2010-02-28 12:49:50 +0000659 APInt::tcClearBit(significand, QNaNBit);
John McCalle12b7382010-02-28 02:51:25 +0000660
661 // If there are no bits set in the payload, we have to set
662 // *something* to make it a NaN instead of an infinity;
663 // conventionally, this is the next bit down from the QNaN bit.
John McCall165e96b2010-02-28 12:49:50 +0000664 if (APInt::tcIsZero(significand, numParts))
665 APInt::tcSetBit(significand, QNaNBit - 1);
John McCalle12b7382010-02-28 02:51:25 +0000666 } else {
667 // We always have to set the QNaN bit to make it a QNaN.
John McCall165e96b2010-02-28 12:49:50 +0000668 APInt::tcSetBit(significand, QNaNBit);
John McCalle12b7382010-02-28 02:51:25 +0000669 }
John McCall165e96b2010-02-28 12:49:50 +0000670
671 // For x87 extended precision, we want to make a NaN, not a
672 // pseudo-NaN. Maybe we should expose the ability to make
673 // pseudo-NaNs?
674 if (semantics == &APFloat::x87DoubleExtended)
675 APInt::tcSetBit(significand, QNaNBit + 1);
John McCalle12b7382010-02-28 02:51:25 +0000676}
677
678APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
679 const APInt *fill) {
680 APFloat value(Sem, uninitialized);
681 value.makeNaN(SNaN, Negative, fill);
682 return value;
Neil Boothe5e01942007-10-14 10:39:51 +0000683}
684
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000685APFloat &
686APFloat::operator=(const APFloat &rhs)
687{
Dan Gohman16e02092010-03-24 19:38:02 +0000688 if (this != &rhs) {
689 if (semantics != rhs.semantics) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000690 freeSignificand();
691 initialize(rhs.semantics);
692 }
693 assign(rhs);
694 }
695
696 return *this;
697}
698
Dale Johannesen343e7702007-08-24 00:56:33 +0000699bool
Dale Johannesen12595d72007-08-24 22:09:56 +0000700APFloat::bitwiseIsEqual(const APFloat &rhs) const {
Dale Johannesen343e7702007-08-24 00:56:33 +0000701 if (this == &rhs)
702 return true;
703 if (semantics != rhs.semantics ||
Dale Johanneseneaf08942007-08-31 04:03:46 +0000704 category != rhs.category ||
705 sign != rhs.sign)
Dale Johannesen343e7702007-08-24 00:56:33 +0000706 return false;
Dan Gohmanb10abe12008-01-29 12:08:20 +0000707 if (semantics==(const llvm::fltSemantics*)&PPCDoubleDouble &&
Dale Johannesena471c2e2007-10-11 18:07:22 +0000708 sign2 != rhs.sign2)
709 return false;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000710 if (category==fcZero || category==fcInfinity)
Dale Johannesen343e7702007-08-24 00:56:33 +0000711 return true;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000712 else if (category==fcNormal && exponent!=rhs.exponent)
713 return false;
Dan Gohmanb10abe12008-01-29 12:08:20 +0000714 else if (semantics==(const llvm::fltSemantics*)&PPCDoubleDouble &&
Dale Johannesena471c2e2007-10-11 18:07:22 +0000715 exponent2!=rhs.exponent2)
716 return false;
Dale Johannesen343e7702007-08-24 00:56:33 +0000717 else {
Dale Johannesen343e7702007-08-24 00:56:33 +0000718 int i= partCount();
719 const integerPart* p=significandParts();
720 const integerPart* q=rhs.significandParts();
721 for (; i>0; i--, p++, q++) {
722 if (*p != *q)
723 return false;
724 }
725 return true;
726 }
727}
728
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000729APFloat::APFloat(const fltSemantics &ourSemantics, integerPart value)
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000730 : exponent2(0), sign2(0) {
Neil Boothcaf19d72007-10-14 10:29:28 +0000731 assertArithmeticOK(ourSemantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000732 initialize(&ourSemantics);
733 sign = 0;
734 zeroSignificand();
735 exponent = ourSemantics.precision - 1;
736 significandParts()[0] = value;
737 normalize(rmNearestTiesToEven, lfExactlyZero);
738}
739
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000740APFloat::APFloat(const fltSemantics &ourSemantics) : exponent2(0), sign2(0) {
Chris Lattnerd7bd78e2009-09-17 01:08:43 +0000741 assertArithmeticOK(ourSemantics);
742 initialize(&ourSemantics);
743 category = fcZero;
744 sign = false;
745}
746
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000747APFloat::APFloat(const fltSemantics &ourSemantics, uninitializedTag tag)
748 : exponent2(0), sign2(0) {
John McCalle12b7382010-02-28 02:51:25 +0000749 assertArithmeticOK(ourSemantics);
750 // Allocates storage if necessary but does not initialize it.
751 initialize(&ourSemantics);
752}
Chris Lattnerd7bd78e2009-09-17 01:08:43 +0000753
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000754APFloat::APFloat(const fltSemantics &ourSemantics,
John McCalle12b7382010-02-28 02:51:25 +0000755 fltCategory ourCategory, bool negative)
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000756 : exponent2(0), sign2(0) {
Neil Boothcaf19d72007-10-14 10:29:28 +0000757 assertArithmeticOK(ourSemantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000758 initialize(&ourSemantics);
759 category = ourCategory;
760 sign = negative;
Mike Stumpc5ca7132009-05-30 03:49:43 +0000761 if (category == fcNormal)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000762 category = fcZero;
Neil Boothe5e01942007-10-14 10:39:51 +0000763 else if (ourCategory == fcNaN)
John McCalle12b7382010-02-28 02:51:25 +0000764 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000765}
766
Benjamin Kramer38e59892010-07-14 22:38:02 +0000767APFloat::APFloat(const fltSemantics &ourSemantics, StringRef text)
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000768 : exponent2(0), sign2(0) {
Neil Boothcaf19d72007-10-14 10:29:28 +0000769 assertArithmeticOK(ourSemantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000770 initialize(&ourSemantics);
771 convertFromString(text, rmNearestTiesToEven);
772}
773
Bill Wendlingf09a8b52011-03-18 09:09:44 +0000774APFloat::APFloat(const APFloat &rhs) : exponent2(0), sign2(0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000775 initialize(rhs.semantics);
776 assign(rhs);
777}
778
779APFloat::~APFloat()
780{
781 freeSignificand();
782}
783
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000784// Profile - This method 'profiles' an APFloat for use with FoldingSet.
785void APFloat::Profile(FoldingSetNodeID& ID) const {
Dale Johannesen7111b022008-10-09 18:53:47 +0000786 ID.Add(bitcastToAPInt());
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000787}
788
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000789unsigned int
790APFloat::partCount() const
791{
Dale Johannesena72a5a02007-09-20 23:47:58 +0000792 return partCountForBits(semantics->precision + 1);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000793}
794
795unsigned int
796APFloat::semanticsPrecision(const fltSemantics &semantics)
797{
798 return semantics.precision;
799}
800
801const integerPart *
802APFloat::significandParts() const
803{
804 return const_cast<APFloat *>(this)->significandParts();
805}
806
807integerPart *
808APFloat::significandParts()
809{
Dale Johanneseneaf08942007-08-31 04:03:46 +0000810 assert(category == fcNormal || category == fcNaN);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000811
Evan Cheng99ebfa52009-10-27 21:35:42 +0000812 if (partCount() > 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000813 return significand.parts;
814 else
815 return &significand.part;
816}
817
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000818void
819APFloat::zeroSignificand()
820{
821 category = fcNormal;
822 APInt::tcSet(significandParts(), 0, partCount());
823}
824
825/* Increment an fcNormal floating point number's significand. */
826void
827APFloat::incrementSignificand()
828{
829 integerPart carry;
830
831 carry = APInt::tcIncrement(significandParts(), partCount());
832
833 /* Our callers should never cause us to overflow. */
834 assert(carry == 0);
835}
836
837/* Add the significand of the RHS. Returns the carry flag. */
838integerPart
839APFloat::addSignificand(const APFloat &rhs)
840{
841 integerPart *parts;
842
843 parts = significandParts();
844
845 assert(semantics == rhs.semantics);
846 assert(exponent == rhs.exponent);
847
848 return APInt::tcAdd(parts, rhs.significandParts(), 0, partCount());
849}
850
851/* Subtract the significand of the RHS with a borrow flag. Returns
852 the borrow flag. */
853integerPart
854APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
855{
856 integerPart *parts;
857
858 parts = significandParts();
859
860 assert(semantics == rhs.semantics);
861 assert(exponent == rhs.exponent);
862
863 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
Neil Booth4f881702007-09-26 21:33:42 +0000864 partCount());
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000865}
866
867/* Multiply the significand of the RHS. If ADDEND is non-NULL, add it
868 on to the full-precision result of the multiplication. Returns the
869 lost fraction. */
870lostFraction
871APFloat::multiplySignificand(const APFloat &rhs, const APFloat *addend)
872{
Neil Booth4f881702007-09-26 21:33:42 +0000873 unsigned int omsb; // One, not zero, based MSB.
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000874 unsigned int partsCount, newPartsCount, precision;
875 integerPart *lhsSignificand;
876 integerPart scratch[4];
877 integerPart *fullSignificand;
878 lostFraction lost_fraction;
Dale Johannesen23a98552008-10-09 23:00:39 +0000879 bool ignored;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000880
881 assert(semantics == rhs.semantics);
882
883 precision = semantics->precision;
884 newPartsCount = partCountForBits(precision * 2);
885
Dan Gohman16e02092010-03-24 19:38:02 +0000886 if (newPartsCount > 4)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000887 fullSignificand = new integerPart[newPartsCount];
888 else
889 fullSignificand = scratch;
890
891 lhsSignificand = significandParts();
892 partsCount = partCount();
893
894 APInt::tcFullMultiply(fullSignificand, lhsSignificand,
Neil Booth978661d2007-10-06 00:24:48 +0000895 rhs.significandParts(), partsCount, partsCount);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000896
897 lost_fraction = lfExactlyZero;
898 omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1;
899 exponent += rhs.exponent;
900
Dan Gohman16e02092010-03-24 19:38:02 +0000901 if (addend) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000902 Significand savedSignificand = significand;
903 const fltSemantics *savedSemantics = semantics;
904 fltSemantics extendedSemantics;
905 opStatus status;
906 unsigned int extendedPrecision;
907
908 /* Normalize our MSB. */
909 extendedPrecision = precision + precision - 1;
Dan Gohman16e02092010-03-24 19:38:02 +0000910 if (omsb != extendedPrecision) {
911 APInt::tcShiftLeft(fullSignificand, newPartsCount,
912 extendedPrecision - omsb);
913 exponent -= extendedPrecision - omsb;
914 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000915
916 /* Create new semantics. */
917 extendedSemantics = *semantics;
918 extendedSemantics.precision = extendedPrecision;
919
Dan Gohman16e02092010-03-24 19:38:02 +0000920 if (newPartsCount == 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000921 significand.part = fullSignificand[0];
922 else
923 significand.parts = fullSignificand;
924 semantics = &extendedSemantics;
925
926 APFloat extendedAddend(*addend);
Dale Johannesen23a98552008-10-09 23:00:39 +0000927 status = extendedAddend.convert(extendedSemantics, rmTowardZero, &ignored);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000928 assert(status == opOK);
929 lost_fraction = addOrSubtractSignificand(extendedAddend, false);
930
931 /* Restore our state. */
Dan Gohman16e02092010-03-24 19:38:02 +0000932 if (newPartsCount == 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000933 fullSignificand[0] = significand.part;
934 significand = savedSignificand;
935 semantics = savedSemantics;
936
937 omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1;
938 }
939
940 exponent -= (precision - 1);
941
Dan Gohman16e02092010-03-24 19:38:02 +0000942 if (omsb > precision) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000943 unsigned int bits, significantParts;
944 lostFraction lf;
945
946 bits = omsb - precision;
947 significantParts = partCountForBits(omsb);
948 lf = shiftRight(fullSignificand, significantParts, bits);
949 lost_fraction = combineLostFractions(lf, lost_fraction);
950 exponent += bits;
951 }
952
953 APInt::tcAssign(lhsSignificand, fullSignificand, partsCount);
954
Dan Gohman16e02092010-03-24 19:38:02 +0000955 if (newPartsCount > 4)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000956 delete [] fullSignificand;
957
958 return lost_fraction;
959}
960
961/* Multiply the significands of LHS and RHS to DST. */
962lostFraction
963APFloat::divideSignificand(const APFloat &rhs)
964{
965 unsigned int bit, i, partsCount;
966 const integerPart *rhsSignificand;
967 integerPart *lhsSignificand, *dividend, *divisor;
968 integerPart scratch[4];
969 lostFraction lost_fraction;
970
971 assert(semantics == rhs.semantics);
972
973 lhsSignificand = significandParts();
974 rhsSignificand = rhs.significandParts();
975 partsCount = partCount();
976
Dan Gohman16e02092010-03-24 19:38:02 +0000977 if (partsCount > 2)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000978 dividend = new integerPart[partsCount * 2];
979 else
980 dividend = scratch;
981
982 divisor = dividend + partsCount;
983
984 /* Copy the dividend and divisor as they will be modified in-place. */
Dan Gohman16e02092010-03-24 19:38:02 +0000985 for (i = 0; i < partsCount; i++) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000986 dividend[i] = lhsSignificand[i];
987 divisor[i] = rhsSignificand[i];
988 lhsSignificand[i] = 0;
989 }
990
991 exponent -= rhs.exponent;
992
993 unsigned int precision = semantics->precision;
994
995 /* Normalize the divisor. */
996 bit = precision - APInt::tcMSB(divisor, partsCount) - 1;
Dan Gohman16e02092010-03-24 19:38:02 +0000997 if (bit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000998 exponent += bit;
999 APInt::tcShiftLeft(divisor, partsCount, bit);
1000 }
1001
1002 /* Normalize the dividend. */
1003 bit = precision - APInt::tcMSB(dividend, partsCount) - 1;
Dan Gohman16e02092010-03-24 19:38:02 +00001004 if (bit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001005 exponent -= bit;
1006 APInt::tcShiftLeft(dividend, partsCount, bit);
1007 }
1008
Neil Booth96c74712007-10-12 16:02:31 +00001009 /* Ensure the dividend >= divisor initially for the loop below.
1010 Incidentally, this means that the division loop below is
1011 guaranteed to set the integer bit to one. */
Dan Gohman16e02092010-03-24 19:38:02 +00001012 if (APInt::tcCompare(dividend, divisor, partsCount) < 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001013 exponent--;
1014 APInt::tcShiftLeft(dividend, partsCount, 1);
1015 assert(APInt::tcCompare(dividend, divisor, partsCount) >= 0);
1016 }
1017
1018 /* Long division. */
Dan Gohman16e02092010-03-24 19:38:02 +00001019 for (bit = precision; bit; bit -= 1) {
1020 if (APInt::tcCompare(dividend, divisor, partsCount) >= 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001021 APInt::tcSubtract(dividend, divisor, 0, partsCount);
1022 APInt::tcSetBit(lhsSignificand, bit - 1);
1023 }
1024
1025 APInt::tcShiftLeft(dividend, partsCount, 1);
1026 }
1027
1028 /* Figure out the lost fraction. */
1029 int cmp = APInt::tcCompare(dividend, divisor, partsCount);
1030
Dan Gohman16e02092010-03-24 19:38:02 +00001031 if (cmp > 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001032 lost_fraction = lfMoreThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001033 else if (cmp == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001034 lost_fraction = lfExactlyHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001035 else if (APInt::tcIsZero(dividend, partsCount))
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001036 lost_fraction = lfExactlyZero;
1037 else
1038 lost_fraction = lfLessThanHalf;
1039
Dan Gohman16e02092010-03-24 19:38:02 +00001040 if (partsCount > 2)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001041 delete [] dividend;
1042
1043 return lost_fraction;
1044}
1045
1046unsigned int
1047APFloat::significandMSB() const
1048{
1049 return APInt::tcMSB(significandParts(), partCount());
1050}
1051
1052unsigned int
1053APFloat::significandLSB() const
1054{
1055 return APInt::tcLSB(significandParts(), partCount());
1056}
1057
1058/* Note that a zero result is NOT normalized to fcZero. */
1059lostFraction
1060APFloat::shiftSignificandRight(unsigned int bits)
1061{
1062 /* Our exponent should not overflow. */
1063 assert((exponent_t) (exponent + bits) >= exponent);
1064
1065 exponent += bits;
1066
1067 return shiftRight(significandParts(), partCount(), bits);
1068}
1069
1070/* Shift the significand left BITS bits, subtract BITS from its exponent. */
1071void
1072APFloat::shiftSignificandLeft(unsigned int bits)
1073{
1074 assert(bits < semantics->precision);
1075
Dan Gohman16e02092010-03-24 19:38:02 +00001076 if (bits) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001077 unsigned int partsCount = partCount();
1078
1079 APInt::tcShiftLeft(significandParts(), partsCount, bits);
1080 exponent -= bits;
1081
1082 assert(!APInt::tcIsZero(significandParts(), partsCount));
1083 }
1084}
1085
1086APFloat::cmpResult
1087APFloat::compareAbsoluteValue(const APFloat &rhs) const
1088{
1089 int compare;
1090
1091 assert(semantics == rhs.semantics);
1092 assert(category == fcNormal);
1093 assert(rhs.category == fcNormal);
1094
1095 compare = exponent - rhs.exponent;
1096
1097 /* If exponents are equal, do an unsigned bignum comparison of the
1098 significands. */
Dan Gohman16e02092010-03-24 19:38:02 +00001099 if (compare == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001100 compare = APInt::tcCompare(significandParts(), rhs.significandParts(),
Neil Booth4f881702007-09-26 21:33:42 +00001101 partCount());
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001102
Dan Gohman16e02092010-03-24 19:38:02 +00001103 if (compare > 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001104 return cmpGreaterThan;
Dan Gohman16e02092010-03-24 19:38:02 +00001105 else if (compare < 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001106 return cmpLessThan;
1107 else
1108 return cmpEqual;
1109}
1110
1111/* Handle overflow. Sign is preserved. We either become infinity or
1112 the largest finite number. */
1113APFloat::opStatus
1114APFloat::handleOverflow(roundingMode rounding_mode)
1115{
1116 /* Infinity? */
Dan Gohman16e02092010-03-24 19:38:02 +00001117 if (rounding_mode == rmNearestTiesToEven ||
1118 rounding_mode == rmNearestTiesToAway ||
1119 (rounding_mode == rmTowardPositive && !sign) ||
1120 (rounding_mode == rmTowardNegative && sign)) {
1121 category = fcInfinity;
1122 return (opStatus) (opOverflow | opInexact);
1123 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001124
1125 /* Otherwise we become the largest finite number. */
1126 category = fcNormal;
1127 exponent = semantics->maxExponent;
1128 APInt::tcSetLeastSignificantBits(significandParts(), partCount(),
Neil Booth4f881702007-09-26 21:33:42 +00001129 semantics->precision);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001130
1131 return opInexact;
1132}
1133
Neil Boothb7dea4c2007-10-03 15:16:41 +00001134/* Returns TRUE if, when truncating the current number, with BIT the
1135 new LSB, with the given lost fraction and rounding mode, the result
1136 would need to be rounded away from zero (i.e., by increasing the
1137 signficand). This routine must work for fcZero of both signs, and
1138 fcNormal numbers. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001139bool
1140APFloat::roundAwayFromZero(roundingMode rounding_mode,
Neil Boothb7dea4c2007-10-03 15:16:41 +00001141 lostFraction lost_fraction,
1142 unsigned int bit) const
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001143{
Dale Johanneseneaf08942007-08-31 04:03:46 +00001144 /* NaNs and infinities should not have lost fractions. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001145 assert(category == fcNormal || category == fcZero);
1146
Neil Boothb7dea4c2007-10-03 15:16:41 +00001147 /* Current callers never pass this so we don't handle it. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001148 assert(lost_fraction != lfExactlyZero);
1149
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001150 switch (rounding_mode) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001151 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001152 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001153
1154 case rmNearestTiesToAway:
1155 return lost_fraction == lfExactlyHalf || lost_fraction == lfMoreThanHalf;
1156
1157 case rmNearestTiesToEven:
Dan Gohman16e02092010-03-24 19:38:02 +00001158 if (lost_fraction == lfMoreThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001159 return true;
1160
1161 /* Our zeroes don't have a significand to test. */
Dan Gohman16e02092010-03-24 19:38:02 +00001162 if (lost_fraction == lfExactlyHalf && category != fcZero)
Neil Boothb7dea4c2007-10-03 15:16:41 +00001163 return APInt::tcExtractBit(significandParts(), bit);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001164
1165 return false;
1166
1167 case rmTowardZero:
1168 return false;
1169
1170 case rmTowardPositive:
1171 return sign == false;
1172
1173 case rmTowardNegative:
1174 return sign == true;
1175 }
1176}
1177
1178APFloat::opStatus
1179APFloat::normalize(roundingMode rounding_mode,
Neil Booth4f881702007-09-26 21:33:42 +00001180 lostFraction lost_fraction)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001181{
Neil Booth4f881702007-09-26 21:33:42 +00001182 unsigned int omsb; /* One, not zero, based MSB. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001183 int exponentChange;
1184
Dan Gohman16e02092010-03-24 19:38:02 +00001185 if (category != fcNormal)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001186 return opOK;
1187
1188 /* Before rounding normalize the exponent of fcNormal numbers. */
1189 omsb = significandMSB() + 1;
1190
Dan Gohman16e02092010-03-24 19:38:02 +00001191 if (omsb) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001192 /* OMSB is numbered from 1. We want to place it in the integer
1193 bit numbered PRECISON if possible, with a compensating change in
1194 the exponent. */
1195 exponentChange = omsb - semantics->precision;
1196
1197 /* If the resulting exponent is too high, overflow according to
1198 the rounding mode. */
Dan Gohman16e02092010-03-24 19:38:02 +00001199 if (exponent + exponentChange > semantics->maxExponent)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001200 return handleOverflow(rounding_mode);
1201
1202 /* Subnormal numbers have exponent minExponent, and their MSB
1203 is forced based on that. */
Dan Gohman16e02092010-03-24 19:38:02 +00001204 if (exponent + exponentChange < semantics->minExponent)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001205 exponentChange = semantics->minExponent - exponent;
1206
1207 /* Shifting left is easy as we don't lose precision. */
Dan Gohman16e02092010-03-24 19:38:02 +00001208 if (exponentChange < 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001209 assert(lost_fraction == lfExactlyZero);
1210
1211 shiftSignificandLeft(-exponentChange);
1212
1213 return opOK;
1214 }
1215
Dan Gohman16e02092010-03-24 19:38:02 +00001216 if (exponentChange > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001217 lostFraction lf;
1218
1219 /* Shift right and capture any new lost fraction. */
1220 lf = shiftSignificandRight(exponentChange);
1221
1222 lost_fraction = combineLostFractions(lf, lost_fraction);
1223
1224 /* Keep OMSB up-to-date. */
Dan Gohman16e02092010-03-24 19:38:02 +00001225 if (omsb > (unsigned) exponentChange)
Neil Booth96c74712007-10-12 16:02:31 +00001226 omsb -= exponentChange;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001227 else
Neil Booth4f881702007-09-26 21:33:42 +00001228 omsb = 0;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001229 }
1230 }
1231
1232 /* Now round the number according to rounding_mode given the lost
1233 fraction. */
1234
1235 /* As specified in IEEE 754, since we do not trap we do not report
1236 underflow for exact results. */
Dan Gohman16e02092010-03-24 19:38:02 +00001237 if (lost_fraction == lfExactlyZero) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001238 /* Canonicalize zeroes. */
Dan Gohman16e02092010-03-24 19:38:02 +00001239 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001240 category = fcZero;
1241
1242 return opOK;
1243 }
1244
1245 /* Increment the significand if we're rounding away from zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001246 if (roundAwayFromZero(rounding_mode, lost_fraction, 0)) {
1247 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001248 exponent = semantics->minExponent;
1249
1250 incrementSignificand();
1251 omsb = significandMSB() + 1;
1252
1253 /* Did the significand increment overflow? */
Dan Gohman16e02092010-03-24 19:38:02 +00001254 if (omsb == (unsigned) semantics->precision + 1) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001255 /* Renormalize by incrementing the exponent and shifting our
Neil Booth4f881702007-09-26 21:33:42 +00001256 significand right one. However if we already have the
1257 maximum exponent we overflow to infinity. */
Dan Gohman16e02092010-03-24 19:38:02 +00001258 if (exponent == semantics->maxExponent) {
Neil Booth4f881702007-09-26 21:33:42 +00001259 category = fcInfinity;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001260
Neil Booth4f881702007-09-26 21:33:42 +00001261 return (opStatus) (opOverflow | opInexact);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001262 }
1263
1264 shiftSignificandRight(1);
1265
1266 return opInexact;
1267 }
1268 }
1269
1270 /* The normal case - we were and are not denormal, and any
1271 significand increment above didn't overflow. */
Dan Gohman16e02092010-03-24 19:38:02 +00001272 if (omsb == semantics->precision)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001273 return opInexact;
1274
1275 /* We have a non-zero denormal. */
1276 assert(omsb < semantics->precision);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001277
1278 /* Canonicalize zeroes. */
Dan Gohman16e02092010-03-24 19:38:02 +00001279 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001280 category = fcZero;
1281
1282 /* The fcZero case is a denormal that underflowed to zero. */
1283 return (opStatus) (opUnderflow | opInexact);
1284}
1285
1286APFloat::opStatus
1287APFloat::addOrSubtractSpecials(const APFloat &rhs, bool subtract)
1288{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001289 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001290 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001291 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001292
Dale Johanneseneaf08942007-08-31 04:03:46 +00001293 case convolve(fcNaN, fcZero):
1294 case convolve(fcNaN, fcNormal):
1295 case convolve(fcNaN, fcInfinity):
1296 case convolve(fcNaN, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001297 case convolve(fcNormal, fcZero):
1298 case convolve(fcInfinity, fcNormal):
1299 case convolve(fcInfinity, fcZero):
1300 return opOK;
1301
Dale Johanneseneaf08942007-08-31 04:03:46 +00001302 case convolve(fcZero, fcNaN):
1303 case convolve(fcNormal, fcNaN):
1304 case convolve(fcInfinity, fcNaN):
1305 category = fcNaN;
1306 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001307 return opOK;
1308
1309 case convolve(fcNormal, fcInfinity):
1310 case convolve(fcZero, fcInfinity):
1311 category = fcInfinity;
1312 sign = rhs.sign ^ subtract;
1313 return opOK;
1314
1315 case convolve(fcZero, fcNormal):
1316 assign(rhs);
1317 sign = rhs.sign ^ subtract;
1318 return opOK;
1319
1320 case convolve(fcZero, fcZero):
1321 /* Sign depends on rounding mode; handled by caller. */
1322 return opOK;
1323
1324 case convolve(fcInfinity, fcInfinity):
1325 /* Differently signed infinities can only be validly
1326 subtracted. */
Dan Gohman16e02092010-03-24 19:38:02 +00001327 if (((sign ^ rhs.sign)!=0) != subtract) {
Neil Boothe5e01942007-10-14 10:39:51 +00001328 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001329 return opInvalidOp;
1330 }
1331
1332 return opOK;
1333
1334 case convolve(fcNormal, fcNormal):
1335 return opDivByZero;
1336 }
1337}
1338
1339/* Add or subtract two normal numbers. */
1340lostFraction
1341APFloat::addOrSubtractSignificand(const APFloat &rhs, bool subtract)
1342{
1343 integerPart carry;
1344 lostFraction lost_fraction;
1345 int bits;
1346
1347 /* Determine if the operation on the absolute values is effectively
1348 an addition or subtraction. */
Hartmut Kaiser8df77a92007-10-25 23:15:31 +00001349 subtract ^= (sign ^ rhs.sign) ? true : false;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001350
1351 /* Are we bigger exponent-wise than the RHS? */
1352 bits = exponent - rhs.exponent;
1353
1354 /* Subtraction is more subtle than one might naively expect. */
Dan Gohman16e02092010-03-24 19:38:02 +00001355 if (subtract) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001356 APFloat temp_rhs(rhs);
1357 bool reverse;
1358
Chris Lattnerada530b2007-08-24 03:02:34 +00001359 if (bits == 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001360 reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan;
1361 lost_fraction = lfExactlyZero;
Chris Lattnerada530b2007-08-24 03:02:34 +00001362 } else if (bits > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001363 lost_fraction = temp_rhs.shiftSignificandRight(bits - 1);
1364 shiftSignificandLeft(1);
1365 reverse = false;
Chris Lattnerada530b2007-08-24 03:02:34 +00001366 } else {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001367 lost_fraction = shiftSignificandRight(-bits - 1);
1368 temp_rhs.shiftSignificandLeft(1);
1369 reverse = true;
1370 }
1371
Chris Lattnerada530b2007-08-24 03:02:34 +00001372 if (reverse) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001373 carry = temp_rhs.subtractSignificand
Neil Booth4f881702007-09-26 21:33:42 +00001374 (*this, lost_fraction != lfExactlyZero);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001375 copySignificand(temp_rhs);
1376 sign = !sign;
1377 } else {
1378 carry = subtractSignificand
Neil Booth4f881702007-09-26 21:33:42 +00001379 (temp_rhs, lost_fraction != lfExactlyZero);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001380 }
1381
1382 /* Invert the lost fraction - it was on the RHS and
1383 subtracted. */
Dan Gohman16e02092010-03-24 19:38:02 +00001384 if (lost_fraction == lfLessThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001385 lost_fraction = lfMoreThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001386 else if (lost_fraction == lfMoreThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001387 lost_fraction = lfLessThanHalf;
1388
1389 /* The code above is intended to ensure that no borrow is
1390 necessary. */
1391 assert(!carry);
1392 } else {
Dan Gohman16e02092010-03-24 19:38:02 +00001393 if (bits > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001394 APFloat temp_rhs(rhs);
1395
1396 lost_fraction = temp_rhs.shiftSignificandRight(bits);
1397 carry = addSignificand(temp_rhs);
1398 } else {
1399 lost_fraction = shiftSignificandRight(-bits);
1400 carry = addSignificand(rhs);
1401 }
1402
1403 /* We have a guard bit; generating a carry cannot happen. */
1404 assert(!carry);
1405 }
1406
1407 return lost_fraction;
1408}
1409
1410APFloat::opStatus
1411APFloat::multiplySpecials(const APFloat &rhs)
1412{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001413 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001414 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001415 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001416
Dale Johanneseneaf08942007-08-31 04:03:46 +00001417 case convolve(fcNaN, fcZero):
1418 case convolve(fcNaN, fcNormal):
1419 case convolve(fcNaN, fcInfinity):
1420 case convolve(fcNaN, fcNaN):
1421 return opOK;
1422
1423 case convolve(fcZero, fcNaN):
1424 case convolve(fcNormal, fcNaN):
1425 case convolve(fcInfinity, fcNaN):
1426 category = fcNaN;
1427 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001428 return opOK;
1429
1430 case convolve(fcNormal, fcInfinity):
1431 case convolve(fcInfinity, fcNormal):
1432 case convolve(fcInfinity, fcInfinity):
1433 category = fcInfinity;
1434 return opOK;
1435
1436 case convolve(fcZero, fcNormal):
1437 case convolve(fcNormal, fcZero):
1438 case convolve(fcZero, fcZero):
1439 category = fcZero;
1440 return opOK;
1441
1442 case convolve(fcZero, fcInfinity):
1443 case convolve(fcInfinity, fcZero):
Neil Boothe5e01942007-10-14 10:39:51 +00001444 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001445 return opInvalidOp;
1446
1447 case convolve(fcNormal, fcNormal):
1448 return opOK;
1449 }
1450}
1451
1452APFloat::opStatus
1453APFloat::divideSpecials(const APFloat &rhs)
1454{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001455 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001456 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001457 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001458
Dale Johanneseneaf08942007-08-31 04:03:46 +00001459 case convolve(fcNaN, fcZero):
1460 case convolve(fcNaN, fcNormal):
1461 case convolve(fcNaN, fcInfinity):
1462 case convolve(fcNaN, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001463 case convolve(fcInfinity, fcZero):
1464 case convolve(fcInfinity, fcNormal):
1465 case convolve(fcZero, fcInfinity):
1466 case convolve(fcZero, fcNormal):
1467 return opOK;
1468
Dale Johanneseneaf08942007-08-31 04:03:46 +00001469 case convolve(fcZero, fcNaN):
1470 case convolve(fcNormal, fcNaN):
1471 case convolve(fcInfinity, fcNaN):
1472 category = fcNaN;
1473 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001474 return opOK;
1475
1476 case convolve(fcNormal, fcInfinity):
1477 category = fcZero;
1478 return opOK;
1479
1480 case convolve(fcNormal, fcZero):
1481 category = fcInfinity;
1482 return opDivByZero;
1483
1484 case convolve(fcInfinity, fcInfinity):
1485 case convolve(fcZero, fcZero):
Neil Boothe5e01942007-10-14 10:39:51 +00001486 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001487 return opInvalidOp;
1488
1489 case convolve(fcNormal, fcNormal):
1490 return opOK;
1491 }
1492}
1493
Dale Johannesened6af242009-01-21 00:35:19 +00001494APFloat::opStatus
1495APFloat::modSpecials(const APFloat &rhs)
1496{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001497 switch (convolve(category, rhs.category)) {
Dale Johannesened6af242009-01-21 00:35:19 +00001498 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001499 llvm_unreachable(0);
Dale Johannesened6af242009-01-21 00:35:19 +00001500
1501 case convolve(fcNaN, fcZero):
1502 case convolve(fcNaN, fcNormal):
1503 case convolve(fcNaN, fcInfinity):
1504 case convolve(fcNaN, fcNaN):
1505 case convolve(fcZero, fcInfinity):
1506 case convolve(fcZero, fcNormal):
1507 case convolve(fcNormal, fcInfinity):
1508 return opOK;
1509
1510 case convolve(fcZero, fcNaN):
1511 case convolve(fcNormal, fcNaN):
1512 case convolve(fcInfinity, fcNaN):
1513 category = fcNaN;
1514 copySignificand(rhs);
1515 return opOK;
1516
1517 case convolve(fcNormal, fcZero):
1518 case convolve(fcInfinity, fcZero):
1519 case convolve(fcInfinity, fcNormal):
1520 case convolve(fcInfinity, fcInfinity):
1521 case convolve(fcZero, fcZero):
1522 makeNaN();
1523 return opInvalidOp;
1524
1525 case convolve(fcNormal, fcNormal):
1526 return opOK;
1527 }
1528}
1529
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001530/* Change sign. */
1531void
1532APFloat::changeSign()
1533{
1534 /* Look mummy, this one's easy. */
1535 sign = !sign;
1536}
1537
Dale Johannesene15c2db2007-08-31 23:35:31 +00001538void
1539APFloat::clearSign()
1540{
1541 /* So is this one. */
1542 sign = 0;
1543}
1544
1545void
1546APFloat::copySign(const APFloat &rhs)
1547{
1548 /* And this one. */
1549 sign = rhs.sign;
1550}
1551
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001552/* Normalized addition or subtraction. */
1553APFloat::opStatus
1554APFloat::addOrSubtract(const APFloat &rhs, roundingMode rounding_mode,
Neil Booth4f881702007-09-26 21:33:42 +00001555 bool subtract)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001556{
1557 opStatus fs;
1558
Neil Boothcaf19d72007-10-14 10:29:28 +00001559 assertArithmeticOK(*semantics);
1560
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001561 fs = addOrSubtractSpecials(rhs, subtract);
1562
1563 /* This return code means it was not a simple case. */
Dan Gohman16e02092010-03-24 19:38:02 +00001564 if (fs == opDivByZero) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001565 lostFraction lost_fraction;
1566
1567 lost_fraction = addOrSubtractSignificand(rhs, subtract);
1568 fs = normalize(rounding_mode, lost_fraction);
1569
1570 /* Can only be zero if we lost no fraction. */
1571 assert(category != fcZero || lost_fraction == lfExactlyZero);
1572 }
1573
1574 /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a
1575 positive zero unless rounding to minus infinity, except that
1576 adding two like-signed zeroes gives that zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001577 if (category == fcZero) {
1578 if (rhs.category != fcZero || (sign == rhs.sign) == subtract)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001579 sign = (rounding_mode == rmTowardNegative);
1580 }
1581
1582 return fs;
1583}
1584
1585/* Normalized addition. */
1586APFloat::opStatus
1587APFloat::add(const APFloat &rhs, roundingMode rounding_mode)
1588{
1589 return addOrSubtract(rhs, rounding_mode, false);
1590}
1591
1592/* Normalized subtraction. */
1593APFloat::opStatus
1594APFloat::subtract(const APFloat &rhs, roundingMode rounding_mode)
1595{
1596 return addOrSubtract(rhs, rounding_mode, true);
1597}
1598
1599/* Normalized multiply. */
1600APFloat::opStatus
1601APFloat::multiply(const APFloat &rhs, roundingMode rounding_mode)
1602{
1603 opStatus fs;
1604
Neil Boothcaf19d72007-10-14 10:29:28 +00001605 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001606 sign ^= rhs.sign;
1607 fs = multiplySpecials(rhs);
1608
Dan Gohman16e02092010-03-24 19:38:02 +00001609 if (category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001610 lostFraction lost_fraction = multiplySignificand(rhs, 0);
1611 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001612 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001613 fs = (opStatus) (fs | opInexact);
1614 }
1615
1616 return fs;
1617}
1618
1619/* Normalized divide. */
1620APFloat::opStatus
1621APFloat::divide(const APFloat &rhs, roundingMode rounding_mode)
1622{
1623 opStatus fs;
1624
Neil Boothcaf19d72007-10-14 10:29:28 +00001625 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001626 sign ^= rhs.sign;
1627 fs = divideSpecials(rhs);
1628
Dan Gohman16e02092010-03-24 19:38:02 +00001629 if (category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001630 lostFraction lost_fraction = divideSignificand(rhs);
1631 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001632 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001633 fs = (opStatus) (fs | opInexact);
1634 }
1635
1636 return fs;
1637}
1638
Dale Johannesen24b66a82009-01-20 18:35:05 +00001639/* Normalized remainder. This is not currently correct in all cases. */
1640APFloat::opStatus
1641APFloat::remainder(const APFloat &rhs)
1642{
1643 opStatus fs;
1644 APFloat V = *this;
1645 unsigned int origSign = sign;
1646
1647 assertArithmeticOK(*semantics);
1648 fs = V.divide(rhs, rmNearestTiesToEven);
1649 if (fs == opDivByZero)
1650 return fs;
1651
1652 int parts = partCount();
1653 integerPart *x = new integerPart[parts];
1654 bool ignored;
1655 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1656 rmNearestTiesToEven, &ignored);
1657 if (fs==opInvalidOp)
1658 return fs;
1659
1660 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
1661 rmNearestTiesToEven);
1662 assert(fs==opOK); // should always work
1663
1664 fs = V.multiply(rhs, rmNearestTiesToEven);
1665 assert(fs==opOK || fs==opInexact); // should not overflow or underflow
1666
1667 fs = subtract(V, rmNearestTiesToEven);
1668 assert(fs==opOK || fs==opInexact); // likewise
1669
1670 if (isZero())
1671 sign = origSign; // IEEE754 requires this
1672 delete[] x;
1673 return fs;
1674}
1675
Dan Gohman16e02092010-03-24 19:38:02 +00001676/* Normalized llvm frem (C fmod).
Dale Johannesen24b66a82009-01-20 18:35:05 +00001677 This is not currently correct in all cases. */
Dale Johannesene15c2db2007-08-31 23:35:31 +00001678APFloat::opStatus
1679APFloat::mod(const APFloat &rhs, roundingMode rounding_mode)
1680{
1681 opStatus fs;
Neil Boothcaf19d72007-10-14 10:29:28 +00001682 assertArithmeticOK(*semantics);
Dale Johannesened6af242009-01-21 00:35:19 +00001683 fs = modSpecials(rhs);
Dale Johannesene15c2db2007-08-31 23:35:31 +00001684
Dale Johannesened6af242009-01-21 00:35:19 +00001685 if (category == fcNormal && rhs.category == fcNormal) {
1686 APFloat V = *this;
1687 unsigned int origSign = sign;
Dale Johannesene15c2db2007-08-31 23:35:31 +00001688
Dale Johannesened6af242009-01-21 00:35:19 +00001689 fs = V.divide(rhs, rmNearestTiesToEven);
1690 if (fs == opDivByZero)
1691 return fs;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001692
Dale Johannesened6af242009-01-21 00:35:19 +00001693 int parts = partCount();
1694 integerPart *x = new integerPart[parts];
1695 bool ignored;
1696 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1697 rmTowardZero, &ignored);
1698 if (fs==opInvalidOp)
1699 return fs;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001700
Dale Johannesened6af242009-01-21 00:35:19 +00001701 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
1702 rmNearestTiesToEven);
1703 assert(fs==opOK); // should always work
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001704
Dale Johannesened6af242009-01-21 00:35:19 +00001705 fs = V.multiply(rhs, rounding_mode);
1706 assert(fs==opOK || fs==opInexact); // should not overflow or underflow
1707
1708 fs = subtract(V, rounding_mode);
1709 assert(fs==opOK || fs==opInexact); // likewise
1710
1711 if (isZero())
1712 sign = origSign; // IEEE754 requires this
1713 delete[] x;
1714 }
Dale Johannesene15c2db2007-08-31 23:35:31 +00001715 return fs;
1716}
1717
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001718/* Normalized fused-multiply-add. */
1719APFloat::opStatus
1720APFloat::fusedMultiplyAdd(const APFloat &multiplicand,
Neil Booth4f881702007-09-26 21:33:42 +00001721 const APFloat &addend,
1722 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001723{
1724 opStatus fs;
1725
Neil Boothcaf19d72007-10-14 10:29:28 +00001726 assertArithmeticOK(*semantics);
1727
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001728 /* Post-multiplication sign, before addition. */
1729 sign ^= multiplicand.sign;
1730
1731 /* If and only if all arguments are normal do we need to do an
1732 extended-precision calculation. */
Dan Gohman16e02092010-03-24 19:38:02 +00001733 if (category == fcNormal &&
1734 multiplicand.category == fcNormal &&
1735 addend.category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001736 lostFraction lost_fraction;
1737
1738 lost_fraction = multiplySignificand(multiplicand, &addend);
1739 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001740 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001741 fs = (opStatus) (fs | opInexact);
1742
1743 /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a
1744 positive zero unless rounding to minus infinity, except that
1745 adding two like-signed zeroes gives that zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001746 if (category == fcZero && sign != addend.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001747 sign = (rounding_mode == rmTowardNegative);
1748 } else {
1749 fs = multiplySpecials(multiplicand);
1750
1751 /* FS can only be opOK or opInvalidOp. There is no more work
1752 to do in the latter case. The IEEE-754R standard says it is
1753 implementation-defined in this case whether, if ADDEND is a
Dale Johanneseneaf08942007-08-31 04:03:46 +00001754 quiet NaN, we raise invalid op; this implementation does so.
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001755
1756 If we need to do the addition we can do so with normal
1757 precision. */
Dan Gohman16e02092010-03-24 19:38:02 +00001758 if (fs == opOK)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001759 fs = addOrSubtract(addend, rounding_mode, false);
1760 }
1761
1762 return fs;
1763}
1764
1765/* Comparison requires normalized numbers. */
1766APFloat::cmpResult
1767APFloat::compare(const APFloat &rhs) const
1768{
1769 cmpResult result;
1770
Neil Boothcaf19d72007-10-14 10:29:28 +00001771 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001772 assert(semantics == rhs.semantics);
1773
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001774 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001775 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001776 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001777
Dale Johanneseneaf08942007-08-31 04:03:46 +00001778 case convolve(fcNaN, fcZero):
1779 case convolve(fcNaN, fcNormal):
1780 case convolve(fcNaN, fcInfinity):
1781 case convolve(fcNaN, fcNaN):
1782 case convolve(fcZero, fcNaN):
1783 case convolve(fcNormal, fcNaN):
1784 case convolve(fcInfinity, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001785 return cmpUnordered;
1786
1787 case convolve(fcInfinity, fcNormal):
1788 case convolve(fcInfinity, fcZero):
1789 case convolve(fcNormal, fcZero):
Dan Gohman16e02092010-03-24 19:38:02 +00001790 if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001791 return cmpLessThan;
1792 else
1793 return cmpGreaterThan;
1794
1795 case convolve(fcNormal, fcInfinity):
1796 case convolve(fcZero, fcInfinity):
1797 case convolve(fcZero, fcNormal):
Dan Gohman16e02092010-03-24 19:38:02 +00001798 if (rhs.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001799 return cmpGreaterThan;
1800 else
1801 return cmpLessThan;
1802
1803 case convolve(fcInfinity, fcInfinity):
Dan Gohman16e02092010-03-24 19:38:02 +00001804 if (sign == rhs.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001805 return cmpEqual;
Dan Gohman16e02092010-03-24 19:38:02 +00001806 else if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001807 return cmpLessThan;
1808 else
1809 return cmpGreaterThan;
1810
1811 case convolve(fcZero, fcZero):
1812 return cmpEqual;
1813
1814 case convolve(fcNormal, fcNormal):
1815 break;
1816 }
1817
1818 /* Two normal numbers. Do they have the same sign? */
Dan Gohman16e02092010-03-24 19:38:02 +00001819 if (sign != rhs.sign) {
1820 if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001821 result = cmpLessThan;
1822 else
1823 result = cmpGreaterThan;
1824 } else {
1825 /* Compare absolute values; invert result if negative. */
1826 result = compareAbsoluteValue(rhs);
1827
Dan Gohman16e02092010-03-24 19:38:02 +00001828 if (sign) {
1829 if (result == cmpLessThan)
Neil Booth4f881702007-09-26 21:33:42 +00001830 result = cmpGreaterThan;
Dan Gohman16e02092010-03-24 19:38:02 +00001831 else if (result == cmpGreaterThan)
Neil Booth4f881702007-09-26 21:33:42 +00001832 result = cmpLessThan;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001833 }
1834 }
1835
1836 return result;
1837}
1838
Dale Johannesen23a98552008-10-09 23:00:39 +00001839/// APFloat::convert - convert a value of one floating point type to another.
1840/// The return value corresponds to the IEEE754 exceptions. *losesInfo
1841/// records whether the transformation lost information, i.e. whether
1842/// converting the result back to the original type will produce the
1843/// original value (this is almost the same as return value==fsOK, but there
1844/// are edge cases where this is not so).
1845
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001846APFloat::opStatus
1847APFloat::convert(const fltSemantics &toSemantics,
Dale Johannesen23a98552008-10-09 23:00:39 +00001848 roundingMode rounding_mode, bool *losesInfo)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001849{
Neil Boothc8db43d2007-09-22 02:56:19 +00001850 lostFraction lostFraction;
1851 unsigned int newPartCount, oldPartCount;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001852 opStatus fs;
Neil Booth4f881702007-09-26 21:33:42 +00001853
Neil Boothcaf19d72007-10-14 10:29:28 +00001854 assertArithmeticOK(*semantics);
Dale Johannesen79f82f92008-04-20 01:34:03 +00001855 assertArithmeticOK(toSemantics);
Neil Boothc8db43d2007-09-22 02:56:19 +00001856 lostFraction = lfExactlyZero;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001857 newPartCount = partCountForBits(toSemantics.precision + 1);
Neil Boothc8db43d2007-09-22 02:56:19 +00001858 oldPartCount = partCount();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001859
Neil Boothc8db43d2007-09-22 02:56:19 +00001860 /* Handle storage complications. If our new form is wider,
1861 re-allocate our bit pattern into wider storage. If it is
1862 narrower, we ignore the excess parts, but if narrowing to a
Dale Johannesen902ff942007-09-25 17:25:00 +00001863 single part we need to free the old storage.
1864 Be careful not to reference significandParts for zeroes
1865 and infinities, since it aborts. */
Neil Boothc8db43d2007-09-22 02:56:19 +00001866 if (newPartCount > oldPartCount) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001867 integerPart *newParts;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001868 newParts = new integerPart[newPartCount];
1869 APInt::tcSet(newParts, 0, newPartCount);
Dale Johannesen902ff942007-09-25 17:25:00 +00001870 if (category==fcNormal || category==fcNaN)
1871 APInt::tcAssign(newParts, significandParts(), oldPartCount);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001872 freeSignificand();
1873 significand.parts = newParts;
Neil Boothc8db43d2007-09-22 02:56:19 +00001874 } else if (newPartCount < oldPartCount) {
1875 /* Capture any lost fraction through truncation of parts so we get
1876 correct rounding whilst normalizing. */
Dale Johannesen902ff942007-09-25 17:25:00 +00001877 if (category==fcNormal)
1878 lostFraction = lostFractionThroughTruncation
1879 (significandParts(), oldPartCount, toSemantics.precision);
1880 if (newPartCount == 1) {
1881 integerPart newPart = 0;
Neil Booth4f881702007-09-26 21:33:42 +00001882 if (category==fcNormal || category==fcNaN)
Dale Johannesen902ff942007-09-25 17:25:00 +00001883 newPart = significandParts()[0];
1884 freeSignificand();
1885 significand.part = newPart;
1886 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001887 }
1888
Dan Gohman16e02092010-03-24 19:38:02 +00001889 if (category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001890 /* Re-interpret our bit-pattern. */
1891 exponent += toSemantics.precision - semantics->precision;
1892 semantics = &toSemantics;
Neil Boothc8db43d2007-09-22 02:56:19 +00001893 fs = normalize(rounding_mode, lostFraction);
Dale Johannesen23a98552008-10-09 23:00:39 +00001894 *losesInfo = (fs != opOK);
Dale Johannesen902ff942007-09-25 17:25:00 +00001895 } else if (category == fcNaN) {
1896 int shift = toSemantics.precision - semantics->precision;
Dale Johannesenb63fa052008-01-31 18:34:01 +00001897 // Do this now so significandParts gets the right answer
Dale Johannesen2df5eec2008-10-06 22:59:10 +00001898 const fltSemantics *oldSemantics = semantics;
Dale Johannesenb63fa052008-01-31 18:34:01 +00001899 semantics = &toSemantics;
Dale Johannesen23a98552008-10-09 23:00:39 +00001900 *losesInfo = false;
Dale Johannesen902ff942007-09-25 17:25:00 +00001901 // No normalization here, just truncate
1902 if (shift>0)
1903 APInt::tcShiftLeft(significandParts(), newPartCount, shift);
Dale Johannesen2df5eec2008-10-06 22:59:10 +00001904 else if (shift < 0) {
1905 unsigned ushift = -shift;
Dale Johannesen23a98552008-10-09 23:00:39 +00001906 // Figure out if we are losing information. This happens
Dale Johannesen2df5eec2008-10-06 22:59:10 +00001907 // if are shifting out something other than 0s, or if the x87 long
1908 // double input did not have its integer bit set (pseudo-NaN), or if the
1909 // x87 long double input did not have its QNan bit set (because the x87
1910 // hardware sets this bit when converting a lower-precision NaN to
1911 // x87 long double).
1912 if (APInt::tcLSB(significandParts(), newPartCount) < ushift)
Dale Johannesen23a98552008-10-09 23:00:39 +00001913 *losesInfo = true;
Dan Gohman16e02092010-03-24 19:38:02 +00001914 if (oldSemantics == &APFloat::x87DoubleExtended &&
Dale Johannesen2df5eec2008-10-06 22:59:10 +00001915 (!(*significandParts() & 0x8000000000000000ULL) ||
1916 !(*significandParts() & 0x4000000000000000ULL)))
Dale Johannesen23a98552008-10-09 23:00:39 +00001917 *losesInfo = true;
Dale Johannesen2df5eec2008-10-06 22:59:10 +00001918 APInt::tcShiftRight(significandParts(), newPartCount, ushift);
1919 }
Dale Johannesen902ff942007-09-25 17:25:00 +00001920 // gcc forces the Quiet bit on, which means (float)(double)(float_sNan)
1921 // does not give you back the same bits. This is dubious, and we
1922 // don't currently do it. You're really supposed to get
1923 // an invalid operation signal at runtime, but nobody does that.
Dale Johannesen23a98552008-10-09 23:00:39 +00001924 fs = opOK;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001925 } else {
1926 semantics = &toSemantics;
1927 fs = opOK;
Dale Johannesen23a98552008-10-09 23:00:39 +00001928 *losesInfo = false;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001929 }
1930
1931 return fs;
1932}
1933
1934/* Convert a floating point number to an integer according to the
1935 rounding mode. If the rounded integer value is out of range this
Neil Boothee7ae382007-11-01 22:43:37 +00001936 returns an invalid operation exception and the contents of the
1937 destination parts are unspecified. If the rounded value is in
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001938 range but the floating point number is not the exact integer, the C
1939 standard doesn't require an inexact exception to be raised. IEEE
1940 854 does require it so we do that.
1941
1942 Note that for conversions to integer type the C standard requires
1943 round-to-zero to always be used. */
1944APFloat::opStatus
Neil Boothee7ae382007-11-01 22:43:37 +00001945APFloat::convertToSignExtendedInteger(integerPart *parts, unsigned int width,
1946 bool isSigned,
Dale Johannesen23a98552008-10-09 23:00:39 +00001947 roundingMode rounding_mode,
1948 bool *isExact) const
Neil Boothee7ae382007-11-01 22:43:37 +00001949{
1950 lostFraction lost_fraction;
1951 const integerPart *src;
1952 unsigned int dstPartsCount, truncatedBits;
1953
Evan Cheng794a7db2008-11-26 01:11:57 +00001954 assertArithmeticOK(*semantics);
Neil Boothe3d936a2007-11-02 15:10:05 +00001955
Dale Johannesen23a98552008-10-09 23:00:39 +00001956 *isExact = false;
1957
Neil Boothee7ae382007-11-01 22:43:37 +00001958 /* Handle the three special cases first. */
Dan Gohman16e02092010-03-24 19:38:02 +00001959 if (category == fcInfinity || category == fcNaN)
Neil Boothee7ae382007-11-01 22:43:37 +00001960 return opInvalidOp;
1961
1962 dstPartsCount = partCountForBits(width);
1963
Dan Gohman16e02092010-03-24 19:38:02 +00001964 if (category == fcZero) {
Neil Boothee7ae382007-11-01 22:43:37 +00001965 APInt::tcSet(parts, 0, dstPartsCount);
Dale Johannesene4a42452008-10-07 00:40:01 +00001966 // Negative zero can't be represented as an int.
Dale Johannesen23a98552008-10-09 23:00:39 +00001967 *isExact = !sign;
1968 return opOK;
Neil Boothee7ae382007-11-01 22:43:37 +00001969 }
1970
1971 src = significandParts();
1972
1973 /* Step 1: place our absolute value, with any fraction truncated, in
1974 the destination. */
1975 if (exponent < 0) {
1976 /* Our absolute value is less than one; truncate everything. */
1977 APInt::tcSet(parts, 0, dstPartsCount);
Dale Johannesen1f54f582009-01-19 21:17:05 +00001978 /* For exponent -1 the integer bit represents .5, look at that.
1979 For smaller exponents leftmost truncated bit is 0. */
1980 truncatedBits = semantics->precision -1U - exponent;
Neil Boothee7ae382007-11-01 22:43:37 +00001981 } else {
1982 /* We want the most significant (exponent + 1) bits; the rest are
1983 truncated. */
1984 unsigned int bits = exponent + 1U;
1985
1986 /* Hopelessly large in magnitude? */
1987 if (bits > width)
1988 return opInvalidOp;
1989
1990 if (bits < semantics->precision) {
1991 /* We truncate (semantics->precision - bits) bits. */
1992 truncatedBits = semantics->precision - bits;
1993 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits);
1994 } else {
1995 /* We want at least as many bits as are available. */
1996 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0);
1997 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision);
1998 truncatedBits = 0;
1999 }
2000 }
2001
2002 /* Step 2: work out any lost fraction, and increment the absolute
2003 value if we would round away from zero. */
2004 if (truncatedBits) {
2005 lost_fraction = lostFractionThroughTruncation(src, partCount(),
2006 truncatedBits);
Dan Gohman16e02092010-03-24 19:38:02 +00002007 if (lost_fraction != lfExactlyZero &&
2008 roundAwayFromZero(rounding_mode, lost_fraction, truncatedBits)) {
Neil Boothee7ae382007-11-01 22:43:37 +00002009 if (APInt::tcIncrement(parts, dstPartsCount))
2010 return opInvalidOp; /* Overflow. */
2011 }
2012 } else {
2013 lost_fraction = lfExactlyZero;
2014 }
2015
2016 /* Step 3: check if we fit in the destination. */
2017 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1;
2018
2019 if (sign) {
2020 if (!isSigned) {
2021 /* Negative numbers cannot be represented as unsigned. */
2022 if (omsb != 0)
2023 return opInvalidOp;
2024 } else {
2025 /* It takes omsb bits to represent the unsigned integer value.
2026 We lose a bit for the sign, but care is needed as the
2027 maximally negative integer is a special case. */
2028 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb)
2029 return opInvalidOp;
2030
2031 /* This case can happen because of rounding. */
2032 if (omsb > width)
2033 return opInvalidOp;
2034 }
2035
2036 APInt::tcNegate (parts, dstPartsCount);
2037 } else {
2038 if (omsb >= width + !isSigned)
2039 return opInvalidOp;
2040 }
2041
Dale Johannesen23a98552008-10-09 23:00:39 +00002042 if (lost_fraction == lfExactlyZero) {
2043 *isExact = true;
Neil Boothee7ae382007-11-01 22:43:37 +00002044 return opOK;
Dale Johannesen23a98552008-10-09 23:00:39 +00002045 } else
Neil Boothee7ae382007-11-01 22:43:37 +00002046 return opInexact;
2047}
2048
2049/* Same as convertToSignExtendedInteger, except we provide
2050 deterministic values in case of an invalid operation exception,
2051 namely zero for NaNs and the minimal or maximal value respectively
Dale Johannesen23a98552008-10-09 23:00:39 +00002052 for underflow or overflow.
2053 The *isExact output tells whether the result is exact, in the sense
2054 that converting it back to the original floating point type produces
2055 the original value. This is almost equivalent to result==opOK,
2056 except for negative zeroes.
2057*/
Neil Boothee7ae382007-11-01 22:43:37 +00002058APFloat::opStatus
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002059APFloat::convertToInteger(integerPart *parts, unsigned int width,
Neil Booth4f881702007-09-26 21:33:42 +00002060 bool isSigned,
Dale Johannesen23a98552008-10-09 23:00:39 +00002061 roundingMode rounding_mode, bool *isExact) const
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002062{
Neil Boothee7ae382007-11-01 22:43:37 +00002063 opStatus fs;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002064
Dan Gohman16e02092010-03-24 19:38:02 +00002065 fs = convertToSignExtendedInteger(parts, width, isSigned, rounding_mode,
Dale Johannesen23a98552008-10-09 23:00:39 +00002066 isExact);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002067
Neil Boothee7ae382007-11-01 22:43:37 +00002068 if (fs == opInvalidOp) {
2069 unsigned int bits, dstPartsCount;
2070
2071 dstPartsCount = partCountForBits(width);
2072
2073 if (category == fcNaN)
2074 bits = 0;
2075 else if (sign)
2076 bits = isSigned;
2077 else
2078 bits = width - isSigned;
2079
2080 APInt::tcSetLeastSignificantBits(parts, dstPartsCount, bits);
2081 if (sign && isSigned)
2082 APInt::tcShiftLeft(parts, dstPartsCount, width - 1);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002083 }
2084
Neil Boothee7ae382007-11-01 22:43:37 +00002085 return fs;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002086}
2087
Jeffrey Yasskin3d42bfb2011-07-15 07:04:56 +00002088/* Same as convertToInteger(integerPart*, ...), except the result is returned in
2089 an APSInt, whose initial bit-width and signed-ness are used to determine the
2090 precision of the conversion.
2091 */
2092APFloat::opStatus
2093APFloat::convertToInteger(APSInt &result,
2094 roundingMode rounding_mode, bool *isExact) const
2095{
2096 unsigned bitWidth = result.getBitWidth();
2097 SmallVector<uint64_t, 4> parts(result.getNumWords());
2098 opStatus status = convertToInteger(
2099 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2100 // Keeps the original signed-ness.
Chandler Carruthe0838052011-07-15 07:31:10 +00002101 result = APInt(bitWidth, (unsigned)parts.size(), parts.data());
Jeffrey Yasskin3d42bfb2011-07-15 07:04:56 +00002102 return status;
2103}
2104
Neil Booth643ce592007-10-07 12:07:53 +00002105/* Convert an unsigned integer SRC to a floating point number,
2106 rounding according to ROUNDING_MODE. The sign of the floating
2107 point number is not modified. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002108APFloat::opStatus
Neil Booth643ce592007-10-07 12:07:53 +00002109APFloat::convertFromUnsignedParts(const integerPart *src,
2110 unsigned int srcCount,
2111 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002112{
Neil Booth5477f852007-10-08 14:39:42 +00002113 unsigned int omsb, precision, dstCount;
Neil Booth643ce592007-10-07 12:07:53 +00002114 integerPart *dst;
Neil Booth5477f852007-10-08 14:39:42 +00002115 lostFraction lost_fraction;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002116
Neil Boothcaf19d72007-10-14 10:29:28 +00002117 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002118 category = fcNormal;
Neil Booth5477f852007-10-08 14:39:42 +00002119 omsb = APInt::tcMSB(src, srcCount) + 1;
Neil Booth643ce592007-10-07 12:07:53 +00002120 dst = significandParts();
2121 dstCount = partCount();
Neil Booth5477f852007-10-08 14:39:42 +00002122 precision = semantics->precision;
Neil Booth643ce592007-10-07 12:07:53 +00002123
Neil Booth5477f852007-10-08 14:39:42 +00002124 /* We want the most significant PRECISON bits of SRC. There may not
2125 be that many; extract what we can. */
2126 if (precision <= omsb) {
2127 exponent = omsb - 1;
Neil Booth643ce592007-10-07 12:07:53 +00002128 lost_fraction = lostFractionThroughTruncation(src, srcCount,
Neil Booth5477f852007-10-08 14:39:42 +00002129 omsb - precision);
2130 APInt::tcExtract(dst, dstCount, src, precision, omsb - precision);
2131 } else {
2132 exponent = precision - 1;
2133 lost_fraction = lfExactlyZero;
2134 APInt::tcExtract(dst, dstCount, src, omsb, 0);
Neil Booth643ce592007-10-07 12:07:53 +00002135 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002136
2137 return normalize(rounding_mode, lost_fraction);
2138}
2139
Dan Gohman93c276e2008-02-29 01:26:11 +00002140APFloat::opStatus
2141APFloat::convertFromAPInt(const APInt &Val,
2142 bool isSigned,
2143 roundingMode rounding_mode)
2144{
2145 unsigned int partCount = Val.getNumWords();
2146 APInt api = Val;
2147
2148 sign = false;
2149 if (isSigned && api.isNegative()) {
2150 sign = true;
2151 api = -api;
2152 }
2153
2154 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode);
2155}
2156
Neil Boothf16c5952007-10-07 12:15:41 +00002157/* Convert a two's complement integer SRC to a floating point number,
2158 rounding according to ROUNDING_MODE. ISSIGNED is true if the
2159 integer is signed, in which case it must be sign-extended. */
2160APFloat::opStatus
2161APFloat::convertFromSignExtendedInteger(const integerPart *src,
2162 unsigned int srcCount,
2163 bool isSigned,
2164 roundingMode rounding_mode)
2165{
2166 opStatus status;
2167
Neil Boothcaf19d72007-10-14 10:29:28 +00002168 assertArithmeticOK(*semantics);
Dan Gohman16e02092010-03-24 19:38:02 +00002169 if (isSigned &&
2170 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) {
Neil Boothf16c5952007-10-07 12:15:41 +00002171 integerPart *copy;
2172
2173 /* If we're signed and negative negate a copy. */
2174 sign = true;
2175 copy = new integerPart[srcCount];
2176 APInt::tcAssign(copy, src, srcCount);
2177 APInt::tcNegate(copy, srcCount);
2178 status = convertFromUnsignedParts(copy, srcCount, rounding_mode);
2179 delete [] copy;
2180 } else {
2181 sign = false;
2182 status = convertFromUnsignedParts(src, srcCount, rounding_mode);
2183 }
2184
2185 return status;
2186}
2187
Neil Boothccf596a2007-10-07 11:45:55 +00002188/* FIXME: should this just take a const APInt reference? */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002189APFloat::opStatus
Neil Boothccf596a2007-10-07 11:45:55 +00002190APFloat::convertFromZeroExtendedInteger(const integerPart *parts,
2191 unsigned int width, bool isSigned,
2192 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002193{
Dale Johannesen910993e2007-09-21 22:09:37 +00002194 unsigned int partCount = partCountForBits(width);
Dale Johannesen910993e2007-09-21 22:09:37 +00002195 APInt api = APInt(width, partCount, parts);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002196
2197 sign = false;
Dan Gohman16e02092010-03-24 19:38:02 +00002198 if (isSigned && APInt::tcExtractBit(parts, width - 1)) {
Dale Johannesencce23a42007-09-30 18:17:01 +00002199 sign = true;
2200 api = -api;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002201 }
2202
Neil Booth7a7bc0f2007-10-07 12:10:57 +00002203 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002204}
2205
2206APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002207APFloat::convertFromHexadecimalString(StringRef s, roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002208{
Erick Tryzelaarf8bc8012009-08-18 18:20:37 +00002209 lostFraction lost_fraction = lfExactlyZero;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002210 integerPart *significand;
2211 unsigned int bitPos, partsCount;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002212 StringRef::iterator dot, firstSignificantDigit;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002213
2214 zeroSignificand();
2215 exponent = 0;
2216 category = fcNormal;
2217
2218 significand = significandParts();
2219 partsCount = partCount();
2220 bitPos = partsCount * integerPartWidth;
2221
Neil Booth33d4c922007-10-07 08:51:21 +00002222 /* Skip leading zeroes and any (hexa)decimal point. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002223 StringRef::iterator begin = s.begin();
2224 StringRef::iterator end = s.end();
2225 StringRef::iterator p = skipLeadingZeroesAndAnyDot(begin, end, &dot);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002226 firstSignificantDigit = p;
2227
Dan Gohman16e02092010-03-24 19:38:02 +00002228 for (; p != end;) {
Dale Johannesen386f3e92008-05-14 22:53:25 +00002229 integerPart hex_value;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002230
Dan Gohman16e02092010-03-24 19:38:02 +00002231 if (*p == '.') {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002232 assert(dot == end && "String contains multiple dots");
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002233 dot = p++;
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002234 if (p == end) {
2235 break;
2236 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002237 }
2238
2239 hex_value = hexDigitValue(*p);
Dan Gohman16e02092010-03-24 19:38:02 +00002240 if (hex_value == -1U) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002241 break;
2242 }
2243
2244 p++;
2245
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002246 if (p == end) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002247 break;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002248 } else {
2249 /* Store the number whilst 4-bit nibbles remain. */
Dan Gohman16e02092010-03-24 19:38:02 +00002250 if (bitPos) {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002251 bitPos -= 4;
2252 hex_value <<= bitPos % integerPartWidth;
2253 significand[bitPos / integerPartWidth] |= hex_value;
2254 } else {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002255 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);
Dan Gohman16e02092010-03-24 19:38:02 +00002256 while (p != end && hexDigitValue(*p) != -1U)
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002257 p++;
2258 break;
2259 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002260 }
2261 }
2262
2263 /* Hex floats require an exponent but not a hexadecimal point. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002264 assert(p != end && "Hex strings require an exponent");
2265 assert((*p == 'p' || *p == 'P') && "Invalid character in significand");
2266 assert(p != begin && "Significand has no digits");
2267 assert((dot == end || p - begin != 1) && "Significand has no digits");
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002268
2269 /* Ignore the exponent if we are zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00002270 if (p != firstSignificantDigit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002271 int expAdjustment;
2272
2273 /* Implicit hexadecimal point? */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002274 if (dot == end)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002275 dot = p;
2276
2277 /* Calculate the exponent adjustment implicit in the number of
2278 significant digits. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002279 expAdjustment = static_cast<int>(dot - firstSignificantDigit);
Dan Gohman16e02092010-03-24 19:38:02 +00002280 if (expAdjustment < 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002281 expAdjustment++;
2282 expAdjustment = expAdjustment * 4 - 1;
2283
2284 /* Adjust for writing the significand starting at the most
2285 significant nibble. */
2286 expAdjustment += semantics->precision;
2287 expAdjustment -= partsCount * integerPartWidth;
2288
2289 /* Adjust for the given exponent. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002290 exponent = totalExponent(p + 1, end, expAdjustment);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002291 }
2292
2293 return normalize(rounding_mode, lost_fraction);
2294}
2295
2296APFloat::opStatus
Neil Booth96c74712007-10-12 16:02:31 +00002297APFloat::roundSignificandWithExponent(const integerPart *decSigParts,
2298 unsigned sigPartCount, int exp,
2299 roundingMode rounding_mode)
2300{
2301 unsigned int parts, pow5PartCount;
Neil Boothcaf19d72007-10-14 10:29:28 +00002302 fltSemantics calcSemantics = { 32767, -32767, 0, true };
Neil Booth96c74712007-10-12 16:02:31 +00002303 integerPart pow5Parts[maxPowerOfFiveParts];
2304 bool isNearest;
2305
Dan Gohman16e02092010-03-24 19:38:02 +00002306 isNearest = (rounding_mode == rmNearestTiesToEven ||
2307 rounding_mode == rmNearestTiesToAway);
Neil Booth96c74712007-10-12 16:02:31 +00002308
2309 parts = partCountForBits(semantics->precision + 11);
2310
2311 /* Calculate pow(5, abs(exp)). */
2312 pow5PartCount = powerOf5(pow5Parts, exp >= 0 ? exp: -exp);
2313
2314 for (;; parts *= 2) {
2315 opStatus sigStatus, powStatus;
2316 unsigned int excessPrecision, truncatedBits;
2317
2318 calcSemantics.precision = parts * integerPartWidth - 1;
2319 excessPrecision = calcSemantics.precision - semantics->precision;
2320 truncatedBits = excessPrecision;
2321
2322 APFloat decSig(calcSemantics, fcZero, sign);
2323 APFloat pow5(calcSemantics, fcZero, false);
2324
2325 sigStatus = decSig.convertFromUnsignedParts(decSigParts, sigPartCount,
2326 rmNearestTiesToEven);
2327 powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount,
2328 rmNearestTiesToEven);
2329 /* Add exp, as 10^n = 5^n * 2^n. */
2330 decSig.exponent += exp;
2331
2332 lostFraction calcLostFraction;
Evan Cheng48e8c802008-05-02 21:15:08 +00002333 integerPart HUerr, HUdistance;
2334 unsigned int powHUerr;
Neil Booth96c74712007-10-12 16:02:31 +00002335
2336 if (exp >= 0) {
2337 /* multiplySignificand leaves the precision-th bit set to 1. */
2338 calcLostFraction = decSig.multiplySignificand(pow5, NULL);
2339 powHUerr = powStatus != opOK;
2340 } else {
2341 calcLostFraction = decSig.divideSignificand(pow5);
2342 /* Denormal numbers have less precision. */
2343 if (decSig.exponent < semantics->minExponent) {
2344 excessPrecision += (semantics->minExponent - decSig.exponent);
2345 truncatedBits = excessPrecision;
2346 if (excessPrecision > calcSemantics.precision)
2347 excessPrecision = calcSemantics.precision;
2348 }
2349 /* Extra half-ulp lost in reciprocal of exponent. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002350 powHUerr = (powStatus == opOK && calcLostFraction == lfExactlyZero) ? 0:2;
Neil Booth96c74712007-10-12 16:02:31 +00002351 }
2352
2353 /* Both multiplySignificand and divideSignificand return the
2354 result with the integer bit set. */
Evan Cheng99ebfa52009-10-27 21:35:42 +00002355 assert(APInt::tcExtractBit
2356 (decSig.significandParts(), calcSemantics.precision - 1) == 1);
Neil Booth96c74712007-10-12 16:02:31 +00002357
2358 HUerr = HUerrBound(calcLostFraction != lfExactlyZero, sigStatus != opOK,
2359 powHUerr);
2360 HUdistance = 2 * ulpsFromBoundary(decSig.significandParts(),
2361 excessPrecision, isNearest);
2362
2363 /* Are we guaranteed to round correctly if we truncate? */
2364 if (HUdistance >= HUerr) {
2365 APInt::tcExtract(significandParts(), partCount(), decSig.significandParts(),
2366 calcSemantics.precision - excessPrecision,
2367 excessPrecision);
2368 /* Take the exponent of decSig. If we tcExtract-ed less bits
2369 above we must adjust our exponent to compensate for the
2370 implicit right shift. */
2371 exponent = (decSig.exponent + semantics->precision
2372 - (calcSemantics.precision - excessPrecision));
2373 calcLostFraction = lostFractionThroughTruncation(decSig.significandParts(),
2374 decSig.partCount(),
2375 truncatedBits);
2376 return normalize(rounding_mode, calcLostFraction);
2377 }
2378 }
2379}
2380
2381APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002382APFloat::convertFromDecimalString(StringRef str, roundingMode rounding_mode)
Neil Booth96c74712007-10-12 16:02:31 +00002383{
Neil Booth1870f292007-10-14 10:16:12 +00002384 decimalInfo D;
Neil Booth96c74712007-10-12 16:02:31 +00002385 opStatus fs;
2386
Neil Booth1870f292007-10-14 10:16:12 +00002387 /* Scan the text. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002388 StringRef::iterator p = str.begin();
2389 interpretDecimal(p, str.end(), &D);
Neil Booth96c74712007-10-12 16:02:31 +00002390
Neil Booth686700e2007-10-15 15:00:55 +00002391 /* Handle the quick cases. First the case of no significant digits,
2392 i.e. zero, and then exponents that are obviously too large or too
2393 small. Writing L for log 10 / log 2, a number d.ddddd*10^exp
2394 definitely overflows if
2395
2396 (exp - 1) * L >= maxExponent
2397
2398 and definitely underflows to zero where
2399
2400 (exp + 1) * L <= minExponent - precision
2401
2402 With integer arithmetic the tightest bounds for L are
2403
2404 93/28 < L < 196/59 [ numerator <= 256 ]
2405 42039/12655 < L < 28738/8651 [ numerator <= 65536 ]
2406 */
2407
Neil Boothcc233592007-12-05 13:06:04 +00002408 if (decDigitValue(*D.firstSigDigit) >= 10U) {
Neil Booth96c74712007-10-12 16:02:31 +00002409 category = fcZero;
2410 fs = opOK;
John McCall8b3f3302010-02-26 22:20:41 +00002411
2412 /* Check whether the normalized exponent is high enough to overflow
2413 max during the log-rebasing in the max-exponent check below. */
2414 } else if (D.normalizedExponent - 1 > INT_MAX / 42039) {
2415 fs = handleOverflow(rounding_mode);
2416
2417 /* If it wasn't, then it also wasn't high enough to overflow max
2418 during the log-rebasing in the min-exponent check. Check that it
2419 won't overflow min in either check, then perform the min-exponent
2420 check. */
2421 } else if (D.normalizedExponent - 1 < INT_MIN / 42039 ||
2422 (D.normalizedExponent + 1) * 28738 <=
2423 8651 * (semantics->minExponent - (int) semantics->precision)) {
Neil Booth686700e2007-10-15 15:00:55 +00002424 /* Underflow to zero and round. */
2425 zeroSignificand();
2426 fs = normalize(rounding_mode, lfLessThanHalf);
John McCall8b3f3302010-02-26 22:20:41 +00002427
2428 /* We can finally safely perform the max-exponent check. */
Neil Booth686700e2007-10-15 15:00:55 +00002429 } else if ((D.normalizedExponent - 1) * 42039
2430 >= 12655 * semantics->maxExponent) {
2431 /* Overflow and round. */
2432 fs = handleOverflow(rounding_mode);
Neil Booth96c74712007-10-12 16:02:31 +00002433 } else {
Neil Booth1870f292007-10-14 10:16:12 +00002434 integerPart *decSignificand;
2435 unsigned int partCount;
Neil Booth96c74712007-10-12 16:02:31 +00002436
Neil Booth1870f292007-10-14 10:16:12 +00002437 /* A tight upper bound on number of bits required to hold an
Neil Booth686700e2007-10-15 15:00:55 +00002438 N-digit decimal integer is N * 196 / 59. Allocate enough space
Neil Booth1870f292007-10-14 10:16:12 +00002439 to hold the full significand, and an extra part required by
2440 tcMultiplyPart. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002441 partCount = static_cast<unsigned int>(D.lastSigDigit - D.firstSigDigit) + 1;
Neil Booth686700e2007-10-15 15:00:55 +00002442 partCount = partCountForBits(1 + 196 * partCount / 59);
Neil Booth1870f292007-10-14 10:16:12 +00002443 decSignificand = new integerPart[partCount + 1];
2444 partCount = 0;
Neil Booth96c74712007-10-12 16:02:31 +00002445
Neil Booth1870f292007-10-14 10:16:12 +00002446 /* Convert to binary efficiently - we do almost all multiplication
2447 in an integerPart. When this would overflow do we do a single
2448 bignum multiplication, and then revert again to multiplication
2449 in an integerPart. */
2450 do {
2451 integerPart decValue, val, multiplier;
2452
2453 val = 0;
2454 multiplier = 1;
2455
2456 do {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002457 if (*p == '.') {
Neil Booth1870f292007-10-14 10:16:12 +00002458 p++;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002459 if (p == str.end()) {
2460 break;
2461 }
2462 }
Neil Booth1870f292007-10-14 10:16:12 +00002463 decValue = decDigitValue(*p++);
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002464 assert(decValue < 10U && "Invalid character in significand");
Neil Booth1870f292007-10-14 10:16:12 +00002465 multiplier *= 10;
2466 val = val * 10 + decValue;
2467 /* The maximum number that can be multiplied by ten with any
2468 digit added without overflowing an integerPart. */
2469 } while (p <= D.lastSigDigit && multiplier <= (~ (integerPart) 0 - 9) / 10);
2470
2471 /* Multiply out the current part. */
2472 APInt::tcMultiplyPart(decSignificand, decSignificand, multiplier, val,
2473 partCount, partCount + 1, false);
2474
2475 /* If we used another part (likely but not guaranteed), increase
2476 the count. */
2477 if (decSignificand[partCount])
2478 partCount++;
2479 } while (p <= D.lastSigDigit);
Neil Booth96c74712007-10-12 16:02:31 +00002480
Neil Booth43a4b282007-11-01 22:51:07 +00002481 category = fcNormal;
Neil Booth96c74712007-10-12 16:02:31 +00002482 fs = roundSignificandWithExponent(decSignificand, partCount,
Neil Booth1870f292007-10-14 10:16:12 +00002483 D.exponent, rounding_mode);
Neil Booth96c74712007-10-12 16:02:31 +00002484
Neil Booth1870f292007-10-14 10:16:12 +00002485 delete [] decSignificand;
2486 }
Neil Booth96c74712007-10-12 16:02:31 +00002487
2488 return fs;
2489}
2490
2491APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002492APFloat::convertFromString(StringRef str, roundingMode rounding_mode)
Neil Booth4f881702007-09-26 21:33:42 +00002493{
Neil Boothcaf19d72007-10-14 10:29:28 +00002494 assertArithmeticOK(*semantics);
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002495 assert(!str.empty() && "Invalid string length");
Neil Boothcaf19d72007-10-14 10:29:28 +00002496
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002497 /* Handle a leading minus sign. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002498 StringRef::iterator p = str.begin();
2499 size_t slen = str.size();
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002500 sign = *p == '-' ? 1 : 0;
Dan Gohman16e02092010-03-24 19:38:02 +00002501 if (*p == '-' || *p == '+') {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002502 p++;
2503 slen--;
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002504 assert(slen && "String has no digits");
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002505 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002506
Dan Gohman16e02092010-03-24 19:38:02 +00002507 if (slen >= 2 && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002508 assert(slen - 2 && "Invalid string");
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002509 return convertFromHexadecimalString(StringRef(p + 2, slen - 2),
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002510 rounding_mode);
2511 }
Bill Wendlingb7c0d942008-11-27 08:00:12 +00002512
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002513 return convertFromDecimalString(StringRef(p, slen), rounding_mode);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002514}
Dale Johannesen343e7702007-08-24 00:56:33 +00002515
Neil Bootha30b0ee2007-10-03 22:26:02 +00002516/* Write out a hexadecimal representation of the floating point value
2517 to DST, which must be of sufficient size, in the C99 form
2518 [-]0xh.hhhhp[+-]d. Return the number of characters written,
2519 excluding the terminating NUL.
2520
2521 If UPPERCASE, the output is in upper case, otherwise in lower case.
2522
2523 HEXDIGITS digits appear altogether, rounding the value if
2524 necessary. If HEXDIGITS is 0, the minimal precision to display the
2525 number precisely is used instead. If nothing would appear after
2526 the decimal point it is suppressed.
2527
2528 The decimal exponent is always printed and has at least one digit.
2529 Zero values display an exponent of zero. Infinities and NaNs
2530 appear as "infinity" or "nan" respectively.
2531
2532 The above rules are as specified by C99. There is ambiguity about
2533 what the leading hexadecimal digit should be. This implementation
2534 uses whatever is necessary so that the exponent is displayed as
2535 stored. This implies the exponent will fall within the IEEE format
2536 range, and the leading hexadecimal digit will be 0 (for denormals),
2537 1 (normal numbers) or 2 (normal numbers rounded-away-from-zero with
2538 any other digits zero).
2539*/
2540unsigned int
2541APFloat::convertToHexString(char *dst, unsigned int hexDigits,
2542 bool upperCase, roundingMode rounding_mode) const
2543{
2544 char *p;
2545
Neil Boothcaf19d72007-10-14 10:29:28 +00002546 assertArithmeticOK(*semantics);
2547
Neil Bootha30b0ee2007-10-03 22:26:02 +00002548 p = dst;
2549 if (sign)
2550 *dst++ = '-';
2551
2552 switch (category) {
2553 case fcInfinity:
2554 memcpy (dst, upperCase ? infinityU: infinityL, sizeof infinityU - 1);
2555 dst += sizeof infinityL - 1;
2556 break;
2557
2558 case fcNaN:
2559 memcpy (dst, upperCase ? NaNU: NaNL, sizeof NaNU - 1);
2560 dst += sizeof NaNU - 1;
2561 break;
2562
2563 case fcZero:
2564 *dst++ = '0';
2565 *dst++ = upperCase ? 'X': 'x';
2566 *dst++ = '0';
2567 if (hexDigits > 1) {
2568 *dst++ = '.';
2569 memset (dst, '0', hexDigits - 1);
2570 dst += hexDigits - 1;
2571 }
2572 *dst++ = upperCase ? 'P': 'p';
2573 *dst++ = '0';
2574 break;
2575
2576 case fcNormal:
2577 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode);
2578 break;
2579 }
2580
2581 *dst = 0;
2582
Evan Cheng48e8c802008-05-02 21:15:08 +00002583 return static_cast<unsigned int>(dst - p);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002584}
2585
2586/* Does the hard work of outputting the correctly rounded hexadecimal
2587 form of a normal floating point number with the specified number of
2588 hexadecimal digits. If HEXDIGITS is zero the minimum number of
2589 digits necessary to print the value precisely is output. */
2590char *
2591APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits,
2592 bool upperCase,
2593 roundingMode rounding_mode) const
2594{
2595 unsigned int count, valueBits, shift, partsCount, outputDigits;
2596 const char *hexDigitChars;
2597 const integerPart *significand;
2598 char *p;
2599 bool roundUp;
2600
2601 *dst++ = '0';
2602 *dst++ = upperCase ? 'X': 'x';
2603
2604 roundUp = false;
2605 hexDigitChars = upperCase ? hexDigitsUpper: hexDigitsLower;
2606
2607 significand = significandParts();
2608 partsCount = partCount();
2609
2610 /* +3 because the first digit only uses the single integer bit, so
2611 we have 3 virtual zero most-significant-bits. */
2612 valueBits = semantics->precision + 3;
2613 shift = integerPartWidth - valueBits % integerPartWidth;
2614
2615 /* The natural number of digits required ignoring trailing
2616 insignificant zeroes. */
2617 outputDigits = (valueBits - significandLSB () + 3) / 4;
2618
2619 /* hexDigits of zero means use the required number for the
2620 precision. Otherwise, see if we are truncating. If we are,
Neil Booth978661d2007-10-06 00:24:48 +00002621 find out if we need to round away from zero. */
Neil Bootha30b0ee2007-10-03 22:26:02 +00002622 if (hexDigits) {
2623 if (hexDigits < outputDigits) {
2624 /* We are dropping non-zero bits, so need to check how to round.
2625 "bits" is the number of dropped bits. */
2626 unsigned int bits;
2627 lostFraction fraction;
2628
2629 bits = valueBits - hexDigits * 4;
2630 fraction = lostFractionThroughTruncation (significand, partsCount, bits);
2631 roundUp = roundAwayFromZero(rounding_mode, fraction, bits);
2632 }
2633 outputDigits = hexDigits;
2634 }
2635
2636 /* Write the digits consecutively, and start writing in the location
2637 of the hexadecimal point. We move the most significant digit
2638 left and add the hexadecimal point later. */
2639 p = ++dst;
2640
2641 count = (valueBits + integerPartWidth - 1) / integerPartWidth;
2642
2643 while (outputDigits && count) {
2644 integerPart part;
2645
2646 /* Put the most significant integerPartWidth bits in "part". */
2647 if (--count == partsCount)
2648 part = 0; /* An imaginary higher zero part. */
2649 else
2650 part = significand[count] << shift;
2651
2652 if (count && shift)
2653 part |= significand[count - 1] >> (integerPartWidth - shift);
2654
2655 /* Convert as much of "part" to hexdigits as we can. */
2656 unsigned int curDigits = integerPartWidth / 4;
2657
2658 if (curDigits > outputDigits)
2659 curDigits = outputDigits;
2660 dst += partAsHex (dst, part, curDigits, hexDigitChars);
2661 outputDigits -= curDigits;
2662 }
2663
2664 if (roundUp) {
2665 char *q = dst;
2666
2667 /* Note that hexDigitChars has a trailing '0'. */
2668 do {
2669 q--;
2670 *q = hexDigitChars[hexDigitValue (*q) + 1];
Neil Booth978661d2007-10-06 00:24:48 +00002671 } while (*q == '0');
Evan Cheng99ebfa52009-10-27 21:35:42 +00002672 assert(q >= p);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002673 } else {
2674 /* Add trailing zeroes. */
2675 memset (dst, '0', outputDigits);
2676 dst += outputDigits;
2677 }
2678
2679 /* Move the most significant digit to before the point, and if there
2680 is something after the decimal point add it. This must come
2681 after rounding above. */
2682 p[-1] = p[0];
2683 if (dst -1 == p)
2684 dst--;
2685 else
2686 p[0] = '.';
2687
2688 /* Finally output the exponent. */
2689 *dst++ = upperCase ? 'P': 'p';
2690
Neil Booth92f7e8d2007-10-06 07:29:25 +00002691 return writeSignedDecimal (dst, exponent);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002692}
2693
Dale Johannesen343e7702007-08-24 00:56:33 +00002694// For good performance it is desirable for different APFloats
2695// to produce different integers.
2696uint32_t
Neil Booth4f881702007-09-26 21:33:42 +00002697APFloat::getHashValue() const
2698{
Dale Johannesen343e7702007-08-24 00:56:33 +00002699 if (category==fcZero) return sign<<8 | semantics->precision ;
2700 else if (category==fcInfinity) return sign<<9 | semantics->precision;
Dale Johanneseneaf08942007-08-31 04:03:46 +00002701 else if (category==fcNaN) return 1<<10 | semantics->precision;
Dale Johannesen343e7702007-08-24 00:56:33 +00002702 else {
2703 uint32_t hash = sign<<11 | semantics->precision | exponent<<12;
2704 const integerPart* p = significandParts();
2705 for (int i=partCount(); i>0; i--, p++)
Evan Cheng48e8c802008-05-02 21:15:08 +00002706 hash ^= ((uint32_t)*p) ^ (uint32_t)((*p)>>32);
Dale Johannesen343e7702007-08-24 00:56:33 +00002707 return hash;
2708 }
2709}
2710
2711// Conversion from APFloat to/from host float/double. It may eventually be
2712// possible to eliminate these and have everybody deal with APFloats, but that
2713// will take a while. This approach will not easily extend to long double.
Dale Johannesena72a5a02007-09-20 23:47:58 +00002714// Current implementation requires integerPartWidth==64, which is correct at
2715// the moment but could be made more general.
Dale Johannesen343e7702007-08-24 00:56:33 +00002716
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002717// Denormals have exponent minExponent in APFloat, but minExponent-1 in
Dale Johannesena72a5a02007-09-20 23:47:58 +00002718// the actual IEEE respresentations. We compensate for that here.
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002719
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002720APInt
Neil Booth4f881702007-09-26 21:33:42 +00002721APFloat::convertF80LongDoubleAPFloatToAPInt() const
2722{
Dan Gohmanb10abe12008-01-29 12:08:20 +00002723 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002724 assert(partCount()==2);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002725
2726 uint64_t myexponent, mysignificand;
2727
2728 if (category==fcNormal) {
2729 myexponent = exponent+16383; //bias
Dale Johannesena72a5a02007-09-20 23:47:58 +00002730 mysignificand = significandParts()[0];
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002731 if (myexponent==1 && !(mysignificand & 0x8000000000000000ULL))
2732 myexponent = 0; // denormal
2733 } else if (category==fcZero) {
2734 myexponent = 0;
2735 mysignificand = 0;
2736 } else if (category==fcInfinity) {
2737 myexponent = 0x7fff;
2738 mysignificand = 0x8000000000000000ULL;
Chris Lattnera11ef822007-10-06 06:13:42 +00002739 } else {
2740 assert(category == fcNaN && "Unknown category");
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002741 myexponent = 0x7fff;
Dale Johannesena72a5a02007-09-20 23:47:58 +00002742 mysignificand = significandParts()[0];
Chris Lattnera11ef822007-10-06 06:13:42 +00002743 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002744
2745 uint64_t words[2];
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002746 words[0] = mysignificand;
2747 words[1] = ((uint64_t)(sign & 1) << 15) |
2748 (myexponent & 0x7fffLL);
Chris Lattnera11ef822007-10-06 06:13:42 +00002749 return APInt(80, 2, words);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002750}
2751
2752APInt
Dale Johannesena471c2e2007-10-11 18:07:22 +00002753APFloat::convertPPCDoubleDoubleAPFloatToAPInt() const
2754{
Dan Gohmanb10abe12008-01-29 12:08:20 +00002755 assert(semantics == (const llvm::fltSemantics*)&PPCDoubleDouble);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002756 assert(partCount()==2);
Dale Johannesena471c2e2007-10-11 18:07:22 +00002757
2758 uint64_t myexponent, mysignificand, myexponent2, mysignificand2;
2759
2760 if (category==fcNormal) {
2761 myexponent = exponent + 1023; //bias
2762 myexponent2 = exponent2 + 1023;
2763 mysignificand = significandParts()[0];
2764 mysignificand2 = significandParts()[1];
2765 if (myexponent==1 && !(mysignificand & 0x10000000000000LL))
2766 myexponent = 0; // denormal
2767 if (myexponent2==1 && !(mysignificand2 & 0x10000000000000LL))
2768 myexponent2 = 0; // denormal
2769 } else if (category==fcZero) {
2770 myexponent = 0;
2771 mysignificand = 0;
2772 myexponent2 = 0;
2773 mysignificand2 = 0;
2774 } else if (category==fcInfinity) {
2775 myexponent = 0x7ff;
2776 myexponent2 = 0;
2777 mysignificand = 0;
2778 mysignificand2 = 0;
2779 } else {
2780 assert(category == fcNaN && "Unknown category");
2781 myexponent = 0x7ff;
2782 mysignificand = significandParts()[0];
2783 myexponent2 = exponent2;
2784 mysignificand2 = significandParts()[1];
2785 }
2786
2787 uint64_t words[2];
Evan Cheng48e8c802008-05-02 21:15:08 +00002788 words[0] = ((uint64_t)(sign & 1) << 63) |
Dale Johannesena471c2e2007-10-11 18:07:22 +00002789 ((myexponent & 0x7ff) << 52) |
2790 (mysignificand & 0xfffffffffffffLL);
Evan Cheng48e8c802008-05-02 21:15:08 +00002791 words[1] = ((uint64_t)(sign2 & 1) << 63) |
Dale Johannesena471c2e2007-10-11 18:07:22 +00002792 ((myexponent2 & 0x7ff) << 52) |
2793 (mysignificand2 & 0xfffffffffffffLL);
2794 return APInt(128, 2, words);
2795}
2796
2797APInt
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002798APFloat::convertQuadrupleAPFloatToAPInt() const
2799{
2800 assert(semantics == (const llvm::fltSemantics*)&IEEEquad);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002801 assert(partCount()==2);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002802
2803 uint64_t myexponent, mysignificand, mysignificand2;
2804
2805 if (category==fcNormal) {
2806 myexponent = exponent+16383; //bias
2807 mysignificand = significandParts()[0];
2808 mysignificand2 = significandParts()[1];
2809 if (myexponent==1 && !(mysignificand2 & 0x1000000000000LL))
2810 myexponent = 0; // denormal
2811 } else if (category==fcZero) {
2812 myexponent = 0;
2813 mysignificand = mysignificand2 = 0;
2814 } else if (category==fcInfinity) {
2815 myexponent = 0x7fff;
2816 mysignificand = mysignificand2 = 0;
2817 } else {
2818 assert(category == fcNaN && "Unknown category!");
2819 myexponent = 0x7fff;
2820 mysignificand = significandParts()[0];
2821 mysignificand2 = significandParts()[1];
2822 }
2823
2824 uint64_t words[2];
2825 words[0] = mysignificand;
2826 words[1] = ((uint64_t)(sign & 1) << 63) |
2827 ((myexponent & 0x7fff) << 48) |
Anton Korobeynikov4755e992009-08-21 23:09:47 +00002828 (mysignificand2 & 0xffffffffffffLL);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002829
2830 return APInt(128, 2, words);
2831}
2832
2833APInt
Neil Booth4f881702007-09-26 21:33:42 +00002834APFloat::convertDoubleAPFloatToAPInt() const
2835{
Dan Gohmancb648f92007-09-14 20:08:19 +00002836 assert(semantics == (const llvm::fltSemantics*)&IEEEdouble);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002837 assert(partCount()==1);
Dale Johannesen343e7702007-08-24 00:56:33 +00002838
Dale Johanneseneaf08942007-08-31 04:03:46 +00002839 uint64_t myexponent, mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00002840
2841 if (category==fcNormal) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002842 myexponent = exponent+1023; //bias
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002843 mysignificand = *significandParts();
2844 if (myexponent==1 && !(mysignificand & 0x10000000000000LL))
2845 myexponent = 0; // denormal
Dale Johannesen343e7702007-08-24 00:56:33 +00002846 } else if (category==fcZero) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002847 myexponent = 0;
2848 mysignificand = 0;
2849 } else if (category==fcInfinity) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002850 myexponent = 0x7ff;
2851 mysignificand = 0;
Chris Lattnera11ef822007-10-06 06:13:42 +00002852 } else {
2853 assert(category == fcNaN && "Unknown category!");
Dale Johannesen343e7702007-08-24 00:56:33 +00002854 myexponent = 0x7ff;
Dale Johanneseneaf08942007-08-31 04:03:46 +00002855 mysignificand = *significandParts();
Chris Lattnera11ef822007-10-06 06:13:42 +00002856 }
Dale Johannesen343e7702007-08-24 00:56:33 +00002857
Evan Cheng48e8c802008-05-02 21:15:08 +00002858 return APInt(64, ((((uint64_t)(sign & 1) << 63) |
Chris Lattnera11ef822007-10-06 06:13:42 +00002859 ((myexponent & 0x7ff) << 52) |
2860 (mysignificand & 0xfffffffffffffLL))));
Dale Johannesen343e7702007-08-24 00:56:33 +00002861}
2862
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002863APInt
Neil Booth4f881702007-09-26 21:33:42 +00002864APFloat::convertFloatAPFloatToAPInt() const
2865{
Dan Gohmancb648f92007-09-14 20:08:19 +00002866 assert(semantics == (const llvm::fltSemantics*)&IEEEsingle);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002867 assert(partCount()==1);
Neil Booth4f881702007-09-26 21:33:42 +00002868
Dale Johanneseneaf08942007-08-31 04:03:46 +00002869 uint32_t myexponent, mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00002870
2871 if (category==fcNormal) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002872 myexponent = exponent+127; //bias
Evan Cheng48e8c802008-05-02 21:15:08 +00002873 mysignificand = (uint32_t)*significandParts();
Dale Johannesend0763b92007-11-17 01:02:27 +00002874 if (myexponent == 1 && !(mysignificand & 0x800000))
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002875 myexponent = 0; // denormal
Dale Johannesen343e7702007-08-24 00:56:33 +00002876 } else if (category==fcZero) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002877 myexponent = 0;
2878 mysignificand = 0;
2879 } else if (category==fcInfinity) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002880 myexponent = 0xff;
2881 mysignificand = 0;
Chris Lattnera11ef822007-10-06 06:13:42 +00002882 } else {
2883 assert(category == fcNaN && "Unknown category!");
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002884 myexponent = 0xff;
Evan Cheng48e8c802008-05-02 21:15:08 +00002885 mysignificand = (uint32_t)*significandParts();
Chris Lattnera11ef822007-10-06 06:13:42 +00002886 }
Dale Johannesen343e7702007-08-24 00:56:33 +00002887
Chris Lattnera11ef822007-10-06 06:13:42 +00002888 return APInt(32, (((sign&1) << 31) | ((myexponent&0xff) << 23) |
2889 (mysignificand & 0x7fffff)));
Dale Johannesen343e7702007-08-24 00:56:33 +00002890}
2891
Chris Lattnercc4287a2009-10-16 02:13:51 +00002892APInt
2893APFloat::convertHalfAPFloatToAPInt() const
2894{
2895 assert(semantics == (const llvm::fltSemantics*)&IEEEhalf);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002896 assert(partCount()==1);
Chris Lattnercc4287a2009-10-16 02:13:51 +00002897
2898 uint32_t myexponent, mysignificand;
2899
2900 if (category==fcNormal) {
2901 myexponent = exponent+15; //bias
2902 mysignificand = (uint32_t)*significandParts();
2903 if (myexponent == 1 && !(mysignificand & 0x400))
2904 myexponent = 0; // denormal
2905 } else if (category==fcZero) {
2906 myexponent = 0;
2907 mysignificand = 0;
2908 } else if (category==fcInfinity) {
Dale Johannesena223aed2009-10-23 04:02:51 +00002909 myexponent = 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00002910 mysignificand = 0;
2911 } else {
2912 assert(category == fcNaN && "Unknown category!");
Dale Johannesena223aed2009-10-23 04:02:51 +00002913 myexponent = 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00002914 mysignificand = (uint32_t)*significandParts();
2915 }
2916
2917 return APInt(16, (((sign&1) << 15) | ((myexponent&0x1f) << 10) |
2918 (mysignificand & 0x3ff)));
2919}
2920
Dale Johannesena471c2e2007-10-11 18:07:22 +00002921// This function creates an APInt that is just a bit map of the floating
2922// point constant as it would appear in memory. It is not a conversion,
2923// and treating the result as a normal integer is unlikely to be useful.
2924
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002925APInt
Dale Johannesen7111b022008-10-09 18:53:47 +00002926APFloat::bitcastToAPInt() const
Neil Booth4f881702007-09-26 21:33:42 +00002927{
Chris Lattnercc4287a2009-10-16 02:13:51 +00002928 if (semantics == (const llvm::fltSemantics*)&IEEEhalf)
2929 return convertHalfAPFloatToAPInt();
2930
Dan Gohmanb10abe12008-01-29 12:08:20 +00002931 if (semantics == (const llvm::fltSemantics*)&IEEEsingle)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002932 return convertFloatAPFloatToAPInt();
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002933
Dan Gohmanb10abe12008-01-29 12:08:20 +00002934 if (semantics == (const llvm::fltSemantics*)&IEEEdouble)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002935 return convertDoubleAPFloatToAPInt();
Neil Booth4f881702007-09-26 21:33:42 +00002936
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002937 if (semantics == (const llvm::fltSemantics*)&IEEEquad)
2938 return convertQuadrupleAPFloatToAPInt();
2939
Dan Gohmanb10abe12008-01-29 12:08:20 +00002940 if (semantics == (const llvm::fltSemantics*)&PPCDoubleDouble)
Dale Johannesena471c2e2007-10-11 18:07:22 +00002941 return convertPPCDoubleDoubleAPFloatToAPInt();
2942
Dan Gohmanb10abe12008-01-29 12:08:20 +00002943 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended &&
Chris Lattnera11ef822007-10-06 06:13:42 +00002944 "unknown format!");
2945 return convertF80LongDoubleAPFloatToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002946}
2947
Neil Booth4f881702007-09-26 21:33:42 +00002948float
2949APFloat::convertToFloat() const
2950{
Chris Lattnerad785002009-09-24 21:44:20 +00002951 assert(semantics == (const llvm::fltSemantics*)&IEEEsingle &&
2952 "Float semantics are not IEEEsingle");
Dale Johannesen7111b022008-10-09 18:53:47 +00002953 APInt api = bitcastToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002954 return api.bitsToFloat();
2955}
2956
Neil Booth4f881702007-09-26 21:33:42 +00002957double
2958APFloat::convertToDouble() const
2959{
Chris Lattnerad785002009-09-24 21:44:20 +00002960 assert(semantics == (const llvm::fltSemantics*)&IEEEdouble &&
2961 "Float semantics are not IEEEdouble");
Dale Johannesen7111b022008-10-09 18:53:47 +00002962 APInt api = bitcastToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002963 return api.bitsToDouble();
2964}
2965
Dale Johannesend3d8ce32008-10-06 18:22:29 +00002966/// Integer bit is explicit in this format. Intel hardware (387 and later)
2967/// does not support these bit patterns:
2968/// exponent = all 1's, integer bit 0, significand 0 ("pseudoinfinity")
2969/// exponent = all 1's, integer bit 0, significand nonzero ("pseudoNaN")
2970/// exponent = 0, integer bit 1 ("pseudodenormal")
2971/// exponent!=0 nor all 1's, integer bit 0 ("unnormal")
2972/// At the moment, the first two are treated as NaNs, the second two as Normal.
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002973void
Neil Booth4f881702007-09-26 21:33:42 +00002974APFloat::initFromF80LongDoubleAPInt(const APInt &api)
2975{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002976 assert(api.getBitWidth()==80);
2977 uint64_t i1 = api.getRawData()[0];
2978 uint64_t i2 = api.getRawData()[1];
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002979 uint64_t myexponent = (i2 & 0x7fff);
2980 uint64_t mysignificand = i1;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002981
2982 initialize(&APFloat::x87DoubleExtended);
Dale Johannesena72a5a02007-09-20 23:47:58 +00002983 assert(partCount()==2);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002984
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002985 sign = static_cast<unsigned int>(i2>>15);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002986 if (myexponent==0 && mysignificand==0) {
2987 // exponent, significand meaningless
2988 category = fcZero;
2989 } else if (myexponent==0x7fff && mysignificand==0x8000000000000000ULL) {
2990 // exponent, significand meaningless
2991 category = fcInfinity;
2992 } else if (myexponent==0x7fff && mysignificand!=0x8000000000000000ULL) {
2993 // exponent meaningless
2994 category = fcNaN;
Dale Johannesena72a5a02007-09-20 23:47:58 +00002995 significandParts()[0] = mysignificand;
2996 significandParts()[1] = 0;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002997 } else {
2998 category = fcNormal;
2999 exponent = myexponent - 16383;
Dale Johannesena72a5a02007-09-20 23:47:58 +00003000 significandParts()[0] = mysignificand;
3001 significandParts()[1] = 0;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003002 if (myexponent==0) // denormal
3003 exponent = -16382;
Neil Booth4f881702007-09-26 21:33:42 +00003004 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003005}
3006
3007void
Dale Johannesena471c2e2007-10-11 18:07:22 +00003008APFloat::initFromPPCDoubleDoubleAPInt(const APInt &api)
3009{
3010 assert(api.getBitWidth()==128);
3011 uint64_t i1 = api.getRawData()[0];
3012 uint64_t i2 = api.getRawData()[1];
3013 uint64_t myexponent = (i1 >> 52) & 0x7ff;
3014 uint64_t mysignificand = i1 & 0xfffffffffffffLL;
3015 uint64_t myexponent2 = (i2 >> 52) & 0x7ff;
3016 uint64_t mysignificand2 = i2 & 0xfffffffffffffLL;
3017
3018 initialize(&APFloat::PPCDoubleDouble);
3019 assert(partCount()==2);
3020
Evan Cheng48e8c802008-05-02 21:15:08 +00003021 sign = static_cast<unsigned int>(i1>>63);
3022 sign2 = static_cast<unsigned int>(i2>>63);
Dale Johannesena471c2e2007-10-11 18:07:22 +00003023 if (myexponent==0 && mysignificand==0) {
3024 // exponent, significand meaningless
3025 // exponent2 and significand2 are required to be 0; we don't check
3026 category = fcZero;
3027 } else if (myexponent==0x7ff && mysignificand==0) {
3028 // exponent, significand meaningless
3029 // exponent2 and significand2 are required to be 0; we don't check
3030 category = fcInfinity;
3031 } else if (myexponent==0x7ff && mysignificand!=0) {
Dan Gohman16e02092010-03-24 19:38:02 +00003032 // exponent meaningless. So is the whole second word, but keep it
Dale Johannesena471c2e2007-10-11 18:07:22 +00003033 // for determinism.
3034 category = fcNaN;
3035 exponent2 = myexponent2;
3036 significandParts()[0] = mysignificand;
3037 significandParts()[1] = mysignificand2;
3038 } else {
3039 category = fcNormal;
3040 // Note there is no category2; the second word is treated as if it is
3041 // fcNormal, although it might be something else considered by itself.
3042 exponent = myexponent - 1023;
3043 exponent2 = myexponent2 - 1023;
3044 significandParts()[0] = mysignificand;
3045 significandParts()[1] = mysignificand2;
3046 if (myexponent==0) // denormal
3047 exponent = -1022;
3048 else
3049 significandParts()[0] |= 0x10000000000000LL; // integer bit
Dan Gohman16e02092010-03-24 19:38:02 +00003050 if (myexponent2==0)
Dale Johannesena471c2e2007-10-11 18:07:22 +00003051 exponent2 = -1022;
3052 else
3053 significandParts()[1] |= 0x10000000000000LL; // integer bit
3054 }
3055}
3056
3057void
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00003058APFloat::initFromQuadrupleAPInt(const APInt &api)
3059{
3060 assert(api.getBitWidth()==128);
3061 uint64_t i1 = api.getRawData()[0];
3062 uint64_t i2 = api.getRawData()[1];
3063 uint64_t myexponent = (i2 >> 48) & 0x7fff;
3064 uint64_t mysignificand = i1;
3065 uint64_t mysignificand2 = i2 & 0xffffffffffffLL;
3066
3067 initialize(&APFloat::IEEEquad);
3068 assert(partCount()==2);
3069
3070 sign = static_cast<unsigned int>(i2>>63);
3071 if (myexponent==0 &&
3072 (mysignificand==0 && mysignificand2==0)) {
3073 // exponent, significand meaningless
3074 category = fcZero;
3075 } else if (myexponent==0x7fff &&
3076 (mysignificand==0 && mysignificand2==0)) {
3077 // exponent, significand meaningless
3078 category = fcInfinity;
3079 } else if (myexponent==0x7fff &&
3080 (mysignificand!=0 || mysignificand2 !=0)) {
3081 // exponent meaningless
3082 category = fcNaN;
3083 significandParts()[0] = mysignificand;
3084 significandParts()[1] = mysignificand2;
3085 } else {
3086 category = fcNormal;
3087 exponent = myexponent - 16383;
3088 significandParts()[0] = mysignificand;
3089 significandParts()[1] = mysignificand2;
3090 if (myexponent==0) // denormal
3091 exponent = -16382;
3092 else
3093 significandParts()[1] |= 0x1000000000000LL; // integer bit
3094 }
3095}
3096
3097void
Neil Booth4f881702007-09-26 21:33:42 +00003098APFloat::initFromDoubleAPInt(const APInt &api)
3099{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003100 assert(api.getBitWidth()==64);
3101 uint64_t i = *api.getRawData();
Dale Johannesend3b51fd2007-08-24 05:08:11 +00003102 uint64_t myexponent = (i >> 52) & 0x7ff;
3103 uint64_t mysignificand = i & 0xfffffffffffffLL;
3104
Dale Johannesen343e7702007-08-24 00:56:33 +00003105 initialize(&APFloat::IEEEdouble);
Dale Johannesen343e7702007-08-24 00:56:33 +00003106 assert(partCount()==1);
3107
Evan Cheng48e8c802008-05-02 21:15:08 +00003108 sign = static_cast<unsigned int>(i>>63);
Dale Johannesen343e7702007-08-24 00:56:33 +00003109 if (myexponent==0 && mysignificand==0) {
3110 // exponent, significand meaningless
3111 category = fcZero;
Dale Johannesen343e7702007-08-24 00:56:33 +00003112 } else if (myexponent==0x7ff && mysignificand==0) {
3113 // exponent, significand meaningless
3114 category = fcInfinity;
Dale Johanneseneaf08942007-08-31 04:03:46 +00003115 } else if (myexponent==0x7ff && mysignificand!=0) {
3116 // exponent meaningless
3117 category = fcNaN;
3118 *significandParts() = mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00003119 } else {
Dale Johannesen343e7702007-08-24 00:56:33 +00003120 category = fcNormal;
3121 exponent = myexponent - 1023;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00003122 *significandParts() = mysignificand;
3123 if (myexponent==0) // denormal
3124 exponent = -1022;
3125 else
3126 *significandParts() |= 0x10000000000000LL; // integer bit
Neil Booth4f881702007-09-26 21:33:42 +00003127 }
Dale Johannesen343e7702007-08-24 00:56:33 +00003128}
3129
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003130void
Neil Booth4f881702007-09-26 21:33:42 +00003131APFloat::initFromFloatAPInt(const APInt & api)
3132{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003133 assert(api.getBitWidth()==32);
3134 uint32_t i = (uint32_t)*api.getRawData();
Dale Johannesend3b51fd2007-08-24 05:08:11 +00003135 uint32_t myexponent = (i >> 23) & 0xff;
3136 uint32_t mysignificand = i & 0x7fffff;
3137
Dale Johannesen343e7702007-08-24 00:56:33 +00003138 initialize(&APFloat::IEEEsingle);
Dale Johannesen343e7702007-08-24 00:56:33 +00003139 assert(partCount()==1);
3140
Dale Johanneseneaf08942007-08-31 04:03:46 +00003141 sign = i >> 31;
Dale Johannesen343e7702007-08-24 00:56:33 +00003142 if (myexponent==0 && mysignificand==0) {
3143 // exponent, significand meaningless
3144 category = fcZero;
Dale Johannesen343e7702007-08-24 00:56:33 +00003145 } else if (myexponent==0xff && mysignificand==0) {
3146 // exponent, significand meaningless
3147 category = fcInfinity;
Dale Johannesen902ff942007-09-25 17:25:00 +00003148 } else if (myexponent==0xff && mysignificand!=0) {
Dale Johannesen343e7702007-08-24 00:56:33 +00003149 // sign, exponent, significand meaningless
Dale Johanneseneaf08942007-08-31 04:03:46 +00003150 category = fcNaN;
3151 *significandParts() = mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00003152 } else {
3153 category = fcNormal;
Dale Johannesen343e7702007-08-24 00:56:33 +00003154 exponent = myexponent - 127; //bias
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00003155 *significandParts() = mysignificand;
3156 if (myexponent==0) // denormal
3157 exponent = -126;
3158 else
3159 *significandParts() |= 0x800000; // integer bit
Dale Johannesen343e7702007-08-24 00:56:33 +00003160 }
3161}
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003162
Chris Lattnercc4287a2009-10-16 02:13:51 +00003163void
3164APFloat::initFromHalfAPInt(const APInt & api)
3165{
3166 assert(api.getBitWidth()==16);
3167 uint32_t i = (uint32_t)*api.getRawData();
Dale Johannesena223aed2009-10-23 04:02:51 +00003168 uint32_t myexponent = (i >> 10) & 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00003169 uint32_t mysignificand = i & 0x3ff;
3170
3171 initialize(&APFloat::IEEEhalf);
3172 assert(partCount()==1);
3173
3174 sign = i >> 15;
3175 if (myexponent==0 && mysignificand==0) {
3176 // exponent, significand meaningless
3177 category = fcZero;
3178 } else if (myexponent==0x1f && mysignificand==0) {
3179 // exponent, significand meaningless
3180 category = fcInfinity;
3181 } else if (myexponent==0x1f && mysignificand!=0) {
3182 // sign, exponent, significand meaningless
3183 category = fcNaN;
3184 *significandParts() = mysignificand;
3185 } else {
3186 category = fcNormal;
3187 exponent = myexponent - 15; //bias
3188 *significandParts() = mysignificand;
3189 if (myexponent==0) // denormal
3190 exponent = -14;
3191 else
3192 *significandParts() |= 0x400; // integer bit
3193 }
3194}
3195
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003196/// Treat api as containing the bits of a floating point number. Currently
Dale Johannesena471c2e2007-10-11 18:07:22 +00003197/// we infer the floating point type from the size of the APInt. The
3198/// isIEEE argument distinguishes between PPC128 and IEEE128 (not meaningful
3199/// when the size is anything else).
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003200void
Dale Johannesena471c2e2007-10-11 18:07:22 +00003201APFloat::initFromAPInt(const APInt& api, bool isIEEE)
Neil Booth4f881702007-09-26 21:33:42 +00003202{
Chris Lattnercc4287a2009-10-16 02:13:51 +00003203 if (api.getBitWidth() == 16)
3204 return initFromHalfAPInt(api);
3205 else if (api.getBitWidth() == 32)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003206 return initFromFloatAPInt(api);
3207 else if (api.getBitWidth()==64)
3208 return initFromDoubleAPInt(api);
3209 else if (api.getBitWidth()==80)
3210 return initFromF80LongDoubleAPInt(api);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00003211 else if (api.getBitWidth()==128)
3212 return (isIEEE ?
3213 initFromQuadrupleAPInt(api) : initFromPPCDoubleDoubleAPInt(api));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003214 else
Torok Edwinc23197a2009-07-14 16:55:14 +00003215 llvm_unreachable(0);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003216}
3217
Nadav Rotem093399c2011-02-17 21:22:27 +00003218APFloat
3219APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3220{
3221 return APFloat(APInt::getAllOnesValue(BitWidth), isIEEE);
3222}
3223
John McCall00e65de2009-12-24 08:56:26 +00003224APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) {
3225 APFloat Val(Sem, fcNormal, Negative);
3226
3227 // We want (in interchange format):
3228 // sign = {Negative}
3229 // exponent = 1..10
3230 // significand = 1..1
3231
3232 Val.exponent = Sem.maxExponent; // unbiased
3233
3234 // 1-initialize all bits....
3235 Val.zeroSignificand();
3236 integerPart *significand = Val.significandParts();
3237 unsigned N = partCountForBits(Sem.precision);
3238 for (unsigned i = 0; i != N; ++i)
3239 significand[i] = ~((integerPart) 0);
3240
3241 // ...and then clear the top bits for internal consistency.
Dan Gohman16e02092010-03-24 19:38:02 +00003242 significand[N-1] &=
3243 (((integerPart) 1) << ((Sem.precision % integerPartWidth) - 1)) - 1;
John McCall00e65de2009-12-24 08:56:26 +00003244
3245 return Val;
3246}
3247
3248APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) {
3249 APFloat Val(Sem, fcNormal, Negative);
3250
3251 // We want (in interchange format):
3252 // sign = {Negative}
3253 // exponent = 0..0
3254 // significand = 0..01
3255
3256 Val.exponent = Sem.minExponent; // unbiased
3257 Val.zeroSignificand();
3258 Val.significandParts()[0] = 1;
3259 return Val;
3260}
3261
3262APFloat APFloat::getSmallestNormalized(const fltSemantics &Sem, bool Negative) {
3263 APFloat Val(Sem, fcNormal, Negative);
3264
3265 // We want (in interchange format):
3266 // sign = {Negative}
3267 // exponent = 0..0
3268 // significand = 10..0
3269
3270 Val.exponent = Sem.minExponent;
3271 Val.zeroSignificand();
Dan Gohman16e02092010-03-24 19:38:02 +00003272 Val.significandParts()[partCountForBits(Sem.precision)-1] |=
3273 (((integerPart) 1) << ((Sem.precision % integerPartWidth) - 1));
John McCall00e65de2009-12-24 08:56:26 +00003274
3275 return Val;
3276}
3277
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003278APFloat::APFloat(const APInt& api, bool isIEEE) : exponent2(0), sign2(0) {
Dale Johannesena471c2e2007-10-11 18:07:22 +00003279 initFromAPInt(api, isIEEE);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003280}
3281
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003282APFloat::APFloat(float f) : exponent2(0), sign2(0) {
Jay Foade4d19c92010-11-28 21:04:48 +00003283 initFromAPInt(APInt::floatToBits(f));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003284}
3285
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003286APFloat::APFloat(double d) : exponent2(0), sign2(0) {
Jay Foade4d19c92010-11-28 21:04:48 +00003287 initFromAPInt(APInt::doubleToBits(d));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003288}
John McCall00e65de2009-12-24 08:56:26 +00003289
3290namespace {
3291 static void append(SmallVectorImpl<char> &Buffer,
3292 unsigned N, const char *Str) {
3293 unsigned Start = Buffer.size();
3294 Buffer.set_size(Start + N);
3295 memcpy(&Buffer[Start], Str, N);
3296 }
3297
3298 template <unsigned N>
3299 void append(SmallVectorImpl<char> &Buffer, const char (&Str)[N]) {
3300 append(Buffer, N, Str);
3301 }
3302
John McCall003a09c2009-12-24 12:16:56 +00003303 /// Removes data from the given significand until it is no more
3304 /// precise than is required for the desired precision.
3305 void AdjustToPrecision(APInt &significand,
3306 int &exp, unsigned FormatPrecision) {
3307 unsigned bits = significand.getActiveBits();
3308
3309 // 196/59 is a very slight overestimate of lg_2(10).
3310 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59;
3311
3312 if (bits <= bitsRequired) return;
3313
3314 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196;
3315 if (!tensRemovable) return;
3316
3317 exp += tensRemovable;
3318
3319 APInt divisor(significand.getBitWidth(), 1);
3320 APInt powten(significand.getBitWidth(), 10);
3321 while (true) {
3322 if (tensRemovable & 1)
3323 divisor *= powten;
3324 tensRemovable >>= 1;
3325 if (!tensRemovable) break;
3326 powten *= powten;
3327 }
3328
3329 significand = significand.udiv(divisor);
3330
3331 // Truncate the significand down to its active bit count, but
3332 // don't try to drop below 32.
John McCall6a09aff2009-12-24 23:18:09 +00003333 unsigned newPrecision = std::max(32U, significand.getActiveBits());
Jay Foad40f8f622010-12-07 08:25:19 +00003334 significand = significand.trunc(newPrecision);
John McCall003a09c2009-12-24 12:16:56 +00003335 }
3336
3337
John McCall00e65de2009-12-24 08:56:26 +00003338 void AdjustToPrecision(SmallVectorImpl<char> &buffer,
3339 int &exp, unsigned FormatPrecision) {
3340 unsigned N = buffer.size();
3341 if (N <= FormatPrecision) return;
3342
3343 // The most significant figures are the last ones in the buffer.
3344 unsigned FirstSignificant = N - FormatPrecision;
3345
3346 // Round.
3347 // FIXME: this probably shouldn't use 'round half up'.
3348
3349 // Rounding down is just a truncation, except we also want to drop
3350 // trailing zeros from the new result.
3351 if (buffer[FirstSignificant - 1] < '5') {
3352 while (buffer[FirstSignificant] == '0')
3353 FirstSignificant++;
3354
3355 exp += FirstSignificant;
3356 buffer.erase(&buffer[0], &buffer[FirstSignificant]);
3357 return;
3358 }
3359
3360 // Rounding up requires a decimal add-with-carry. If we continue
3361 // the carry, the newly-introduced zeros will just be truncated.
3362 for (unsigned I = FirstSignificant; I != N; ++I) {
3363 if (buffer[I] == '9') {
3364 FirstSignificant++;
3365 } else {
3366 buffer[I]++;
3367 break;
3368 }
3369 }
3370
3371 // If we carried through, we have exactly one digit of precision.
3372 if (FirstSignificant == N) {
3373 exp += FirstSignificant;
3374 buffer.clear();
3375 buffer.push_back('1');
3376 return;
3377 }
3378
3379 exp += FirstSignificant;
3380 buffer.erase(&buffer[0], &buffer[FirstSignificant]);
3381 }
3382}
3383
3384void APFloat::toString(SmallVectorImpl<char> &Str,
3385 unsigned FormatPrecision,
Chris Lattner0ddda3b2010-03-06 19:20:13 +00003386 unsigned FormatMaxPadding) const {
John McCall00e65de2009-12-24 08:56:26 +00003387 switch (category) {
3388 case fcInfinity:
3389 if (isNegative())
3390 return append(Str, "-Inf");
3391 else
3392 return append(Str, "+Inf");
3393
3394 case fcNaN: return append(Str, "NaN");
3395
3396 case fcZero:
3397 if (isNegative())
3398 Str.push_back('-');
3399
3400 if (!FormatMaxPadding)
3401 append(Str, "0.0E+0");
3402 else
3403 Str.push_back('0');
3404 return;
3405
3406 case fcNormal:
3407 break;
3408 }
3409
3410 if (isNegative())
3411 Str.push_back('-');
3412
3413 // Decompose the number into an APInt and an exponent.
3414 int exp = exponent - ((int) semantics->precision - 1);
3415 APInt significand(semantics->precision,
3416 partCountForBits(semantics->precision),
3417 significandParts());
3418
John McCall6a09aff2009-12-24 23:18:09 +00003419 // Set FormatPrecision if zero. We want to do this before we
3420 // truncate trailing zeros, as those are part of the precision.
3421 if (!FormatPrecision) {
3422 // It's an interesting question whether to use the nominal
3423 // precision or the active precision here for denormals.
3424
3425 // FormatPrecision = ceil(significandBits / lg_2(10))
3426 FormatPrecision = (semantics->precision * 59 + 195) / 196;
3427 }
3428
John McCall00e65de2009-12-24 08:56:26 +00003429 // Ignore trailing binary zeros.
3430 int trailingZeros = significand.countTrailingZeros();
3431 exp += trailingZeros;
3432 significand = significand.lshr(trailingZeros);
3433
3434 // Change the exponent from 2^e to 10^e.
3435 if (exp == 0) {
3436 // Nothing to do.
3437 } else if (exp > 0) {
3438 // Just shift left.
Jay Foad40f8f622010-12-07 08:25:19 +00003439 significand = significand.zext(semantics->precision + exp);
John McCall00e65de2009-12-24 08:56:26 +00003440 significand <<= exp;
3441 exp = 0;
3442 } else { /* exp < 0 */
3443 int texp = -exp;
3444
3445 // We transform this using the identity:
3446 // (N)(2^-e) == (N)(5^e)(10^-e)
3447 // This means we have to multiply N (the significand) by 5^e.
3448 // To avoid overflow, we have to operate on numbers large
3449 // enough to store N * 5^e:
3450 // log2(N * 5^e) == log2(N) + e * log2(5)
John McCall6a09aff2009-12-24 23:18:09 +00003451 // <= semantics->precision + e * 137 / 59
3452 // (log_2(5) ~ 2.321928 < 2.322034 ~ 137/59)
Dan Gohman16e02092010-03-24 19:38:02 +00003453
John McCall6a09aff2009-12-24 23:18:09 +00003454 unsigned precision = semantics->precision + 137 * texp / 59;
John McCall00e65de2009-12-24 08:56:26 +00003455
3456 // Multiply significand by 5^e.
3457 // N * 5^0101 == N * 5^(1*1) * 5^(0*2) * 5^(1*4) * 5^(0*8)
Jay Foad40f8f622010-12-07 08:25:19 +00003458 significand = significand.zext(precision);
John McCall00e65de2009-12-24 08:56:26 +00003459 APInt five_to_the_i(precision, 5);
3460 while (true) {
3461 if (texp & 1) significand *= five_to_the_i;
Dan Gohman16e02092010-03-24 19:38:02 +00003462
John McCall00e65de2009-12-24 08:56:26 +00003463 texp >>= 1;
3464 if (!texp) break;
3465 five_to_the_i *= five_to_the_i;
3466 }
3467 }
3468
John McCall003a09c2009-12-24 12:16:56 +00003469 AdjustToPrecision(significand, exp, FormatPrecision);
3470
John McCall00e65de2009-12-24 08:56:26 +00003471 llvm::SmallVector<char, 256> buffer;
3472
3473 // Fill the buffer.
3474 unsigned precision = significand.getBitWidth();
3475 APInt ten(precision, 10);
3476 APInt digit(precision, 0);
3477
3478 bool inTrail = true;
3479 while (significand != 0) {
3480 // digit <- significand % 10
3481 // significand <- significand / 10
3482 APInt::udivrem(significand, ten, significand, digit);
3483
3484 unsigned d = digit.getZExtValue();
3485
3486 // Drop trailing zeros.
3487 if (inTrail && !d) exp++;
3488 else {
3489 buffer.push_back((char) ('0' + d));
3490 inTrail = false;
3491 }
3492 }
3493
3494 assert(!buffer.empty() && "no characters in buffer!");
3495
3496 // Drop down to FormatPrecision.
3497 // TODO: don't do more precise calculations above than are required.
3498 AdjustToPrecision(buffer, exp, FormatPrecision);
3499
3500 unsigned NDigits = buffer.size();
3501
John McCall6a09aff2009-12-24 23:18:09 +00003502 // Check whether we should use scientific notation.
John McCall00e65de2009-12-24 08:56:26 +00003503 bool FormatScientific;
3504 if (!FormatMaxPadding)
3505 FormatScientific = true;
3506 else {
John McCall00e65de2009-12-24 08:56:26 +00003507 if (exp >= 0) {
John McCall6a09aff2009-12-24 23:18:09 +00003508 // 765e3 --> 765000
3509 // ^^^
3510 // But we shouldn't make the number look more precise than it is.
3511 FormatScientific = ((unsigned) exp > FormatMaxPadding ||
3512 NDigits + (unsigned) exp > FormatPrecision);
John McCall00e65de2009-12-24 08:56:26 +00003513 } else {
John McCall6a09aff2009-12-24 23:18:09 +00003514 // Power of the most significant digit.
3515 int MSD = exp + (int) (NDigits - 1);
3516 if (MSD >= 0) {
John McCall00e65de2009-12-24 08:56:26 +00003517 // 765e-2 == 7.65
John McCall6a09aff2009-12-24 23:18:09 +00003518 FormatScientific = false;
John McCall00e65de2009-12-24 08:56:26 +00003519 } else {
3520 // 765e-5 == 0.00765
3521 // ^ ^^
John McCall6a09aff2009-12-24 23:18:09 +00003522 FormatScientific = ((unsigned) -MSD) > FormatMaxPadding;
John McCall00e65de2009-12-24 08:56:26 +00003523 }
3524 }
John McCall00e65de2009-12-24 08:56:26 +00003525 }
3526
3527 // Scientific formatting is pretty straightforward.
3528 if (FormatScientific) {
3529 exp += (NDigits - 1);
3530
3531 Str.push_back(buffer[NDigits-1]);
3532 Str.push_back('.');
3533 if (NDigits == 1)
3534 Str.push_back('0');
3535 else
3536 for (unsigned I = 1; I != NDigits; ++I)
3537 Str.push_back(buffer[NDigits-1-I]);
3538 Str.push_back('E');
3539
3540 Str.push_back(exp >= 0 ? '+' : '-');
3541 if (exp < 0) exp = -exp;
3542 SmallVector<char, 6> expbuf;
3543 do {
3544 expbuf.push_back((char) ('0' + (exp % 10)));
3545 exp /= 10;
3546 } while (exp);
3547 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3548 Str.push_back(expbuf[E-1-I]);
3549 return;
3550 }
3551
3552 // Non-scientific, positive exponents.
3553 if (exp >= 0) {
3554 for (unsigned I = 0; I != NDigits; ++I)
3555 Str.push_back(buffer[NDigits-1-I]);
3556 for (unsigned I = 0; I != (unsigned) exp; ++I)
3557 Str.push_back('0');
3558 return;
3559 }
3560
3561 // Non-scientific, negative exponents.
3562
3563 // The number of digits to the left of the decimal point.
3564 int NWholeDigits = exp + (int) NDigits;
3565
3566 unsigned I = 0;
3567 if (NWholeDigits > 0) {
3568 for (; I != (unsigned) NWholeDigits; ++I)
3569 Str.push_back(buffer[NDigits-I-1]);
3570 Str.push_back('.');
3571 } else {
3572 unsigned NZeros = 1 + (unsigned) -NWholeDigits;
3573
3574 Str.push_back('0');
3575 Str.push_back('.');
3576 for (unsigned Z = 1; Z != NZeros; ++Z)
3577 Str.push_back('0');
3578 }
3579
3580 for (; I != NDigits; ++I)
3581 Str.push_back(buffer[NDigits-I-1]);
3582}
Benjamin Kramer27460002011-03-30 15:42:27 +00003583
3584bool APFloat::getExactInverse(APFloat *inv) const {
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003585 // We can only guarantee the existence of an exact inverse for IEEE floats.
Benjamin Kramer27460002011-03-30 15:42:27 +00003586 if (semantics != &IEEEhalf && semantics != &IEEEsingle &&
3587 semantics != &IEEEdouble && semantics != &IEEEquad)
3588 return false;
3589
3590 // Special floats and denormals have no exact inverse.
3591 if (category != fcNormal)
3592 return false;
3593
3594 // Check that the number is a power of two by making sure that only the
3595 // integer bit is set in the significand.
3596 if (significandLSB() != semantics->precision - 1)
3597 return false;
3598
3599 // Get the inverse.
3600 APFloat reciprocal(*semantics, 1ULL);
3601 if (reciprocal.divide(*this, rmNearestTiesToEven) != opOK)
3602 return false;
3603
Benjamin Kramer83985122011-03-30 17:02:54 +00003604 // Avoid multiplication with a denormal, it is not safe on all platforms and
3605 // may be slower than a normal division.
3606 if (reciprocal.significandMSB() + 1 < reciprocal.semantics->precision)
3607 return false;
3608
3609 assert(reciprocal.category == fcNormal &&
3610 reciprocal.significandLSB() == reciprocal.semantics->precision - 1);
3611
Benjamin Kramer27460002011-03-30 15:42:27 +00003612 if (inv)
3613 *inv = reciprocal;
3614
3615 return true;
3616}