Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1 | //===-- APFloat.cpp - Implement APFloat class -----------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Neil Booth and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 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 | |
| 15 | #include <cassert> |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 16 | #include <cstring> |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/APFloat.h" |
Dale Johannesen | d3b51fd | 2007-08-24 05:08:11 +0000 | [diff] [blame] | 18 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 19 | |
| 20 | using namespace llvm; |
| 21 | |
| 22 | #define convolve(lhs, rhs) ((lhs) * 4 + (rhs)) |
| 23 | |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 24 | /* Assumed in hexadecimal significand parsing, and conversion to |
| 25 | hexadecimal strings. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 26 | COMPILE_TIME_ASSERT(integerPartWidth % 4 == 0); |
| 27 | |
| 28 | namespace llvm { |
| 29 | |
| 30 | /* Represents floating point arithmetic semantics. */ |
| 31 | struct fltSemantics { |
| 32 | /* The largest E such that 2^E is representable; this matches the |
| 33 | definition of IEEE 754. */ |
| 34 | exponent_t maxExponent; |
| 35 | |
| 36 | /* The smallest E such that 2^E is a normalized number; this |
| 37 | matches the definition of IEEE 754. */ |
| 38 | exponent_t minExponent; |
| 39 | |
| 40 | /* Number of bits in the significand. This includes the integer |
| 41 | bit. */ |
Neil Booth | 7a951ca | 2007-10-12 15:33:27 +0000 | [diff] [blame] | 42 | unsigned int precision; |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 43 | |
| 44 | /* True if arithmetic is supported. */ |
| 45 | unsigned int arithmeticOK; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 46 | }; |
| 47 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 48 | const fltSemantics APFloat::IEEEsingle = { 127, -126, 24, true }; |
| 49 | const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53, true }; |
| 50 | const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113, true }; |
| 51 | const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, true }; |
| 52 | const fltSemantics APFloat::Bogus = { 0, 0, 0, true }; |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 53 | |
| 54 | // The PowerPC format consists of two doubles. It does not map cleanly |
| 55 | // onto the usual format above. For now only storage of constants of |
| 56 | // this type is supported, no arithmetic. |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 57 | const fltSemantics APFloat::PPCDoubleDouble = { 1023, -1022, 106, false }; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 58 | |
| 59 | /* A tight upper bound on number of parts required to hold the value |
| 60 | pow(5, power) is |
| 61 | |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 62 | power * 815 / (351 * integerPartWidth) + 1 |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 63 | |
| 64 | However, whilst the result may require only this many parts, |
| 65 | because we are multiplying two values to get it, the |
| 66 | multiplication may require an extra part with the excess part |
| 67 | being zero (consider the trivial case of 1 * 1, tcFullMultiply |
| 68 | requires two parts to hold the single-part result). So we add an |
| 69 | extra one to guarantee enough space whilst multiplying. */ |
| 70 | const unsigned int maxExponent = 16383; |
| 71 | const unsigned int maxPrecision = 113; |
| 72 | const unsigned int maxPowerOfFiveExponent = maxExponent + maxPrecision - 1; |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 73 | const unsigned int maxPowerOfFiveParts = 2 + ((maxPowerOfFiveExponent * 815) |
| 74 | / (351 * integerPartWidth)); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /* Put a bunch of private, handy routines in an anonymous namespace. */ |
| 78 | namespace { |
| 79 | |
| 80 | inline unsigned int |
| 81 | partCountForBits(unsigned int bits) |
| 82 | { |
| 83 | return ((bits) + integerPartWidth - 1) / integerPartWidth; |
| 84 | } |
| 85 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 86 | /* Returns 0U-9U. Return values >= 10U are not digits. */ |
| 87 | inline unsigned int |
| 88 | decDigitValue(unsigned int c) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 89 | { |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 90 | return c - '0'; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | unsigned int |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 94 | hexDigitValue(unsigned int c) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 95 | { |
| 96 | unsigned int r; |
| 97 | |
| 98 | r = c - '0'; |
| 99 | if(r <= 9) |
| 100 | return r; |
| 101 | |
| 102 | r = c - 'A'; |
| 103 | if(r <= 5) |
| 104 | return r + 10; |
| 105 | |
| 106 | r = c - 'a'; |
| 107 | if(r <= 5) |
| 108 | return r + 10; |
| 109 | |
| 110 | return -1U; |
| 111 | } |
| 112 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 113 | inline void |
| 114 | assertArithmeticOK(const llvm::fltSemantics &semantics) { |
| 115 | assert(semantics.arithmeticOK |
| 116 | && "Compile-time arithmetic does not support these semantics"); |
| 117 | } |
| 118 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 119 | /* Return the value of a decimal exponent of the form |
| 120 | [+-]ddddddd. |
| 121 | |
| 122 | If the exponent overflows, returns a large exponent with the |
| 123 | appropriate sign. */ |
| 124 | static int |
| 125 | readExponent(const char *p) |
| 126 | { |
| 127 | bool isNegative; |
| 128 | unsigned int absExponent; |
| 129 | const unsigned int overlargeExponent = 24000; /* FIXME. */ |
| 130 | |
| 131 | isNegative = (*p == '-'); |
| 132 | if (*p == '-' || *p == '+') |
| 133 | p++; |
| 134 | |
| 135 | absExponent = decDigitValue(*p++); |
| 136 | assert (absExponent < 10U); |
| 137 | |
| 138 | for (;;) { |
| 139 | unsigned int value; |
| 140 | |
| 141 | value = decDigitValue(*p); |
| 142 | if (value >= 10U) |
| 143 | break; |
| 144 | |
| 145 | p++; |
| 146 | value += absExponent * 10; |
| 147 | if (absExponent >= overlargeExponent) { |
| 148 | absExponent = overlargeExponent; |
| 149 | break; |
| 150 | } |
| 151 | absExponent = value; |
| 152 | } |
| 153 | |
| 154 | if (isNegative) |
| 155 | return -(int) absExponent; |
| 156 | else |
| 157 | return (int) absExponent; |
| 158 | } |
| 159 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 160 | /* This is ugly and needs cleaning up, but I don't immediately see |
| 161 | how whilst remaining safe. */ |
| 162 | static int |
| 163 | totalExponent(const char *p, int exponentAdjustment) |
| 164 | { |
| 165 | integerPart unsignedExponent; |
| 166 | bool negative, overflow; |
| 167 | long exponent; |
| 168 | |
| 169 | /* Move past the exponent letter and sign to the digits. */ |
| 170 | p++; |
| 171 | negative = *p == '-'; |
| 172 | if(*p == '-' || *p == '+') |
| 173 | p++; |
| 174 | |
| 175 | unsignedExponent = 0; |
| 176 | overflow = false; |
| 177 | for(;;) { |
| 178 | unsigned int value; |
| 179 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 180 | value = decDigitValue(*p); |
| 181 | if(value >= 10U) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 182 | break; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 183 | |
| 184 | p++; |
| 185 | unsignedExponent = unsignedExponent * 10 + value; |
| 186 | if(unsignedExponent > 65535) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 187 | overflow = true; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | if(exponentAdjustment > 65535 || exponentAdjustment < -65536) |
| 191 | overflow = true; |
| 192 | |
| 193 | if(!overflow) { |
| 194 | exponent = unsignedExponent; |
| 195 | if(negative) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 196 | exponent = -exponent; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 197 | exponent += exponentAdjustment; |
| 198 | if(exponent > 65535 || exponent < -65536) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 199 | overflow = true; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | if(overflow) |
| 203 | exponent = negative ? -65536: 65535; |
| 204 | |
| 205 | return exponent; |
| 206 | } |
| 207 | |
| 208 | const char * |
| 209 | skipLeadingZeroesAndAnyDot(const char *p, const char **dot) |
| 210 | { |
| 211 | *dot = 0; |
| 212 | while(*p == '0') |
| 213 | p++; |
| 214 | |
| 215 | if(*p == '.') { |
| 216 | *dot = p++; |
| 217 | while(*p == '0') |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 218 | p++; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | return p; |
| 222 | } |
| 223 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 224 | /* Given a normal decimal floating point number of the form |
| 225 | |
| 226 | dddd.dddd[eE][+-]ddd |
| 227 | |
| 228 | where the decimal point and exponent are optional, fill out the |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 229 | structure D. Exponent is appropriate if the significand is |
| 230 | treated as an integer, and normalizedExponent if the significand |
| 231 | is taken to have the decimal point after a single leading |
| 232 | non-zero digit. |
| 233 | |
| 234 | If the value is zero, V->firstSigDigit points to a zero, and the |
| 235 | return exponent is zero. |
| 236 | */ |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 237 | struct decimalInfo { |
| 238 | const char *firstSigDigit; |
| 239 | const char *lastSigDigit; |
| 240 | int exponent; |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 241 | int normalizedExponent; |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 242 | }; |
| 243 | |
| 244 | void |
| 245 | interpretDecimal(const char *p, decimalInfo *D) |
| 246 | { |
| 247 | const char *dot; |
| 248 | |
| 249 | p = skipLeadingZeroesAndAnyDot (p, &dot); |
| 250 | |
| 251 | D->firstSigDigit = p; |
| 252 | D->exponent = 0; |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 253 | D->normalizedExponent = 0; |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 254 | |
| 255 | for (;;) { |
| 256 | if (*p == '.') { |
| 257 | assert(dot == 0); |
| 258 | dot = p++; |
| 259 | } |
| 260 | if (decDigitValue(*p) >= 10U) |
| 261 | break; |
| 262 | p++; |
| 263 | } |
| 264 | |
| 265 | /* If number is all zerooes accept any exponent. */ |
| 266 | if (p != D->firstSigDigit) { |
| 267 | if (*p == 'e' || *p == 'E') |
| 268 | D->exponent = readExponent(p + 1); |
| 269 | |
| 270 | /* Implied decimal point? */ |
| 271 | if (!dot) |
| 272 | dot = p; |
| 273 | |
| 274 | /* Drop insignificant trailing zeroes. */ |
| 275 | do |
| 276 | do |
| 277 | p--; |
| 278 | while (*p == '0'); |
| 279 | while (*p == '.'); |
| 280 | |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 281 | /* Adjust the exponents for any decimal point. */ |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 282 | D->exponent += (dot - p) - (dot > p); |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 283 | D->normalizedExponent = (D->exponent + (p - D->firstSigDigit) |
| 284 | - (dot > D->firstSigDigit && dot < p)); |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | D->lastSigDigit = p; |
| 288 | } |
| 289 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 290 | /* Return the trailing fraction of a hexadecimal number. |
| 291 | DIGITVALUE is the first hex digit of the fraction, P points to |
| 292 | the next digit. */ |
| 293 | lostFraction |
| 294 | trailingHexadecimalFraction(const char *p, unsigned int digitValue) |
| 295 | { |
| 296 | unsigned int hexDigit; |
| 297 | |
| 298 | /* If the first trailing digit isn't 0 or 8 we can work out the |
| 299 | fraction immediately. */ |
| 300 | if(digitValue > 8) |
| 301 | return lfMoreThanHalf; |
| 302 | else if(digitValue < 8 && digitValue > 0) |
| 303 | return lfLessThanHalf; |
| 304 | |
| 305 | /* Otherwise we need to find the first non-zero digit. */ |
| 306 | while(*p == '0') |
| 307 | p++; |
| 308 | |
| 309 | hexDigit = hexDigitValue(*p); |
| 310 | |
| 311 | /* If we ran off the end it is exactly zero or one-half, otherwise |
| 312 | a little more. */ |
| 313 | if(hexDigit == -1U) |
| 314 | return digitValue == 0 ? lfExactlyZero: lfExactlyHalf; |
| 315 | else |
| 316 | return digitValue == 0 ? lfLessThanHalf: lfMoreThanHalf; |
| 317 | } |
| 318 | |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 319 | /* Return the fraction lost were a bignum truncated losing the least |
| 320 | significant BITS bits. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 321 | lostFraction |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 322 | lostFractionThroughTruncation(const integerPart *parts, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 323 | unsigned int partCount, |
| 324 | unsigned int bits) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 325 | { |
| 326 | unsigned int lsb; |
| 327 | |
| 328 | lsb = APInt::tcLSB(parts, partCount); |
| 329 | |
| 330 | /* Note this is guaranteed true if bits == 0, or LSB == -1U. */ |
| 331 | if(bits <= lsb) |
| 332 | return lfExactlyZero; |
| 333 | if(bits == lsb + 1) |
| 334 | return lfExactlyHalf; |
| 335 | if(bits <= partCount * integerPartWidth |
| 336 | && APInt::tcExtractBit(parts, bits - 1)) |
| 337 | return lfMoreThanHalf; |
| 338 | |
| 339 | return lfLessThanHalf; |
| 340 | } |
| 341 | |
| 342 | /* Shift DST right BITS bits noting lost fraction. */ |
| 343 | lostFraction |
| 344 | shiftRight(integerPart *dst, unsigned int parts, unsigned int bits) |
| 345 | { |
| 346 | lostFraction lost_fraction; |
| 347 | |
| 348 | lost_fraction = lostFractionThroughTruncation(dst, parts, bits); |
| 349 | |
| 350 | APInt::tcShiftRight(dst, parts, bits); |
| 351 | |
| 352 | return lost_fraction; |
| 353 | } |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 354 | |
Neil Booth | 33d4c92 | 2007-10-07 08:51:21 +0000 | [diff] [blame] | 355 | /* Combine the effect of two lost fractions. */ |
| 356 | lostFraction |
| 357 | combineLostFractions(lostFraction moreSignificant, |
| 358 | lostFraction lessSignificant) |
| 359 | { |
| 360 | if(lessSignificant != lfExactlyZero) { |
| 361 | if(moreSignificant == lfExactlyZero) |
| 362 | moreSignificant = lfLessThanHalf; |
| 363 | else if(moreSignificant == lfExactlyHalf) |
| 364 | moreSignificant = lfMoreThanHalf; |
| 365 | } |
| 366 | |
| 367 | return moreSignificant; |
| 368 | } |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 369 | |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 370 | /* The error from the true value, in half-ulps, on multiplying two |
| 371 | floating point numbers, which differ from the value they |
| 372 | approximate by at most HUE1 and HUE2 half-ulps, is strictly less |
| 373 | than the returned value. |
| 374 | |
| 375 | See "How to Read Floating Point Numbers Accurately" by William D |
| 376 | Clinger. */ |
| 377 | unsigned int |
| 378 | HUerrBound(bool inexactMultiply, unsigned int HUerr1, unsigned int HUerr2) |
| 379 | { |
| 380 | assert(HUerr1 < 2 || HUerr2 < 2 || (HUerr1 + HUerr2 < 8)); |
| 381 | |
| 382 | if (HUerr1 + HUerr2 == 0) |
| 383 | return inexactMultiply * 2; /* <= inexactMultiply half-ulps. */ |
| 384 | else |
| 385 | return inexactMultiply + 2 * (HUerr1 + HUerr2); |
| 386 | } |
| 387 | |
| 388 | /* The number of ulps from the boundary (zero, or half if ISNEAREST) |
| 389 | when the least significant BITS are truncated. BITS cannot be |
| 390 | zero. */ |
| 391 | integerPart |
| 392 | ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest) |
| 393 | { |
| 394 | unsigned int count, partBits; |
| 395 | integerPart part, boundary; |
| 396 | |
| 397 | assert (bits != 0); |
| 398 | |
| 399 | bits--; |
| 400 | count = bits / integerPartWidth; |
| 401 | partBits = bits % integerPartWidth + 1; |
| 402 | |
| 403 | part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits)); |
| 404 | |
| 405 | if (isNearest) |
| 406 | boundary = (integerPart) 1 << (partBits - 1); |
| 407 | else |
| 408 | boundary = 0; |
| 409 | |
| 410 | if (count == 0) { |
| 411 | if (part - boundary <= boundary - part) |
| 412 | return part - boundary; |
| 413 | else |
| 414 | return boundary - part; |
| 415 | } |
| 416 | |
| 417 | if (part == boundary) { |
| 418 | while (--count) |
| 419 | if (parts[count]) |
| 420 | return ~(integerPart) 0; /* A lot. */ |
| 421 | |
| 422 | return parts[0]; |
| 423 | } else if (part == boundary - 1) { |
| 424 | while (--count) |
| 425 | if (~parts[count]) |
| 426 | return ~(integerPart) 0; /* A lot. */ |
| 427 | |
| 428 | return -parts[0]; |
| 429 | } |
| 430 | |
| 431 | return ~(integerPart) 0; /* A lot. */ |
| 432 | } |
| 433 | |
| 434 | /* Place pow(5, power) in DST, and return the number of parts used. |
| 435 | DST must be at least one part larger than size of the answer. */ |
| 436 | static unsigned int |
| 437 | powerOf5(integerPart *dst, unsigned int power) |
| 438 | { |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 439 | static integerPart firstEightPowers[] = { 1, 5, 25, 125, 625, 3125, |
| 440 | 15625, 78125 }; |
| 441 | static integerPart pow5s[maxPowerOfFiveParts * 2 + 5] = { 78125 * 5 }; |
| 442 | static unsigned int partsCount[16] = { 1 }; |
| 443 | |
| 444 | integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5; |
| 445 | unsigned int result; |
| 446 | |
| 447 | assert(power <= maxExponent); |
| 448 | |
| 449 | p1 = dst; |
| 450 | p2 = scratch; |
| 451 | |
| 452 | *p1 = firstEightPowers[power & 7]; |
| 453 | power >>= 3; |
| 454 | |
| 455 | result = 1; |
| 456 | pow5 = pow5s; |
| 457 | |
| 458 | for (unsigned int n = 0; power; power >>= 1, n++) { |
| 459 | unsigned int pc; |
| 460 | |
| 461 | pc = partsCount[n]; |
| 462 | |
| 463 | /* Calculate pow(5,pow(2,n+3)) if we haven't yet. */ |
| 464 | if (pc == 0) { |
| 465 | pc = partsCount[n - 1]; |
| 466 | APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc); |
| 467 | pc *= 2; |
| 468 | if (pow5[pc - 1] == 0) |
| 469 | pc--; |
| 470 | partsCount[n] = pc; |
| 471 | } |
| 472 | |
| 473 | if (power & 1) { |
| 474 | integerPart *tmp; |
| 475 | |
| 476 | APInt::tcFullMultiply(p2, p1, pow5, result, pc); |
| 477 | result += pc; |
| 478 | if (p2[result - 1] == 0) |
| 479 | result--; |
| 480 | |
| 481 | /* Now result is in p1 with partsCount parts and p2 is scratch |
| 482 | space. */ |
| 483 | tmp = p1, p1 = p2, p2 = tmp; |
| 484 | } |
| 485 | |
| 486 | pow5 += pc; |
| 487 | } |
| 488 | |
| 489 | if (p1 != dst) |
| 490 | APInt::tcAssign(dst, p1, result); |
| 491 | |
| 492 | return result; |
| 493 | } |
| 494 | |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 495 | /* Zero at the end to avoid modular arithmetic when adding one; used |
| 496 | when rounding up during hexadecimal output. */ |
| 497 | static const char hexDigitsLower[] = "0123456789abcdef0"; |
| 498 | static const char hexDigitsUpper[] = "0123456789ABCDEF0"; |
| 499 | static const char infinityL[] = "infinity"; |
| 500 | static const char infinityU[] = "INFINITY"; |
| 501 | static const char NaNL[] = "nan"; |
| 502 | static const char NaNU[] = "NAN"; |
| 503 | |
| 504 | /* Write out an integerPart in hexadecimal, starting with the most |
| 505 | significant nibble. Write out exactly COUNT hexdigits, return |
| 506 | COUNT. */ |
| 507 | static unsigned int |
| 508 | partAsHex (char *dst, integerPart part, unsigned int count, |
| 509 | const char *hexDigitChars) |
| 510 | { |
| 511 | unsigned int result = count; |
| 512 | |
| 513 | assert (count != 0 && count <= integerPartWidth / 4); |
| 514 | |
| 515 | part >>= (integerPartWidth - 4 * count); |
| 516 | while (count--) { |
| 517 | dst[count] = hexDigitChars[part & 0xf]; |
| 518 | part >>= 4; |
| 519 | } |
| 520 | |
| 521 | return result; |
| 522 | } |
| 523 | |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 524 | /* Write out an unsigned decimal integer. */ |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 525 | static char * |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 526 | writeUnsignedDecimal (char *dst, unsigned int n) |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 527 | { |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 528 | char buff[40], *p; |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 529 | |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 530 | p = buff; |
| 531 | do |
| 532 | *p++ = '0' + n % 10; |
| 533 | while (n /= 10); |
| 534 | |
| 535 | do |
| 536 | *dst++ = *--p; |
| 537 | while (p != buff); |
| 538 | |
| 539 | return dst; |
| 540 | } |
| 541 | |
| 542 | /* Write out a signed decimal integer. */ |
| 543 | static char * |
| 544 | writeSignedDecimal (char *dst, int value) |
| 545 | { |
| 546 | if (value < 0) { |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 547 | *dst++ = '-'; |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 548 | dst = writeUnsignedDecimal(dst, -(unsigned) value); |
| 549 | } else |
| 550 | dst = writeUnsignedDecimal(dst, value); |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 551 | |
| 552 | return dst; |
| 553 | } |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | /* Constructors. */ |
| 557 | void |
| 558 | APFloat::initialize(const fltSemantics *ourSemantics) |
| 559 | { |
| 560 | unsigned int count; |
| 561 | |
| 562 | semantics = ourSemantics; |
| 563 | count = partCount(); |
| 564 | if(count > 1) |
| 565 | significand.parts = new integerPart[count]; |
| 566 | } |
| 567 | |
| 568 | void |
| 569 | APFloat::freeSignificand() |
| 570 | { |
| 571 | if(partCount() > 1) |
| 572 | delete [] significand.parts; |
| 573 | } |
| 574 | |
| 575 | void |
| 576 | APFloat::assign(const APFloat &rhs) |
| 577 | { |
| 578 | assert(semantics == rhs.semantics); |
| 579 | |
| 580 | sign = rhs.sign; |
| 581 | category = rhs.category; |
| 582 | exponent = rhs.exponent; |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 583 | sign2 = rhs.sign2; |
| 584 | exponent2 = rhs.exponent2; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 585 | if(category == fcNormal || category == fcNaN) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 586 | copySignificand(rhs); |
| 587 | } |
| 588 | |
| 589 | void |
| 590 | APFloat::copySignificand(const APFloat &rhs) |
| 591 | { |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 592 | assert(category == fcNormal || category == fcNaN); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 593 | assert(rhs.partCount() >= partCount()); |
| 594 | |
| 595 | APInt::tcAssign(significandParts(), rhs.significandParts(), |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 596 | partCount()); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 599 | /* Make this number a NaN, with an arbitrary but deterministic value |
| 600 | for the significand. */ |
| 601 | void |
| 602 | APFloat::makeNaN(void) |
| 603 | { |
| 604 | category = fcNaN; |
| 605 | APInt::tcSet(significandParts(), ~0U, partCount()); |
| 606 | } |
| 607 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 608 | APFloat & |
| 609 | APFloat::operator=(const APFloat &rhs) |
| 610 | { |
| 611 | if(this != &rhs) { |
| 612 | if(semantics != rhs.semantics) { |
| 613 | freeSignificand(); |
| 614 | initialize(rhs.semantics); |
| 615 | } |
| 616 | assign(rhs); |
| 617 | } |
| 618 | |
| 619 | return *this; |
| 620 | } |
| 621 | |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 622 | bool |
Dale Johannesen | 12595d7 | 2007-08-24 22:09:56 +0000 | [diff] [blame] | 623 | APFloat::bitwiseIsEqual(const APFloat &rhs) const { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 624 | if (this == &rhs) |
| 625 | return true; |
| 626 | if (semantics != rhs.semantics || |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 627 | category != rhs.category || |
| 628 | sign != rhs.sign) |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 629 | return false; |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 630 | if (semantics==(const llvm::fltSemantics* const)&PPCDoubleDouble && |
| 631 | sign2 != rhs.sign2) |
| 632 | return false; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 633 | if (category==fcZero || category==fcInfinity) |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 634 | return true; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 635 | else if (category==fcNormal && exponent!=rhs.exponent) |
| 636 | return false; |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 637 | else if (semantics==(const llvm::fltSemantics* const)&PPCDoubleDouble && |
| 638 | exponent2!=rhs.exponent2) |
| 639 | return false; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 640 | else { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 641 | int i= partCount(); |
| 642 | const integerPart* p=significandParts(); |
| 643 | const integerPart* q=rhs.significandParts(); |
| 644 | for (; i>0; i--, p++, q++) { |
| 645 | if (*p != *q) |
| 646 | return false; |
| 647 | } |
| 648 | return true; |
| 649 | } |
| 650 | } |
| 651 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 652 | APFloat::APFloat(const fltSemantics &ourSemantics, integerPart value) |
| 653 | { |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 654 | assertArithmeticOK(ourSemantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 655 | initialize(&ourSemantics); |
| 656 | sign = 0; |
| 657 | zeroSignificand(); |
| 658 | exponent = ourSemantics.precision - 1; |
| 659 | significandParts()[0] = value; |
| 660 | normalize(rmNearestTiesToEven, lfExactlyZero); |
| 661 | } |
| 662 | |
| 663 | APFloat::APFloat(const fltSemantics &ourSemantics, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 664 | fltCategory ourCategory, bool negative) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 665 | { |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 666 | assertArithmeticOK(ourSemantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 667 | initialize(&ourSemantics); |
| 668 | category = ourCategory; |
| 669 | sign = negative; |
| 670 | if(category == fcNormal) |
| 671 | category = fcZero; |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 672 | else if (ourCategory == fcNaN) |
| 673 | makeNaN(); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | APFloat::APFloat(const fltSemantics &ourSemantics, const char *text) |
| 677 | { |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 678 | assertArithmeticOK(ourSemantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 679 | initialize(&ourSemantics); |
| 680 | convertFromString(text, rmNearestTiesToEven); |
| 681 | } |
| 682 | |
| 683 | APFloat::APFloat(const APFloat &rhs) |
| 684 | { |
| 685 | initialize(rhs.semantics); |
| 686 | assign(rhs); |
| 687 | } |
| 688 | |
| 689 | APFloat::~APFloat() |
| 690 | { |
| 691 | freeSignificand(); |
| 692 | } |
| 693 | |
| 694 | unsigned int |
| 695 | APFloat::partCount() const |
| 696 | { |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 697 | return partCountForBits(semantics->precision + 1); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | unsigned int |
| 701 | APFloat::semanticsPrecision(const fltSemantics &semantics) |
| 702 | { |
| 703 | return semantics.precision; |
| 704 | } |
| 705 | |
| 706 | const integerPart * |
| 707 | APFloat::significandParts() const |
| 708 | { |
| 709 | return const_cast<APFloat *>(this)->significandParts(); |
| 710 | } |
| 711 | |
| 712 | integerPart * |
| 713 | APFloat::significandParts() |
| 714 | { |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 715 | assert(category == fcNormal || category == fcNaN); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 716 | |
| 717 | if(partCount() > 1) |
| 718 | return significand.parts; |
| 719 | else |
| 720 | return &significand.part; |
| 721 | } |
| 722 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 723 | void |
| 724 | APFloat::zeroSignificand() |
| 725 | { |
| 726 | category = fcNormal; |
| 727 | APInt::tcSet(significandParts(), 0, partCount()); |
| 728 | } |
| 729 | |
| 730 | /* Increment an fcNormal floating point number's significand. */ |
| 731 | void |
| 732 | APFloat::incrementSignificand() |
| 733 | { |
| 734 | integerPart carry; |
| 735 | |
| 736 | carry = APInt::tcIncrement(significandParts(), partCount()); |
| 737 | |
| 738 | /* Our callers should never cause us to overflow. */ |
| 739 | assert(carry == 0); |
| 740 | } |
| 741 | |
| 742 | /* Add the significand of the RHS. Returns the carry flag. */ |
| 743 | integerPart |
| 744 | APFloat::addSignificand(const APFloat &rhs) |
| 745 | { |
| 746 | integerPart *parts; |
| 747 | |
| 748 | parts = significandParts(); |
| 749 | |
| 750 | assert(semantics == rhs.semantics); |
| 751 | assert(exponent == rhs.exponent); |
| 752 | |
| 753 | return APInt::tcAdd(parts, rhs.significandParts(), 0, partCount()); |
| 754 | } |
| 755 | |
| 756 | /* Subtract the significand of the RHS with a borrow flag. Returns |
| 757 | the borrow flag. */ |
| 758 | integerPart |
| 759 | APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow) |
| 760 | { |
| 761 | integerPart *parts; |
| 762 | |
| 763 | parts = significandParts(); |
| 764 | |
| 765 | assert(semantics == rhs.semantics); |
| 766 | assert(exponent == rhs.exponent); |
| 767 | |
| 768 | return APInt::tcSubtract(parts, rhs.significandParts(), borrow, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 769 | partCount()); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | /* Multiply the significand of the RHS. If ADDEND is non-NULL, add it |
| 773 | on to the full-precision result of the multiplication. Returns the |
| 774 | lost fraction. */ |
| 775 | lostFraction |
| 776 | APFloat::multiplySignificand(const APFloat &rhs, const APFloat *addend) |
| 777 | { |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 778 | unsigned int omsb; // One, not zero, based MSB. |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 779 | unsigned int partsCount, newPartsCount, precision; |
| 780 | integerPart *lhsSignificand; |
| 781 | integerPart scratch[4]; |
| 782 | integerPart *fullSignificand; |
| 783 | lostFraction lost_fraction; |
| 784 | |
| 785 | assert(semantics == rhs.semantics); |
| 786 | |
| 787 | precision = semantics->precision; |
| 788 | newPartsCount = partCountForBits(precision * 2); |
| 789 | |
| 790 | if(newPartsCount > 4) |
| 791 | fullSignificand = new integerPart[newPartsCount]; |
| 792 | else |
| 793 | fullSignificand = scratch; |
| 794 | |
| 795 | lhsSignificand = significandParts(); |
| 796 | partsCount = partCount(); |
| 797 | |
| 798 | APInt::tcFullMultiply(fullSignificand, lhsSignificand, |
Neil Booth | 978661d | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 799 | rhs.significandParts(), partsCount, partsCount); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 800 | |
| 801 | lost_fraction = lfExactlyZero; |
| 802 | omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1; |
| 803 | exponent += rhs.exponent; |
| 804 | |
| 805 | if(addend) { |
| 806 | Significand savedSignificand = significand; |
| 807 | const fltSemantics *savedSemantics = semantics; |
| 808 | fltSemantics extendedSemantics; |
| 809 | opStatus status; |
| 810 | unsigned int extendedPrecision; |
| 811 | |
| 812 | /* Normalize our MSB. */ |
| 813 | extendedPrecision = precision + precision - 1; |
| 814 | if(omsb != extendedPrecision) |
| 815 | { |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 816 | APInt::tcShiftLeft(fullSignificand, newPartsCount, |
| 817 | extendedPrecision - omsb); |
| 818 | exponent -= extendedPrecision - omsb; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | /* Create new semantics. */ |
| 822 | extendedSemantics = *semantics; |
| 823 | extendedSemantics.precision = extendedPrecision; |
| 824 | |
| 825 | if(newPartsCount == 1) |
| 826 | significand.part = fullSignificand[0]; |
| 827 | else |
| 828 | significand.parts = fullSignificand; |
| 829 | semantics = &extendedSemantics; |
| 830 | |
| 831 | APFloat extendedAddend(*addend); |
| 832 | status = extendedAddend.convert(extendedSemantics, rmTowardZero); |
| 833 | assert(status == opOK); |
| 834 | lost_fraction = addOrSubtractSignificand(extendedAddend, false); |
| 835 | |
| 836 | /* Restore our state. */ |
| 837 | if(newPartsCount == 1) |
| 838 | fullSignificand[0] = significand.part; |
| 839 | significand = savedSignificand; |
| 840 | semantics = savedSemantics; |
| 841 | |
| 842 | omsb = APInt::tcMSB(fullSignificand, newPartsCount) + 1; |
| 843 | } |
| 844 | |
| 845 | exponent -= (precision - 1); |
| 846 | |
| 847 | if(omsb > precision) { |
| 848 | unsigned int bits, significantParts; |
| 849 | lostFraction lf; |
| 850 | |
| 851 | bits = omsb - precision; |
| 852 | significantParts = partCountForBits(omsb); |
| 853 | lf = shiftRight(fullSignificand, significantParts, bits); |
| 854 | lost_fraction = combineLostFractions(lf, lost_fraction); |
| 855 | exponent += bits; |
| 856 | } |
| 857 | |
| 858 | APInt::tcAssign(lhsSignificand, fullSignificand, partsCount); |
| 859 | |
| 860 | if(newPartsCount > 4) |
| 861 | delete [] fullSignificand; |
| 862 | |
| 863 | return lost_fraction; |
| 864 | } |
| 865 | |
| 866 | /* Multiply the significands of LHS and RHS to DST. */ |
| 867 | lostFraction |
| 868 | APFloat::divideSignificand(const APFloat &rhs) |
| 869 | { |
| 870 | unsigned int bit, i, partsCount; |
| 871 | const integerPart *rhsSignificand; |
| 872 | integerPart *lhsSignificand, *dividend, *divisor; |
| 873 | integerPart scratch[4]; |
| 874 | lostFraction lost_fraction; |
| 875 | |
| 876 | assert(semantics == rhs.semantics); |
| 877 | |
| 878 | lhsSignificand = significandParts(); |
| 879 | rhsSignificand = rhs.significandParts(); |
| 880 | partsCount = partCount(); |
| 881 | |
| 882 | if(partsCount > 2) |
| 883 | dividend = new integerPart[partsCount * 2]; |
| 884 | else |
| 885 | dividend = scratch; |
| 886 | |
| 887 | divisor = dividend + partsCount; |
| 888 | |
| 889 | /* Copy the dividend and divisor as they will be modified in-place. */ |
| 890 | for(i = 0; i < partsCount; i++) { |
| 891 | dividend[i] = lhsSignificand[i]; |
| 892 | divisor[i] = rhsSignificand[i]; |
| 893 | lhsSignificand[i] = 0; |
| 894 | } |
| 895 | |
| 896 | exponent -= rhs.exponent; |
| 897 | |
| 898 | unsigned int precision = semantics->precision; |
| 899 | |
| 900 | /* Normalize the divisor. */ |
| 901 | bit = precision - APInt::tcMSB(divisor, partsCount) - 1; |
| 902 | if(bit) { |
| 903 | exponent += bit; |
| 904 | APInt::tcShiftLeft(divisor, partsCount, bit); |
| 905 | } |
| 906 | |
| 907 | /* Normalize the dividend. */ |
| 908 | bit = precision - APInt::tcMSB(dividend, partsCount) - 1; |
| 909 | if(bit) { |
| 910 | exponent -= bit; |
| 911 | APInt::tcShiftLeft(dividend, partsCount, bit); |
| 912 | } |
| 913 | |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 914 | /* Ensure the dividend >= divisor initially for the loop below. |
| 915 | Incidentally, this means that the division loop below is |
| 916 | guaranteed to set the integer bit to one. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 917 | if(APInt::tcCompare(dividend, divisor, partsCount) < 0) { |
| 918 | exponent--; |
| 919 | APInt::tcShiftLeft(dividend, partsCount, 1); |
| 920 | assert(APInt::tcCompare(dividend, divisor, partsCount) >= 0); |
| 921 | } |
| 922 | |
| 923 | /* Long division. */ |
| 924 | for(bit = precision; bit; bit -= 1) { |
| 925 | if(APInt::tcCompare(dividend, divisor, partsCount) >= 0) { |
| 926 | APInt::tcSubtract(dividend, divisor, 0, partsCount); |
| 927 | APInt::tcSetBit(lhsSignificand, bit - 1); |
| 928 | } |
| 929 | |
| 930 | APInt::tcShiftLeft(dividend, partsCount, 1); |
| 931 | } |
| 932 | |
| 933 | /* Figure out the lost fraction. */ |
| 934 | int cmp = APInt::tcCompare(dividend, divisor, partsCount); |
| 935 | |
| 936 | if(cmp > 0) |
| 937 | lost_fraction = lfMoreThanHalf; |
| 938 | else if(cmp == 0) |
| 939 | lost_fraction = lfExactlyHalf; |
| 940 | else if(APInt::tcIsZero(dividend, partsCount)) |
| 941 | lost_fraction = lfExactlyZero; |
| 942 | else |
| 943 | lost_fraction = lfLessThanHalf; |
| 944 | |
| 945 | if(partsCount > 2) |
| 946 | delete [] dividend; |
| 947 | |
| 948 | return lost_fraction; |
| 949 | } |
| 950 | |
| 951 | unsigned int |
| 952 | APFloat::significandMSB() const |
| 953 | { |
| 954 | return APInt::tcMSB(significandParts(), partCount()); |
| 955 | } |
| 956 | |
| 957 | unsigned int |
| 958 | APFloat::significandLSB() const |
| 959 | { |
| 960 | return APInt::tcLSB(significandParts(), partCount()); |
| 961 | } |
| 962 | |
| 963 | /* Note that a zero result is NOT normalized to fcZero. */ |
| 964 | lostFraction |
| 965 | APFloat::shiftSignificandRight(unsigned int bits) |
| 966 | { |
| 967 | /* Our exponent should not overflow. */ |
| 968 | assert((exponent_t) (exponent + bits) >= exponent); |
| 969 | |
| 970 | exponent += bits; |
| 971 | |
| 972 | return shiftRight(significandParts(), partCount(), bits); |
| 973 | } |
| 974 | |
| 975 | /* Shift the significand left BITS bits, subtract BITS from its exponent. */ |
| 976 | void |
| 977 | APFloat::shiftSignificandLeft(unsigned int bits) |
| 978 | { |
| 979 | assert(bits < semantics->precision); |
| 980 | |
| 981 | if(bits) { |
| 982 | unsigned int partsCount = partCount(); |
| 983 | |
| 984 | APInt::tcShiftLeft(significandParts(), partsCount, bits); |
| 985 | exponent -= bits; |
| 986 | |
| 987 | assert(!APInt::tcIsZero(significandParts(), partsCount)); |
| 988 | } |
| 989 | } |
| 990 | |
| 991 | APFloat::cmpResult |
| 992 | APFloat::compareAbsoluteValue(const APFloat &rhs) const |
| 993 | { |
| 994 | int compare; |
| 995 | |
| 996 | assert(semantics == rhs.semantics); |
| 997 | assert(category == fcNormal); |
| 998 | assert(rhs.category == fcNormal); |
| 999 | |
| 1000 | compare = exponent - rhs.exponent; |
| 1001 | |
| 1002 | /* If exponents are equal, do an unsigned bignum comparison of the |
| 1003 | significands. */ |
| 1004 | if(compare == 0) |
| 1005 | compare = APInt::tcCompare(significandParts(), rhs.significandParts(), |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1006 | partCount()); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1007 | |
| 1008 | if(compare > 0) |
| 1009 | return cmpGreaterThan; |
| 1010 | else if(compare < 0) |
| 1011 | return cmpLessThan; |
| 1012 | else |
| 1013 | return cmpEqual; |
| 1014 | } |
| 1015 | |
| 1016 | /* Handle overflow. Sign is preserved. We either become infinity or |
| 1017 | the largest finite number. */ |
| 1018 | APFloat::opStatus |
| 1019 | APFloat::handleOverflow(roundingMode rounding_mode) |
| 1020 | { |
| 1021 | /* Infinity? */ |
| 1022 | if(rounding_mode == rmNearestTiesToEven |
| 1023 | || rounding_mode == rmNearestTiesToAway |
| 1024 | || (rounding_mode == rmTowardPositive && !sign) |
| 1025 | || (rounding_mode == rmTowardNegative && sign)) |
| 1026 | { |
| 1027 | category = fcInfinity; |
| 1028 | return (opStatus) (opOverflow | opInexact); |
| 1029 | } |
| 1030 | |
| 1031 | /* Otherwise we become the largest finite number. */ |
| 1032 | category = fcNormal; |
| 1033 | exponent = semantics->maxExponent; |
| 1034 | APInt::tcSetLeastSignificantBits(significandParts(), partCount(), |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1035 | semantics->precision); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1036 | |
| 1037 | return opInexact; |
| 1038 | } |
| 1039 | |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1040 | /* Returns TRUE if, when truncating the current number, with BIT the |
| 1041 | new LSB, with the given lost fraction and rounding mode, the result |
| 1042 | would need to be rounded away from zero (i.e., by increasing the |
| 1043 | signficand). This routine must work for fcZero of both signs, and |
| 1044 | fcNormal numbers. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1045 | bool |
| 1046 | APFloat::roundAwayFromZero(roundingMode rounding_mode, |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1047 | lostFraction lost_fraction, |
| 1048 | unsigned int bit) const |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1049 | { |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1050 | /* NaNs and infinities should not have lost fractions. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1051 | assert(category == fcNormal || category == fcZero); |
| 1052 | |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1053 | /* Current callers never pass this so we don't handle it. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1054 | assert(lost_fraction != lfExactlyZero); |
| 1055 | |
| 1056 | switch(rounding_mode) { |
| 1057 | default: |
| 1058 | assert(0); |
| 1059 | |
| 1060 | case rmNearestTiesToAway: |
| 1061 | return lost_fraction == lfExactlyHalf || lost_fraction == lfMoreThanHalf; |
| 1062 | |
| 1063 | case rmNearestTiesToEven: |
| 1064 | if(lost_fraction == lfMoreThanHalf) |
| 1065 | return true; |
| 1066 | |
| 1067 | /* Our zeroes don't have a significand to test. */ |
| 1068 | if(lost_fraction == lfExactlyHalf && category != fcZero) |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1069 | return APInt::tcExtractBit(significandParts(), bit); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1070 | |
| 1071 | return false; |
| 1072 | |
| 1073 | case rmTowardZero: |
| 1074 | return false; |
| 1075 | |
| 1076 | case rmTowardPositive: |
| 1077 | return sign == false; |
| 1078 | |
| 1079 | case rmTowardNegative: |
| 1080 | return sign == true; |
| 1081 | } |
| 1082 | } |
| 1083 | |
| 1084 | APFloat::opStatus |
| 1085 | APFloat::normalize(roundingMode rounding_mode, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1086 | lostFraction lost_fraction) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1087 | { |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1088 | unsigned int omsb; /* One, not zero, based MSB. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1089 | int exponentChange; |
| 1090 | |
| 1091 | if(category != fcNormal) |
| 1092 | return opOK; |
| 1093 | |
| 1094 | /* Before rounding normalize the exponent of fcNormal numbers. */ |
| 1095 | omsb = significandMSB() + 1; |
| 1096 | |
| 1097 | if(omsb) { |
| 1098 | /* OMSB is numbered from 1. We want to place it in the integer |
| 1099 | bit numbered PRECISON if possible, with a compensating change in |
| 1100 | the exponent. */ |
| 1101 | exponentChange = omsb - semantics->precision; |
| 1102 | |
| 1103 | /* If the resulting exponent is too high, overflow according to |
| 1104 | the rounding mode. */ |
| 1105 | if(exponent + exponentChange > semantics->maxExponent) |
| 1106 | return handleOverflow(rounding_mode); |
| 1107 | |
| 1108 | /* Subnormal numbers have exponent minExponent, and their MSB |
| 1109 | is forced based on that. */ |
| 1110 | if(exponent + exponentChange < semantics->minExponent) |
| 1111 | exponentChange = semantics->minExponent - exponent; |
| 1112 | |
| 1113 | /* Shifting left is easy as we don't lose precision. */ |
| 1114 | if(exponentChange < 0) { |
| 1115 | assert(lost_fraction == lfExactlyZero); |
| 1116 | |
| 1117 | shiftSignificandLeft(-exponentChange); |
| 1118 | |
| 1119 | return opOK; |
| 1120 | } |
| 1121 | |
| 1122 | if(exponentChange > 0) { |
| 1123 | lostFraction lf; |
| 1124 | |
| 1125 | /* Shift right and capture any new lost fraction. */ |
| 1126 | lf = shiftSignificandRight(exponentChange); |
| 1127 | |
| 1128 | lost_fraction = combineLostFractions(lf, lost_fraction); |
| 1129 | |
| 1130 | /* Keep OMSB up-to-date. */ |
| 1131 | if(omsb > (unsigned) exponentChange) |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 1132 | omsb -= exponentChange; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1133 | else |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1134 | omsb = 0; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | /* Now round the number according to rounding_mode given the lost |
| 1139 | fraction. */ |
| 1140 | |
| 1141 | /* As specified in IEEE 754, since we do not trap we do not report |
| 1142 | underflow for exact results. */ |
| 1143 | if(lost_fraction == lfExactlyZero) { |
| 1144 | /* Canonicalize zeroes. */ |
| 1145 | if(omsb == 0) |
| 1146 | category = fcZero; |
| 1147 | |
| 1148 | return opOK; |
| 1149 | } |
| 1150 | |
| 1151 | /* Increment the significand if we're rounding away from zero. */ |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1152 | if(roundAwayFromZero(rounding_mode, lost_fraction, 0)) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1153 | if(omsb == 0) |
| 1154 | exponent = semantics->minExponent; |
| 1155 | |
| 1156 | incrementSignificand(); |
| 1157 | omsb = significandMSB() + 1; |
| 1158 | |
| 1159 | /* Did the significand increment overflow? */ |
| 1160 | if(omsb == (unsigned) semantics->precision + 1) { |
| 1161 | /* Renormalize by incrementing the exponent and shifting our |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1162 | significand right one. However if we already have the |
| 1163 | maximum exponent we overflow to infinity. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1164 | if(exponent == semantics->maxExponent) { |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1165 | category = fcInfinity; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1166 | |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1167 | return (opStatus) (opOverflow | opInexact); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | shiftSignificandRight(1); |
| 1171 | |
| 1172 | return opInexact; |
| 1173 | } |
| 1174 | } |
| 1175 | |
| 1176 | /* The normal case - we were and are not denormal, and any |
| 1177 | significand increment above didn't overflow. */ |
| 1178 | if(omsb == semantics->precision) |
| 1179 | return opInexact; |
| 1180 | |
| 1181 | /* We have a non-zero denormal. */ |
| 1182 | assert(omsb < semantics->precision); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1183 | |
| 1184 | /* Canonicalize zeroes. */ |
| 1185 | if(omsb == 0) |
| 1186 | category = fcZero; |
| 1187 | |
| 1188 | /* The fcZero case is a denormal that underflowed to zero. */ |
| 1189 | return (opStatus) (opUnderflow | opInexact); |
| 1190 | } |
| 1191 | |
| 1192 | APFloat::opStatus |
| 1193 | APFloat::addOrSubtractSpecials(const APFloat &rhs, bool subtract) |
| 1194 | { |
| 1195 | switch(convolve(category, rhs.category)) { |
| 1196 | default: |
| 1197 | assert(0); |
| 1198 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1199 | case convolve(fcNaN, fcZero): |
| 1200 | case convolve(fcNaN, fcNormal): |
| 1201 | case convolve(fcNaN, fcInfinity): |
| 1202 | case convolve(fcNaN, fcNaN): |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1203 | case convolve(fcNormal, fcZero): |
| 1204 | case convolve(fcInfinity, fcNormal): |
| 1205 | case convolve(fcInfinity, fcZero): |
| 1206 | return opOK; |
| 1207 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1208 | case convolve(fcZero, fcNaN): |
| 1209 | case convolve(fcNormal, fcNaN): |
| 1210 | case convolve(fcInfinity, fcNaN): |
| 1211 | category = fcNaN; |
| 1212 | copySignificand(rhs); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1213 | return opOK; |
| 1214 | |
| 1215 | case convolve(fcNormal, fcInfinity): |
| 1216 | case convolve(fcZero, fcInfinity): |
| 1217 | category = fcInfinity; |
| 1218 | sign = rhs.sign ^ subtract; |
| 1219 | return opOK; |
| 1220 | |
| 1221 | case convolve(fcZero, fcNormal): |
| 1222 | assign(rhs); |
| 1223 | sign = rhs.sign ^ subtract; |
| 1224 | return opOK; |
| 1225 | |
| 1226 | case convolve(fcZero, fcZero): |
| 1227 | /* Sign depends on rounding mode; handled by caller. */ |
| 1228 | return opOK; |
| 1229 | |
| 1230 | case convolve(fcInfinity, fcInfinity): |
| 1231 | /* Differently signed infinities can only be validly |
| 1232 | subtracted. */ |
| 1233 | if(sign ^ rhs.sign != subtract) { |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 1234 | makeNaN(); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1235 | return opInvalidOp; |
| 1236 | } |
| 1237 | |
| 1238 | return opOK; |
| 1239 | |
| 1240 | case convolve(fcNormal, fcNormal): |
| 1241 | return opDivByZero; |
| 1242 | } |
| 1243 | } |
| 1244 | |
| 1245 | /* Add or subtract two normal numbers. */ |
| 1246 | lostFraction |
| 1247 | APFloat::addOrSubtractSignificand(const APFloat &rhs, bool subtract) |
| 1248 | { |
| 1249 | integerPart carry; |
| 1250 | lostFraction lost_fraction; |
| 1251 | int bits; |
| 1252 | |
| 1253 | /* Determine if the operation on the absolute values is effectively |
| 1254 | an addition or subtraction. */ |
| 1255 | subtract ^= (sign ^ rhs.sign); |
| 1256 | |
| 1257 | /* Are we bigger exponent-wise than the RHS? */ |
| 1258 | bits = exponent - rhs.exponent; |
| 1259 | |
| 1260 | /* Subtraction is more subtle than one might naively expect. */ |
| 1261 | if(subtract) { |
| 1262 | APFloat temp_rhs(rhs); |
| 1263 | bool reverse; |
| 1264 | |
Chris Lattner | ada530b | 2007-08-24 03:02:34 +0000 | [diff] [blame] | 1265 | if (bits == 0) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1266 | reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan; |
| 1267 | lost_fraction = lfExactlyZero; |
Chris Lattner | ada530b | 2007-08-24 03:02:34 +0000 | [diff] [blame] | 1268 | } else if (bits > 0) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1269 | lost_fraction = temp_rhs.shiftSignificandRight(bits - 1); |
| 1270 | shiftSignificandLeft(1); |
| 1271 | reverse = false; |
Chris Lattner | ada530b | 2007-08-24 03:02:34 +0000 | [diff] [blame] | 1272 | } else { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1273 | lost_fraction = shiftSignificandRight(-bits - 1); |
| 1274 | temp_rhs.shiftSignificandLeft(1); |
| 1275 | reverse = true; |
| 1276 | } |
| 1277 | |
Chris Lattner | ada530b | 2007-08-24 03:02:34 +0000 | [diff] [blame] | 1278 | if (reverse) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1279 | carry = temp_rhs.subtractSignificand |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1280 | (*this, lost_fraction != lfExactlyZero); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1281 | copySignificand(temp_rhs); |
| 1282 | sign = !sign; |
| 1283 | } else { |
| 1284 | carry = subtractSignificand |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1285 | (temp_rhs, lost_fraction != lfExactlyZero); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | /* Invert the lost fraction - it was on the RHS and |
| 1289 | subtracted. */ |
| 1290 | if(lost_fraction == lfLessThanHalf) |
| 1291 | lost_fraction = lfMoreThanHalf; |
| 1292 | else if(lost_fraction == lfMoreThanHalf) |
| 1293 | lost_fraction = lfLessThanHalf; |
| 1294 | |
| 1295 | /* The code above is intended to ensure that no borrow is |
| 1296 | necessary. */ |
| 1297 | assert(!carry); |
| 1298 | } else { |
| 1299 | if(bits > 0) { |
| 1300 | APFloat temp_rhs(rhs); |
| 1301 | |
| 1302 | lost_fraction = temp_rhs.shiftSignificandRight(bits); |
| 1303 | carry = addSignificand(temp_rhs); |
| 1304 | } else { |
| 1305 | lost_fraction = shiftSignificandRight(-bits); |
| 1306 | carry = addSignificand(rhs); |
| 1307 | } |
| 1308 | |
| 1309 | /* We have a guard bit; generating a carry cannot happen. */ |
| 1310 | assert(!carry); |
| 1311 | } |
| 1312 | |
| 1313 | return lost_fraction; |
| 1314 | } |
| 1315 | |
| 1316 | APFloat::opStatus |
| 1317 | APFloat::multiplySpecials(const APFloat &rhs) |
| 1318 | { |
| 1319 | switch(convolve(category, rhs.category)) { |
| 1320 | default: |
| 1321 | assert(0); |
| 1322 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1323 | case convolve(fcNaN, fcZero): |
| 1324 | case convolve(fcNaN, fcNormal): |
| 1325 | case convolve(fcNaN, fcInfinity): |
| 1326 | case convolve(fcNaN, fcNaN): |
| 1327 | return opOK; |
| 1328 | |
| 1329 | case convolve(fcZero, fcNaN): |
| 1330 | case convolve(fcNormal, fcNaN): |
| 1331 | case convolve(fcInfinity, fcNaN): |
| 1332 | category = fcNaN; |
| 1333 | copySignificand(rhs); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1334 | return opOK; |
| 1335 | |
| 1336 | case convolve(fcNormal, fcInfinity): |
| 1337 | case convolve(fcInfinity, fcNormal): |
| 1338 | case convolve(fcInfinity, fcInfinity): |
| 1339 | category = fcInfinity; |
| 1340 | return opOK; |
| 1341 | |
| 1342 | case convolve(fcZero, fcNormal): |
| 1343 | case convolve(fcNormal, fcZero): |
| 1344 | case convolve(fcZero, fcZero): |
| 1345 | category = fcZero; |
| 1346 | return opOK; |
| 1347 | |
| 1348 | case convolve(fcZero, fcInfinity): |
| 1349 | case convolve(fcInfinity, fcZero): |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 1350 | makeNaN(); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1351 | return opInvalidOp; |
| 1352 | |
| 1353 | case convolve(fcNormal, fcNormal): |
| 1354 | return opOK; |
| 1355 | } |
| 1356 | } |
| 1357 | |
| 1358 | APFloat::opStatus |
| 1359 | APFloat::divideSpecials(const APFloat &rhs) |
| 1360 | { |
| 1361 | switch(convolve(category, rhs.category)) { |
| 1362 | default: |
| 1363 | assert(0); |
| 1364 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1365 | case convolve(fcNaN, fcZero): |
| 1366 | case convolve(fcNaN, fcNormal): |
| 1367 | case convolve(fcNaN, fcInfinity): |
| 1368 | case convolve(fcNaN, fcNaN): |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1369 | case convolve(fcInfinity, fcZero): |
| 1370 | case convolve(fcInfinity, fcNormal): |
| 1371 | case convolve(fcZero, fcInfinity): |
| 1372 | case convolve(fcZero, fcNormal): |
| 1373 | return opOK; |
| 1374 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1375 | case convolve(fcZero, fcNaN): |
| 1376 | case convolve(fcNormal, fcNaN): |
| 1377 | case convolve(fcInfinity, fcNaN): |
| 1378 | category = fcNaN; |
| 1379 | copySignificand(rhs); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1380 | return opOK; |
| 1381 | |
| 1382 | case convolve(fcNormal, fcInfinity): |
| 1383 | category = fcZero; |
| 1384 | return opOK; |
| 1385 | |
| 1386 | case convolve(fcNormal, fcZero): |
| 1387 | category = fcInfinity; |
| 1388 | return opDivByZero; |
| 1389 | |
| 1390 | case convolve(fcInfinity, fcInfinity): |
| 1391 | case convolve(fcZero, fcZero): |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 1392 | makeNaN(); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1393 | return opInvalidOp; |
| 1394 | |
| 1395 | case convolve(fcNormal, fcNormal): |
| 1396 | return opOK; |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | /* Change sign. */ |
| 1401 | void |
| 1402 | APFloat::changeSign() |
| 1403 | { |
| 1404 | /* Look mummy, this one's easy. */ |
| 1405 | sign = !sign; |
| 1406 | } |
| 1407 | |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1408 | void |
| 1409 | APFloat::clearSign() |
| 1410 | { |
| 1411 | /* So is this one. */ |
| 1412 | sign = 0; |
| 1413 | } |
| 1414 | |
| 1415 | void |
| 1416 | APFloat::copySign(const APFloat &rhs) |
| 1417 | { |
| 1418 | /* And this one. */ |
| 1419 | sign = rhs.sign; |
| 1420 | } |
| 1421 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1422 | /* Normalized addition or subtraction. */ |
| 1423 | APFloat::opStatus |
| 1424 | APFloat::addOrSubtract(const APFloat &rhs, roundingMode rounding_mode, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1425 | bool subtract) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1426 | { |
| 1427 | opStatus fs; |
| 1428 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1429 | assertArithmeticOK(*semantics); |
| 1430 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1431 | fs = addOrSubtractSpecials(rhs, subtract); |
| 1432 | |
| 1433 | /* This return code means it was not a simple case. */ |
| 1434 | if(fs == opDivByZero) { |
| 1435 | lostFraction lost_fraction; |
| 1436 | |
| 1437 | lost_fraction = addOrSubtractSignificand(rhs, subtract); |
| 1438 | fs = normalize(rounding_mode, lost_fraction); |
| 1439 | |
| 1440 | /* Can only be zero if we lost no fraction. */ |
| 1441 | assert(category != fcZero || lost_fraction == lfExactlyZero); |
| 1442 | } |
| 1443 | |
| 1444 | /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a |
| 1445 | positive zero unless rounding to minus infinity, except that |
| 1446 | adding two like-signed zeroes gives that zero. */ |
| 1447 | if(category == fcZero) { |
| 1448 | if(rhs.category != fcZero || (sign == rhs.sign) == subtract) |
| 1449 | sign = (rounding_mode == rmTowardNegative); |
| 1450 | } |
| 1451 | |
| 1452 | return fs; |
| 1453 | } |
| 1454 | |
| 1455 | /* Normalized addition. */ |
| 1456 | APFloat::opStatus |
| 1457 | APFloat::add(const APFloat &rhs, roundingMode rounding_mode) |
| 1458 | { |
| 1459 | return addOrSubtract(rhs, rounding_mode, false); |
| 1460 | } |
| 1461 | |
| 1462 | /* Normalized subtraction. */ |
| 1463 | APFloat::opStatus |
| 1464 | APFloat::subtract(const APFloat &rhs, roundingMode rounding_mode) |
| 1465 | { |
| 1466 | return addOrSubtract(rhs, rounding_mode, true); |
| 1467 | } |
| 1468 | |
| 1469 | /* Normalized multiply. */ |
| 1470 | APFloat::opStatus |
| 1471 | APFloat::multiply(const APFloat &rhs, roundingMode rounding_mode) |
| 1472 | { |
| 1473 | opStatus fs; |
| 1474 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1475 | assertArithmeticOK(*semantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1476 | sign ^= rhs.sign; |
| 1477 | fs = multiplySpecials(rhs); |
| 1478 | |
| 1479 | if(category == fcNormal) { |
| 1480 | lostFraction lost_fraction = multiplySignificand(rhs, 0); |
| 1481 | fs = normalize(rounding_mode, lost_fraction); |
| 1482 | if(lost_fraction != lfExactlyZero) |
| 1483 | fs = (opStatus) (fs | opInexact); |
| 1484 | } |
| 1485 | |
| 1486 | return fs; |
| 1487 | } |
| 1488 | |
| 1489 | /* Normalized divide. */ |
| 1490 | APFloat::opStatus |
| 1491 | APFloat::divide(const APFloat &rhs, roundingMode rounding_mode) |
| 1492 | { |
| 1493 | opStatus fs; |
| 1494 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1495 | assertArithmeticOK(*semantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1496 | sign ^= rhs.sign; |
| 1497 | fs = divideSpecials(rhs); |
| 1498 | |
| 1499 | if(category == fcNormal) { |
| 1500 | lostFraction lost_fraction = divideSignificand(rhs); |
| 1501 | fs = normalize(rounding_mode, lost_fraction); |
| 1502 | if(lost_fraction != lfExactlyZero) |
| 1503 | fs = (opStatus) (fs | opInexact); |
| 1504 | } |
| 1505 | |
| 1506 | return fs; |
| 1507 | } |
| 1508 | |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 1509 | /* Normalized remainder. This is not currently doing TRT. */ |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1510 | APFloat::opStatus |
| 1511 | APFloat::mod(const APFloat &rhs, roundingMode rounding_mode) |
| 1512 | { |
| 1513 | opStatus fs; |
| 1514 | APFloat V = *this; |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1515 | unsigned int origSign = sign; |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1516 | |
| 1517 | assertArithmeticOK(*semantics); |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1518 | fs = V.divide(rhs, rmNearestTiesToEven); |
| 1519 | if (fs == opDivByZero) |
| 1520 | return fs; |
| 1521 | |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1522 | int parts = partCount(); |
| 1523 | integerPart *x = new integerPart[parts]; |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1524 | fs = V.convertToInteger(x, parts * integerPartWidth, true, |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1525 | rmNearestTiesToEven); |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1526 | if (fs==opInvalidOp) |
| 1527 | return fs; |
| 1528 | |
Neil Booth | ccf596a | 2007-10-07 11:45:55 +0000 | [diff] [blame] | 1529 | fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true, |
| 1530 | rmNearestTiesToEven); |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1531 | assert(fs==opOK); // should always work |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1532 | |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1533 | fs = V.multiply(rhs, rounding_mode); |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1534 | assert(fs==opOK || fs==opInexact); // should not overflow or underflow |
| 1535 | |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1536 | fs = subtract(V, rounding_mode); |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 1537 | assert(fs==opOK || fs==opInexact); // likewise |
| 1538 | |
| 1539 | if (isZero()) |
| 1540 | sign = origSign; // IEEE754 requires this |
| 1541 | delete[] x; |
Dale Johannesen | e15c2db | 2007-08-31 23:35:31 +0000 | [diff] [blame] | 1542 | return fs; |
| 1543 | } |
| 1544 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1545 | /* Normalized fused-multiply-add. */ |
| 1546 | APFloat::opStatus |
| 1547 | APFloat::fusedMultiplyAdd(const APFloat &multiplicand, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1548 | const APFloat &addend, |
| 1549 | roundingMode rounding_mode) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1550 | { |
| 1551 | opStatus fs; |
| 1552 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1553 | assertArithmeticOK(*semantics); |
| 1554 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1555 | /* Post-multiplication sign, before addition. */ |
| 1556 | sign ^= multiplicand.sign; |
| 1557 | |
| 1558 | /* If and only if all arguments are normal do we need to do an |
| 1559 | extended-precision calculation. */ |
| 1560 | if(category == fcNormal |
| 1561 | && multiplicand.category == fcNormal |
| 1562 | && addend.category == fcNormal) { |
| 1563 | lostFraction lost_fraction; |
| 1564 | |
| 1565 | lost_fraction = multiplySignificand(multiplicand, &addend); |
| 1566 | fs = normalize(rounding_mode, lost_fraction); |
| 1567 | if(lost_fraction != lfExactlyZero) |
| 1568 | fs = (opStatus) (fs | opInexact); |
| 1569 | |
| 1570 | /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a |
| 1571 | positive zero unless rounding to minus infinity, except that |
| 1572 | adding two like-signed zeroes gives that zero. */ |
| 1573 | if(category == fcZero && sign != addend.sign) |
| 1574 | sign = (rounding_mode == rmTowardNegative); |
| 1575 | } else { |
| 1576 | fs = multiplySpecials(multiplicand); |
| 1577 | |
| 1578 | /* FS can only be opOK or opInvalidOp. There is no more work |
| 1579 | to do in the latter case. The IEEE-754R standard says it is |
| 1580 | implementation-defined in this case whether, if ADDEND is a |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1581 | quiet NaN, we raise invalid op; this implementation does so. |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1582 | |
| 1583 | If we need to do the addition we can do so with normal |
| 1584 | precision. */ |
| 1585 | if(fs == opOK) |
| 1586 | fs = addOrSubtract(addend, rounding_mode, false); |
| 1587 | } |
| 1588 | |
| 1589 | return fs; |
| 1590 | } |
| 1591 | |
| 1592 | /* Comparison requires normalized numbers. */ |
| 1593 | APFloat::cmpResult |
| 1594 | APFloat::compare(const APFloat &rhs) const |
| 1595 | { |
| 1596 | cmpResult result; |
| 1597 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1598 | assertArithmeticOK(*semantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1599 | assert(semantics == rhs.semantics); |
| 1600 | |
| 1601 | switch(convolve(category, rhs.category)) { |
| 1602 | default: |
| 1603 | assert(0); |
| 1604 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1605 | case convolve(fcNaN, fcZero): |
| 1606 | case convolve(fcNaN, fcNormal): |
| 1607 | case convolve(fcNaN, fcInfinity): |
| 1608 | case convolve(fcNaN, fcNaN): |
| 1609 | case convolve(fcZero, fcNaN): |
| 1610 | case convolve(fcNormal, fcNaN): |
| 1611 | case convolve(fcInfinity, fcNaN): |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1612 | return cmpUnordered; |
| 1613 | |
| 1614 | case convolve(fcInfinity, fcNormal): |
| 1615 | case convolve(fcInfinity, fcZero): |
| 1616 | case convolve(fcNormal, fcZero): |
| 1617 | if(sign) |
| 1618 | return cmpLessThan; |
| 1619 | else |
| 1620 | return cmpGreaterThan; |
| 1621 | |
| 1622 | case convolve(fcNormal, fcInfinity): |
| 1623 | case convolve(fcZero, fcInfinity): |
| 1624 | case convolve(fcZero, fcNormal): |
| 1625 | if(rhs.sign) |
| 1626 | return cmpGreaterThan; |
| 1627 | else |
| 1628 | return cmpLessThan; |
| 1629 | |
| 1630 | case convolve(fcInfinity, fcInfinity): |
| 1631 | if(sign == rhs.sign) |
| 1632 | return cmpEqual; |
| 1633 | else if(sign) |
| 1634 | return cmpLessThan; |
| 1635 | else |
| 1636 | return cmpGreaterThan; |
| 1637 | |
| 1638 | case convolve(fcZero, fcZero): |
| 1639 | return cmpEqual; |
| 1640 | |
| 1641 | case convolve(fcNormal, fcNormal): |
| 1642 | break; |
| 1643 | } |
| 1644 | |
| 1645 | /* Two normal numbers. Do they have the same sign? */ |
| 1646 | if(sign != rhs.sign) { |
| 1647 | if(sign) |
| 1648 | result = cmpLessThan; |
| 1649 | else |
| 1650 | result = cmpGreaterThan; |
| 1651 | } else { |
| 1652 | /* Compare absolute values; invert result if negative. */ |
| 1653 | result = compareAbsoluteValue(rhs); |
| 1654 | |
| 1655 | if(sign) { |
| 1656 | if(result == cmpLessThan) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1657 | result = cmpGreaterThan; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1658 | else if(result == cmpGreaterThan) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1659 | result = cmpLessThan; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | return result; |
| 1664 | } |
| 1665 | |
| 1666 | APFloat::opStatus |
| 1667 | APFloat::convert(const fltSemantics &toSemantics, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1668 | roundingMode rounding_mode) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1669 | { |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1670 | lostFraction lostFraction; |
| 1671 | unsigned int newPartCount, oldPartCount; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1672 | opStatus fs; |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1673 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1674 | assertArithmeticOK(*semantics); |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1675 | lostFraction = lfExactlyZero; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1676 | newPartCount = partCountForBits(toSemantics.precision + 1); |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1677 | oldPartCount = partCount(); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1678 | |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1679 | /* Handle storage complications. If our new form is wider, |
| 1680 | re-allocate our bit pattern into wider storage. If it is |
| 1681 | narrower, we ignore the excess parts, but if narrowing to a |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 1682 | single part we need to free the old storage. |
| 1683 | Be careful not to reference significandParts for zeroes |
| 1684 | and infinities, since it aborts. */ |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1685 | if (newPartCount > oldPartCount) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1686 | integerPart *newParts; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1687 | newParts = new integerPart[newPartCount]; |
| 1688 | APInt::tcSet(newParts, 0, newPartCount); |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 1689 | if (category==fcNormal || category==fcNaN) |
| 1690 | APInt::tcAssign(newParts, significandParts(), oldPartCount); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1691 | freeSignificand(); |
| 1692 | significand.parts = newParts; |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1693 | } else if (newPartCount < oldPartCount) { |
| 1694 | /* Capture any lost fraction through truncation of parts so we get |
| 1695 | correct rounding whilst normalizing. */ |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 1696 | if (category==fcNormal) |
| 1697 | lostFraction = lostFractionThroughTruncation |
| 1698 | (significandParts(), oldPartCount, toSemantics.precision); |
| 1699 | if (newPartCount == 1) { |
| 1700 | integerPart newPart = 0; |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1701 | if (category==fcNormal || category==fcNaN) |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 1702 | newPart = significandParts()[0]; |
| 1703 | freeSignificand(); |
| 1704 | significand.part = newPart; |
| 1705 | } |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1706 | } |
| 1707 | |
| 1708 | if(category == fcNormal) { |
| 1709 | /* Re-interpret our bit-pattern. */ |
| 1710 | exponent += toSemantics.precision - semantics->precision; |
| 1711 | semantics = &toSemantics; |
Neil Booth | c8db43d | 2007-09-22 02:56:19 +0000 | [diff] [blame] | 1712 | fs = normalize(rounding_mode, lostFraction); |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 1713 | } else if (category == fcNaN) { |
| 1714 | int shift = toSemantics.precision - semantics->precision; |
| 1715 | // No normalization here, just truncate |
| 1716 | if (shift>0) |
| 1717 | APInt::tcShiftLeft(significandParts(), newPartCount, shift); |
| 1718 | else if (shift < 0) |
| 1719 | APInt::tcShiftRight(significandParts(), newPartCount, -shift); |
| 1720 | // gcc forces the Quiet bit on, which means (float)(double)(float_sNan) |
| 1721 | // does not give you back the same bits. This is dubious, and we |
| 1722 | // don't currently do it. You're really supposed to get |
| 1723 | // an invalid operation signal at runtime, but nobody does that. |
| 1724 | semantics = &toSemantics; |
| 1725 | fs = opOK; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1726 | } else { |
| 1727 | semantics = &toSemantics; |
| 1728 | fs = opOK; |
| 1729 | } |
| 1730 | |
| 1731 | return fs; |
| 1732 | } |
| 1733 | |
| 1734 | /* Convert a floating point number to an integer according to the |
| 1735 | rounding mode. If the rounded integer value is out of range this |
| 1736 | returns an invalid operation exception. If the rounded value is in |
| 1737 | range but the floating point number is not the exact integer, the C |
| 1738 | standard doesn't require an inexact exception to be raised. IEEE |
| 1739 | 854 does require it so we do that. |
| 1740 | |
| 1741 | Note that for conversions to integer type the C standard requires |
| 1742 | round-to-zero to always be used. */ |
| 1743 | APFloat::opStatus |
| 1744 | APFloat::convertToInteger(integerPart *parts, unsigned int width, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1745 | bool isSigned, |
| 1746 | roundingMode rounding_mode) const |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1747 | { |
| 1748 | lostFraction lost_fraction; |
| 1749 | unsigned int msb, partsCount; |
| 1750 | int bits; |
| 1751 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1752 | assertArithmeticOK(*semantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1753 | partsCount = partCountForBits(width); |
| 1754 | |
Dale Johannesen | 0edc47a | 2007-09-25 23:07:07 +0000 | [diff] [blame] | 1755 | /* Handle the three special cases first. We produce |
| 1756 | a deterministic result even for the Invalid cases. */ |
| 1757 | if (category == fcNaN) { |
| 1758 | // Neither sign nor isSigned affects this. |
| 1759 | APInt::tcSet(parts, 0, partsCount); |
| 1760 | return opInvalidOp; |
| 1761 | } |
| 1762 | if (category == fcInfinity) { |
| 1763 | if (!sign && isSigned) |
| 1764 | APInt::tcSetLeastSignificantBits(parts, partsCount, width-1); |
| 1765 | else if (!sign && !isSigned) |
| 1766 | APInt::tcSetLeastSignificantBits(parts, partsCount, width); |
| 1767 | else if (sign && isSigned) { |
| 1768 | APInt::tcSetLeastSignificantBits(parts, partsCount, 1); |
| 1769 | APInt::tcShiftLeft(parts, partsCount, width-1); |
| 1770 | } else // sign && !isSigned |
| 1771 | APInt::tcSet(parts, 0, partsCount); |
| 1772 | return opInvalidOp; |
| 1773 | } |
| 1774 | if (category == fcZero) { |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1775 | APInt::tcSet(parts, 0, partsCount); |
| 1776 | return opOK; |
| 1777 | } |
| 1778 | |
| 1779 | /* Shift the bit pattern so the fraction is lost. */ |
| 1780 | APFloat tmp(*this); |
| 1781 | |
| 1782 | bits = (int) semantics->precision - 1 - exponent; |
| 1783 | |
| 1784 | if(bits > 0) { |
| 1785 | lost_fraction = tmp.shiftSignificandRight(bits); |
| 1786 | } else { |
Neil Booth | e5e0194 | 2007-10-14 10:39:51 +0000 | [diff] [blame] | 1787 | if ((unsigned) -bits >= semantics->precision) { |
Dale Johannesen | 0edc47a | 2007-09-25 23:07:07 +0000 | [diff] [blame] | 1788 | // Unrepresentably large. |
| 1789 | if (!sign && isSigned) |
| 1790 | APInt::tcSetLeastSignificantBits(parts, partsCount, width-1); |
| 1791 | else if (!sign && !isSigned) |
| 1792 | APInt::tcSetLeastSignificantBits(parts, partsCount, width); |
| 1793 | else if (sign && isSigned) { |
| 1794 | APInt::tcSetLeastSignificantBits(parts, partsCount, 1); |
| 1795 | APInt::tcShiftLeft(parts, partsCount, width-1); |
| 1796 | } else // sign && !isSigned |
| 1797 | APInt::tcSet(parts, 0, partsCount); |
| 1798 | return (opStatus)(opOverflow | opInexact); |
| 1799 | } |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1800 | tmp.shiftSignificandLeft(-bits); |
| 1801 | lost_fraction = lfExactlyZero; |
| 1802 | } |
| 1803 | |
| 1804 | if(lost_fraction != lfExactlyZero |
Neil Booth | b7dea4c | 2007-10-03 15:16:41 +0000 | [diff] [blame] | 1805 | && tmp.roundAwayFromZero(rounding_mode, lost_fraction, 0)) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1806 | tmp.incrementSignificand(); |
| 1807 | |
| 1808 | msb = tmp.significandMSB(); |
| 1809 | |
| 1810 | /* Negative numbers cannot be represented as unsigned. */ |
| 1811 | if(!isSigned && tmp.sign && msb != -1U) |
| 1812 | return opInvalidOp; |
| 1813 | |
| 1814 | /* It takes exponent + 1 bits to represent the truncated floating |
| 1815 | point number without its sign. We lose a bit for the sign, but |
| 1816 | the maximally negative integer is a special case. */ |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1817 | if(msb + 1 > width) /* !! Not same as msb >= width !! */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1818 | return opInvalidOp; |
| 1819 | |
| 1820 | if(isSigned && msb + 1 == width |
| 1821 | && (!tmp.sign || tmp.significandLSB() != msb)) |
| 1822 | return opInvalidOp; |
| 1823 | |
| 1824 | APInt::tcAssign(parts, tmp.significandParts(), partsCount); |
| 1825 | |
| 1826 | if(tmp.sign) |
| 1827 | APInt::tcNegate(parts, partsCount); |
| 1828 | |
| 1829 | if(lost_fraction == lfExactlyZero) |
| 1830 | return opOK; |
| 1831 | else |
| 1832 | return opInexact; |
| 1833 | } |
| 1834 | |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1835 | /* Convert an unsigned integer SRC to a floating point number, |
| 1836 | rounding according to ROUNDING_MODE. The sign of the floating |
| 1837 | point number is not modified. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1838 | APFloat::opStatus |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1839 | APFloat::convertFromUnsignedParts(const integerPart *src, |
| 1840 | unsigned int srcCount, |
| 1841 | roundingMode rounding_mode) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1842 | { |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1843 | unsigned int omsb, precision, dstCount; |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1844 | integerPart *dst; |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1845 | lostFraction lost_fraction; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1846 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1847 | assertArithmeticOK(*semantics); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1848 | category = fcNormal; |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1849 | omsb = APInt::tcMSB(src, srcCount) + 1; |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1850 | dst = significandParts(); |
| 1851 | dstCount = partCount(); |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1852 | precision = semantics->precision; |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1853 | |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1854 | /* We want the most significant PRECISON bits of SRC. There may not |
| 1855 | be that many; extract what we can. */ |
| 1856 | if (precision <= omsb) { |
| 1857 | exponent = omsb - 1; |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1858 | lost_fraction = lostFractionThroughTruncation(src, srcCount, |
Neil Booth | 5477f85 | 2007-10-08 14:39:42 +0000 | [diff] [blame] | 1859 | omsb - precision); |
| 1860 | APInt::tcExtract(dst, dstCount, src, precision, omsb - precision); |
| 1861 | } else { |
| 1862 | exponent = precision - 1; |
| 1863 | lost_fraction = lfExactlyZero; |
| 1864 | APInt::tcExtract(dst, dstCount, src, omsb, 0); |
Neil Booth | 643ce59 | 2007-10-07 12:07:53 +0000 | [diff] [blame] | 1865 | } |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1866 | |
| 1867 | return normalize(rounding_mode, lost_fraction); |
| 1868 | } |
| 1869 | |
Neil Booth | f16c595 | 2007-10-07 12:15:41 +0000 | [diff] [blame] | 1870 | /* Convert a two's complement integer SRC to a floating point number, |
| 1871 | rounding according to ROUNDING_MODE. ISSIGNED is true if the |
| 1872 | integer is signed, in which case it must be sign-extended. */ |
| 1873 | APFloat::opStatus |
| 1874 | APFloat::convertFromSignExtendedInteger(const integerPart *src, |
| 1875 | unsigned int srcCount, |
| 1876 | bool isSigned, |
| 1877 | roundingMode rounding_mode) |
| 1878 | { |
| 1879 | opStatus status; |
| 1880 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 1881 | assertArithmeticOK(*semantics); |
Neil Booth | f16c595 | 2007-10-07 12:15:41 +0000 | [diff] [blame] | 1882 | if (isSigned |
| 1883 | && APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { |
| 1884 | integerPart *copy; |
| 1885 | |
| 1886 | /* If we're signed and negative negate a copy. */ |
| 1887 | sign = true; |
| 1888 | copy = new integerPart[srcCount]; |
| 1889 | APInt::tcAssign(copy, src, srcCount); |
| 1890 | APInt::tcNegate(copy, srcCount); |
| 1891 | status = convertFromUnsignedParts(copy, srcCount, rounding_mode); |
| 1892 | delete [] copy; |
| 1893 | } else { |
| 1894 | sign = false; |
| 1895 | status = convertFromUnsignedParts(src, srcCount, rounding_mode); |
| 1896 | } |
| 1897 | |
| 1898 | return status; |
| 1899 | } |
| 1900 | |
Neil Booth | ccf596a | 2007-10-07 11:45:55 +0000 | [diff] [blame] | 1901 | /* FIXME: should this just take a const APInt reference? */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1902 | APFloat::opStatus |
Neil Booth | ccf596a | 2007-10-07 11:45:55 +0000 | [diff] [blame] | 1903 | APFloat::convertFromZeroExtendedInteger(const integerPart *parts, |
| 1904 | unsigned int width, bool isSigned, |
| 1905 | roundingMode rounding_mode) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1906 | { |
Dale Johannesen | 910993e | 2007-09-21 22:09:37 +0000 | [diff] [blame] | 1907 | unsigned int partCount = partCountForBits(width); |
Dale Johannesen | 910993e | 2007-09-21 22:09:37 +0000 | [diff] [blame] | 1908 | APInt api = APInt(width, partCount, parts); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1909 | |
| 1910 | sign = false; |
Dale Johannesen | cce23a4 | 2007-09-30 18:17:01 +0000 | [diff] [blame] | 1911 | if(isSigned && APInt::tcExtractBit(parts, width - 1)) { |
| 1912 | sign = true; |
| 1913 | api = -api; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1914 | } |
| 1915 | |
Neil Booth | 7a7bc0f | 2007-10-07 12:10:57 +0000 | [diff] [blame] | 1916 | return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1917 | } |
| 1918 | |
| 1919 | APFloat::opStatus |
| 1920 | APFloat::convertFromHexadecimalString(const char *p, |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1921 | roundingMode rounding_mode) |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1922 | { |
| 1923 | lostFraction lost_fraction; |
| 1924 | integerPart *significand; |
| 1925 | unsigned int bitPos, partsCount; |
| 1926 | const char *dot, *firstSignificantDigit; |
| 1927 | |
| 1928 | zeroSignificand(); |
| 1929 | exponent = 0; |
| 1930 | category = fcNormal; |
| 1931 | |
| 1932 | significand = significandParts(); |
| 1933 | partsCount = partCount(); |
| 1934 | bitPos = partsCount * integerPartWidth; |
| 1935 | |
Neil Booth | 33d4c92 | 2007-10-07 08:51:21 +0000 | [diff] [blame] | 1936 | /* Skip leading zeroes and any (hexa)decimal point. */ |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1937 | p = skipLeadingZeroesAndAnyDot(p, &dot); |
| 1938 | firstSignificantDigit = p; |
| 1939 | |
| 1940 | for(;;) { |
| 1941 | integerPart hex_value; |
| 1942 | |
| 1943 | if(*p == '.') { |
| 1944 | assert(dot == 0); |
| 1945 | dot = p++; |
| 1946 | } |
| 1947 | |
| 1948 | hex_value = hexDigitValue(*p); |
| 1949 | if(hex_value == -1U) { |
| 1950 | lost_fraction = lfExactlyZero; |
| 1951 | break; |
| 1952 | } |
| 1953 | |
| 1954 | p++; |
| 1955 | |
| 1956 | /* Store the number whilst 4-bit nibbles remain. */ |
| 1957 | if(bitPos) { |
| 1958 | bitPos -= 4; |
| 1959 | hex_value <<= bitPos % integerPartWidth; |
| 1960 | significand[bitPos / integerPartWidth] |= hex_value; |
| 1961 | } else { |
| 1962 | lost_fraction = trailingHexadecimalFraction(p, hex_value); |
| 1963 | while(hexDigitValue(*p) != -1U) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 1964 | p++; |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 1965 | break; |
| 1966 | } |
| 1967 | } |
| 1968 | |
| 1969 | /* Hex floats require an exponent but not a hexadecimal point. */ |
| 1970 | assert(*p == 'p' || *p == 'P'); |
| 1971 | |
| 1972 | /* Ignore the exponent if we are zero. */ |
| 1973 | if(p != firstSignificantDigit) { |
| 1974 | int expAdjustment; |
| 1975 | |
| 1976 | /* Implicit hexadecimal point? */ |
| 1977 | if(!dot) |
| 1978 | dot = p; |
| 1979 | |
| 1980 | /* Calculate the exponent adjustment implicit in the number of |
| 1981 | significant digits. */ |
| 1982 | expAdjustment = dot - firstSignificantDigit; |
| 1983 | if(expAdjustment < 0) |
| 1984 | expAdjustment++; |
| 1985 | expAdjustment = expAdjustment * 4 - 1; |
| 1986 | |
| 1987 | /* Adjust for writing the significand starting at the most |
| 1988 | significant nibble. */ |
| 1989 | expAdjustment += semantics->precision; |
| 1990 | expAdjustment -= partsCount * integerPartWidth; |
| 1991 | |
| 1992 | /* Adjust for the given exponent. */ |
| 1993 | exponent = totalExponent(p, expAdjustment); |
| 1994 | } |
| 1995 | |
| 1996 | return normalize(rounding_mode, lost_fraction); |
| 1997 | } |
| 1998 | |
| 1999 | APFloat::opStatus |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2000 | APFloat::roundSignificandWithExponent(const integerPart *decSigParts, |
| 2001 | unsigned sigPartCount, int exp, |
| 2002 | roundingMode rounding_mode) |
| 2003 | { |
| 2004 | unsigned int parts, pow5PartCount; |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 2005 | fltSemantics calcSemantics = { 32767, -32767, 0, true }; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2006 | integerPart pow5Parts[maxPowerOfFiveParts]; |
| 2007 | bool isNearest; |
| 2008 | |
| 2009 | isNearest = (rounding_mode == rmNearestTiesToEven |
| 2010 | || rounding_mode == rmNearestTiesToAway); |
| 2011 | |
| 2012 | parts = partCountForBits(semantics->precision + 11); |
| 2013 | |
| 2014 | /* Calculate pow(5, abs(exp)). */ |
| 2015 | pow5PartCount = powerOf5(pow5Parts, exp >= 0 ? exp: -exp); |
| 2016 | |
| 2017 | for (;; parts *= 2) { |
| 2018 | opStatus sigStatus, powStatus; |
| 2019 | unsigned int excessPrecision, truncatedBits; |
| 2020 | |
| 2021 | calcSemantics.precision = parts * integerPartWidth - 1; |
| 2022 | excessPrecision = calcSemantics.precision - semantics->precision; |
| 2023 | truncatedBits = excessPrecision; |
| 2024 | |
| 2025 | APFloat decSig(calcSemantics, fcZero, sign); |
| 2026 | APFloat pow5(calcSemantics, fcZero, false); |
| 2027 | |
| 2028 | sigStatus = decSig.convertFromUnsignedParts(decSigParts, sigPartCount, |
| 2029 | rmNearestTiesToEven); |
| 2030 | powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount, |
| 2031 | rmNearestTiesToEven); |
| 2032 | /* Add exp, as 10^n = 5^n * 2^n. */ |
| 2033 | decSig.exponent += exp; |
| 2034 | |
| 2035 | lostFraction calcLostFraction; |
| 2036 | integerPart HUerr, HUdistance, powHUerr; |
| 2037 | |
| 2038 | if (exp >= 0) { |
| 2039 | /* multiplySignificand leaves the precision-th bit set to 1. */ |
| 2040 | calcLostFraction = decSig.multiplySignificand(pow5, NULL); |
| 2041 | powHUerr = powStatus != opOK; |
| 2042 | } else { |
| 2043 | calcLostFraction = decSig.divideSignificand(pow5); |
| 2044 | /* Denormal numbers have less precision. */ |
| 2045 | if (decSig.exponent < semantics->minExponent) { |
| 2046 | excessPrecision += (semantics->minExponent - decSig.exponent); |
| 2047 | truncatedBits = excessPrecision; |
| 2048 | if (excessPrecision > calcSemantics.precision) |
| 2049 | excessPrecision = calcSemantics.precision; |
| 2050 | } |
| 2051 | /* Extra half-ulp lost in reciprocal of exponent. */ |
Neil Booth | d1a23d5 | 2007-10-13 03:34:08 +0000 | [diff] [blame] | 2052 | powHUerr = (powStatus == opOK && calcLostFraction == lfExactlyZero) ? 0: 2; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2053 | } |
| 2054 | |
| 2055 | /* Both multiplySignificand and divideSignificand return the |
| 2056 | result with the integer bit set. */ |
| 2057 | assert (APInt::tcExtractBit |
| 2058 | (decSig.significandParts(), calcSemantics.precision - 1) == 1); |
| 2059 | |
| 2060 | HUerr = HUerrBound(calcLostFraction != lfExactlyZero, sigStatus != opOK, |
| 2061 | powHUerr); |
| 2062 | HUdistance = 2 * ulpsFromBoundary(decSig.significandParts(), |
| 2063 | excessPrecision, isNearest); |
| 2064 | |
| 2065 | /* Are we guaranteed to round correctly if we truncate? */ |
| 2066 | if (HUdistance >= HUerr) { |
| 2067 | APInt::tcExtract(significandParts(), partCount(), decSig.significandParts(), |
| 2068 | calcSemantics.precision - excessPrecision, |
| 2069 | excessPrecision); |
| 2070 | /* Take the exponent of decSig. If we tcExtract-ed less bits |
| 2071 | above we must adjust our exponent to compensate for the |
| 2072 | implicit right shift. */ |
| 2073 | exponent = (decSig.exponent + semantics->precision |
| 2074 | - (calcSemantics.precision - excessPrecision)); |
| 2075 | calcLostFraction = lostFractionThroughTruncation(decSig.significandParts(), |
| 2076 | decSig.partCount(), |
| 2077 | truncatedBits); |
| 2078 | return normalize(rounding_mode, calcLostFraction); |
| 2079 | } |
| 2080 | } |
| 2081 | } |
| 2082 | |
| 2083 | APFloat::opStatus |
| 2084 | APFloat::convertFromDecimalString(const char *p, roundingMode rounding_mode) |
| 2085 | { |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2086 | decimalInfo D; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2087 | opStatus fs; |
| 2088 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2089 | /* Scan the text. */ |
| 2090 | interpretDecimal(p, &D); |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2091 | |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 2092 | /* Handle the quick cases. First the case of no significant digits, |
| 2093 | i.e. zero, and then exponents that are obviously too large or too |
| 2094 | small. Writing L for log 10 / log 2, a number d.ddddd*10^exp |
| 2095 | definitely overflows if |
| 2096 | |
| 2097 | (exp - 1) * L >= maxExponent |
| 2098 | |
| 2099 | and definitely underflows to zero where |
| 2100 | |
| 2101 | (exp + 1) * L <= minExponent - precision |
| 2102 | |
| 2103 | With integer arithmetic the tightest bounds for L are |
| 2104 | |
| 2105 | 93/28 < L < 196/59 [ numerator <= 256 ] |
| 2106 | 42039/12655 < L < 28738/8651 [ numerator <= 65536 ] |
| 2107 | */ |
| 2108 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2109 | if (*D.firstSigDigit == '0') { |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2110 | category = fcZero; |
| 2111 | fs = opOK; |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 2112 | } else if ((D.normalizedExponent + 1) * 28738 |
| 2113 | <= 8651 * (semantics->minExponent - (int) semantics->precision)) { |
| 2114 | /* Underflow to zero and round. */ |
| 2115 | zeroSignificand(); |
| 2116 | fs = normalize(rounding_mode, lfLessThanHalf); |
| 2117 | } else if ((D.normalizedExponent - 1) * 42039 |
| 2118 | >= 12655 * semantics->maxExponent) { |
| 2119 | /* Overflow and round. */ |
| 2120 | fs = handleOverflow(rounding_mode); |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2121 | } else { |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2122 | integerPart *decSignificand; |
| 2123 | unsigned int partCount; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2124 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2125 | /* A tight upper bound on number of bits required to hold an |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 2126 | N-digit decimal integer is N * 196 / 59. Allocate enough space |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2127 | to hold the full significand, and an extra part required by |
| 2128 | tcMultiplyPart. */ |
| 2129 | partCount = (D.lastSigDigit - D.firstSigDigit) + 1; |
Neil Booth | 686700e | 2007-10-15 15:00:55 +0000 | [diff] [blame^] | 2130 | partCount = partCountForBits(1 + 196 * partCount / 59); |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2131 | decSignificand = new integerPart[partCount + 1]; |
| 2132 | partCount = 0; |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2133 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2134 | /* Convert to binary efficiently - we do almost all multiplication |
| 2135 | in an integerPart. When this would overflow do we do a single |
| 2136 | bignum multiplication, and then revert again to multiplication |
| 2137 | in an integerPart. */ |
| 2138 | do { |
| 2139 | integerPart decValue, val, multiplier; |
| 2140 | |
| 2141 | val = 0; |
| 2142 | multiplier = 1; |
| 2143 | |
| 2144 | do { |
| 2145 | if (*p == '.') |
| 2146 | p++; |
| 2147 | |
| 2148 | decValue = decDigitValue(*p++); |
| 2149 | multiplier *= 10; |
| 2150 | val = val * 10 + decValue; |
| 2151 | /* The maximum number that can be multiplied by ten with any |
| 2152 | digit added without overflowing an integerPart. */ |
| 2153 | } while (p <= D.lastSigDigit && multiplier <= (~ (integerPart) 0 - 9) / 10); |
| 2154 | |
| 2155 | /* Multiply out the current part. */ |
| 2156 | APInt::tcMultiplyPart(decSignificand, decSignificand, multiplier, val, |
| 2157 | partCount, partCount + 1, false); |
| 2158 | |
| 2159 | /* If we used another part (likely but not guaranteed), increase |
| 2160 | the count. */ |
| 2161 | if (decSignificand[partCount]) |
| 2162 | partCount++; |
| 2163 | } while (p <= D.lastSigDigit); |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2164 | |
| 2165 | category = fcNormal; |
| 2166 | fs = roundSignificandWithExponent(decSignificand, partCount, |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2167 | D.exponent, rounding_mode); |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2168 | |
Neil Booth | 1870f29 | 2007-10-14 10:16:12 +0000 | [diff] [blame] | 2169 | delete [] decSignificand; |
| 2170 | } |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2171 | |
| 2172 | return fs; |
| 2173 | } |
| 2174 | |
| 2175 | APFloat::opStatus |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2176 | APFloat::convertFromString(const char *p, roundingMode rounding_mode) |
| 2177 | { |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 2178 | assertArithmeticOK(*semantics); |
| 2179 | |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2180 | /* Handle a leading minus sign. */ |
| 2181 | if(*p == '-') |
| 2182 | sign = 1, p++; |
| 2183 | else |
| 2184 | sign = 0; |
| 2185 | |
| 2186 | if(p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) |
| 2187 | return convertFromHexadecimalString(p + 2, rounding_mode); |
Neil Booth | 96c7471 | 2007-10-12 16:02:31 +0000 | [diff] [blame] | 2188 | else |
| 2189 | return convertFromDecimalString(p, rounding_mode); |
Chris Lattner | b39cdde | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2190 | } |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2191 | |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 2192 | /* Write out a hexadecimal representation of the floating point value |
| 2193 | to DST, which must be of sufficient size, in the C99 form |
| 2194 | [-]0xh.hhhhp[+-]d. Return the number of characters written, |
| 2195 | excluding the terminating NUL. |
| 2196 | |
| 2197 | If UPPERCASE, the output is in upper case, otherwise in lower case. |
| 2198 | |
| 2199 | HEXDIGITS digits appear altogether, rounding the value if |
| 2200 | necessary. If HEXDIGITS is 0, the minimal precision to display the |
| 2201 | number precisely is used instead. If nothing would appear after |
| 2202 | the decimal point it is suppressed. |
| 2203 | |
| 2204 | The decimal exponent is always printed and has at least one digit. |
| 2205 | Zero values display an exponent of zero. Infinities and NaNs |
| 2206 | appear as "infinity" or "nan" respectively. |
| 2207 | |
| 2208 | The above rules are as specified by C99. There is ambiguity about |
| 2209 | what the leading hexadecimal digit should be. This implementation |
| 2210 | uses whatever is necessary so that the exponent is displayed as |
| 2211 | stored. This implies the exponent will fall within the IEEE format |
| 2212 | range, and the leading hexadecimal digit will be 0 (for denormals), |
| 2213 | 1 (normal numbers) or 2 (normal numbers rounded-away-from-zero with |
| 2214 | any other digits zero). |
| 2215 | */ |
| 2216 | unsigned int |
| 2217 | APFloat::convertToHexString(char *dst, unsigned int hexDigits, |
| 2218 | bool upperCase, roundingMode rounding_mode) const |
| 2219 | { |
| 2220 | char *p; |
| 2221 | |
Neil Booth | caf19d7 | 2007-10-14 10:29:28 +0000 | [diff] [blame] | 2222 | assertArithmeticOK(*semantics); |
| 2223 | |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 2224 | p = dst; |
| 2225 | if (sign) |
| 2226 | *dst++ = '-'; |
| 2227 | |
| 2228 | switch (category) { |
| 2229 | case fcInfinity: |
| 2230 | memcpy (dst, upperCase ? infinityU: infinityL, sizeof infinityU - 1); |
| 2231 | dst += sizeof infinityL - 1; |
| 2232 | break; |
| 2233 | |
| 2234 | case fcNaN: |
| 2235 | memcpy (dst, upperCase ? NaNU: NaNL, sizeof NaNU - 1); |
| 2236 | dst += sizeof NaNU - 1; |
| 2237 | break; |
| 2238 | |
| 2239 | case fcZero: |
| 2240 | *dst++ = '0'; |
| 2241 | *dst++ = upperCase ? 'X': 'x'; |
| 2242 | *dst++ = '0'; |
| 2243 | if (hexDigits > 1) { |
| 2244 | *dst++ = '.'; |
| 2245 | memset (dst, '0', hexDigits - 1); |
| 2246 | dst += hexDigits - 1; |
| 2247 | } |
| 2248 | *dst++ = upperCase ? 'P': 'p'; |
| 2249 | *dst++ = '0'; |
| 2250 | break; |
| 2251 | |
| 2252 | case fcNormal: |
| 2253 | dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); |
| 2254 | break; |
| 2255 | } |
| 2256 | |
| 2257 | *dst = 0; |
| 2258 | |
| 2259 | return dst - p; |
| 2260 | } |
| 2261 | |
| 2262 | /* Does the hard work of outputting the correctly rounded hexadecimal |
| 2263 | form of a normal floating point number with the specified number of |
| 2264 | hexadecimal digits. If HEXDIGITS is zero the minimum number of |
| 2265 | digits necessary to print the value precisely is output. */ |
| 2266 | char * |
| 2267 | APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, |
| 2268 | bool upperCase, |
| 2269 | roundingMode rounding_mode) const |
| 2270 | { |
| 2271 | unsigned int count, valueBits, shift, partsCount, outputDigits; |
| 2272 | const char *hexDigitChars; |
| 2273 | const integerPart *significand; |
| 2274 | char *p; |
| 2275 | bool roundUp; |
| 2276 | |
| 2277 | *dst++ = '0'; |
| 2278 | *dst++ = upperCase ? 'X': 'x'; |
| 2279 | |
| 2280 | roundUp = false; |
| 2281 | hexDigitChars = upperCase ? hexDigitsUpper: hexDigitsLower; |
| 2282 | |
| 2283 | significand = significandParts(); |
| 2284 | partsCount = partCount(); |
| 2285 | |
| 2286 | /* +3 because the first digit only uses the single integer bit, so |
| 2287 | we have 3 virtual zero most-significant-bits. */ |
| 2288 | valueBits = semantics->precision + 3; |
| 2289 | shift = integerPartWidth - valueBits % integerPartWidth; |
| 2290 | |
| 2291 | /* The natural number of digits required ignoring trailing |
| 2292 | insignificant zeroes. */ |
| 2293 | outputDigits = (valueBits - significandLSB () + 3) / 4; |
| 2294 | |
| 2295 | /* hexDigits of zero means use the required number for the |
| 2296 | precision. Otherwise, see if we are truncating. If we are, |
Neil Booth | 978661d | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2297 | find out if we need to round away from zero. */ |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 2298 | if (hexDigits) { |
| 2299 | if (hexDigits < outputDigits) { |
| 2300 | /* We are dropping non-zero bits, so need to check how to round. |
| 2301 | "bits" is the number of dropped bits. */ |
| 2302 | unsigned int bits; |
| 2303 | lostFraction fraction; |
| 2304 | |
| 2305 | bits = valueBits - hexDigits * 4; |
| 2306 | fraction = lostFractionThroughTruncation (significand, partsCount, bits); |
| 2307 | roundUp = roundAwayFromZero(rounding_mode, fraction, bits); |
| 2308 | } |
| 2309 | outputDigits = hexDigits; |
| 2310 | } |
| 2311 | |
| 2312 | /* Write the digits consecutively, and start writing in the location |
| 2313 | of the hexadecimal point. We move the most significant digit |
| 2314 | left and add the hexadecimal point later. */ |
| 2315 | p = ++dst; |
| 2316 | |
| 2317 | count = (valueBits + integerPartWidth - 1) / integerPartWidth; |
| 2318 | |
| 2319 | while (outputDigits && count) { |
| 2320 | integerPart part; |
| 2321 | |
| 2322 | /* Put the most significant integerPartWidth bits in "part". */ |
| 2323 | if (--count == partsCount) |
| 2324 | part = 0; /* An imaginary higher zero part. */ |
| 2325 | else |
| 2326 | part = significand[count] << shift; |
| 2327 | |
| 2328 | if (count && shift) |
| 2329 | part |= significand[count - 1] >> (integerPartWidth - shift); |
| 2330 | |
| 2331 | /* Convert as much of "part" to hexdigits as we can. */ |
| 2332 | unsigned int curDigits = integerPartWidth / 4; |
| 2333 | |
| 2334 | if (curDigits > outputDigits) |
| 2335 | curDigits = outputDigits; |
| 2336 | dst += partAsHex (dst, part, curDigits, hexDigitChars); |
| 2337 | outputDigits -= curDigits; |
| 2338 | } |
| 2339 | |
| 2340 | if (roundUp) { |
| 2341 | char *q = dst; |
| 2342 | |
| 2343 | /* Note that hexDigitChars has a trailing '0'. */ |
| 2344 | do { |
| 2345 | q--; |
| 2346 | *q = hexDigitChars[hexDigitValue (*q) + 1]; |
Neil Booth | 978661d | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2347 | } while (*q == '0'); |
| 2348 | assert (q >= p); |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 2349 | } else { |
| 2350 | /* Add trailing zeroes. */ |
| 2351 | memset (dst, '0', outputDigits); |
| 2352 | dst += outputDigits; |
| 2353 | } |
| 2354 | |
| 2355 | /* Move the most significant digit to before the point, and if there |
| 2356 | is something after the decimal point add it. This must come |
| 2357 | after rounding above. */ |
| 2358 | p[-1] = p[0]; |
| 2359 | if (dst -1 == p) |
| 2360 | dst--; |
| 2361 | else |
| 2362 | p[0] = '.'; |
| 2363 | |
| 2364 | /* Finally output the exponent. */ |
| 2365 | *dst++ = upperCase ? 'P': 'p'; |
| 2366 | |
Neil Booth | 92f7e8d | 2007-10-06 07:29:25 +0000 | [diff] [blame] | 2367 | return writeSignedDecimal (dst, exponent); |
Neil Booth | a30b0ee | 2007-10-03 22:26:02 +0000 | [diff] [blame] | 2368 | } |
| 2369 | |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2370 | // For good performance it is desirable for different APFloats |
| 2371 | // to produce different integers. |
| 2372 | uint32_t |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2373 | APFloat::getHashValue() const |
| 2374 | { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2375 | if (category==fcZero) return sign<<8 | semantics->precision ; |
| 2376 | else if (category==fcInfinity) return sign<<9 | semantics->precision; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2377 | else if (category==fcNaN) return 1<<10 | semantics->precision; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2378 | else { |
| 2379 | uint32_t hash = sign<<11 | semantics->precision | exponent<<12; |
| 2380 | const integerPart* p = significandParts(); |
| 2381 | for (int i=partCount(); i>0; i--, p++) |
| 2382 | hash ^= ((uint32_t)*p) ^ (*p)>>32; |
| 2383 | return hash; |
| 2384 | } |
| 2385 | } |
| 2386 | |
| 2387 | // Conversion from APFloat to/from host float/double. It may eventually be |
| 2388 | // possible to eliminate these and have everybody deal with APFloats, but that |
| 2389 | // will take a while. This approach will not easily extend to long double. |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2390 | // Current implementation requires integerPartWidth==64, which is correct at |
| 2391 | // the moment but could be made more general. |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2392 | |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2393 | // Denormals have exponent minExponent in APFloat, but minExponent-1 in |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2394 | // the actual IEEE respresentations. We compensate for that here. |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2395 | |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2396 | APInt |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2397 | APFloat::convertF80LongDoubleAPFloatToAPInt() const |
| 2398 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2399 | assert(semantics == (const llvm::fltSemantics* const)&x87DoubleExtended); |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2400 | assert (partCount()==2); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2401 | |
| 2402 | uint64_t myexponent, mysignificand; |
| 2403 | |
| 2404 | if (category==fcNormal) { |
| 2405 | myexponent = exponent+16383; //bias |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2406 | mysignificand = significandParts()[0]; |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2407 | if (myexponent==1 && !(mysignificand & 0x8000000000000000ULL)) |
| 2408 | myexponent = 0; // denormal |
| 2409 | } else if (category==fcZero) { |
| 2410 | myexponent = 0; |
| 2411 | mysignificand = 0; |
| 2412 | } else if (category==fcInfinity) { |
| 2413 | myexponent = 0x7fff; |
| 2414 | mysignificand = 0x8000000000000000ULL; |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2415 | } else { |
| 2416 | assert(category == fcNaN && "Unknown category"); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2417 | myexponent = 0x7fff; |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2418 | mysignificand = significandParts()[0]; |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2419 | } |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2420 | |
| 2421 | uint64_t words[2]; |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2422 | words[0] = (((uint64_t)sign & 1) << 63) | |
| 2423 | ((myexponent & 0x7fff) << 48) | |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2424 | ((mysignificand >>16) & 0xffffffffffffLL); |
| 2425 | words[1] = mysignificand & 0xffff; |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2426 | return APInt(80, 2, words); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2427 | } |
| 2428 | |
| 2429 | APInt |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2430 | APFloat::convertPPCDoubleDoubleAPFloatToAPInt() const |
| 2431 | { |
| 2432 | assert(semantics == (const llvm::fltSemantics* const)&PPCDoubleDouble); |
| 2433 | assert (partCount()==2); |
| 2434 | |
| 2435 | uint64_t myexponent, mysignificand, myexponent2, mysignificand2; |
| 2436 | |
| 2437 | if (category==fcNormal) { |
| 2438 | myexponent = exponent + 1023; //bias |
| 2439 | myexponent2 = exponent2 + 1023; |
| 2440 | mysignificand = significandParts()[0]; |
| 2441 | mysignificand2 = significandParts()[1]; |
| 2442 | if (myexponent==1 && !(mysignificand & 0x10000000000000LL)) |
| 2443 | myexponent = 0; // denormal |
| 2444 | if (myexponent2==1 && !(mysignificand2 & 0x10000000000000LL)) |
| 2445 | myexponent2 = 0; // denormal |
| 2446 | } else if (category==fcZero) { |
| 2447 | myexponent = 0; |
| 2448 | mysignificand = 0; |
| 2449 | myexponent2 = 0; |
| 2450 | mysignificand2 = 0; |
| 2451 | } else if (category==fcInfinity) { |
| 2452 | myexponent = 0x7ff; |
| 2453 | myexponent2 = 0; |
| 2454 | mysignificand = 0; |
| 2455 | mysignificand2 = 0; |
| 2456 | } else { |
| 2457 | assert(category == fcNaN && "Unknown category"); |
| 2458 | myexponent = 0x7ff; |
| 2459 | mysignificand = significandParts()[0]; |
| 2460 | myexponent2 = exponent2; |
| 2461 | mysignificand2 = significandParts()[1]; |
| 2462 | } |
| 2463 | |
| 2464 | uint64_t words[2]; |
| 2465 | words[0] = (((uint64_t)sign & 1) << 63) | |
| 2466 | ((myexponent & 0x7ff) << 52) | |
| 2467 | (mysignificand & 0xfffffffffffffLL); |
| 2468 | words[1] = (((uint64_t)sign2 & 1) << 63) | |
| 2469 | ((myexponent2 & 0x7ff) << 52) | |
| 2470 | (mysignificand2 & 0xfffffffffffffLL); |
| 2471 | return APInt(128, 2, words); |
| 2472 | } |
| 2473 | |
| 2474 | APInt |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2475 | APFloat::convertDoubleAPFloatToAPInt() const |
| 2476 | { |
Dan Gohman | cb648f9 | 2007-09-14 20:08:19 +0000 | [diff] [blame] | 2477 | assert(semantics == (const llvm::fltSemantics*)&IEEEdouble); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2478 | assert (partCount()==1); |
| 2479 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2480 | uint64_t myexponent, mysignificand; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2481 | |
| 2482 | if (category==fcNormal) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2483 | myexponent = exponent+1023; //bias |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2484 | mysignificand = *significandParts(); |
| 2485 | if (myexponent==1 && !(mysignificand & 0x10000000000000LL)) |
| 2486 | myexponent = 0; // denormal |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2487 | } else if (category==fcZero) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2488 | myexponent = 0; |
| 2489 | mysignificand = 0; |
| 2490 | } else if (category==fcInfinity) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2491 | myexponent = 0x7ff; |
| 2492 | mysignificand = 0; |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2493 | } else { |
| 2494 | assert(category == fcNaN && "Unknown category!"); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2495 | myexponent = 0x7ff; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2496 | mysignificand = *significandParts(); |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2497 | } |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2498 | |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2499 | return APInt(64, (((((uint64_t)sign & 1) << 63) | |
| 2500 | ((myexponent & 0x7ff) << 52) | |
| 2501 | (mysignificand & 0xfffffffffffffLL)))); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2502 | } |
| 2503 | |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2504 | APInt |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2505 | APFloat::convertFloatAPFloatToAPInt() const |
| 2506 | { |
Dan Gohman | cb648f9 | 2007-09-14 20:08:19 +0000 | [diff] [blame] | 2507 | assert(semantics == (const llvm::fltSemantics*)&IEEEsingle); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2508 | assert (partCount()==1); |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2509 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2510 | uint32_t myexponent, mysignificand; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2511 | |
| 2512 | if (category==fcNormal) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2513 | myexponent = exponent+127; //bias |
| 2514 | mysignificand = *significandParts(); |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2515 | if (myexponent == 1 && !(mysignificand & 0x400000)) |
| 2516 | myexponent = 0; // denormal |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2517 | } else if (category==fcZero) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2518 | myexponent = 0; |
| 2519 | mysignificand = 0; |
| 2520 | } else if (category==fcInfinity) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2521 | myexponent = 0xff; |
| 2522 | mysignificand = 0; |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2523 | } else { |
| 2524 | assert(category == fcNaN && "Unknown category!"); |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2525 | myexponent = 0xff; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2526 | mysignificand = *significandParts(); |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2527 | } |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2528 | |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2529 | return APInt(32, (((sign&1) << 31) | ((myexponent&0xff) << 23) | |
| 2530 | (mysignificand & 0x7fffff))); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2531 | } |
| 2532 | |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2533 | // This function creates an APInt that is just a bit map of the floating |
| 2534 | // point constant as it would appear in memory. It is not a conversion, |
| 2535 | // and treating the result as a normal integer is unlikely to be useful. |
| 2536 | |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2537 | APInt |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2538 | APFloat::convertToAPInt() const |
| 2539 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2540 | if (semantics == (const llvm::fltSemantics* const)&IEEEsingle) |
| 2541 | return convertFloatAPFloatToAPInt(); |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2542 | |
| 2543 | if (semantics == (const llvm::fltSemantics* const)&IEEEdouble) |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2544 | return convertDoubleAPFloatToAPInt(); |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2545 | |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2546 | if (semantics == (const llvm::fltSemantics* const)&PPCDoubleDouble) |
| 2547 | return convertPPCDoubleDoubleAPFloatToAPInt(); |
| 2548 | |
Chris Lattner | a11ef82 | 2007-10-06 06:13:42 +0000 | [diff] [blame] | 2549 | assert(semantics == (const llvm::fltSemantics* const)&x87DoubleExtended && |
| 2550 | "unknown format!"); |
| 2551 | return convertF80LongDoubleAPFloatToAPInt(); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2552 | } |
| 2553 | |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2554 | float |
| 2555 | APFloat::convertToFloat() const |
| 2556 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2557 | assert(semantics == (const llvm::fltSemantics* const)&IEEEsingle); |
| 2558 | APInt api = convertToAPInt(); |
| 2559 | return api.bitsToFloat(); |
| 2560 | } |
| 2561 | |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2562 | double |
| 2563 | APFloat::convertToDouble() const |
| 2564 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2565 | assert(semantics == (const llvm::fltSemantics* const)&IEEEdouble); |
| 2566 | APInt api = convertToAPInt(); |
| 2567 | return api.bitsToDouble(); |
| 2568 | } |
| 2569 | |
| 2570 | /// Integer bit is explicit in this format. Current Intel book does not |
| 2571 | /// define meaning of: |
| 2572 | /// exponent = all 1's, integer bit not set. |
| 2573 | /// exponent = 0, integer bit set. (formerly "psuedodenormals") |
| 2574 | /// exponent!=0 nor all 1's, integer bit not set. (formerly "unnormals") |
| 2575 | void |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2576 | APFloat::initFromF80LongDoubleAPInt(const APInt &api) |
| 2577 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2578 | assert(api.getBitWidth()==80); |
| 2579 | uint64_t i1 = api.getRawData()[0]; |
| 2580 | uint64_t i2 = api.getRawData()[1]; |
| 2581 | uint64_t myexponent = (i1 >> 48) & 0x7fff; |
| 2582 | uint64_t mysignificand = ((i1 << 16) & 0xffffffffffff0000ULL) | |
| 2583 | (i2 & 0xffff); |
| 2584 | |
| 2585 | initialize(&APFloat::x87DoubleExtended); |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2586 | assert(partCount()==2); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2587 | |
| 2588 | sign = i1>>63; |
| 2589 | if (myexponent==0 && mysignificand==0) { |
| 2590 | // exponent, significand meaningless |
| 2591 | category = fcZero; |
| 2592 | } else if (myexponent==0x7fff && mysignificand==0x8000000000000000ULL) { |
| 2593 | // exponent, significand meaningless |
| 2594 | category = fcInfinity; |
| 2595 | } else if (myexponent==0x7fff && mysignificand!=0x8000000000000000ULL) { |
| 2596 | // exponent meaningless |
| 2597 | category = fcNaN; |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2598 | significandParts()[0] = mysignificand; |
| 2599 | significandParts()[1] = 0; |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2600 | } else { |
| 2601 | category = fcNormal; |
| 2602 | exponent = myexponent - 16383; |
Dale Johannesen | a72a5a0 | 2007-09-20 23:47:58 +0000 | [diff] [blame] | 2603 | significandParts()[0] = mysignificand; |
| 2604 | significandParts()[1] = 0; |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2605 | if (myexponent==0) // denormal |
| 2606 | exponent = -16382; |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2607 | } |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2608 | } |
| 2609 | |
| 2610 | void |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2611 | APFloat::initFromPPCDoubleDoubleAPInt(const APInt &api) |
| 2612 | { |
| 2613 | assert(api.getBitWidth()==128); |
| 2614 | uint64_t i1 = api.getRawData()[0]; |
| 2615 | uint64_t i2 = api.getRawData()[1]; |
| 2616 | uint64_t myexponent = (i1 >> 52) & 0x7ff; |
| 2617 | uint64_t mysignificand = i1 & 0xfffffffffffffLL; |
| 2618 | uint64_t myexponent2 = (i2 >> 52) & 0x7ff; |
| 2619 | uint64_t mysignificand2 = i2 & 0xfffffffffffffLL; |
| 2620 | |
| 2621 | initialize(&APFloat::PPCDoubleDouble); |
| 2622 | assert(partCount()==2); |
| 2623 | |
| 2624 | sign = i1>>63; |
| 2625 | sign2 = i2>>63; |
| 2626 | if (myexponent==0 && mysignificand==0) { |
| 2627 | // exponent, significand meaningless |
| 2628 | // exponent2 and significand2 are required to be 0; we don't check |
| 2629 | category = fcZero; |
| 2630 | } else if (myexponent==0x7ff && mysignificand==0) { |
| 2631 | // exponent, significand meaningless |
| 2632 | // exponent2 and significand2 are required to be 0; we don't check |
| 2633 | category = fcInfinity; |
| 2634 | } else if (myexponent==0x7ff && mysignificand!=0) { |
| 2635 | // exponent meaningless. So is the whole second word, but keep it |
| 2636 | // for determinism. |
| 2637 | category = fcNaN; |
| 2638 | exponent2 = myexponent2; |
| 2639 | significandParts()[0] = mysignificand; |
| 2640 | significandParts()[1] = mysignificand2; |
| 2641 | } else { |
| 2642 | category = fcNormal; |
| 2643 | // Note there is no category2; the second word is treated as if it is |
| 2644 | // fcNormal, although it might be something else considered by itself. |
| 2645 | exponent = myexponent - 1023; |
| 2646 | exponent2 = myexponent2 - 1023; |
| 2647 | significandParts()[0] = mysignificand; |
| 2648 | significandParts()[1] = mysignificand2; |
| 2649 | if (myexponent==0) // denormal |
| 2650 | exponent = -1022; |
| 2651 | else |
| 2652 | significandParts()[0] |= 0x10000000000000LL; // integer bit |
| 2653 | if (myexponent2==0) |
| 2654 | exponent2 = -1022; |
| 2655 | else |
| 2656 | significandParts()[1] |= 0x10000000000000LL; // integer bit |
| 2657 | } |
| 2658 | } |
| 2659 | |
| 2660 | void |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2661 | APFloat::initFromDoubleAPInt(const APInt &api) |
| 2662 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2663 | assert(api.getBitWidth()==64); |
| 2664 | uint64_t i = *api.getRawData(); |
Dale Johannesen | d3b51fd | 2007-08-24 05:08:11 +0000 | [diff] [blame] | 2665 | uint64_t myexponent = (i >> 52) & 0x7ff; |
| 2666 | uint64_t mysignificand = i & 0xfffffffffffffLL; |
| 2667 | |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2668 | initialize(&APFloat::IEEEdouble); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2669 | assert(partCount()==1); |
| 2670 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2671 | sign = i>>63; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2672 | if (myexponent==0 && mysignificand==0) { |
| 2673 | // exponent, significand meaningless |
| 2674 | category = fcZero; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2675 | } else if (myexponent==0x7ff && mysignificand==0) { |
| 2676 | // exponent, significand meaningless |
| 2677 | category = fcInfinity; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2678 | } else if (myexponent==0x7ff && mysignificand!=0) { |
| 2679 | // exponent meaningless |
| 2680 | category = fcNaN; |
| 2681 | *significandParts() = mysignificand; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2682 | } else { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2683 | category = fcNormal; |
| 2684 | exponent = myexponent - 1023; |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2685 | *significandParts() = mysignificand; |
| 2686 | if (myexponent==0) // denormal |
| 2687 | exponent = -1022; |
| 2688 | else |
| 2689 | *significandParts() |= 0x10000000000000LL; // integer bit |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2690 | } |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2691 | } |
| 2692 | |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2693 | void |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2694 | APFloat::initFromFloatAPInt(const APInt & api) |
| 2695 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2696 | assert(api.getBitWidth()==32); |
| 2697 | uint32_t i = (uint32_t)*api.getRawData(); |
Dale Johannesen | d3b51fd | 2007-08-24 05:08:11 +0000 | [diff] [blame] | 2698 | uint32_t myexponent = (i >> 23) & 0xff; |
| 2699 | uint32_t mysignificand = i & 0x7fffff; |
| 2700 | |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2701 | initialize(&APFloat::IEEEsingle); |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2702 | assert(partCount()==1); |
| 2703 | |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2704 | sign = i >> 31; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2705 | if (myexponent==0 && mysignificand==0) { |
| 2706 | // exponent, significand meaningless |
| 2707 | category = fcZero; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2708 | } else if (myexponent==0xff && mysignificand==0) { |
| 2709 | // exponent, significand meaningless |
| 2710 | category = fcInfinity; |
Dale Johannesen | 902ff94 | 2007-09-25 17:25:00 +0000 | [diff] [blame] | 2711 | } else if (myexponent==0xff && mysignificand!=0) { |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2712 | // sign, exponent, significand meaningless |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 2713 | category = fcNaN; |
| 2714 | *significandParts() = mysignificand; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2715 | } else { |
| 2716 | category = fcNormal; |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2717 | exponent = myexponent - 127; //bias |
Dale Johannesen | 58c2e4c | 2007-09-05 20:39:49 +0000 | [diff] [blame] | 2718 | *significandParts() = mysignificand; |
| 2719 | if (myexponent==0) // denormal |
| 2720 | exponent = -126; |
| 2721 | else |
| 2722 | *significandParts() |= 0x800000; // integer bit |
Dale Johannesen | 343e770 | 2007-08-24 00:56:33 +0000 | [diff] [blame] | 2723 | } |
| 2724 | } |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2725 | |
| 2726 | /// Treat api as containing the bits of a floating point number. Currently |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2727 | /// we infer the floating point type from the size of the APInt. The |
| 2728 | /// isIEEE argument distinguishes between PPC128 and IEEE128 (not meaningful |
| 2729 | /// when the size is anything else). |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2730 | void |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2731 | APFloat::initFromAPInt(const APInt& api, bool isIEEE) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2732 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2733 | if (api.getBitWidth() == 32) |
| 2734 | return initFromFloatAPInt(api); |
| 2735 | else if (api.getBitWidth()==64) |
| 2736 | return initFromDoubleAPInt(api); |
| 2737 | else if (api.getBitWidth()==80) |
| 2738 | return initFromF80LongDoubleAPInt(api); |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2739 | else if (api.getBitWidth()==128 && !isIEEE) |
| 2740 | return initFromPPCDoubleDoubleAPInt(api); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2741 | else |
| 2742 | assert(0); |
| 2743 | } |
| 2744 | |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2745 | APFloat::APFloat(const APInt& api, bool isIEEE) |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2746 | { |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 2747 | initFromAPInt(api, isIEEE); |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2748 | } |
| 2749 | |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2750 | APFloat::APFloat(float f) |
| 2751 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2752 | APInt api = APInt(32, 0); |
| 2753 | initFromAPInt(api.floatToBits(f)); |
| 2754 | } |
| 2755 | |
Neil Booth | 4f88170 | 2007-09-26 21:33:42 +0000 | [diff] [blame] | 2756 | APFloat::APFloat(double d) |
| 2757 | { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2758 | APInt api = APInt(64, 0); |
| 2759 | initFromAPInt(api.doubleToBits(d)); |
| 2760 | } |