blob: 0ae6f1c39e3462c428fff0572982ba21d68c3089 [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);
Duncan Sands1f6a3292011-08-12 14:54:45 +0000835 (void)carry;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000836}
837
838/* Add the significand of the RHS. Returns the carry flag. */
839integerPart
840APFloat::addSignificand(const APFloat &rhs)
841{
842 integerPart *parts;
843
844 parts = significandParts();
845
846 assert(semantics == rhs.semantics);
847 assert(exponent == rhs.exponent);
848
849 return APInt::tcAdd(parts, rhs.significandParts(), 0, partCount());
850}
851
852/* Subtract the significand of the RHS with a borrow flag. Returns
853 the borrow flag. */
854integerPart
855APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
856{
857 integerPart *parts;
858
859 parts = significandParts();
860
861 assert(semantics == rhs.semantics);
862 assert(exponent == rhs.exponent);
863
864 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
Neil Booth4f881702007-09-26 21:33:42 +0000865 partCount());
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000866}
867
868/* Multiply the significand of the RHS. If ADDEND is non-NULL, add it
869 on to the full-precision result of the multiplication. Returns the
870 lost fraction. */
871lostFraction
872APFloat::multiplySignificand(const APFloat &rhs, const APFloat *addend)
873{
Neil Booth4f881702007-09-26 21:33:42 +0000874 unsigned int omsb; // One, not zero, based MSB.
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000875 unsigned int partsCount, newPartsCount, precision;
876 integerPart *lhsSignificand;
877 integerPart scratch[4];
878 integerPart *fullSignificand;
879 lostFraction lost_fraction;
Dale Johannesen23a98552008-10-09 23:00:39 +0000880 bool ignored;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000881
882 assert(semantics == rhs.semantics);
883
884 precision = semantics->precision;
885 newPartsCount = partCountForBits(precision * 2);
886
Dan Gohman16e02092010-03-24 19:38:02 +0000887 if (newPartsCount > 4)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000888 fullSignificand = new integerPart[newPartsCount];
889 else
890 fullSignificand = scratch;
891
892 lhsSignificand = significandParts();
893 partsCount = partCount();
894
895 APInt::tcFullMultiply(fullSignificand, lhsSignificand,
Neil Booth978661d2007-10-06 00:24:48 +0000896 rhs.significandParts(), partsCount, partsCount);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000897
898 lost_fraction = lfExactlyZero;
899 omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1;
900 exponent += rhs.exponent;
901
Dan Gohman16e02092010-03-24 19:38:02 +0000902 if (addend) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000903 Significand savedSignificand = significand;
904 const fltSemantics *savedSemantics = semantics;
905 fltSemantics extendedSemantics;
906 opStatus status;
907 unsigned int extendedPrecision;
908
909 /* Normalize our MSB. */
910 extendedPrecision = precision + precision - 1;
Dan Gohman16e02092010-03-24 19:38:02 +0000911 if (omsb != extendedPrecision) {
912 APInt::tcShiftLeft(fullSignificand, newPartsCount,
913 extendedPrecision - omsb);
914 exponent -= extendedPrecision - omsb;
915 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000916
917 /* Create new semantics. */
918 extendedSemantics = *semantics;
919 extendedSemantics.precision = extendedPrecision;
920
Dan Gohman16e02092010-03-24 19:38:02 +0000921 if (newPartsCount == 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000922 significand.part = fullSignificand[0];
923 else
924 significand.parts = fullSignificand;
925 semantics = &extendedSemantics;
926
927 APFloat extendedAddend(*addend);
Dale Johannesen23a98552008-10-09 23:00:39 +0000928 status = extendedAddend.convert(extendedSemantics, rmTowardZero, &ignored);
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000929 assert(status == opOK);
Duncan Sands1f6a3292011-08-12 14:54:45 +0000930 (void)status;
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000931 lost_fraction = addOrSubtractSignificand(extendedAddend, false);
932
933 /* Restore our state. */
Dan Gohman16e02092010-03-24 19:38:02 +0000934 if (newPartsCount == 1)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000935 fullSignificand[0] = significand.part;
936 significand = savedSignificand;
937 semantics = savedSemantics;
938
939 omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1;
940 }
941
942 exponent -= (precision - 1);
943
Dan Gohman16e02092010-03-24 19:38:02 +0000944 if (omsb > precision) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000945 unsigned int bits, significantParts;
946 lostFraction lf;
947
948 bits = omsb - precision;
949 significantParts = partCountForBits(omsb);
950 lf = shiftRight(fullSignificand, significantParts, bits);
951 lost_fraction = combineLostFractions(lf, lost_fraction);
952 exponent += bits;
953 }
954
955 APInt::tcAssign(lhsSignificand, fullSignificand, partsCount);
956
Dan Gohman16e02092010-03-24 19:38:02 +0000957 if (newPartsCount > 4)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000958 delete [] fullSignificand;
959
960 return lost_fraction;
961}
962
963/* Multiply the significands of LHS and RHS to DST. */
964lostFraction
965APFloat::divideSignificand(const APFloat &rhs)
966{
967 unsigned int bit, i, partsCount;
968 const integerPart *rhsSignificand;
969 integerPart *lhsSignificand, *dividend, *divisor;
970 integerPart scratch[4];
971 lostFraction lost_fraction;
972
973 assert(semantics == rhs.semantics);
974
975 lhsSignificand = significandParts();
976 rhsSignificand = rhs.significandParts();
977 partsCount = partCount();
978
Dan Gohman16e02092010-03-24 19:38:02 +0000979 if (partsCount > 2)
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000980 dividend = new integerPart[partsCount * 2];
981 else
982 dividend = scratch;
983
984 divisor = dividend + partsCount;
985
986 /* Copy the dividend and divisor as they will be modified in-place. */
Dan Gohman16e02092010-03-24 19:38:02 +0000987 for (i = 0; i < partsCount; i++) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +0000988 dividend[i] = lhsSignificand[i];
989 divisor[i] = rhsSignificand[i];
990 lhsSignificand[i] = 0;
991 }
992
993 exponent -= rhs.exponent;
994
995 unsigned int precision = semantics->precision;
996
997 /* Normalize the divisor. */
998 bit = precision - APInt::tcMSB(divisor, partsCount) - 1;
Dan Gohman16e02092010-03-24 19:38:02 +0000999 if (bit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001000 exponent += bit;
1001 APInt::tcShiftLeft(divisor, partsCount, bit);
1002 }
1003
1004 /* Normalize the dividend. */
1005 bit = precision - APInt::tcMSB(dividend, partsCount) - 1;
Dan Gohman16e02092010-03-24 19:38:02 +00001006 if (bit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001007 exponent -= bit;
1008 APInt::tcShiftLeft(dividend, partsCount, bit);
1009 }
1010
Neil Booth96c74712007-10-12 16:02:31 +00001011 /* Ensure the dividend >= divisor initially for the loop below.
1012 Incidentally, this means that the division loop below is
1013 guaranteed to set the integer bit to one. */
Dan Gohman16e02092010-03-24 19:38:02 +00001014 if (APInt::tcCompare(dividend, divisor, partsCount) < 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001015 exponent--;
1016 APInt::tcShiftLeft(dividend, partsCount, 1);
1017 assert(APInt::tcCompare(dividend, divisor, partsCount) >= 0);
1018 }
1019
1020 /* Long division. */
Dan Gohman16e02092010-03-24 19:38:02 +00001021 for (bit = precision; bit; bit -= 1) {
1022 if (APInt::tcCompare(dividend, divisor, partsCount) >= 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001023 APInt::tcSubtract(dividend, divisor, 0, partsCount);
1024 APInt::tcSetBit(lhsSignificand, bit - 1);
1025 }
1026
1027 APInt::tcShiftLeft(dividend, partsCount, 1);
1028 }
1029
1030 /* Figure out the lost fraction. */
1031 int cmp = APInt::tcCompare(dividend, divisor, partsCount);
1032
Dan Gohman16e02092010-03-24 19:38:02 +00001033 if (cmp > 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001034 lost_fraction = lfMoreThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001035 else if (cmp == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001036 lost_fraction = lfExactlyHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001037 else if (APInt::tcIsZero(dividend, partsCount))
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001038 lost_fraction = lfExactlyZero;
1039 else
1040 lost_fraction = lfLessThanHalf;
1041
Dan Gohman16e02092010-03-24 19:38:02 +00001042 if (partsCount > 2)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001043 delete [] dividend;
1044
1045 return lost_fraction;
1046}
1047
1048unsigned int
1049APFloat::significandMSB() const
1050{
1051 return APInt::tcMSB(significandParts(), partCount());
1052}
1053
1054unsigned int
1055APFloat::significandLSB() const
1056{
1057 return APInt::tcLSB(significandParts(), partCount());
1058}
1059
1060/* Note that a zero result is NOT normalized to fcZero. */
1061lostFraction
1062APFloat::shiftSignificandRight(unsigned int bits)
1063{
1064 /* Our exponent should not overflow. */
1065 assert((exponent_t) (exponent + bits) >= exponent);
1066
1067 exponent += bits;
1068
1069 return shiftRight(significandParts(), partCount(), bits);
1070}
1071
1072/* Shift the significand left BITS bits, subtract BITS from its exponent. */
1073void
1074APFloat::shiftSignificandLeft(unsigned int bits)
1075{
1076 assert(bits < semantics->precision);
1077
Dan Gohman16e02092010-03-24 19:38:02 +00001078 if (bits) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001079 unsigned int partsCount = partCount();
1080
1081 APInt::tcShiftLeft(significandParts(), partsCount, bits);
1082 exponent -= bits;
1083
1084 assert(!APInt::tcIsZero(significandParts(), partsCount));
1085 }
1086}
1087
1088APFloat::cmpResult
1089APFloat::compareAbsoluteValue(const APFloat &rhs) const
1090{
1091 int compare;
1092
1093 assert(semantics == rhs.semantics);
1094 assert(category == fcNormal);
1095 assert(rhs.category == fcNormal);
1096
1097 compare = exponent - rhs.exponent;
1098
1099 /* If exponents are equal, do an unsigned bignum comparison of the
1100 significands. */
Dan Gohman16e02092010-03-24 19:38:02 +00001101 if (compare == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001102 compare = APInt::tcCompare(significandParts(), rhs.significandParts(),
Neil Booth4f881702007-09-26 21:33:42 +00001103 partCount());
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001104
Dan Gohman16e02092010-03-24 19:38:02 +00001105 if (compare > 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001106 return cmpGreaterThan;
Dan Gohman16e02092010-03-24 19:38:02 +00001107 else if (compare < 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001108 return cmpLessThan;
1109 else
1110 return cmpEqual;
1111}
1112
1113/* Handle overflow. Sign is preserved. We either become infinity or
1114 the largest finite number. */
1115APFloat::opStatus
1116APFloat::handleOverflow(roundingMode rounding_mode)
1117{
1118 /* Infinity? */
Dan Gohman16e02092010-03-24 19:38:02 +00001119 if (rounding_mode == rmNearestTiesToEven ||
1120 rounding_mode == rmNearestTiesToAway ||
1121 (rounding_mode == rmTowardPositive && !sign) ||
1122 (rounding_mode == rmTowardNegative && sign)) {
1123 category = fcInfinity;
1124 return (opStatus) (opOverflow | opInexact);
1125 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001126
1127 /* Otherwise we become the largest finite number. */
1128 category = fcNormal;
1129 exponent = semantics->maxExponent;
1130 APInt::tcSetLeastSignificantBits(significandParts(), partCount(),
Neil Booth4f881702007-09-26 21:33:42 +00001131 semantics->precision);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001132
1133 return opInexact;
1134}
1135
Neil Boothb7dea4c2007-10-03 15:16:41 +00001136/* Returns TRUE if, when truncating the current number, with BIT the
1137 new LSB, with the given lost fraction and rounding mode, the result
1138 would need to be rounded away from zero (i.e., by increasing the
1139 signficand). This routine must work for fcZero of both signs, and
1140 fcNormal numbers. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001141bool
1142APFloat::roundAwayFromZero(roundingMode rounding_mode,
Neil Boothb7dea4c2007-10-03 15:16:41 +00001143 lostFraction lost_fraction,
1144 unsigned int bit) const
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001145{
Dale Johanneseneaf08942007-08-31 04:03:46 +00001146 /* NaNs and infinities should not have lost fractions. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001147 assert(category == fcNormal || category == fcZero);
1148
Neil Boothb7dea4c2007-10-03 15:16:41 +00001149 /* Current callers never pass this so we don't handle it. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001150 assert(lost_fraction != lfExactlyZero);
1151
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001152 switch (rounding_mode) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001153 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001154 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001155
1156 case rmNearestTiesToAway:
1157 return lost_fraction == lfExactlyHalf || lost_fraction == lfMoreThanHalf;
1158
1159 case rmNearestTiesToEven:
Dan Gohman16e02092010-03-24 19:38:02 +00001160 if (lost_fraction == lfMoreThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001161 return true;
1162
1163 /* Our zeroes don't have a significand to test. */
Dan Gohman16e02092010-03-24 19:38:02 +00001164 if (lost_fraction == lfExactlyHalf && category != fcZero)
Neil Boothb7dea4c2007-10-03 15:16:41 +00001165 return APInt::tcExtractBit(significandParts(), bit);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001166
1167 return false;
1168
1169 case rmTowardZero:
1170 return false;
1171
1172 case rmTowardPositive:
1173 return sign == false;
1174
1175 case rmTowardNegative:
1176 return sign == true;
1177 }
1178}
1179
1180APFloat::opStatus
1181APFloat::normalize(roundingMode rounding_mode,
Neil Booth4f881702007-09-26 21:33:42 +00001182 lostFraction lost_fraction)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001183{
Neil Booth4f881702007-09-26 21:33:42 +00001184 unsigned int omsb; /* One, not zero, based MSB. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001185 int exponentChange;
1186
Dan Gohman16e02092010-03-24 19:38:02 +00001187 if (category != fcNormal)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001188 return opOK;
1189
1190 /* Before rounding normalize the exponent of fcNormal numbers. */
1191 omsb = significandMSB() + 1;
1192
Dan Gohman16e02092010-03-24 19:38:02 +00001193 if (omsb) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001194 /* OMSB is numbered from 1. We want to place it in the integer
Nick Lewycky03dd4e82011-10-03 21:30:08 +00001195 bit numbered PRECISION if possible, with a compensating change in
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001196 the exponent. */
1197 exponentChange = omsb - semantics->precision;
1198
1199 /* If the resulting exponent is too high, overflow according to
1200 the rounding mode. */
Dan Gohman16e02092010-03-24 19:38:02 +00001201 if (exponent + exponentChange > semantics->maxExponent)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001202 return handleOverflow(rounding_mode);
1203
1204 /* Subnormal numbers have exponent minExponent, and their MSB
1205 is forced based on that. */
Dan Gohman16e02092010-03-24 19:38:02 +00001206 if (exponent + exponentChange < semantics->minExponent)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001207 exponentChange = semantics->minExponent - exponent;
1208
1209 /* Shifting left is easy as we don't lose precision. */
Dan Gohman16e02092010-03-24 19:38:02 +00001210 if (exponentChange < 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001211 assert(lost_fraction == lfExactlyZero);
1212
1213 shiftSignificandLeft(-exponentChange);
1214
1215 return opOK;
1216 }
1217
Dan Gohman16e02092010-03-24 19:38:02 +00001218 if (exponentChange > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001219 lostFraction lf;
1220
1221 /* Shift right and capture any new lost fraction. */
1222 lf = shiftSignificandRight(exponentChange);
1223
1224 lost_fraction = combineLostFractions(lf, lost_fraction);
1225
1226 /* Keep OMSB up-to-date. */
Dan Gohman16e02092010-03-24 19:38:02 +00001227 if (omsb > (unsigned) exponentChange)
Neil Booth96c74712007-10-12 16:02:31 +00001228 omsb -= exponentChange;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001229 else
Neil Booth4f881702007-09-26 21:33:42 +00001230 omsb = 0;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001231 }
1232 }
1233
1234 /* Now round the number according to rounding_mode given the lost
1235 fraction. */
1236
1237 /* As specified in IEEE 754, since we do not trap we do not report
1238 underflow for exact results. */
Dan Gohman16e02092010-03-24 19:38:02 +00001239 if (lost_fraction == lfExactlyZero) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001240 /* Canonicalize zeroes. */
Dan Gohman16e02092010-03-24 19:38:02 +00001241 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001242 category = fcZero;
1243
1244 return opOK;
1245 }
1246
1247 /* Increment the significand if we're rounding away from zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001248 if (roundAwayFromZero(rounding_mode, lost_fraction, 0)) {
1249 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001250 exponent = semantics->minExponent;
1251
1252 incrementSignificand();
1253 omsb = significandMSB() + 1;
1254
1255 /* Did the significand increment overflow? */
Dan Gohman16e02092010-03-24 19:38:02 +00001256 if (omsb == (unsigned) semantics->precision + 1) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001257 /* Renormalize by incrementing the exponent and shifting our
Neil Booth4f881702007-09-26 21:33:42 +00001258 significand right one. However if we already have the
1259 maximum exponent we overflow to infinity. */
Dan Gohman16e02092010-03-24 19:38:02 +00001260 if (exponent == semantics->maxExponent) {
Neil Booth4f881702007-09-26 21:33:42 +00001261 category = fcInfinity;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001262
Neil Booth4f881702007-09-26 21:33:42 +00001263 return (opStatus) (opOverflow | opInexact);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001264 }
1265
1266 shiftSignificandRight(1);
1267
1268 return opInexact;
1269 }
1270 }
1271
1272 /* The normal case - we were and are not denormal, and any
1273 significand increment above didn't overflow. */
Dan Gohman16e02092010-03-24 19:38:02 +00001274 if (omsb == semantics->precision)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001275 return opInexact;
1276
1277 /* We have a non-zero denormal. */
1278 assert(omsb < semantics->precision);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001279
1280 /* Canonicalize zeroes. */
Dan Gohman16e02092010-03-24 19:38:02 +00001281 if (omsb == 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001282 category = fcZero;
1283
1284 /* The fcZero case is a denormal that underflowed to zero. */
1285 return (opStatus) (opUnderflow | opInexact);
1286}
1287
1288APFloat::opStatus
1289APFloat::addOrSubtractSpecials(const APFloat &rhs, bool subtract)
1290{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001291 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001292 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001293 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001294
Dale Johanneseneaf08942007-08-31 04:03:46 +00001295 case convolve(fcNaN, fcZero):
1296 case convolve(fcNaN, fcNormal):
1297 case convolve(fcNaN, fcInfinity):
1298 case convolve(fcNaN, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001299 case convolve(fcNormal, fcZero):
1300 case convolve(fcInfinity, fcNormal):
1301 case convolve(fcInfinity, fcZero):
1302 return opOK;
1303
Dale Johanneseneaf08942007-08-31 04:03:46 +00001304 case convolve(fcZero, fcNaN):
1305 case convolve(fcNormal, fcNaN):
1306 case convolve(fcInfinity, fcNaN):
1307 category = fcNaN;
1308 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001309 return opOK;
1310
1311 case convolve(fcNormal, fcInfinity):
1312 case convolve(fcZero, fcInfinity):
1313 category = fcInfinity;
1314 sign = rhs.sign ^ subtract;
1315 return opOK;
1316
1317 case convolve(fcZero, fcNormal):
1318 assign(rhs);
1319 sign = rhs.sign ^ subtract;
1320 return opOK;
1321
1322 case convolve(fcZero, fcZero):
1323 /* Sign depends on rounding mode; handled by caller. */
1324 return opOK;
1325
1326 case convolve(fcInfinity, fcInfinity):
1327 /* Differently signed infinities can only be validly
1328 subtracted. */
Dan Gohman16e02092010-03-24 19:38:02 +00001329 if (((sign ^ rhs.sign)!=0) != subtract) {
Neil Boothe5e01942007-10-14 10:39:51 +00001330 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001331 return opInvalidOp;
1332 }
1333
1334 return opOK;
1335
1336 case convolve(fcNormal, fcNormal):
1337 return opDivByZero;
1338 }
1339}
1340
1341/* Add or subtract two normal numbers. */
1342lostFraction
1343APFloat::addOrSubtractSignificand(const APFloat &rhs, bool subtract)
1344{
1345 integerPart carry;
1346 lostFraction lost_fraction;
1347 int bits;
1348
1349 /* Determine if the operation on the absolute values is effectively
1350 an addition or subtraction. */
Hartmut Kaiser8df77a92007-10-25 23:15:31 +00001351 subtract ^= (sign ^ rhs.sign) ? true : false;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001352
1353 /* Are we bigger exponent-wise than the RHS? */
1354 bits = exponent - rhs.exponent;
1355
1356 /* Subtraction is more subtle than one might naively expect. */
Dan Gohman16e02092010-03-24 19:38:02 +00001357 if (subtract) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001358 APFloat temp_rhs(rhs);
1359 bool reverse;
1360
Chris Lattnerada530b2007-08-24 03:02:34 +00001361 if (bits == 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001362 reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan;
1363 lost_fraction = lfExactlyZero;
Chris Lattnerada530b2007-08-24 03:02:34 +00001364 } else if (bits > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001365 lost_fraction = temp_rhs.shiftSignificandRight(bits - 1);
1366 shiftSignificandLeft(1);
1367 reverse = false;
Chris Lattnerada530b2007-08-24 03:02:34 +00001368 } else {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001369 lost_fraction = shiftSignificandRight(-bits - 1);
1370 temp_rhs.shiftSignificandLeft(1);
1371 reverse = true;
1372 }
1373
Chris Lattnerada530b2007-08-24 03:02:34 +00001374 if (reverse) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001375 carry = temp_rhs.subtractSignificand
Neil Booth4f881702007-09-26 21:33:42 +00001376 (*this, lost_fraction != lfExactlyZero);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001377 copySignificand(temp_rhs);
1378 sign = !sign;
1379 } else {
1380 carry = subtractSignificand
Neil Booth4f881702007-09-26 21:33:42 +00001381 (temp_rhs, lost_fraction != lfExactlyZero);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001382 }
1383
1384 /* Invert the lost fraction - it was on the RHS and
1385 subtracted. */
Dan Gohman16e02092010-03-24 19:38:02 +00001386 if (lost_fraction == lfLessThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001387 lost_fraction = lfMoreThanHalf;
Dan Gohman16e02092010-03-24 19:38:02 +00001388 else if (lost_fraction == lfMoreThanHalf)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001389 lost_fraction = lfLessThanHalf;
1390
1391 /* The code above is intended to ensure that no borrow is
1392 necessary. */
1393 assert(!carry);
Duncan Sands1f6a3292011-08-12 14:54:45 +00001394 (void)carry;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001395 } else {
Dan Gohman16e02092010-03-24 19:38:02 +00001396 if (bits > 0) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001397 APFloat temp_rhs(rhs);
1398
1399 lost_fraction = temp_rhs.shiftSignificandRight(bits);
1400 carry = addSignificand(temp_rhs);
1401 } else {
1402 lost_fraction = shiftSignificandRight(-bits);
1403 carry = addSignificand(rhs);
1404 }
1405
1406 /* We have a guard bit; generating a carry cannot happen. */
1407 assert(!carry);
Duncan Sands1f6a3292011-08-12 14:54:45 +00001408 (void)carry;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001409 }
1410
1411 return lost_fraction;
1412}
1413
1414APFloat::opStatus
1415APFloat::multiplySpecials(const APFloat &rhs)
1416{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001417 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001418 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001419 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001420
Dale Johanneseneaf08942007-08-31 04:03:46 +00001421 case convolve(fcNaN, fcZero):
1422 case convolve(fcNaN, fcNormal):
1423 case convolve(fcNaN, fcInfinity):
1424 case convolve(fcNaN, fcNaN):
1425 return opOK;
1426
1427 case convolve(fcZero, fcNaN):
1428 case convolve(fcNormal, fcNaN):
1429 case convolve(fcInfinity, fcNaN):
1430 category = fcNaN;
1431 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001432 return opOK;
1433
1434 case convolve(fcNormal, fcInfinity):
1435 case convolve(fcInfinity, fcNormal):
1436 case convolve(fcInfinity, fcInfinity):
1437 category = fcInfinity;
1438 return opOK;
1439
1440 case convolve(fcZero, fcNormal):
1441 case convolve(fcNormal, fcZero):
1442 case convolve(fcZero, fcZero):
1443 category = fcZero;
1444 return opOK;
1445
1446 case convolve(fcZero, fcInfinity):
1447 case convolve(fcInfinity, fcZero):
Neil Boothe5e01942007-10-14 10:39:51 +00001448 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001449 return opInvalidOp;
1450
1451 case convolve(fcNormal, fcNormal):
1452 return opOK;
1453 }
1454}
1455
1456APFloat::opStatus
1457APFloat::divideSpecials(const APFloat &rhs)
1458{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001459 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001460 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001461 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001462
Dale Johanneseneaf08942007-08-31 04:03:46 +00001463 case convolve(fcNaN, fcZero):
1464 case convolve(fcNaN, fcNormal):
1465 case convolve(fcNaN, fcInfinity):
1466 case convolve(fcNaN, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001467 case convolve(fcInfinity, fcZero):
1468 case convolve(fcInfinity, fcNormal):
1469 case convolve(fcZero, fcInfinity):
1470 case convolve(fcZero, fcNormal):
1471 return opOK;
1472
Dale Johanneseneaf08942007-08-31 04:03:46 +00001473 case convolve(fcZero, fcNaN):
1474 case convolve(fcNormal, fcNaN):
1475 case convolve(fcInfinity, fcNaN):
1476 category = fcNaN;
1477 copySignificand(rhs);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001478 return opOK;
1479
1480 case convolve(fcNormal, fcInfinity):
1481 category = fcZero;
1482 return opOK;
1483
1484 case convolve(fcNormal, fcZero):
1485 category = fcInfinity;
1486 return opDivByZero;
1487
1488 case convolve(fcInfinity, fcInfinity):
1489 case convolve(fcZero, fcZero):
Neil Boothe5e01942007-10-14 10:39:51 +00001490 makeNaN();
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001491 return opInvalidOp;
1492
1493 case convolve(fcNormal, fcNormal):
1494 return opOK;
1495 }
1496}
1497
Dale Johannesened6af242009-01-21 00:35:19 +00001498APFloat::opStatus
1499APFloat::modSpecials(const APFloat &rhs)
1500{
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001501 switch (convolve(category, rhs.category)) {
Dale Johannesened6af242009-01-21 00:35:19 +00001502 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001503 llvm_unreachable(0);
Dale Johannesened6af242009-01-21 00:35:19 +00001504
1505 case convolve(fcNaN, fcZero):
1506 case convolve(fcNaN, fcNormal):
1507 case convolve(fcNaN, fcInfinity):
1508 case convolve(fcNaN, fcNaN):
1509 case convolve(fcZero, fcInfinity):
1510 case convolve(fcZero, fcNormal):
1511 case convolve(fcNormal, fcInfinity):
1512 return opOK;
1513
1514 case convolve(fcZero, fcNaN):
1515 case convolve(fcNormal, fcNaN):
1516 case convolve(fcInfinity, fcNaN):
1517 category = fcNaN;
1518 copySignificand(rhs);
1519 return opOK;
1520
1521 case convolve(fcNormal, fcZero):
1522 case convolve(fcInfinity, fcZero):
1523 case convolve(fcInfinity, fcNormal):
1524 case convolve(fcInfinity, fcInfinity):
1525 case convolve(fcZero, fcZero):
1526 makeNaN();
1527 return opInvalidOp;
1528
1529 case convolve(fcNormal, fcNormal):
1530 return opOK;
1531 }
1532}
1533
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001534/* Change sign. */
1535void
1536APFloat::changeSign()
1537{
1538 /* Look mummy, this one's easy. */
1539 sign = !sign;
1540}
1541
Dale Johannesene15c2db2007-08-31 23:35:31 +00001542void
1543APFloat::clearSign()
1544{
1545 /* So is this one. */
1546 sign = 0;
1547}
1548
1549void
1550APFloat::copySign(const APFloat &rhs)
1551{
1552 /* And this one. */
1553 sign = rhs.sign;
1554}
1555
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001556/* Normalized addition or subtraction. */
1557APFloat::opStatus
1558APFloat::addOrSubtract(const APFloat &rhs, roundingMode rounding_mode,
Neil Booth4f881702007-09-26 21:33:42 +00001559 bool subtract)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001560{
1561 opStatus fs;
1562
Neil Boothcaf19d72007-10-14 10:29:28 +00001563 assertArithmeticOK(*semantics);
1564
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001565 fs = addOrSubtractSpecials(rhs, subtract);
1566
1567 /* This return code means it was not a simple case. */
Dan Gohman16e02092010-03-24 19:38:02 +00001568 if (fs == opDivByZero) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001569 lostFraction lost_fraction;
1570
1571 lost_fraction = addOrSubtractSignificand(rhs, subtract);
1572 fs = normalize(rounding_mode, lost_fraction);
1573
1574 /* Can only be zero if we lost no fraction. */
1575 assert(category != fcZero || lost_fraction == lfExactlyZero);
1576 }
1577
1578 /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a
1579 positive zero unless rounding to minus infinity, except that
1580 adding two like-signed zeroes gives that zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001581 if (category == fcZero) {
1582 if (rhs.category != fcZero || (sign == rhs.sign) == subtract)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001583 sign = (rounding_mode == rmTowardNegative);
1584 }
1585
1586 return fs;
1587}
1588
1589/* Normalized addition. */
1590APFloat::opStatus
1591APFloat::add(const APFloat &rhs, roundingMode rounding_mode)
1592{
1593 return addOrSubtract(rhs, rounding_mode, false);
1594}
1595
1596/* Normalized subtraction. */
1597APFloat::opStatus
1598APFloat::subtract(const APFloat &rhs, roundingMode rounding_mode)
1599{
1600 return addOrSubtract(rhs, rounding_mode, true);
1601}
1602
1603/* Normalized multiply. */
1604APFloat::opStatus
1605APFloat::multiply(const APFloat &rhs, roundingMode rounding_mode)
1606{
1607 opStatus fs;
1608
Neil Boothcaf19d72007-10-14 10:29:28 +00001609 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001610 sign ^= rhs.sign;
1611 fs = multiplySpecials(rhs);
1612
Dan Gohman16e02092010-03-24 19:38:02 +00001613 if (category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001614 lostFraction lost_fraction = multiplySignificand(rhs, 0);
1615 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001616 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001617 fs = (opStatus) (fs | opInexact);
1618 }
1619
1620 return fs;
1621}
1622
1623/* Normalized divide. */
1624APFloat::opStatus
1625APFloat::divide(const APFloat &rhs, roundingMode rounding_mode)
1626{
1627 opStatus fs;
1628
Neil Boothcaf19d72007-10-14 10:29:28 +00001629 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001630 sign ^= rhs.sign;
1631 fs = divideSpecials(rhs);
1632
Dan Gohman16e02092010-03-24 19:38:02 +00001633 if (category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001634 lostFraction lost_fraction = divideSignificand(rhs);
1635 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001636 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001637 fs = (opStatus) (fs | opInexact);
1638 }
1639
1640 return fs;
1641}
1642
Dale Johannesen24b66a82009-01-20 18:35:05 +00001643/* Normalized remainder. This is not currently correct in all cases. */
1644APFloat::opStatus
1645APFloat::remainder(const APFloat &rhs)
1646{
1647 opStatus fs;
1648 APFloat V = *this;
1649 unsigned int origSign = sign;
1650
1651 assertArithmeticOK(*semantics);
1652 fs = V.divide(rhs, rmNearestTiesToEven);
1653 if (fs == opDivByZero)
1654 return fs;
1655
1656 int parts = partCount();
1657 integerPart *x = new integerPart[parts];
1658 bool ignored;
1659 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1660 rmNearestTiesToEven, &ignored);
1661 if (fs==opInvalidOp)
1662 return fs;
1663
1664 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
1665 rmNearestTiesToEven);
1666 assert(fs==opOK); // should always work
1667
1668 fs = V.multiply(rhs, rmNearestTiesToEven);
1669 assert(fs==opOK || fs==opInexact); // should not overflow or underflow
1670
1671 fs = subtract(V, rmNearestTiesToEven);
1672 assert(fs==opOK || fs==opInexact); // likewise
1673
1674 if (isZero())
1675 sign = origSign; // IEEE754 requires this
1676 delete[] x;
1677 return fs;
1678}
1679
Dan Gohman16e02092010-03-24 19:38:02 +00001680/* Normalized llvm frem (C fmod).
Dale Johannesen24b66a82009-01-20 18:35:05 +00001681 This is not currently correct in all cases. */
Dale Johannesene15c2db2007-08-31 23:35:31 +00001682APFloat::opStatus
1683APFloat::mod(const APFloat &rhs, roundingMode rounding_mode)
1684{
1685 opStatus fs;
Neil Boothcaf19d72007-10-14 10:29:28 +00001686 assertArithmeticOK(*semantics);
Dale Johannesened6af242009-01-21 00:35:19 +00001687 fs = modSpecials(rhs);
Dale Johannesene15c2db2007-08-31 23:35:31 +00001688
Dale Johannesened6af242009-01-21 00:35:19 +00001689 if (category == fcNormal && rhs.category == fcNormal) {
1690 APFloat V = *this;
1691 unsigned int origSign = sign;
Dale Johannesene15c2db2007-08-31 23:35:31 +00001692
Dale Johannesened6af242009-01-21 00:35:19 +00001693 fs = V.divide(rhs, rmNearestTiesToEven);
1694 if (fs == opDivByZero)
1695 return fs;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001696
Dale Johannesened6af242009-01-21 00:35:19 +00001697 int parts = partCount();
1698 integerPart *x = new integerPart[parts];
1699 bool ignored;
1700 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1701 rmTowardZero, &ignored);
1702 if (fs==opInvalidOp)
1703 return fs;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001704
Dale Johannesened6af242009-01-21 00:35:19 +00001705 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
1706 rmNearestTiesToEven);
1707 assert(fs==opOK); // should always work
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00001708
Dale Johannesened6af242009-01-21 00:35:19 +00001709 fs = V.multiply(rhs, rounding_mode);
1710 assert(fs==opOK || fs==opInexact); // should not overflow or underflow
1711
1712 fs = subtract(V, rounding_mode);
1713 assert(fs==opOK || fs==opInexact); // likewise
1714
1715 if (isZero())
1716 sign = origSign; // IEEE754 requires this
1717 delete[] x;
1718 }
Dale Johannesene15c2db2007-08-31 23:35:31 +00001719 return fs;
1720}
1721
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001722/* Normalized fused-multiply-add. */
1723APFloat::opStatus
1724APFloat::fusedMultiplyAdd(const APFloat &multiplicand,
Neil Booth4f881702007-09-26 21:33:42 +00001725 const APFloat &addend,
1726 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001727{
1728 opStatus fs;
1729
Neil Boothcaf19d72007-10-14 10:29:28 +00001730 assertArithmeticOK(*semantics);
1731
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001732 /* Post-multiplication sign, before addition. */
1733 sign ^= multiplicand.sign;
1734
1735 /* If and only if all arguments are normal do we need to do an
1736 extended-precision calculation. */
Dan Gohman16e02092010-03-24 19:38:02 +00001737 if (category == fcNormal &&
1738 multiplicand.category == fcNormal &&
1739 addend.category == fcNormal) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001740 lostFraction lost_fraction;
1741
1742 lost_fraction = multiplySignificand(multiplicand, &addend);
1743 fs = normalize(rounding_mode, lost_fraction);
Dan Gohman16e02092010-03-24 19:38:02 +00001744 if (lost_fraction != lfExactlyZero)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001745 fs = (opStatus) (fs | opInexact);
1746
1747 /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a
1748 positive zero unless rounding to minus infinity, except that
1749 adding two like-signed zeroes gives that zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00001750 if (category == fcZero && sign != addend.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001751 sign = (rounding_mode == rmTowardNegative);
1752 } else {
1753 fs = multiplySpecials(multiplicand);
1754
1755 /* FS can only be opOK or opInvalidOp. There is no more work
1756 to do in the latter case. The IEEE-754R standard says it is
1757 implementation-defined in this case whether, if ADDEND is a
Dale Johanneseneaf08942007-08-31 04:03:46 +00001758 quiet NaN, we raise invalid op; this implementation does so.
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001759
1760 If we need to do the addition we can do so with normal
1761 precision. */
Dan Gohman16e02092010-03-24 19:38:02 +00001762 if (fs == opOK)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001763 fs = addOrSubtract(addend, rounding_mode, false);
1764 }
1765
1766 return fs;
1767}
1768
1769/* Comparison requires normalized numbers. */
1770APFloat::cmpResult
1771APFloat::compare(const APFloat &rhs) const
1772{
1773 cmpResult result;
1774
Neil Boothcaf19d72007-10-14 10:29:28 +00001775 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001776 assert(semantics == rhs.semantics);
1777
Mike Stumpf3dc0c02009-05-13 23:23:20 +00001778 switch (convolve(category, rhs.category)) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001779 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001780 llvm_unreachable(0);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001781
Dale Johanneseneaf08942007-08-31 04:03:46 +00001782 case convolve(fcNaN, fcZero):
1783 case convolve(fcNaN, fcNormal):
1784 case convolve(fcNaN, fcInfinity):
1785 case convolve(fcNaN, fcNaN):
1786 case convolve(fcZero, fcNaN):
1787 case convolve(fcNormal, fcNaN):
1788 case convolve(fcInfinity, fcNaN):
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001789 return cmpUnordered;
1790
1791 case convolve(fcInfinity, fcNormal):
1792 case convolve(fcInfinity, fcZero):
1793 case convolve(fcNormal, fcZero):
Dan Gohman16e02092010-03-24 19:38:02 +00001794 if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001795 return cmpLessThan;
1796 else
1797 return cmpGreaterThan;
1798
1799 case convolve(fcNormal, fcInfinity):
1800 case convolve(fcZero, fcInfinity):
1801 case convolve(fcZero, fcNormal):
Dan Gohman16e02092010-03-24 19:38:02 +00001802 if (rhs.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001803 return cmpGreaterThan;
1804 else
1805 return cmpLessThan;
1806
1807 case convolve(fcInfinity, fcInfinity):
Dan Gohman16e02092010-03-24 19:38:02 +00001808 if (sign == rhs.sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001809 return cmpEqual;
Dan Gohman16e02092010-03-24 19:38:02 +00001810 else if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001811 return cmpLessThan;
1812 else
1813 return cmpGreaterThan;
1814
1815 case convolve(fcZero, fcZero):
1816 return cmpEqual;
1817
1818 case convolve(fcNormal, fcNormal):
1819 break;
1820 }
1821
1822 /* Two normal numbers. Do they have the same sign? */
Dan Gohman16e02092010-03-24 19:38:02 +00001823 if (sign != rhs.sign) {
1824 if (sign)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001825 result = cmpLessThan;
1826 else
1827 result = cmpGreaterThan;
1828 } else {
1829 /* Compare absolute values; invert result if negative. */
1830 result = compareAbsoluteValue(rhs);
1831
Dan Gohman16e02092010-03-24 19:38:02 +00001832 if (sign) {
1833 if (result == cmpLessThan)
Neil Booth4f881702007-09-26 21:33:42 +00001834 result = cmpGreaterThan;
Dan Gohman16e02092010-03-24 19:38:02 +00001835 else if (result == cmpGreaterThan)
Neil Booth4f881702007-09-26 21:33:42 +00001836 result = cmpLessThan;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001837 }
1838 }
1839
1840 return result;
1841}
1842
Dale Johannesen23a98552008-10-09 23:00:39 +00001843/// APFloat::convert - convert a value of one floating point type to another.
1844/// The return value corresponds to the IEEE754 exceptions. *losesInfo
1845/// records whether the transformation lost information, i.e. whether
1846/// converting the result back to the original type will produce the
1847/// original value (this is almost the same as return value==fsOK, but there
1848/// are edge cases where this is not so).
1849
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001850APFloat::opStatus
1851APFloat::convert(const fltSemantics &toSemantics,
Dale Johannesen23a98552008-10-09 23:00:39 +00001852 roundingMode rounding_mode, bool *losesInfo)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001853{
Neil Boothc8db43d2007-09-22 02:56:19 +00001854 lostFraction lostFraction;
1855 unsigned int newPartCount, oldPartCount;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001856 opStatus fs;
Eli Friedman44551422011-11-26 03:38:02 +00001857 int shift;
1858 const fltSemantics &fromSemantics = *semantics;
Neil Booth4f881702007-09-26 21:33:42 +00001859
Eli Friedman44551422011-11-26 03:38:02 +00001860 assertArithmeticOK(fromSemantics);
Dale Johannesen79f82f92008-04-20 01:34:03 +00001861 assertArithmeticOK(toSemantics);
Neil Boothc8db43d2007-09-22 02:56:19 +00001862 lostFraction = lfExactlyZero;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001863 newPartCount = partCountForBits(toSemantics.precision + 1);
Neil Boothc8db43d2007-09-22 02:56:19 +00001864 oldPartCount = partCount();
Eli Friedman44551422011-11-26 03:38:02 +00001865 shift = toSemantics.precision - fromSemantics.precision;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001866
Eli Friedman44551422011-11-26 03:38:02 +00001867 bool X86SpecialNan = false;
1868 if (&fromSemantics == &APFloat::x87DoubleExtended &&
1869 &toSemantics != &APFloat::x87DoubleExtended && category == fcNaN &&
1870 (!(*significandParts() & 0x8000000000000000ULL) ||
1871 !(*significandParts() & 0x4000000000000000ULL))) {
1872 // x86 has some unusual NaNs which cannot be represented in any other
1873 // format; note them here.
1874 X86SpecialNan = true;
1875 }
1876
1877 // If this is a truncation, perform the shift before we narrow the storage.
1878 if (shift < 0 && (category==fcNormal || category==fcNaN))
1879 lostFraction = shiftRight(significandParts(), oldPartCount, -shift);
1880
1881 // Fix the storage so it can hold to new value.
Neil Boothc8db43d2007-09-22 02:56:19 +00001882 if (newPartCount > oldPartCount) {
Eli Friedman44551422011-11-26 03:38:02 +00001883 // The new type requires more storage; make it available.
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001884 integerPart *newParts;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001885 newParts = new integerPart[newPartCount];
1886 APInt::tcSet(newParts, 0, newPartCount);
Dale Johannesen902ff942007-09-25 17:25:00 +00001887 if (category==fcNormal || category==fcNaN)
1888 APInt::tcAssign(newParts, significandParts(), oldPartCount);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001889 freeSignificand();
1890 significand.parts = newParts;
Eli Friedman44551422011-11-26 03:38:02 +00001891 } else if (newPartCount == 1 && oldPartCount != 1) {
1892 // Switch to built-in storage for a single part.
1893 integerPart newPart = 0;
1894 if (category==fcNormal || category==fcNaN)
1895 newPart = significandParts()[0];
1896 freeSignificand();
1897 significand.part = newPart;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001898 }
1899
Eli Friedman44551422011-11-26 03:38:02 +00001900 // Now that we have the right storage, switch the semantics.
1901 semantics = &toSemantics;
1902
1903 // If this is an extension, perform the shift now that the storage is
1904 // available.
1905 if (shift > 0 && (category==fcNormal || category==fcNaN))
1906 APInt::tcShiftLeft(significandParts(), newPartCount, shift);
1907
Dan Gohman16e02092010-03-24 19:38:02 +00001908 if (category == fcNormal) {
Neil Boothc8db43d2007-09-22 02:56:19 +00001909 fs = normalize(rounding_mode, lostFraction);
Dale Johannesen23a98552008-10-09 23:00:39 +00001910 *losesInfo = (fs != opOK);
Dale Johannesen902ff942007-09-25 17:25:00 +00001911 } else if (category == fcNaN) {
Eli Friedman44551422011-11-26 03:38:02 +00001912 *losesInfo = lostFraction != lfExactlyZero || X86SpecialNan;
Dale Johannesen902ff942007-09-25 17:25:00 +00001913 // gcc forces the Quiet bit on, which means (float)(double)(float_sNan)
1914 // does not give you back the same bits. This is dubious, and we
1915 // don't currently do it. You're really supposed to get
1916 // an invalid operation signal at runtime, but nobody does that.
Dale Johannesen23a98552008-10-09 23:00:39 +00001917 fs = opOK;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001918 } else {
Dale Johannesen23a98552008-10-09 23:00:39 +00001919 *losesInfo = false;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001920 }
1921
1922 return fs;
1923}
1924
1925/* Convert a floating point number to an integer according to the
1926 rounding mode. If the rounded integer value is out of range this
Neil Boothee7ae382007-11-01 22:43:37 +00001927 returns an invalid operation exception and the contents of the
1928 destination parts are unspecified. If the rounded value is in
Chris Lattnerb39cdde2007-08-20 22:49:32 +00001929 range but the floating point number is not the exact integer, the C
1930 standard doesn't require an inexact exception to be raised. IEEE
1931 854 does require it so we do that.
1932
1933 Note that for conversions to integer type the C standard requires
1934 round-to-zero to always be used. */
1935APFloat::opStatus
Neil Boothee7ae382007-11-01 22:43:37 +00001936APFloat::convertToSignExtendedInteger(integerPart *parts, unsigned int width,
1937 bool isSigned,
Dale Johannesen23a98552008-10-09 23:00:39 +00001938 roundingMode rounding_mode,
1939 bool *isExact) const
Neil Boothee7ae382007-11-01 22:43:37 +00001940{
1941 lostFraction lost_fraction;
1942 const integerPart *src;
1943 unsigned int dstPartsCount, truncatedBits;
1944
Evan Cheng794a7db2008-11-26 01:11:57 +00001945 assertArithmeticOK(*semantics);
Neil Boothe3d936a2007-11-02 15:10:05 +00001946
Dale Johannesen23a98552008-10-09 23:00:39 +00001947 *isExact = false;
1948
Neil Boothee7ae382007-11-01 22:43:37 +00001949 /* Handle the three special cases first. */
Dan Gohman16e02092010-03-24 19:38:02 +00001950 if (category == fcInfinity || category == fcNaN)
Neil Boothee7ae382007-11-01 22:43:37 +00001951 return opInvalidOp;
1952
1953 dstPartsCount = partCountForBits(width);
1954
Dan Gohman16e02092010-03-24 19:38:02 +00001955 if (category == fcZero) {
Neil Boothee7ae382007-11-01 22:43:37 +00001956 APInt::tcSet(parts, 0, dstPartsCount);
Dale Johannesene4a42452008-10-07 00:40:01 +00001957 // Negative zero can't be represented as an int.
Dale Johannesen23a98552008-10-09 23:00:39 +00001958 *isExact = !sign;
1959 return opOK;
Neil Boothee7ae382007-11-01 22:43:37 +00001960 }
1961
1962 src = significandParts();
1963
1964 /* Step 1: place our absolute value, with any fraction truncated, in
1965 the destination. */
1966 if (exponent < 0) {
1967 /* Our absolute value is less than one; truncate everything. */
1968 APInt::tcSet(parts, 0, dstPartsCount);
Dale Johannesen1f54f582009-01-19 21:17:05 +00001969 /* For exponent -1 the integer bit represents .5, look at that.
1970 For smaller exponents leftmost truncated bit is 0. */
1971 truncatedBits = semantics->precision -1U - exponent;
Neil Boothee7ae382007-11-01 22:43:37 +00001972 } else {
1973 /* We want the most significant (exponent + 1) bits; the rest are
1974 truncated. */
1975 unsigned int bits = exponent + 1U;
1976
1977 /* Hopelessly large in magnitude? */
1978 if (bits > width)
1979 return opInvalidOp;
1980
1981 if (bits < semantics->precision) {
1982 /* We truncate (semantics->precision - bits) bits. */
1983 truncatedBits = semantics->precision - bits;
1984 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits);
1985 } else {
1986 /* We want at least as many bits as are available. */
1987 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0);
1988 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision);
1989 truncatedBits = 0;
1990 }
1991 }
1992
1993 /* Step 2: work out any lost fraction, and increment the absolute
1994 value if we would round away from zero. */
1995 if (truncatedBits) {
1996 lost_fraction = lostFractionThroughTruncation(src, partCount(),
1997 truncatedBits);
Dan Gohman16e02092010-03-24 19:38:02 +00001998 if (lost_fraction != lfExactlyZero &&
1999 roundAwayFromZero(rounding_mode, lost_fraction, truncatedBits)) {
Neil Boothee7ae382007-11-01 22:43:37 +00002000 if (APInt::tcIncrement(parts, dstPartsCount))
2001 return opInvalidOp; /* Overflow. */
2002 }
2003 } else {
2004 lost_fraction = lfExactlyZero;
2005 }
2006
2007 /* Step 3: check if we fit in the destination. */
2008 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1;
2009
2010 if (sign) {
2011 if (!isSigned) {
2012 /* Negative numbers cannot be represented as unsigned. */
2013 if (omsb != 0)
2014 return opInvalidOp;
2015 } else {
2016 /* It takes omsb bits to represent the unsigned integer value.
2017 We lose a bit for the sign, but care is needed as the
2018 maximally negative integer is a special case. */
2019 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb)
2020 return opInvalidOp;
2021
2022 /* This case can happen because of rounding. */
2023 if (omsb > width)
2024 return opInvalidOp;
2025 }
2026
2027 APInt::tcNegate (parts, dstPartsCount);
2028 } else {
2029 if (omsb >= width + !isSigned)
2030 return opInvalidOp;
2031 }
2032
Dale Johannesen23a98552008-10-09 23:00:39 +00002033 if (lost_fraction == lfExactlyZero) {
2034 *isExact = true;
Neil Boothee7ae382007-11-01 22:43:37 +00002035 return opOK;
Dale Johannesen23a98552008-10-09 23:00:39 +00002036 } else
Neil Boothee7ae382007-11-01 22:43:37 +00002037 return opInexact;
2038}
2039
2040/* Same as convertToSignExtendedInteger, except we provide
2041 deterministic values in case of an invalid operation exception,
2042 namely zero for NaNs and the minimal or maximal value respectively
Dale Johannesen23a98552008-10-09 23:00:39 +00002043 for underflow or overflow.
2044 The *isExact output tells whether the result is exact, in the sense
2045 that converting it back to the original floating point type produces
2046 the original value. This is almost equivalent to result==opOK,
2047 except for negative zeroes.
2048*/
Neil Boothee7ae382007-11-01 22:43:37 +00002049APFloat::opStatus
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002050APFloat::convertToInteger(integerPart *parts, unsigned int width,
Neil Booth4f881702007-09-26 21:33:42 +00002051 bool isSigned,
Dale Johannesen23a98552008-10-09 23:00:39 +00002052 roundingMode rounding_mode, bool *isExact) const
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002053{
Neil Boothee7ae382007-11-01 22:43:37 +00002054 opStatus fs;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002055
Dan Gohman16e02092010-03-24 19:38:02 +00002056 fs = convertToSignExtendedInteger(parts, width, isSigned, rounding_mode,
Dale Johannesen23a98552008-10-09 23:00:39 +00002057 isExact);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002058
Neil Boothee7ae382007-11-01 22:43:37 +00002059 if (fs == opInvalidOp) {
2060 unsigned int bits, dstPartsCount;
2061
2062 dstPartsCount = partCountForBits(width);
2063
2064 if (category == fcNaN)
2065 bits = 0;
2066 else if (sign)
2067 bits = isSigned;
2068 else
2069 bits = width - isSigned;
2070
2071 APInt::tcSetLeastSignificantBits(parts, dstPartsCount, bits);
2072 if (sign && isSigned)
2073 APInt::tcShiftLeft(parts, dstPartsCount, width - 1);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002074 }
2075
Neil Boothee7ae382007-11-01 22:43:37 +00002076 return fs;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002077}
2078
Jeffrey Yasskin3d42bfb2011-07-15 07:04:56 +00002079/* Same as convertToInteger(integerPart*, ...), except the result is returned in
2080 an APSInt, whose initial bit-width and signed-ness are used to determine the
2081 precision of the conversion.
2082 */
2083APFloat::opStatus
2084APFloat::convertToInteger(APSInt &result,
2085 roundingMode rounding_mode, bool *isExact) const
2086{
2087 unsigned bitWidth = result.getBitWidth();
2088 SmallVector<uint64_t, 4> parts(result.getNumWords());
2089 opStatus status = convertToInteger(
2090 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2091 // Keeps the original signed-ness.
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00002092 result = APInt(bitWidth, parts);
Jeffrey Yasskin3d42bfb2011-07-15 07:04:56 +00002093 return status;
2094}
2095
Neil Booth643ce592007-10-07 12:07:53 +00002096/* Convert an unsigned integer SRC to a floating point number,
2097 rounding according to ROUNDING_MODE. The sign of the floating
2098 point number is not modified. */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002099APFloat::opStatus
Neil Booth643ce592007-10-07 12:07:53 +00002100APFloat::convertFromUnsignedParts(const integerPart *src,
2101 unsigned int srcCount,
2102 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002103{
Neil Booth5477f852007-10-08 14:39:42 +00002104 unsigned int omsb, precision, dstCount;
Neil Booth643ce592007-10-07 12:07:53 +00002105 integerPart *dst;
Neil Booth5477f852007-10-08 14:39:42 +00002106 lostFraction lost_fraction;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002107
Neil Boothcaf19d72007-10-14 10:29:28 +00002108 assertArithmeticOK(*semantics);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002109 category = fcNormal;
Neil Booth5477f852007-10-08 14:39:42 +00002110 omsb = APInt::tcMSB(src, srcCount) + 1;
Neil Booth643ce592007-10-07 12:07:53 +00002111 dst = significandParts();
2112 dstCount = partCount();
Neil Booth5477f852007-10-08 14:39:42 +00002113 precision = semantics->precision;
Neil Booth643ce592007-10-07 12:07:53 +00002114
Nick Lewycky03dd4e82011-10-03 21:30:08 +00002115 /* We want the most significant PRECISION bits of SRC. There may not
Neil Booth5477f852007-10-08 14:39:42 +00002116 be that many; extract what we can. */
2117 if (precision <= omsb) {
2118 exponent = omsb - 1;
Neil Booth643ce592007-10-07 12:07:53 +00002119 lost_fraction = lostFractionThroughTruncation(src, srcCount,
Neil Booth5477f852007-10-08 14:39:42 +00002120 omsb - precision);
2121 APInt::tcExtract(dst, dstCount, src, precision, omsb - precision);
2122 } else {
2123 exponent = precision - 1;
2124 lost_fraction = lfExactlyZero;
2125 APInt::tcExtract(dst, dstCount, src, omsb, 0);
Neil Booth643ce592007-10-07 12:07:53 +00002126 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002127
2128 return normalize(rounding_mode, lost_fraction);
2129}
2130
Dan Gohman93c276e2008-02-29 01:26:11 +00002131APFloat::opStatus
2132APFloat::convertFromAPInt(const APInt &Val,
2133 bool isSigned,
2134 roundingMode rounding_mode)
2135{
2136 unsigned int partCount = Val.getNumWords();
2137 APInt api = Val;
2138
2139 sign = false;
2140 if (isSigned && api.isNegative()) {
2141 sign = true;
2142 api = -api;
2143 }
2144
2145 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode);
2146}
2147
Neil Boothf16c5952007-10-07 12:15:41 +00002148/* Convert a two's complement integer SRC to a floating point number,
2149 rounding according to ROUNDING_MODE. ISSIGNED is true if the
2150 integer is signed, in which case it must be sign-extended. */
2151APFloat::opStatus
2152APFloat::convertFromSignExtendedInteger(const integerPart *src,
2153 unsigned int srcCount,
2154 bool isSigned,
2155 roundingMode rounding_mode)
2156{
2157 opStatus status;
2158
Neil Boothcaf19d72007-10-14 10:29:28 +00002159 assertArithmeticOK(*semantics);
Dan Gohman16e02092010-03-24 19:38:02 +00002160 if (isSigned &&
2161 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) {
Neil Boothf16c5952007-10-07 12:15:41 +00002162 integerPart *copy;
2163
2164 /* If we're signed and negative negate a copy. */
2165 sign = true;
2166 copy = new integerPart[srcCount];
2167 APInt::tcAssign(copy, src, srcCount);
2168 APInt::tcNegate(copy, srcCount);
2169 status = convertFromUnsignedParts(copy, srcCount, rounding_mode);
2170 delete [] copy;
2171 } else {
2172 sign = false;
2173 status = convertFromUnsignedParts(src, srcCount, rounding_mode);
2174 }
2175
2176 return status;
2177}
2178
Neil Boothccf596a2007-10-07 11:45:55 +00002179/* FIXME: should this just take a const APInt reference? */
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002180APFloat::opStatus
Neil Boothccf596a2007-10-07 11:45:55 +00002181APFloat::convertFromZeroExtendedInteger(const integerPart *parts,
2182 unsigned int width, bool isSigned,
2183 roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002184{
Dale Johannesen910993e2007-09-21 22:09:37 +00002185 unsigned int partCount = partCountForBits(width);
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00002186 APInt api = APInt(width, makeArrayRef(parts, partCount));
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002187
2188 sign = false;
Dan Gohman16e02092010-03-24 19:38:02 +00002189 if (isSigned && APInt::tcExtractBit(parts, width - 1)) {
Dale Johannesencce23a42007-09-30 18:17:01 +00002190 sign = true;
2191 api = -api;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002192 }
2193
Neil Booth7a7bc0f2007-10-07 12:10:57 +00002194 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002195}
2196
2197APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002198APFloat::convertFromHexadecimalString(StringRef s, roundingMode rounding_mode)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002199{
Erick Tryzelaarf8bc8012009-08-18 18:20:37 +00002200 lostFraction lost_fraction = lfExactlyZero;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002201 integerPart *significand;
2202 unsigned int bitPos, partsCount;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002203 StringRef::iterator dot, firstSignificantDigit;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002204
2205 zeroSignificand();
2206 exponent = 0;
2207 category = fcNormal;
2208
2209 significand = significandParts();
2210 partsCount = partCount();
2211 bitPos = partsCount * integerPartWidth;
2212
Neil Booth33d4c922007-10-07 08:51:21 +00002213 /* Skip leading zeroes and any (hexa)decimal point. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002214 StringRef::iterator begin = s.begin();
2215 StringRef::iterator end = s.end();
2216 StringRef::iterator p = skipLeadingZeroesAndAnyDot(begin, end, &dot);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002217 firstSignificantDigit = p;
2218
Dan Gohman16e02092010-03-24 19:38:02 +00002219 for (; p != end;) {
Dale Johannesen386f3e92008-05-14 22:53:25 +00002220 integerPart hex_value;
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002221
Dan Gohman16e02092010-03-24 19:38:02 +00002222 if (*p == '.') {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002223 assert(dot == end && "String contains multiple dots");
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002224 dot = p++;
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002225 if (p == end) {
2226 break;
2227 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002228 }
2229
2230 hex_value = hexDigitValue(*p);
Dan Gohman16e02092010-03-24 19:38:02 +00002231 if (hex_value == -1U) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002232 break;
2233 }
2234
2235 p++;
2236
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002237 if (p == end) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002238 break;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002239 } else {
2240 /* Store the number whilst 4-bit nibbles remain. */
Dan Gohman16e02092010-03-24 19:38:02 +00002241 if (bitPos) {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002242 bitPos -= 4;
2243 hex_value <<= bitPos % integerPartWidth;
2244 significand[bitPos / integerPartWidth] |= hex_value;
2245 } else {
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002246 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);
Dan Gohman16e02092010-03-24 19:38:02 +00002247 while (p != end && hexDigitValue(*p) != -1U)
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002248 p++;
2249 break;
2250 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002251 }
2252 }
2253
2254 /* Hex floats require an exponent but not a hexadecimal point. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002255 assert(p != end && "Hex strings require an exponent");
2256 assert((*p == 'p' || *p == 'P') && "Invalid character in significand");
2257 assert(p != begin && "Significand has no digits");
2258 assert((dot == end || p - begin != 1) && "Significand has no digits");
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002259
2260 /* Ignore the exponent if we are zero. */
Dan Gohman16e02092010-03-24 19:38:02 +00002261 if (p != firstSignificantDigit) {
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002262 int expAdjustment;
2263
2264 /* Implicit hexadecimal point? */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002265 if (dot == end)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002266 dot = p;
2267
2268 /* Calculate the exponent adjustment implicit in the number of
2269 significant digits. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002270 expAdjustment = static_cast<int>(dot - firstSignificantDigit);
Dan Gohman16e02092010-03-24 19:38:02 +00002271 if (expAdjustment < 0)
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002272 expAdjustment++;
2273 expAdjustment = expAdjustment * 4 - 1;
2274
2275 /* Adjust for writing the significand starting at the most
2276 significant nibble. */
2277 expAdjustment += semantics->precision;
2278 expAdjustment -= partsCount * integerPartWidth;
2279
2280 /* Adjust for the given exponent. */
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002281 exponent = totalExponent(p + 1, end, expAdjustment);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002282 }
2283
2284 return normalize(rounding_mode, lost_fraction);
2285}
2286
2287APFloat::opStatus
Neil Booth96c74712007-10-12 16:02:31 +00002288APFloat::roundSignificandWithExponent(const integerPart *decSigParts,
2289 unsigned sigPartCount, int exp,
2290 roundingMode rounding_mode)
2291{
2292 unsigned int parts, pow5PartCount;
Neil Boothcaf19d72007-10-14 10:29:28 +00002293 fltSemantics calcSemantics = { 32767, -32767, 0, true };
Neil Booth96c74712007-10-12 16:02:31 +00002294 integerPart pow5Parts[maxPowerOfFiveParts];
2295 bool isNearest;
2296
Dan Gohman16e02092010-03-24 19:38:02 +00002297 isNearest = (rounding_mode == rmNearestTiesToEven ||
2298 rounding_mode == rmNearestTiesToAway);
Neil Booth96c74712007-10-12 16:02:31 +00002299
2300 parts = partCountForBits(semantics->precision + 11);
2301
2302 /* Calculate pow(5, abs(exp)). */
2303 pow5PartCount = powerOf5(pow5Parts, exp >= 0 ? exp: -exp);
2304
2305 for (;; parts *= 2) {
2306 opStatus sigStatus, powStatus;
2307 unsigned int excessPrecision, truncatedBits;
2308
2309 calcSemantics.precision = parts * integerPartWidth - 1;
2310 excessPrecision = calcSemantics.precision - semantics->precision;
2311 truncatedBits = excessPrecision;
2312
2313 APFloat decSig(calcSemantics, fcZero, sign);
2314 APFloat pow5(calcSemantics, fcZero, false);
2315
2316 sigStatus = decSig.convertFromUnsignedParts(decSigParts, sigPartCount,
2317 rmNearestTiesToEven);
2318 powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount,
2319 rmNearestTiesToEven);
2320 /* Add exp, as 10^n = 5^n * 2^n. */
2321 decSig.exponent += exp;
2322
2323 lostFraction calcLostFraction;
Evan Cheng48e8c802008-05-02 21:15:08 +00002324 integerPart HUerr, HUdistance;
2325 unsigned int powHUerr;
Neil Booth96c74712007-10-12 16:02:31 +00002326
2327 if (exp >= 0) {
2328 /* multiplySignificand leaves the precision-th bit set to 1. */
2329 calcLostFraction = decSig.multiplySignificand(pow5, NULL);
2330 powHUerr = powStatus != opOK;
2331 } else {
2332 calcLostFraction = decSig.divideSignificand(pow5);
2333 /* Denormal numbers have less precision. */
2334 if (decSig.exponent < semantics->minExponent) {
2335 excessPrecision += (semantics->minExponent - decSig.exponent);
2336 truncatedBits = excessPrecision;
2337 if (excessPrecision > calcSemantics.precision)
2338 excessPrecision = calcSemantics.precision;
2339 }
2340 /* Extra half-ulp lost in reciprocal of exponent. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002341 powHUerr = (powStatus == opOK && calcLostFraction == lfExactlyZero) ? 0:2;
Neil Booth96c74712007-10-12 16:02:31 +00002342 }
2343
2344 /* Both multiplySignificand and divideSignificand return the
2345 result with the integer bit set. */
Evan Cheng99ebfa52009-10-27 21:35:42 +00002346 assert(APInt::tcExtractBit
2347 (decSig.significandParts(), calcSemantics.precision - 1) == 1);
Neil Booth96c74712007-10-12 16:02:31 +00002348
2349 HUerr = HUerrBound(calcLostFraction != lfExactlyZero, sigStatus != opOK,
2350 powHUerr);
2351 HUdistance = 2 * ulpsFromBoundary(decSig.significandParts(),
2352 excessPrecision, isNearest);
2353
2354 /* Are we guaranteed to round correctly if we truncate? */
2355 if (HUdistance >= HUerr) {
2356 APInt::tcExtract(significandParts(), partCount(), decSig.significandParts(),
2357 calcSemantics.precision - excessPrecision,
2358 excessPrecision);
2359 /* Take the exponent of decSig. If we tcExtract-ed less bits
2360 above we must adjust our exponent to compensate for the
2361 implicit right shift. */
2362 exponent = (decSig.exponent + semantics->precision
2363 - (calcSemantics.precision - excessPrecision));
2364 calcLostFraction = lostFractionThroughTruncation(decSig.significandParts(),
2365 decSig.partCount(),
2366 truncatedBits);
2367 return normalize(rounding_mode, calcLostFraction);
2368 }
2369 }
2370}
2371
2372APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002373APFloat::convertFromDecimalString(StringRef str, roundingMode rounding_mode)
Neil Booth96c74712007-10-12 16:02:31 +00002374{
Neil Booth1870f292007-10-14 10:16:12 +00002375 decimalInfo D;
Neil Booth96c74712007-10-12 16:02:31 +00002376 opStatus fs;
2377
Neil Booth1870f292007-10-14 10:16:12 +00002378 /* Scan the text. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002379 StringRef::iterator p = str.begin();
2380 interpretDecimal(p, str.end(), &D);
Neil Booth96c74712007-10-12 16:02:31 +00002381
Neil Booth686700e2007-10-15 15:00:55 +00002382 /* Handle the quick cases. First the case of no significant digits,
2383 i.e. zero, and then exponents that are obviously too large or too
2384 small. Writing L for log 10 / log 2, a number d.ddddd*10^exp
2385 definitely overflows if
2386
2387 (exp - 1) * L >= maxExponent
2388
2389 and definitely underflows to zero where
2390
2391 (exp + 1) * L <= minExponent - precision
2392
2393 With integer arithmetic the tightest bounds for L are
2394
2395 93/28 < L < 196/59 [ numerator <= 256 ]
2396 42039/12655 < L < 28738/8651 [ numerator <= 65536 ]
2397 */
2398
Neil Boothcc233592007-12-05 13:06:04 +00002399 if (decDigitValue(*D.firstSigDigit) >= 10U) {
Neil Booth96c74712007-10-12 16:02:31 +00002400 category = fcZero;
2401 fs = opOK;
John McCall8b3f3302010-02-26 22:20:41 +00002402
2403 /* Check whether the normalized exponent is high enough to overflow
2404 max during the log-rebasing in the max-exponent check below. */
2405 } else if (D.normalizedExponent - 1 > INT_MAX / 42039) {
2406 fs = handleOverflow(rounding_mode);
2407
2408 /* If it wasn't, then it also wasn't high enough to overflow max
2409 during the log-rebasing in the min-exponent check. Check that it
2410 won't overflow min in either check, then perform the min-exponent
2411 check. */
2412 } else if (D.normalizedExponent - 1 < INT_MIN / 42039 ||
2413 (D.normalizedExponent + 1) * 28738 <=
2414 8651 * (semantics->minExponent - (int) semantics->precision)) {
Neil Booth686700e2007-10-15 15:00:55 +00002415 /* Underflow to zero and round. */
2416 zeroSignificand();
2417 fs = normalize(rounding_mode, lfLessThanHalf);
John McCall8b3f3302010-02-26 22:20:41 +00002418
2419 /* We can finally safely perform the max-exponent check. */
Neil Booth686700e2007-10-15 15:00:55 +00002420 } else if ((D.normalizedExponent - 1) * 42039
2421 >= 12655 * semantics->maxExponent) {
2422 /* Overflow and round. */
2423 fs = handleOverflow(rounding_mode);
Neil Booth96c74712007-10-12 16:02:31 +00002424 } else {
Neil Booth1870f292007-10-14 10:16:12 +00002425 integerPart *decSignificand;
2426 unsigned int partCount;
Neil Booth96c74712007-10-12 16:02:31 +00002427
Neil Booth1870f292007-10-14 10:16:12 +00002428 /* A tight upper bound on number of bits required to hold an
Neil Booth686700e2007-10-15 15:00:55 +00002429 N-digit decimal integer is N * 196 / 59. Allocate enough space
Neil Booth1870f292007-10-14 10:16:12 +00002430 to hold the full significand, and an extra part required by
2431 tcMultiplyPart. */
Evan Cheng48e8c802008-05-02 21:15:08 +00002432 partCount = static_cast<unsigned int>(D.lastSigDigit - D.firstSigDigit) + 1;
Neil Booth686700e2007-10-15 15:00:55 +00002433 partCount = partCountForBits(1 + 196 * partCount / 59);
Neil Booth1870f292007-10-14 10:16:12 +00002434 decSignificand = new integerPart[partCount + 1];
2435 partCount = 0;
Neil Booth96c74712007-10-12 16:02:31 +00002436
Neil Booth1870f292007-10-14 10:16:12 +00002437 /* Convert to binary efficiently - we do almost all multiplication
2438 in an integerPart. When this would overflow do we do a single
2439 bignum multiplication, and then revert again to multiplication
2440 in an integerPart. */
2441 do {
2442 integerPart decValue, val, multiplier;
2443
2444 val = 0;
2445 multiplier = 1;
2446
2447 do {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002448 if (*p == '.') {
Neil Booth1870f292007-10-14 10:16:12 +00002449 p++;
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002450 if (p == str.end()) {
2451 break;
2452 }
2453 }
Neil Booth1870f292007-10-14 10:16:12 +00002454 decValue = decDigitValue(*p++);
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002455 assert(decValue < 10U && "Invalid character in significand");
Neil Booth1870f292007-10-14 10:16:12 +00002456 multiplier *= 10;
2457 val = val * 10 + decValue;
2458 /* The maximum number that can be multiplied by ten with any
2459 digit added without overflowing an integerPart. */
2460 } while (p <= D.lastSigDigit && multiplier <= (~ (integerPart) 0 - 9) / 10);
2461
2462 /* Multiply out the current part. */
2463 APInt::tcMultiplyPart(decSignificand, decSignificand, multiplier, val,
2464 partCount, partCount + 1, false);
2465
2466 /* If we used another part (likely but not guaranteed), increase
2467 the count. */
2468 if (decSignificand[partCount])
2469 partCount++;
2470 } while (p <= D.lastSigDigit);
Neil Booth96c74712007-10-12 16:02:31 +00002471
Neil Booth43a4b282007-11-01 22:51:07 +00002472 category = fcNormal;
Neil Booth96c74712007-10-12 16:02:31 +00002473 fs = roundSignificandWithExponent(decSignificand, partCount,
Neil Booth1870f292007-10-14 10:16:12 +00002474 D.exponent, rounding_mode);
Neil Booth96c74712007-10-12 16:02:31 +00002475
Neil Booth1870f292007-10-14 10:16:12 +00002476 delete [] decSignificand;
2477 }
Neil Booth96c74712007-10-12 16:02:31 +00002478
2479 return fs;
2480}
2481
2482APFloat::opStatus
Benjamin Kramer38e59892010-07-14 22:38:02 +00002483APFloat::convertFromString(StringRef str, roundingMode rounding_mode)
Neil Booth4f881702007-09-26 21:33:42 +00002484{
Neil Boothcaf19d72007-10-14 10:29:28 +00002485 assertArithmeticOK(*semantics);
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002486 assert(!str.empty() && "Invalid string length");
Neil Boothcaf19d72007-10-14 10:29:28 +00002487
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002488 /* Handle a leading minus sign. */
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002489 StringRef::iterator p = str.begin();
2490 size_t slen = str.size();
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002491 sign = *p == '-' ? 1 : 0;
Dan Gohman16e02092010-03-24 19:38:02 +00002492 if (*p == '-' || *p == '+') {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002493 p++;
2494 slen--;
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002495 assert(slen && "String has no digits");
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002496 }
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002497
Dan Gohman16e02092010-03-24 19:38:02 +00002498 if (slen >= 2 && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002499 assert(slen - 2 && "Invalid string");
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002500 return convertFromHexadecimalString(StringRef(p + 2, slen - 2),
Erick Tryzelaara15d8902009-08-16 23:36:19 +00002501 rounding_mode);
2502 }
Bill Wendlingb7c0d942008-11-27 08:00:12 +00002503
Erick Tryzelaarc78b33b2009-08-20 23:30:43 +00002504 return convertFromDecimalString(StringRef(p, slen), rounding_mode);
Chris Lattnerb39cdde2007-08-20 22:49:32 +00002505}
Dale Johannesen343e7702007-08-24 00:56:33 +00002506
Neil Bootha30b0ee2007-10-03 22:26:02 +00002507/* Write out a hexadecimal representation of the floating point value
2508 to DST, which must be of sufficient size, in the C99 form
2509 [-]0xh.hhhhp[+-]d. Return the number of characters written,
2510 excluding the terminating NUL.
2511
2512 If UPPERCASE, the output is in upper case, otherwise in lower case.
2513
2514 HEXDIGITS digits appear altogether, rounding the value if
2515 necessary. If HEXDIGITS is 0, the minimal precision to display the
2516 number precisely is used instead. If nothing would appear after
2517 the decimal point it is suppressed.
2518
2519 The decimal exponent is always printed and has at least one digit.
2520 Zero values display an exponent of zero. Infinities and NaNs
2521 appear as "infinity" or "nan" respectively.
2522
2523 The above rules are as specified by C99. There is ambiguity about
2524 what the leading hexadecimal digit should be. This implementation
2525 uses whatever is necessary so that the exponent is displayed as
2526 stored. This implies the exponent will fall within the IEEE format
2527 range, and the leading hexadecimal digit will be 0 (for denormals),
2528 1 (normal numbers) or 2 (normal numbers rounded-away-from-zero with
2529 any other digits zero).
2530*/
2531unsigned int
2532APFloat::convertToHexString(char *dst, unsigned int hexDigits,
2533 bool upperCase, roundingMode rounding_mode) const
2534{
2535 char *p;
2536
Neil Boothcaf19d72007-10-14 10:29:28 +00002537 assertArithmeticOK(*semantics);
2538
Neil Bootha30b0ee2007-10-03 22:26:02 +00002539 p = dst;
2540 if (sign)
2541 *dst++ = '-';
2542
2543 switch (category) {
2544 case fcInfinity:
2545 memcpy (dst, upperCase ? infinityU: infinityL, sizeof infinityU - 1);
2546 dst += sizeof infinityL - 1;
2547 break;
2548
2549 case fcNaN:
2550 memcpy (dst, upperCase ? NaNU: NaNL, sizeof NaNU - 1);
2551 dst += sizeof NaNU - 1;
2552 break;
2553
2554 case fcZero:
2555 *dst++ = '0';
2556 *dst++ = upperCase ? 'X': 'x';
2557 *dst++ = '0';
2558 if (hexDigits > 1) {
2559 *dst++ = '.';
2560 memset (dst, '0', hexDigits - 1);
2561 dst += hexDigits - 1;
2562 }
2563 *dst++ = upperCase ? 'P': 'p';
2564 *dst++ = '0';
2565 break;
2566
2567 case fcNormal:
2568 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode);
2569 break;
2570 }
2571
2572 *dst = 0;
2573
Evan Cheng48e8c802008-05-02 21:15:08 +00002574 return static_cast<unsigned int>(dst - p);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002575}
2576
2577/* Does the hard work of outputting the correctly rounded hexadecimal
2578 form of a normal floating point number with the specified number of
2579 hexadecimal digits. If HEXDIGITS is zero the minimum number of
2580 digits necessary to print the value precisely is output. */
2581char *
2582APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits,
2583 bool upperCase,
2584 roundingMode rounding_mode) const
2585{
2586 unsigned int count, valueBits, shift, partsCount, outputDigits;
2587 const char *hexDigitChars;
2588 const integerPart *significand;
2589 char *p;
2590 bool roundUp;
2591
2592 *dst++ = '0';
2593 *dst++ = upperCase ? 'X': 'x';
2594
2595 roundUp = false;
2596 hexDigitChars = upperCase ? hexDigitsUpper: hexDigitsLower;
2597
2598 significand = significandParts();
2599 partsCount = partCount();
2600
2601 /* +3 because the first digit only uses the single integer bit, so
2602 we have 3 virtual zero most-significant-bits. */
2603 valueBits = semantics->precision + 3;
2604 shift = integerPartWidth - valueBits % integerPartWidth;
2605
2606 /* The natural number of digits required ignoring trailing
2607 insignificant zeroes. */
2608 outputDigits = (valueBits - significandLSB () + 3) / 4;
2609
2610 /* hexDigits of zero means use the required number for the
2611 precision. Otherwise, see if we are truncating. If we are,
Neil Booth978661d2007-10-06 00:24:48 +00002612 find out if we need to round away from zero. */
Neil Bootha30b0ee2007-10-03 22:26:02 +00002613 if (hexDigits) {
2614 if (hexDigits < outputDigits) {
2615 /* We are dropping non-zero bits, so need to check how to round.
2616 "bits" is the number of dropped bits. */
2617 unsigned int bits;
2618 lostFraction fraction;
2619
2620 bits = valueBits - hexDigits * 4;
2621 fraction = lostFractionThroughTruncation (significand, partsCount, bits);
2622 roundUp = roundAwayFromZero(rounding_mode, fraction, bits);
2623 }
2624 outputDigits = hexDigits;
2625 }
2626
2627 /* Write the digits consecutively, and start writing in the location
2628 of the hexadecimal point. We move the most significant digit
2629 left and add the hexadecimal point later. */
2630 p = ++dst;
2631
2632 count = (valueBits + integerPartWidth - 1) / integerPartWidth;
2633
2634 while (outputDigits && count) {
2635 integerPart part;
2636
2637 /* Put the most significant integerPartWidth bits in "part". */
2638 if (--count == partsCount)
2639 part = 0; /* An imaginary higher zero part. */
2640 else
2641 part = significand[count] << shift;
2642
2643 if (count && shift)
2644 part |= significand[count - 1] >> (integerPartWidth - shift);
2645
2646 /* Convert as much of "part" to hexdigits as we can. */
2647 unsigned int curDigits = integerPartWidth / 4;
2648
2649 if (curDigits > outputDigits)
2650 curDigits = outputDigits;
2651 dst += partAsHex (dst, part, curDigits, hexDigitChars);
2652 outputDigits -= curDigits;
2653 }
2654
2655 if (roundUp) {
2656 char *q = dst;
2657
2658 /* Note that hexDigitChars has a trailing '0'. */
2659 do {
2660 q--;
2661 *q = hexDigitChars[hexDigitValue (*q) + 1];
Neil Booth978661d2007-10-06 00:24:48 +00002662 } while (*q == '0');
Evan Cheng99ebfa52009-10-27 21:35:42 +00002663 assert(q >= p);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002664 } else {
2665 /* Add trailing zeroes. */
2666 memset (dst, '0', outputDigits);
2667 dst += outputDigits;
2668 }
2669
2670 /* Move the most significant digit to before the point, and if there
2671 is something after the decimal point add it. This must come
2672 after rounding above. */
2673 p[-1] = p[0];
2674 if (dst -1 == p)
2675 dst--;
2676 else
2677 p[0] = '.';
2678
2679 /* Finally output the exponent. */
2680 *dst++ = upperCase ? 'P': 'p';
2681
Neil Booth92f7e8d2007-10-06 07:29:25 +00002682 return writeSignedDecimal (dst, exponent);
Neil Bootha30b0ee2007-10-03 22:26:02 +00002683}
2684
Dale Johannesen343e7702007-08-24 00:56:33 +00002685// For good performance it is desirable for different APFloats
2686// to produce different integers.
2687uint32_t
Neil Booth4f881702007-09-26 21:33:42 +00002688APFloat::getHashValue() const
2689{
Dale Johannesen343e7702007-08-24 00:56:33 +00002690 if (category==fcZero) return sign<<8 | semantics->precision ;
2691 else if (category==fcInfinity) return sign<<9 | semantics->precision;
Dale Johanneseneaf08942007-08-31 04:03:46 +00002692 else if (category==fcNaN) return 1<<10 | semantics->precision;
Dale Johannesen343e7702007-08-24 00:56:33 +00002693 else {
2694 uint32_t hash = sign<<11 | semantics->precision | exponent<<12;
2695 const integerPart* p = significandParts();
2696 for (int i=partCount(); i>0; i--, p++)
Evan Cheng48e8c802008-05-02 21:15:08 +00002697 hash ^= ((uint32_t)*p) ^ (uint32_t)((*p)>>32);
Dale Johannesen343e7702007-08-24 00:56:33 +00002698 return hash;
2699 }
2700}
2701
2702// Conversion from APFloat to/from host float/double. It may eventually be
2703// possible to eliminate these and have everybody deal with APFloats, but that
2704// will take a while. This approach will not easily extend to long double.
Dale Johannesena72a5a02007-09-20 23:47:58 +00002705// Current implementation requires integerPartWidth==64, which is correct at
2706// the moment but could be made more general.
Dale Johannesen343e7702007-08-24 00:56:33 +00002707
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002708// Denormals have exponent minExponent in APFloat, but minExponent-1 in
Dale Johannesena72a5a02007-09-20 23:47:58 +00002709// the actual IEEE respresentations. We compensate for that here.
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002710
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002711APInt
Neil Booth4f881702007-09-26 21:33:42 +00002712APFloat::convertF80LongDoubleAPFloatToAPInt() const
2713{
Dan Gohmanb10abe12008-01-29 12:08:20 +00002714 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002715 assert(partCount()==2);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002716
2717 uint64_t myexponent, mysignificand;
2718
2719 if (category==fcNormal) {
2720 myexponent = exponent+16383; //bias
Dale Johannesena72a5a02007-09-20 23:47:58 +00002721 mysignificand = significandParts()[0];
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002722 if (myexponent==1 && !(mysignificand & 0x8000000000000000ULL))
2723 myexponent = 0; // denormal
2724 } else if (category==fcZero) {
2725 myexponent = 0;
2726 mysignificand = 0;
2727 } else if (category==fcInfinity) {
2728 myexponent = 0x7fff;
2729 mysignificand = 0x8000000000000000ULL;
Chris Lattnera11ef822007-10-06 06:13:42 +00002730 } else {
2731 assert(category == fcNaN && "Unknown category");
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002732 myexponent = 0x7fff;
Dale Johannesena72a5a02007-09-20 23:47:58 +00002733 mysignificand = significandParts()[0];
Chris Lattnera11ef822007-10-06 06:13:42 +00002734 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002735
2736 uint64_t words[2];
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002737 words[0] = mysignificand;
2738 words[1] = ((uint64_t)(sign & 1) << 15) |
2739 (myexponent & 0x7fffLL);
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00002740 return APInt(80, words);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002741}
2742
2743APInt
Dale Johannesena471c2e2007-10-11 18:07:22 +00002744APFloat::convertPPCDoubleDoubleAPFloatToAPInt() const
2745{
Dan Gohmanb10abe12008-01-29 12:08:20 +00002746 assert(semantics == (const llvm::fltSemantics*)&PPCDoubleDouble);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002747 assert(partCount()==2);
Dale Johannesena471c2e2007-10-11 18:07:22 +00002748
2749 uint64_t myexponent, mysignificand, myexponent2, mysignificand2;
2750
2751 if (category==fcNormal) {
2752 myexponent = exponent + 1023; //bias
2753 myexponent2 = exponent2 + 1023;
2754 mysignificand = significandParts()[0];
2755 mysignificand2 = significandParts()[1];
2756 if (myexponent==1 && !(mysignificand & 0x10000000000000LL))
2757 myexponent = 0; // denormal
2758 if (myexponent2==1 && !(mysignificand2 & 0x10000000000000LL))
2759 myexponent2 = 0; // denormal
2760 } else if (category==fcZero) {
2761 myexponent = 0;
2762 mysignificand = 0;
2763 myexponent2 = 0;
2764 mysignificand2 = 0;
2765 } else if (category==fcInfinity) {
2766 myexponent = 0x7ff;
2767 myexponent2 = 0;
2768 mysignificand = 0;
2769 mysignificand2 = 0;
2770 } else {
2771 assert(category == fcNaN && "Unknown category");
2772 myexponent = 0x7ff;
2773 mysignificand = significandParts()[0];
2774 myexponent2 = exponent2;
2775 mysignificand2 = significandParts()[1];
2776 }
2777
2778 uint64_t words[2];
Evan Cheng48e8c802008-05-02 21:15:08 +00002779 words[0] = ((uint64_t)(sign & 1) << 63) |
Dale Johannesena471c2e2007-10-11 18:07:22 +00002780 ((myexponent & 0x7ff) << 52) |
2781 (mysignificand & 0xfffffffffffffLL);
Evan Cheng48e8c802008-05-02 21:15:08 +00002782 words[1] = ((uint64_t)(sign2 & 1) << 63) |
Dale Johannesena471c2e2007-10-11 18:07:22 +00002783 ((myexponent2 & 0x7ff) << 52) |
2784 (mysignificand2 & 0xfffffffffffffLL);
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00002785 return APInt(128, words);
Dale Johannesena471c2e2007-10-11 18:07:22 +00002786}
2787
2788APInt
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002789APFloat::convertQuadrupleAPFloatToAPInt() const
2790{
2791 assert(semantics == (const llvm::fltSemantics*)&IEEEquad);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002792 assert(partCount()==2);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002793
2794 uint64_t myexponent, mysignificand, mysignificand2;
2795
2796 if (category==fcNormal) {
2797 myexponent = exponent+16383; //bias
2798 mysignificand = significandParts()[0];
2799 mysignificand2 = significandParts()[1];
2800 if (myexponent==1 && !(mysignificand2 & 0x1000000000000LL))
2801 myexponent = 0; // denormal
2802 } else if (category==fcZero) {
2803 myexponent = 0;
2804 mysignificand = mysignificand2 = 0;
2805 } else if (category==fcInfinity) {
2806 myexponent = 0x7fff;
2807 mysignificand = mysignificand2 = 0;
2808 } else {
2809 assert(category == fcNaN && "Unknown category!");
2810 myexponent = 0x7fff;
2811 mysignificand = significandParts()[0];
2812 mysignificand2 = significandParts()[1];
2813 }
2814
2815 uint64_t words[2];
2816 words[0] = mysignificand;
2817 words[1] = ((uint64_t)(sign & 1) << 63) |
2818 ((myexponent & 0x7fff) << 48) |
Anton Korobeynikov4755e992009-08-21 23:09:47 +00002819 (mysignificand2 & 0xffffffffffffLL);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002820
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00002821 return APInt(128, words);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002822}
2823
2824APInt
Neil Booth4f881702007-09-26 21:33:42 +00002825APFloat::convertDoubleAPFloatToAPInt() const
2826{
Dan Gohmancb648f92007-09-14 20:08:19 +00002827 assert(semantics == (const llvm::fltSemantics*)&IEEEdouble);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002828 assert(partCount()==1);
Dale Johannesen343e7702007-08-24 00:56:33 +00002829
Dale Johanneseneaf08942007-08-31 04:03:46 +00002830 uint64_t myexponent, mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00002831
2832 if (category==fcNormal) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002833 myexponent = exponent+1023; //bias
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002834 mysignificand = *significandParts();
2835 if (myexponent==1 && !(mysignificand & 0x10000000000000LL))
2836 myexponent = 0; // denormal
Dale Johannesen343e7702007-08-24 00:56:33 +00002837 } else if (category==fcZero) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002838 myexponent = 0;
2839 mysignificand = 0;
2840 } else if (category==fcInfinity) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002841 myexponent = 0x7ff;
2842 mysignificand = 0;
Chris Lattnera11ef822007-10-06 06:13:42 +00002843 } else {
2844 assert(category == fcNaN && "Unknown category!");
Dale Johannesen343e7702007-08-24 00:56:33 +00002845 myexponent = 0x7ff;
Dale Johanneseneaf08942007-08-31 04:03:46 +00002846 mysignificand = *significandParts();
Chris Lattnera11ef822007-10-06 06:13:42 +00002847 }
Dale Johannesen343e7702007-08-24 00:56:33 +00002848
Evan Cheng48e8c802008-05-02 21:15:08 +00002849 return APInt(64, ((((uint64_t)(sign & 1) << 63) |
Chris Lattnera11ef822007-10-06 06:13:42 +00002850 ((myexponent & 0x7ff) << 52) |
2851 (mysignificand & 0xfffffffffffffLL))));
Dale Johannesen343e7702007-08-24 00:56:33 +00002852}
2853
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002854APInt
Neil Booth4f881702007-09-26 21:33:42 +00002855APFloat::convertFloatAPFloatToAPInt() const
2856{
Dan Gohmancb648f92007-09-14 20:08:19 +00002857 assert(semantics == (const llvm::fltSemantics*)&IEEEsingle);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002858 assert(partCount()==1);
Neil Booth4f881702007-09-26 21:33:42 +00002859
Dale Johanneseneaf08942007-08-31 04:03:46 +00002860 uint32_t myexponent, mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00002861
2862 if (category==fcNormal) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002863 myexponent = exponent+127; //bias
Evan Cheng48e8c802008-05-02 21:15:08 +00002864 mysignificand = (uint32_t)*significandParts();
Dale Johannesend0763b92007-11-17 01:02:27 +00002865 if (myexponent == 1 && !(mysignificand & 0x800000))
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002866 myexponent = 0; // denormal
Dale Johannesen343e7702007-08-24 00:56:33 +00002867 } else if (category==fcZero) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002868 myexponent = 0;
2869 mysignificand = 0;
2870 } else if (category==fcInfinity) {
Dale Johannesen343e7702007-08-24 00:56:33 +00002871 myexponent = 0xff;
2872 mysignificand = 0;
Chris Lattnera11ef822007-10-06 06:13:42 +00002873 } else {
2874 assert(category == fcNaN && "Unknown category!");
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00002875 myexponent = 0xff;
Evan Cheng48e8c802008-05-02 21:15:08 +00002876 mysignificand = (uint32_t)*significandParts();
Chris Lattnera11ef822007-10-06 06:13:42 +00002877 }
Dale Johannesen343e7702007-08-24 00:56:33 +00002878
Chris Lattnera11ef822007-10-06 06:13:42 +00002879 return APInt(32, (((sign&1) << 31) | ((myexponent&0xff) << 23) |
2880 (mysignificand & 0x7fffff)));
Dale Johannesen343e7702007-08-24 00:56:33 +00002881}
2882
Chris Lattnercc4287a2009-10-16 02:13:51 +00002883APInt
2884APFloat::convertHalfAPFloatToAPInt() const
2885{
2886 assert(semantics == (const llvm::fltSemantics*)&IEEEhalf);
Evan Cheng99ebfa52009-10-27 21:35:42 +00002887 assert(partCount()==1);
Chris Lattnercc4287a2009-10-16 02:13:51 +00002888
2889 uint32_t myexponent, mysignificand;
2890
2891 if (category==fcNormal) {
2892 myexponent = exponent+15; //bias
2893 mysignificand = (uint32_t)*significandParts();
2894 if (myexponent == 1 && !(mysignificand & 0x400))
2895 myexponent = 0; // denormal
2896 } else if (category==fcZero) {
2897 myexponent = 0;
2898 mysignificand = 0;
2899 } else if (category==fcInfinity) {
Dale Johannesena223aed2009-10-23 04:02:51 +00002900 myexponent = 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00002901 mysignificand = 0;
2902 } else {
2903 assert(category == fcNaN && "Unknown category!");
Dale Johannesena223aed2009-10-23 04:02:51 +00002904 myexponent = 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00002905 mysignificand = (uint32_t)*significandParts();
2906 }
2907
2908 return APInt(16, (((sign&1) << 15) | ((myexponent&0x1f) << 10) |
2909 (mysignificand & 0x3ff)));
2910}
2911
Dale Johannesena471c2e2007-10-11 18:07:22 +00002912// This function creates an APInt that is just a bit map of the floating
2913// point constant as it would appear in memory. It is not a conversion,
2914// and treating the result as a normal integer is unlikely to be useful.
2915
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002916APInt
Dale Johannesen7111b022008-10-09 18:53:47 +00002917APFloat::bitcastToAPInt() const
Neil Booth4f881702007-09-26 21:33:42 +00002918{
Chris Lattnercc4287a2009-10-16 02:13:51 +00002919 if (semantics == (const llvm::fltSemantics*)&IEEEhalf)
2920 return convertHalfAPFloatToAPInt();
2921
Dan Gohmanb10abe12008-01-29 12:08:20 +00002922 if (semantics == (const llvm::fltSemantics*)&IEEEsingle)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002923 return convertFloatAPFloatToAPInt();
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002924
Dan Gohmanb10abe12008-01-29 12:08:20 +00002925 if (semantics == (const llvm::fltSemantics*)&IEEEdouble)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002926 return convertDoubleAPFloatToAPInt();
Neil Booth4f881702007-09-26 21:33:42 +00002927
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00002928 if (semantics == (const llvm::fltSemantics*)&IEEEquad)
2929 return convertQuadrupleAPFloatToAPInt();
2930
Dan Gohmanb10abe12008-01-29 12:08:20 +00002931 if (semantics == (const llvm::fltSemantics*)&PPCDoubleDouble)
Dale Johannesena471c2e2007-10-11 18:07:22 +00002932 return convertPPCDoubleDoubleAPFloatToAPInt();
2933
Dan Gohmanb10abe12008-01-29 12:08:20 +00002934 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended &&
Chris Lattnera11ef822007-10-06 06:13:42 +00002935 "unknown format!");
2936 return convertF80LongDoubleAPFloatToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002937}
2938
Neil Booth4f881702007-09-26 21:33:42 +00002939float
2940APFloat::convertToFloat() const
2941{
Chris Lattnerad785002009-09-24 21:44:20 +00002942 assert(semantics == (const llvm::fltSemantics*)&IEEEsingle &&
2943 "Float semantics are not IEEEsingle");
Dale Johannesen7111b022008-10-09 18:53:47 +00002944 APInt api = bitcastToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002945 return api.bitsToFloat();
2946}
2947
Neil Booth4f881702007-09-26 21:33:42 +00002948double
2949APFloat::convertToDouble() const
2950{
Chris Lattnerad785002009-09-24 21:44:20 +00002951 assert(semantics == (const llvm::fltSemantics*)&IEEEdouble &&
2952 "Float semantics are not IEEEdouble");
Dale Johannesen7111b022008-10-09 18:53:47 +00002953 APInt api = bitcastToAPInt();
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002954 return api.bitsToDouble();
2955}
2956
Dale Johannesend3d8ce32008-10-06 18:22:29 +00002957/// Integer bit is explicit in this format. Intel hardware (387 and later)
2958/// does not support these bit patterns:
2959/// exponent = all 1's, integer bit 0, significand 0 ("pseudoinfinity")
2960/// exponent = all 1's, integer bit 0, significand nonzero ("pseudoNaN")
2961/// exponent = 0, integer bit 1 ("pseudodenormal")
2962/// exponent!=0 nor all 1's, integer bit 0 ("unnormal")
2963/// At the moment, the first two are treated as NaNs, the second two as Normal.
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002964void
Neil Booth4f881702007-09-26 21:33:42 +00002965APFloat::initFromF80LongDoubleAPInt(const APInt &api)
2966{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002967 assert(api.getBitWidth()==80);
2968 uint64_t i1 = api.getRawData()[0];
2969 uint64_t i2 = api.getRawData()[1];
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002970 uint64_t myexponent = (i2 & 0x7fff);
2971 uint64_t mysignificand = i1;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002972
2973 initialize(&APFloat::x87DoubleExtended);
Dale Johannesena72a5a02007-09-20 23:47:58 +00002974 assert(partCount()==2);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002975
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002976 sign = static_cast<unsigned int>(i2>>15);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002977 if (myexponent==0 && mysignificand==0) {
2978 // exponent, significand meaningless
2979 category = fcZero;
2980 } else if (myexponent==0x7fff && mysignificand==0x8000000000000000ULL) {
2981 // exponent, significand meaningless
2982 category = fcInfinity;
2983 } else if (myexponent==0x7fff && mysignificand!=0x8000000000000000ULL) {
2984 // exponent meaningless
2985 category = fcNaN;
Dale Johannesena72a5a02007-09-20 23:47:58 +00002986 significandParts()[0] = mysignificand;
2987 significandParts()[1] = 0;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002988 } else {
2989 category = fcNormal;
2990 exponent = myexponent - 16383;
Dale Johannesena72a5a02007-09-20 23:47:58 +00002991 significandParts()[0] = mysignificand;
2992 significandParts()[1] = 0;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002993 if (myexponent==0) // denormal
2994 exponent = -16382;
Neil Booth4f881702007-09-26 21:33:42 +00002995 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002996}
2997
2998void
Dale Johannesena471c2e2007-10-11 18:07:22 +00002999APFloat::initFromPPCDoubleDoubleAPInt(const APInt &api)
3000{
3001 assert(api.getBitWidth()==128);
3002 uint64_t i1 = api.getRawData()[0];
3003 uint64_t i2 = api.getRawData()[1];
3004 uint64_t myexponent = (i1 >> 52) & 0x7ff;
3005 uint64_t mysignificand = i1 & 0xfffffffffffffLL;
3006 uint64_t myexponent2 = (i2 >> 52) & 0x7ff;
3007 uint64_t mysignificand2 = i2 & 0xfffffffffffffLL;
3008
3009 initialize(&APFloat::PPCDoubleDouble);
3010 assert(partCount()==2);
3011
Evan Cheng48e8c802008-05-02 21:15:08 +00003012 sign = static_cast<unsigned int>(i1>>63);
3013 sign2 = static_cast<unsigned int>(i2>>63);
Dale Johannesena471c2e2007-10-11 18:07:22 +00003014 if (myexponent==0 && mysignificand==0) {
3015 // exponent, significand meaningless
3016 // exponent2 and significand2 are required to be 0; we don't check
3017 category = fcZero;
3018 } else if (myexponent==0x7ff && mysignificand==0) {
3019 // exponent, significand meaningless
3020 // exponent2 and significand2 are required to be 0; we don't check
3021 category = fcInfinity;
3022 } else if (myexponent==0x7ff && mysignificand!=0) {
Dan Gohman16e02092010-03-24 19:38:02 +00003023 // exponent meaningless. So is the whole second word, but keep it
Dale Johannesena471c2e2007-10-11 18:07:22 +00003024 // for determinism.
3025 category = fcNaN;
3026 exponent2 = myexponent2;
3027 significandParts()[0] = mysignificand;
3028 significandParts()[1] = mysignificand2;
3029 } else {
3030 category = fcNormal;
3031 // Note there is no category2; the second word is treated as if it is
3032 // fcNormal, although it might be something else considered by itself.
3033 exponent = myexponent - 1023;
3034 exponent2 = myexponent2 - 1023;
3035 significandParts()[0] = mysignificand;
3036 significandParts()[1] = mysignificand2;
3037 if (myexponent==0) // denormal
3038 exponent = -1022;
3039 else
3040 significandParts()[0] |= 0x10000000000000LL; // integer bit
Dan Gohman16e02092010-03-24 19:38:02 +00003041 if (myexponent2==0)
Dale Johannesena471c2e2007-10-11 18:07:22 +00003042 exponent2 = -1022;
3043 else
3044 significandParts()[1] |= 0x10000000000000LL; // integer bit
3045 }
3046}
3047
3048void
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00003049APFloat::initFromQuadrupleAPInt(const APInt &api)
3050{
3051 assert(api.getBitWidth()==128);
3052 uint64_t i1 = api.getRawData()[0];
3053 uint64_t i2 = api.getRawData()[1];
3054 uint64_t myexponent = (i2 >> 48) & 0x7fff;
3055 uint64_t mysignificand = i1;
3056 uint64_t mysignificand2 = i2 & 0xffffffffffffLL;
3057
3058 initialize(&APFloat::IEEEquad);
3059 assert(partCount()==2);
3060
3061 sign = static_cast<unsigned int>(i2>>63);
3062 if (myexponent==0 &&
3063 (mysignificand==0 && mysignificand2==0)) {
3064 // exponent, significand meaningless
3065 category = fcZero;
3066 } else if (myexponent==0x7fff &&
3067 (mysignificand==0 && mysignificand2==0)) {
3068 // exponent, significand meaningless
3069 category = fcInfinity;
3070 } else if (myexponent==0x7fff &&
3071 (mysignificand!=0 || mysignificand2 !=0)) {
3072 // exponent meaningless
3073 category = fcNaN;
3074 significandParts()[0] = mysignificand;
3075 significandParts()[1] = mysignificand2;
3076 } else {
3077 category = fcNormal;
3078 exponent = myexponent - 16383;
3079 significandParts()[0] = mysignificand;
3080 significandParts()[1] = mysignificand2;
3081 if (myexponent==0) // denormal
3082 exponent = -16382;
3083 else
3084 significandParts()[1] |= 0x1000000000000LL; // integer bit
3085 }
3086}
3087
3088void
Neil Booth4f881702007-09-26 21:33:42 +00003089APFloat::initFromDoubleAPInt(const APInt &api)
3090{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003091 assert(api.getBitWidth()==64);
3092 uint64_t i = *api.getRawData();
Dale Johannesend3b51fd2007-08-24 05:08:11 +00003093 uint64_t myexponent = (i >> 52) & 0x7ff;
3094 uint64_t mysignificand = i & 0xfffffffffffffLL;
3095
Dale Johannesen343e7702007-08-24 00:56:33 +00003096 initialize(&APFloat::IEEEdouble);
Dale Johannesen343e7702007-08-24 00:56:33 +00003097 assert(partCount()==1);
3098
Evan Cheng48e8c802008-05-02 21:15:08 +00003099 sign = static_cast<unsigned int>(i>>63);
Dale Johannesen343e7702007-08-24 00:56:33 +00003100 if (myexponent==0 && mysignificand==0) {
3101 // exponent, significand meaningless
3102 category = fcZero;
Dale Johannesen343e7702007-08-24 00:56:33 +00003103 } else if (myexponent==0x7ff && mysignificand==0) {
3104 // exponent, significand meaningless
3105 category = fcInfinity;
Dale Johanneseneaf08942007-08-31 04:03:46 +00003106 } else if (myexponent==0x7ff && mysignificand!=0) {
3107 // exponent meaningless
3108 category = fcNaN;
3109 *significandParts() = mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00003110 } else {
Dale Johannesen343e7702007-08-24 00:56:33 +00003111 category = fcNormal;
3112 exponent = myexponent - 1023;
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00003113 *significandParts() = mysignificand;
3114 if (myexponent==0) // denormal
3115 exponent = -1022;
3116 else
3117 *significandParts() |= 0x10000000000000LL; // integer bit
Neil Booth4f881702007-09-26 21:33:42 +00003118 }
Dale Johannesen343e7702007-08-24 00:56:33 +00003119}
3120
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003121void
Neil Booth4f881702007-09-26 21:33:42 +00003122APFloat::initFromFloatAPInt(const APInt & api)
3123{
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003124 assert(api.getBitWidth()==32);
3125 uint32_t i = (uint32_t)*api.getRawData();
Dale Johannesend3b51fd2007-08-24 05:08:11 +00003126 uint32_t myexponent = (i >> 23) & 0xff;
3127 uint32_t mysignificand = i & 0x7fffff;
3128
Dale Johannesen343e7702007-08-24 00:56:33 +00003129 initialize(&APFloat::IEEEsingle);
Dale Johannesen343e7702007-08-24 00:56:33 +00003130 assert(partCount()==1);
3131
Dale Johanneseneaf08942007-08-31 04:03:46 +00003132 sign = i >> 31;
Dale Johannesen343e7702007-08-24 00:56:33 +00003133 if (myexponent==0 && mysignificand==0) {
3134 // exponent, significand meaningless
3135 category = fcZero;
Dale Johannesen343e7702007-08-24 00:56:33 +00003136 } else if (myexponent==0xff && mysignificand==0) {
3137 // exponent, significand meaningless
3138 category = fcInfinity;
Dale Johannesen902ff942007-09-25 17:25:00 +00003139 } else if (myexponent==0xff && mysignificand!=0) {
Dale Johannesen343e7702007-08-24 00:56:33 +00003140 // sign, exponent, significand meaningless
Dale Johanneseneaf08942007-08-31 04:03:46 +00003141 category = fcNaN;
3142 *significandParts() = mysignificand;
Dale Johannesen343e7702007-08-24 00:56:33 +00003143 } else {
3144 category = fcNormal;
Dale Johannesen343e7702007-08-24 00:56:33 +00003145 exponent = myexponent - 127; //bias
Dale Johannesen58c2e4c2007-09-05 20:39:49 +00003146 *significandParts() = mysignificand;
3147 if (myexponent==0) // denormal
3148 exponent = -126;
3149 else
3150 *significandParts() |= 0x800000; // integer bit
Dale Johannesen343e7702007-08-24 00:56:33 +00003151 }
3152}
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003153
Chris Lattnercc4287a2009-10-16 02:13:51 +00003154void
3155APFloat::initFromHalfAPInt(const APInt & api)
3156{
3157 assert(api.getBitWidth()==16);
3158 uint32_t i = (uint32_t)*api.getRawData();
Dale Johannesena223aed2009-10-23 04:02:51 +00003159 uint32_t myexponent = (i >> 10) & 0x1f;
Chris Lattnercc4287a2009-10-16 02:13:51 +00003160 uint32_t mysignificand = i & 0x3ff;
3161
3162 initialize(&APFloat::IEEEhalf);
3163 assert(partCount()==1);
3164
3165 sign = i >> 15;
3166 if (myexponent==0 && mysignificand==0) {
3167 // exponent, significand meaningless
3168 category = fcZero;
3169 } else if (myexponent==0x1f && mysignificand==0) {
3170 // exponent, significand meaningless
3171 category = fcInfinity;
3172 } else if (myexponent==0x1f && mysignificand!=0) {
3173 // sign, exponent, significand meaningless
3174 category = fcNaN;
3175 *significandParts() = mysignificand;
3176 } else {
3177 category = fcNormal;
3178 exponent = myexponent - 15; //bias
3179 *significandParts() = mysignificand;
3180 if (myexponent==0) // denormal
3181 exponent = -14;
3182 else
3183 *significandParts() |= 0x400; // integer bit
3184 }
3185}
3186
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003187/// Treat api as containing the bits of a floating point number. Currently
Dale Johannesena471c2e2007-10-11 18:07:22 +00003188/// we infer the floating point type from the size of the APInt. The
3189/// isIEEE argument distinguishes between PPC128 and IEEE128 (not meaningful
3190/// when the size is anything else).
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003191void
Dale Johannesena471c2e2007-10-11 18:07:22 +00003192APFloat::initFromAPInt(const APInt& api, bool isIEEE)
Neil Booth4f881702007-09-26 21:33:42 +00003193{
Chris Lattnercc4287a2009-10-16 02:13:51 +00003194 if (api.getBitWidth() == 16)
3195 return initFromHalfAPInt(api);
3196 else if (api.getBitWidth() == 32)
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003197 return initFromFloatAPInt(api);
3198 else if (api.getBitWidth()==64)
3199 return initFromDoubleAPInt(api);
3200 else if (api.getBitWidth()==80)
3201 return initFromF80LongDoubleAPInt(api);
Anton Korobeynikov7e844f12009-08-21 22:10:30 +00003202 else if (api.getBitWidth()==128)
3203 return (isIEEE ?
3204 initFromQuadrupleAPInt(api) : initFromPPCDoubleDoubleAPInt(api));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003205 else
Torok Edwinc23197a2009-07-14 16:55:14 +00003206 llvm_unreachable(0);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003207}
3208
Nadav Rotem093399c2011-02-17 21:22:27 +00003209APFloat
3210APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3211{
3212 return APFloat(APInt::getAllOnesValue(BitWidth), isIEEE);
3213}
3214
John McCall00e65de2009-12-24 08:56:26 +00003215APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) {
3216 APFloat Val(Sem, fcNormal, Negative);
3217
3218 // We want (in interchange format):
3219 // sign = {Negative}
3220 // exponent = 1..10
3221 // significand = 1..1
3222
3223 Val.exponent = Sem.maxExponent; // unbiased
3224
3225 // 1-initialize all bits....
3226 Val.zeroSignificand();
3227 integerPart *significand = Val.significandParts();
3228 unsigned N = partCountForBits(Sem.precision);
3229 for (unsigned i = 0; i != N; ++i)
3230 significand[i] = ~((integerPart) 0);
3231
3232 // ...and then clear the top bits for internal consistency.
Eli Friedman7247a5f2011-10-12 21:51:36 +00003233 if (Sem.precision % integerPartWidth != 0)
3234 significand[N-1] &=
3235 (((integerPart) 1) << (Sem.precision % integerPartWidth)) - 1;
John McCall00e65de2009-12-24 08:56:26 +00003236
3237 return Val;
3238}
3239
3240APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) {
3241 APFloat Val(Sem, fcNormal, Negative);
3242
3243 // We want (in interchange format):
3244 // sign = {Negative}
3245 // exponent = 0..0
3246 // significand = 0..01
3247
3248 Val.exponent = Sem.minExponent; // unbiased
3249 Val.zeroSignificand();
3250 Val.significandParts()[0] = 1;
3251 return Val;
3252}
3253
3254APFloat APFloat::getSmallestNormalized(const fltSemantics &Sem, bool Negative) {
3255 APFloat Val(Sem, fcNormal, Negative);
3256
3257 // We want (in interchange format):
3258 // sign = {Negative}
3259 // exponent = 0..0
3260 // significand = 10..0
3261
3262 Val.exponent = Sem.minExponent;
3263 Val.zeroSignificand();
Dan Gohman16e02092010-03-24 19:38:02 +00003264 Val.significandParts()[partCountForBits(Sem.precision)-1] |=
Eli Friedman90196fc2011-10-12 21:56:19 +00003265 (((integerPart) 1) << ((Sem.precision - 1) % integerPartWidth));
John McCall00e65de2009-12-24 08:56:26 +00003266
3267 return Val;
3268}
3269
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003270APFloat::APFloat(const APInt& api, bool isIEEE) : exponent2(0), sign2(0) {
Dale Johannesena471c2e2007-10-11 18:07:22 +00003271 initFromAPInt(api, isIEEE);
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003272}
3273
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003274APFloat::APFloat(float f) : exponent2(0), sign2(0) {
Jay Foade4d19c92010-11-28 21:04:48 +00003275 initFromAPInt(APInt::floatToBits(f));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003276}
3277
Bill Wendlingf09a8b52011-03-18 09:09:44 +00003278APFloat::APFloat(double d) : exponent2(0), sign2(0) {
Jay Foade4d19c92010-11-28 21:04:48 +00003279 initFromAPInt(APInt::doubleToBits(d));
Dale Johannesen3f6eb742007-09-11 18:32:33 +00003280}
John McCall00e65de2009-12-24 08:56:26 +00003281
3282namespace {
3283 static void append(SmallVectorImpl<char> &Buffer,
3284 unsigned N, const char *Str) {
3285 unsigned Start = Buffer.size();
3286 Buffer.set_size(Start + N);
3287 memcpy(&Buffer[Start], Str, N);
3288 }
3289
3290 template <unsigned N>
3291 void append(SmallVectorImpl<char> &Buffer, const char (&Str)[N]) {
3292 append(Buffer, N, Str);
3293 }
3294
John McCall003a09c2009-12-24 12:16:56 +00003295 /// Removes data from the given significand until it is no more
3296 /// precise than is required for the desired precision.
3297 void AdjustToPrecision(APInt &significand,
3298 int &exp, unsigned FormatPrecision) {
3299 unsigned bits = significand.getActiveBits();
3300
3301 // 196/59 is a very slight overestimate of lg_2(10).
3302 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59;
3303
3304 if (bits <= bitsRequired) return;
3305
3306 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196;
3307 if (!tensRemovable) return;
3308
3309 exp += tensRemovable;
3310
3311 APInt divisor(significand.getBitWidth(), 1);
3312 APInt powten(significand.getBitWidth(), 10);
3313 while (true) {
3314 if (tensRemovable & 1)
3315 divisor *= powten;
3316 tensRemovable >>= 1;
3317 if (!tensRemovable) break;
3318 powten *= powten;
3319 }
3320
3321 significand = significand.udiv(divisor);
3322
3323 // Truncate the significand down to its active bit count, but
3324 // don't try to drop below 32.
John McCall6a09aff2009-12-24 23:18:09 +00003325 unsigned newPrecision = std::max(32U, significand.getActiveBits());
Jay Foad40f8f622010-12-07 08:25:19 +00003326 significand = significand.trunc(newPrecision);
John McCall003a09c2009-12-24 12:16:56 +00003327 }
3328
3329
John McCall00e65de2009-12-24 08:56:26 +00003330 void AdjustToPrecision(SmallVectorImpl<char> &buffer,
3331 int &exp, unsigned FormatPrecision) {
3332 unsigned N = buffer.size();
3333 if (N <= FormatPrecision) return;
3334
3335 // The most significant figures are the last ones in the buffer.
3336 unsigned FirstSignificant = N - FormatPrecision;
3337
3338 // Round.
3339 // FIXME: this probably shouldn't use 'round half up'.
3340
3341 // Rounding down is just a truncation, except we also want to drop
3342 // trailing zeros from the new result.
3343 if (buffer[FirstSignificant - 1] < '5') {
3344 while (buffer[FirstSignificant] == '0')
3345 FirstSignificant++;
3346
3347 exp += FirstSignificant;
3348 buffer.erase(&buffer[0], &buffer[FirstSignificant]);
3349 return;
3350 }
3351
3352 // Rounding up requires a decimal add-with-carry. If we continue
3353 // the carry, the newly-introduced zeros will just be truncated.
3354 for (unsigned I = FirstSignificant; I != N; ++I) {
3355 if (buffer[I] == '9') {
3356 FirstSignificant++;
3357 } else {
3358 buffer[I]++;
3359 break;
3360 }
3361 }
3362
3363 // If we carried through, we have exactly one digit of precision.
3364 if (FirstSignificant == N) {
3365 exp += FirstSignificant;
3366 buffer.clear();
3367 buffer.push_back('1');
3368 return;
3369 }
3370
3371 exp += FirstSignificant;
3372 buffer.erase(&buffer[0], &buffer[FirstSignificant]);
3373 }
3374}
3375
3376void APFloat::toString(SmallVectorImpl<char> &Str,
3377 unsigned FormatPrecision,
Chris Lattner0ddda3b2010-03-06 19:20:13 +00003378 unsigned FormatMaxPadding) const {
John McCall00e65de2009-12-24 08:56:26 +00003379 switch (category) {
3380 case fcInfinity:
3381 if (isNegative())
3382 return append(Str, "-Inf");
3383 else
3384 return append(Str, "+Inf");
3385
3386 case fcNaN: return append(Str, "NaN");
3387
3388 case fcZero:
3389 if (isNegative())
3390 Str.push_back('-');
3391
3392 if (!FormatMaxPadding)
3393 append(Str, "0.0E+0");
3394 else
3395 Str.push_back('0');
3396 return;
3397
3398 case fcNormal:
3399 break;
3400 }
3401
3402 if (isNegative())
3403 Str.push_back('-');
3404
3405 // Decompose the number into an APInt and an exponent.
3406 int exp = exponent - ((int) semantics->precision - 1);
3407 APInt significand(semantics->precision,
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00003408 makeArrayRef(significandParts(),
3409 partCountForBits(semantics->precision)));
John McCall00e65de2009-12-24 08:56:26 +00003410
John McCall6a09aff2009-12-24 23:18:09 +00003411 // Set FormatPrecision if zero. We want to do this before we
3412 // truncate trailing zeros, as those are part of the precision.
3413 if (!FormatPrecision) {
3414 // It's an interesting question whether to use the nominal
3415 // precision or the active precision here for denormals.
3416
3417 // FormatPrecision = ceil(significandBits / lg_2(10))
3418 FormatPrecision = (semantics->precision * 59 + 195) / 196;
3419 }
3420
John McCall00e65de2009-12-24 08:56:26 +00003421 // Ignore trailing binary zeros.
3422 int trailingZeros = significand.countTrailingZeros();
3423 exp += trailingZeros;
3424 significand = significand.lshr(trailingZeros);
3425
3426 // Change the exponent from 2^e to 10^e.
3427 if (exp == 0) {
3428 // Nothing to do.
3429 } else if (exp > 0) {
3430 // Just shift left.
Jay Foad40f8f622010-12-07 08:25:19 +00003431 significand = significand.zext(semantics->precision + exp);
John McCall00e65de2009-12-24 08:56:26 +00003432 significand <<= exp;
3433 exp = 0;
3434 } else { /* exp < 0 */
3435 int texp = -exp;
3436
3437 // We transform this using the identity:
3438 // (N)(2^-e) == (N)(5^e)(10^-e)
3439 // This means we have to multiply N (the significand) by 5^e.
3440 // To avoid overflow, we have to operate on numbers large
3441 // enough to store N * 5^e:
3442 // log2(N * 5^e) == log2(N) + e * log2(5)
John McCall6a09aff2009-12-24 23:18:09 +00003443 // <= semantics->precision + e * 137 / 59
3444 // (log_2(5) ~ 2.321928 < 2.322034 ~ 137/59)
Dan Gohman16e02092010-03-24 19:38:02 +00003445
Eli Friedman9eb6b4d2011-10-07 23:40:49 +00003446 unsigned precision = semantics->precision + (137 * texp + 136) / 59;
John McCall00e65de2009-12-24 08:56:26 +00003447
3448 // Multiply significand by 5^e.
3449 // N * 5^0101 == N * 5^(1*1) * 5^(0*2) * 5^(1*4) * 5^(0*8)
Jay Foad40f8f622010-12-07 08:25:19 +00003450 significand = significand.zext(precision);
John McCall00e65de2009-12-24 08:56:26 +00003451 APInt five_to_the_i(precision, 5);
3452 while (true) {
3453 if (texp & 1) significand *= five_to_the_i;
Dan Gohman16e02092010-03-24 19:38:02 +00003454
John McCall00e65de2009-12-24 08:56:26 +00003455 texp >>= 1;
3456 if (!texp) break;
3457 five_to_the_i *= five_to_the_i;
3458 }
3459 }
3460
John McCall003a09c2009-12-24 12:16:56 +00003461 AdjustToPrecision(significand, exp, FormatPrecision);
3462
John McCall00e65de2009-12-24 08:56:26 +00003463 llvm::SmallVector<char, 256> buffer;
3464
3465 // Fill the buffer.
3466 unsigned precision = significand.getBitWidth();
3467 APInt ten(precision, 10);
3468 APInt digit(precision, 0);
3469
3470 bool inTrail = true;
3471 while (significand != 0) {
3472 // digit <- significand % 10
3473 // significand <- significand / 10
3474 APInt::udivrem(significand, ten, significand, digit);
3475
3476 unsigned d = digit.getZExtValue();
3477
3478 // Drop trailing zeros.
3479 if (inTrail && !d) exp++;
3480 else {
3481 buffer.push_back((char) ('0' + d));
3482 inTrail = false;
3483 }
3484 }
3485
3486 assert(!buffer.empty() && "no characters in buffer!");
3487
3488 // Drop down to FormatPrecision.
3489 // TODO: don't do more precise calculations above than are required.
3490 AdjustToPrecision(buffer, exp, FormatPrecision);
3491
3492 unsigned NDigits = buffer.size();
3493
John McCall6a09aff2009-12-24 23:18:09 +00003494 // Check whether we should use scientific notation.
John McCall00e65de2009-12-24 08:56:26 +00003495 bool FormatScientific;
3496 if (!FormatMaxPadding)
3497 FormatScientific = true;
3498 else {
John McCall00e65de2009-12-24 08:56:26 +00003499 if (exp >= 0) {
John McCall6a09aff2009-12-24 23:18:09 +00003500 // 765e3 --> 765000
3501 // ^^^
3502 // But we shouldn't make the number look more precise than it is.
3503 FormatScientific = ((unsigned) exp > FormatMaxPadding ||
3504 NDigits + (unsigned) exp > FormatPrecision);
John McCall00e65de2009-12-24 08:56:26 +00003505 } else {
John McCall6a09aff2009-12-24 23:18:09 +00003506 // Power of the most significant digit.
3507 int MSD = exp + (int) (NDigits - 1);
3508 if (MSD >= 0) {
John McCall00e65de2009-12-24 08:56:26 +00003509 // 765e-2 == 7.65
John McCall6a09aff2009-12-24 23:18:09 +00003510 FormatScientific = false;
John McCall00e65de2009-12-24 08:56:26 +00003511 } else {
3512 // 765e-5 == 0.00765
3513 // ^ ^^
John McCall6a09aff2009-12-24 23:18:09 +00003514 FormatScientific = ((unsigned) -MSD) > FormatMaxPadding;
John McCall00e65de2009-12-24 08:56:26 +00003515 }
3516 }
John McCall00e65de2009-12-24 08:56:26 +00003517 }
3518
3519 // Scientific formatting is pretty straightforward.
3520 if (FormatScientific) {
3521 exp += (NDigits - 1);
3522
3523 Str.push_back(buffer[NDigits-1]);
3524 Str.push_back('.');
3525 if (NDigits == 1)
3526 Str.push_back('0');
3527 else
3528 for (unsigned I = 1; I != NDigits; ++I)
3529 Str.push_back(buffer[NDigits-1-I]);
3530 Str.push_back('E');
3531
3532 Str.push_back(exp >= 0 ? '+' : '-');
3533 if (exp < 0) exp = -exp;
3534 SmallVector<char, 6> expbuf;
3535 do {
3536 expbuf.push_back((char) ('0' + (exp % 10)));
3537 exp /= 10;
3538 } while (exp);
3539 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3540 Str.push_back(expbuf[E-1-I]);
3541 return;
3542 }
3543
3544 // Non-scientific, positive exponents.
3545 if (exp >= 0) {
3546 for (unsigned I = 0; I != NDigits; ++I)
3547 Str.push_back(buffer[NDigits-1-I]);
3548 for (unsigned I = 0; I != (unsigned) exp; ++I)
3549 Str.push_back('0');
3550 return;
3551 }
3552
3553 // Non-scientific, negative exponents.
3554
3555 // The number of digits to the left of the decimal point.
3556 int NWholeDigits = exp + (int) NDigits;
3557
3558 unsigned I = 0;
3559 if (NWholeDigits > 0) {
3560 for (; I != (unsigned) NWholeDigits; ++I)
3561 Str.push_back(buffer[NDigits-I-1]);
3562 Str.push_back('.');
3563 } else {
3564 unsigned NZeros = 1 + (unsigned) -NWholeDigits;
3565
3566 Str.push_back('0');
3567 Str.push_back('.');
3568 for (unsigned Z = 1; Z != NZeros; ++Z)
3569 Str.push_back('0');
3570 }
3571
3572 for (; I != NDigits; ++I)
3573 Str.push_back(buffer[NDigits-I-1]);
3574}
Benjamin Kramer27460002011-03-30 15:42:27 +00003575
3576bool APFloat::getExactInverse(APFloat *inv) const {
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003577 // We can only guarantee the existence of an exact inverse for IEEE floats.
Benjamin Kramer27460002011-03-30 15:42:27 +00003578 if (semantics != &IEEEhalf && semantics != &IEEEsingle &&
3579 semantics != &IEEEdouble && semantics != &IEEEquad)
3580 return false;
3581
3582 // Special floats and denormals have no exact inverse.
3583 if (category != fcNormal)
3584 return false;
3585
3586 // Check that the number is a power of two by making sure that only the
3587 // integer bit is set in the significand.
3588 if (significandLSB() != semantics->precision - 1)
3589 return false;
3590
3591 // Get the inverse.
3592 APFloat reciprocal(*semantics, 1ULL);
3593 if (reciprocal.divide(*this, rmNearestTiesToEven) != opOK)
3594 return false;
3595
Benjamin Kramer83985122011-03-30 17:02:54 +00003596 // Avoid multiplication with a denormal, it is not safe on all platforms and
3597 // may be slower than a normal division.
3598 if (reciprocal.significandMSB() + 1 < reciprocal.semantics->precision)
3599 return false;
3600
3601 assert(reciprocal.category == fcNormal &&
3602 reciprocal.significandLSB() == reciprocal.semantics->precision - 1);
3603
Benjamin Kramer27460002011-03-30 15:42:27 +00003604 if (inv)
3605 *inv = reciprocal;
3606
3607 return true;
3608}