Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 1 | //===-- APInt.cpp - Implement APInt class ---------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 10 | // This file implements a class to represent arbitrary precision integer |
| 11 | // constant values and provide a variety of arithmetic operations on them. |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/ADT/APInt.h" |
Mehdi Amini | 47b292d | 2016-04-16 07:51:28 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/ArrayRef.h" |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/FoldingSet.h" |
Chandler Carruth | 71bd7d1 | 2012-03-04 12:02:57 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Hashing.h" |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallString.h" |
Chandler Carruth | 71bd7d1 | 2012-03-04 12:02:57 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringRef.h" |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Debug.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorHandling.h" |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Vassil Vassilev | 2ec8b15 | 2016-09-14 08:55:18 +0000 | [diff] [blame] | 25 | #include <climits> |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 26 | #include <cmath> |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 27 | #include <cstdlib> |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 28 | #include <cstring> |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
Chandler Carruth | 6464826 | 2014-04-22 03:07:47 +0000 | [diff] [blame] | 31 | #define DEBUG_TYPE "apint" |
| 32 | |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 33 | /// A utility function for allocating memory, checking for allocation failures, |
| 34 | /// and ensuring the contents are zeroed. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 35 | inline static uint64_t* getClearedMemory(unsigned numWords) { |
Reid Spencer | a856b6e | 2007-02-18 18:38:44 +0000 | [diff] [blame] | 36 | uint64_t * result = new uint64_t[numWords]; |
| 37 | assert(result && "APInt memory allocation fails!"); |
| 38 | memset(result, 0, numWords * sizeof(uint64_t)); |
| 39 | return result; |
Zhou Sheng | 94b623a | 2007-02-06 06:04:53 +0000 | [diff] [blame] | 40 | } |
| 41 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 42 | /// A utility function for allocating memory and checking for allocation |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 43 | /// failure. The content is not zeroed. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 44 | inline static uint64_t* getMemory(unsigned numWords) { |
Reid Spencer | a856b6e | 2007-02-18 18:38:44 +0000 | [diff] [blame] | 45 | uint64_t * result = new uint64_t[numWords]; |
| 46 | assert(result && "APInt memory allocation fails!"); |
| 47 | return result; |
| 48 | } |
| 49 | |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 50 | /// A utility function that converts a character to a digit. |
| 51 | inline static unsigned getDigit(char cdigit, uint8_t radix) { |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 52 | unsigned r; |
| 53 | |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 54 | if (radix == 16 || radix == 36) { |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 55 | r = cdigit - '0'; |
| 56 | if (r <= 9) |
| 57 | return r; |
| 58 | |
| 59 | r = cdigit - 'A'; |
Douglas Gregor | c98ac85 | 2011-09-20 18:33:29 +0000 | [diff] [blame] | 60 | if (r <= radix - 11U) |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 61 | return r + 10; |
| 62 | |
| 63 | r = cdigit - 'a'; |
Douglas Gregor | c98ac85 | 2011-09-20 18:33:29 +0000 | [diff] [blame] | 64 | if (r <= radix - 11U) |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 65 | return r + 10; |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 66 | |
Douglas Gregor | e4e20f4 | 2011-09-20 18:11:52 +0000 | [diff] [blame] | 67 | radix = 10; |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 70 | r = cdigit - '0'; |
| 71 | if (r < radix) |
| 72 | return r; |
| 73 | |
| 74 | return -1U; |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | |
Pawel Bylica | 6830401 | 2016-06-27 08:31:48 +0000 | [diff] [blame] | 78 | void APInt::initSlowCase(uint64_t val, bool isSigned) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 79 | U.pVal = getClearedMemory(getNumWords()); |
| 80 | U.pVal[0] = val; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 81 | if (isSigned && int64_t(val) < 0) |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 82 | for (unsigned i = 1; i < getNumWords(); ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 83 | U.pVal[i] = WORD_MAX; |
Craig Topper | f78a6f0 | 2017-03-01 21:06:18 +0000 | [diff] [blame] | 84 | clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Chris Lattner | d57b760 | 2008-10-11 22:07:19 +0000 | [diff] [blame] | 87 | void APInt::initSlowCase(const APInt& that) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 88 | U.pVal = getMemory(getNumWords()); |
| 89 | memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); |
Chris Lattner | d57b760 | 2008-10-11 22:07:19 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 92 | void APInt::initFromArray(ArrayRef<uint64_t> bigVal) { |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 93 | assert(BitWidth && "Bitwidth too small"); |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 94 | assert(bigVal.data() && "Null pointer detected!"); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 95 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 96 | U.VAL = bigVal[0]; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 97 | else { |
Reid Spencer | df6cf5a | 2007-02-24 10:01:42 +0000 | [diff] [blame] | 98 | // Get memory, cleared to 0 |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 99 | U.pVal = getClearedMemory(getNumWords()); |
Reid Spencer | df6cf5a | 2007-02-24 10:01:42 +0000 | [diff] [blame] | 100 | // Calculate the number of words to copy |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 101 | unsigned words = std::min<unsigned>(bigVal.size(), getNumWords()); |
Reid Spencer | df6cf5a | 2007-02-24 10:01:42 +0000 | [diff] [blame] | 102 | // Copy the words from bigVal to pVal |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 103 | memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 104 | } |
Reid Spencer | df6cf5a | 2007-02-24 10:01:42 +0000 | [diff] [blame] | 105 | // Make sure unused high bits are cleared |
| 106 | clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 109 | APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) |
Craig Topper | 0085ffb | 2017-03-20 01:29:52 +0000 | [diff] [blame] | 110 | : BitWidth(numBits) { |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 111 | initFromArray(bigVal); |
| 112 | } |
| 113 | |
| 114 | APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) |
Craig Topper | 0085ffb | 2017-03-20 01:29:52 +0000 | [diff] [blame] | 115 | : BitWidth(numBits) { |
Jeffrey Yasskin | 7a16288 | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 116 | initFromArray(makeArrayRef(bigVal, numWords)); |
| 117 | } |
| 118 | |
Benjamin Kramer | 92d8998 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 119 | APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 120 | : BitWidth(numbits) { |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 121 | assert(BitWidth && "Bitwidth too small"); |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 122 | fromString(numbits, Str, radix); |
Zhou Sheng | 3e8022d | 2007-02-07 06:14:53 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 125 | void APInt::AssignSlowCase(const APInt& RHS) { |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 126 | // Don't do anything for X = X |
| 127 | if (this == &RHS) |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 128 | return; |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 129 | |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 130 | if (BitWidth == RHS.getBitWidth()) { |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 131 | // assume same bit-width single-word case is already handled |
| 132 | assert(!isSingleWord()); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 133 | memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 134 | return; |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 137 | if (isSingleWord()) { |
| 138 | // assume case where both are single words is already handled |
| 139 | assert(!RHS.isSingleWord()); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 140 | U.pVal = getMemory(RHS.getNumWords()); |
| 141 | memcpy(U.pVal, RHS.U.pVal, RHS.getNumWords() * APINT_WORD_SIZE); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 142 | } else if (getNumWords() == RHS.getNumWords()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 143 | memcpy(U.pVal, RHS.U.pVal, RHS.getNumWords() * APINT_WORD_SIZE); |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 144 | else if (RHS.isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 145 | delete [] U.pVal; |
| 146 | U.VAL = RHS.U.VAL; |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 147 | } else { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 148 | delete [] U.pVal; |
| 149 | U.pVal = getMemory(RHS.getNumWords()); |
| 150 | memcpy(U.pVal, RHS.U.pVal, RHS.getNumWords() * APINT_WORD_SIZE); |
Reid Spencer | 7c16cd2 | 2007-02-26 23:38:21 +0000 | [diff] [blame] | 151 | } |
| 152 | BitWidth = RHS.BitWidth; |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 153 | clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Pawel Bylica | 6eeeac7 | 2015-04-06 13:31:39 +0000 | [diff] [blame] | 156 | /// This method 'profiles' an APInt for use with FoldingSet. |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 157 | void APInt::Profile(FoldingSetNodeID& ID) const { |
Ted Kremenek | 901540f | 2008-02-19 20:50:41 +0000 | [diff] [blame] | 158 | ID.AddInteger(BitWidth); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 159 | |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 160 | if (isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 161 | ID.AddInteger(U.VAL); |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
| 164 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 165 | unsigned NumWords = getNumWords(); |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 166 | for (unsigned i = 0; i < NumWords; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 167 | ID.AddInteger(U.pVal[i]); |
Ted Kremenek | 5c75d54 | 2008-01-19 04:23:33 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 170 | /// @brief Prefix increment operator. Increments the APInt by one. |
| 171 | APInt& APInt::operator++() { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 172 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 173 | ++U.VAL; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 174 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 175 | tcIncrement(U.pVal, getNumWords()); |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 176 | return clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 179 | /// @brief Prefix decrement operator. Decrements the APInt by one. |
| 180 | APInt& APInt::operator--() { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 181 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 182 | --U.VAL; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 183 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 184 | tcDecrement(U.pVal, getNumWords()); |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 185 | return clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 188 | /// Adds the RHS APint to this APInt. |
| 189 | /// @returns this, after addition of RHS. |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 190 | /// @brief Addition assignment operator. |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 191 | APInt& APInt::operator+=(const APInt& RHS) { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 192 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 193 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 194 | U.VAL += RHS.U.VAL; |
Craig Topper | 15e484a | 2017-04-02 06:59:43 +0000 | [diff] [blame] | 195 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 196 | tcAdd(U.pVal, RHS.U.pVal, 0, getNumWords()); |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 197 | return clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 200 | APInt& APInt::operator+=(uint64_t RHS) { |
| 201 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 202 | U.VAL += RHS; |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 203 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 204 | tcAddPart(U.pVal, RHS, getNumWords()); |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 205 | return clearUnusedBits(); |
| 206 | } |
| 207 | |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 208 | /// Subtracts the RHS APInt from this APInt |
| 209 | /// @returns this, after subtraction |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 210 | /// @brief Subtraction assignment operator. |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 211 | APInt& APInt::operator-=(const APInt& RHS) { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 212 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 213 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 214 | U.VAL -= RHS.U.VAL; |
Reid Spencer | 7a6a8d5 | 2007-02-20 23:40:25 +0000 | [diff] [blame] | 215 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 216 | tcSubtract(U.pVal, RHS.U.pVal, 0, getNumWords()); |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 217 | return clearUnusedBits(); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 220 | APInt& APInt::operator-=(uint64_t RHS) { |
| 221 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 222 | U.VAL -= RHS; |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 223 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 224 | tcSubtractPart(U.pVal, RHS, getNumWords()); |
Pete Cooper | fea2139 | 2016-07-22 20:55:46 +0000 | [diff] [blame] | 225 | return clearUnusedBits(); |
| 226 | } |
| 227 | |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 228 | APInt APInt::operator*(const APInt& RHS) const { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 229 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 230 | if (isSingleWord()) |
| 231 | return APInt(BitWidth, U.VAL * RHS.U.VAL); |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 232 | |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 233 | APInt Result(getMemory(getNumWords()), getBitWidth()); |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 234 | |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 235 | tcMultiply(Result.U.pVal, U.pVal, RHS.U.pVal, getNumWords()); |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 236 | |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 237 | Result.clearUnusedBits(); |
| 238 | return Result; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 241 | void APInt::AndAssignSlowCase(const APInt& RHS) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 242 | tcAnd(U.pVal, RHS.U.pVal, getNumWords()); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 245 | void APInt::OrAssignSlowCase(const APInt& RHS) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 246 | tcOr(U.pVal, RHS.U.pVal, getNumWords()); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Craig Topper | c67fe57 | 2017-04-19 17:01:58 +0000 | [diff] [blame] | 249 | void APInt::XorAssignSlowCase(const APInt& RHS) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 250 | tcXor(U.pVal, RHS.U.pVal, getNumWords()); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 253 | APInt& APInt::operator*=(const APInt& RHS) { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 254 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Craig Topper | 93c68e1 | 2017-05-04 17:00:41 +0000 | [diff] [blame] | 255 | *this = *this * RHS; |
| 256 | return *this; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Craig Topper | a51941f | 2017-05-08 04:55:09 +0000 | [diff] [blame] | 259 | APInt& APInt::operator*=(uint64_t RHS) { |
| 260 | if (isSingleWord()) { |
| 261 | U.VAL *= RHS; |
| 262 | } else { |
| 263 | unsigned NumWords = getNumWords(); |
| 264 | tcMultiplyPart(U.pVal, U.pVal, RHS, 0, NumWords, NumWords, false); |
| 265 | } |
| 266 | return clearUnusedBits(); |
| 267 | } |
| 268 | |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 269 | bool APInt::EqualSlowCase(const APInt& RHS) const { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 270 | return std::equal(U.pVal, U.pVal + getNumWords(), RHS.U.pVal); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Craig Topper | 1dc8fc8 | 2017-04-21 16:13:15 +0000 | [diff] [blame] | 273 | int APInt::compare(const APInt& RHS) const { |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 274 | assert(BitWidth == RHS.BitWidth && "Bit widths must be same for comparison"); |
| 275 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 276 | return U.VAL < RHS.U.VAL ? -1 : U.VAL > RHS.U.VAL; |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 277 | |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 278 | return tcCompare(U.pVal, RHS.U.pVal, getNumWords()); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Craig Topper | 1dc8fc8 | 2017-04-21 16:13:15 +0000 | [diff] [blame] | 281 | int APInt::compareSigned(const APInt& RHS) const { |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 282 | assert(BitWidth == RHS.BitWidth && "Bit widths must be same for comparison"); |
Reid Spencer | be4ddf6 | 2007-02-18 20:09:41 +0000 | [diff] [blame] | 283 | if (isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 284 | int64_t lhsSext = SignExtend64(U.VAL, BitWidth); |
| 285 | int64_t rhsSext = SignExtend64(RHS.U.VAL, BitWidth); |
Craig Topper | 1dc8fc8 | 2017-04-21 16:13:15 +0000 | [diff] [blame] | 286 | return lhsSext < rhsSext ? -1 : lhsSext > rhsSext; |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 287 | } |
Reid Spencer | be4ddf6 | 2007-02-18 20:09:41 +0000 | [diff] [blame] | 288 | |
Reid Spencer | 54abdcf | 2007-02-27 18:23:40 +0000 | [diff] [blame] | 289 | bool lhsNeg = isNegative(); |
Pete Cooper | d6e6bf1 | 2016-05-26 17:40:07 +0000 | [diff] [blame] | 290 | bool rhsNeg = RHS.isNegative(); |
Reid Spencer | a41e93b | 2007-02-25 19:32:03 +0000 | [diff] [blame] | 291 | |
Pete Cooper | d6e6bf1 | 2016-05-26 17:40:07 +0000 | [diff] [blame] | 292 | // If the sign bits don't match, then (LHS < RHS) if LHS is negative |
| 293 | if (lhsNeg != rhsNeg) |
Craig Topper | 1dc8fc8 | 2017-04-21 16:13:15 +0000 | [diff] [blame] | 294 | return lhsNeg ? -1 : 1; |
Pete Cooper | d6e6bf1 | 2016-05-26 17:40:07 +0000 | [diff] [blame] | 295 | |
Simon Pilgrim | 0099beb | 2017-03-09 13:57:04 +0000 | [diff] [blame] | 296 | // Otherwise we can just use an unsigned comparison, because even negative |
Pete Cooper | d6e6bf1 | 2016-05-26 17:40:07 +0000 | [diff] [blame] | 297 | // numbers compare correctly this way if both have the same signed-ness. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 298 | return tcCompare(U.pVal, RHS.U.pVal, getNumWords()); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Craig Topper | bafdd03 | 2017-03-07 01:56:01 +0000 | [diff] [blame] | 301 | void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { |
| 302 | unsigned loWord = whichWord(loBit); |
| 303 | unsigned hiWord = whichWord(hiBit); |
Simon Pilgrim | aed3522 | 2017-02-24 10:15:29 +0000 | [diff] [blame] | 304 | |
Simon Pilgrim | 0099beb | 2017-03-09 13:57:04 +0000 | [diff] [blame] | 305 | // Create an initial mask for the low word with zeros below loBit. |
Craig Topper | 5e11374 | 2017-04-22 06:31:36 +0000 | [diff] [blame] | 306 | uint64_t loMask = WORD_MAX << whichBit(loBit); |
Simon Pilgrim | aed3522 | 2017-02-24 10:15:29 +0000 | [diff] [blame] | 307 | |
Craig Topper | bafdd03 | 2017-03-07 01:56:01 +0000 | [diff] [blame] | 308 | // If hiBit is not aligned, we need a high mask. |
| 309 | unsigned hiShiftAmt = whichBit(hiBit); |
| 310 | if (hiShiftAmt != 0) { |
| 311 | // Create a high mask with zeros above hiBit. |
Craig Topper | 5e11374 | 2017-04-22 06:31:36 +0000 | [diff] [blame] | 312 | uint64_t hiMask = WORD_MAX >> (APINT_BITS_PER_WORD - hiShiftAmt); |
Craig Topper | bafdd03 | 2017-03-07 01:56:01 +0000 | [diff] [blame] | 313 | // If loWord and hiWord are equal, then we combine the masks. Otherwise, |
| 314 | // set the bits in hiWord. |
| 315 | if (hiWord == loWord) |
| 316 | loMask &= hiMask; |
| 317 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 318 | U.pVal[hiWord] |= hiMask; |
Simon Pilgrim | aed3522 | 2017-02-24 10:15:29 +0000 | [diff] [blame] | 319 | } |
Craig Topper | bafdd03 | 2017-03-07 01:56:01 +0000 | [diff] [blame] | 320 | // Apply the mask to the low word. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 321 | U.pVal[loWord] |= loMask; |
Craig Topper | bafdd03 | 2017-03-07 01:56:01 +0000 | [diff] [blame] | 322 | |
| 323 | // Fill any words between loWord and hiWord with all ones. |
| 324 | for (unsigned word = loWord + 1; word < hiWord; ++word) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 325 | U.pVal[word] = WORD_MAX; |
Simon Pilgrim | aed3522 | 2017-02-24 10:15:29 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 328 | /// @brief Toggle every bit to its opposite value. |
Craig Topper | afc9e35 | 2017-03-27 17:10:21 +0000 | [diff] [blame] | 329 | void APInt::flipAllBitsSlowCase() { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 330 | tcComplement(U.pVal, getNumWords()); |
Craig Topper | afc9e35 | 2017-03-27 17:10:21 +0000 | [diff] [blame] | 331 | clearUnusedBits(); |
| 332 | } |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 333 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 334 | /// Toggle a given bit to its opposite value whose position is given |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 335 | /// as "bitPosition". |
| 336 | /// @brief Toggles a given bit to its opposite value. |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 337 | void APInt::flipBit(unsigned bitPosition) { |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 338 | assert(bitPosition < BitWidth && "Out of the bit-width range!"); |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 339 | if ((*this)[bitPosition]) clearBit(bitPosition); |
| 340 | else setBit(bitPosition); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Simon Pilgrim | b02667c | 2017-03-10 13:44:32 +0000 | [diff] [blame] | 343 | void APInt::insertBits(const APInt &subBits, unsigned bitPosition) { |
| 344 | unsigned subBitWidth = subBits.getBitWidth(); |
| 345 | assert(0 < subBitWidth && (subBitWidth + bitPosition) <= BitWidth && |
| 346 | "Illegal bit insertion"); |
| 347 | |
| 348 | // Insertion is a direct copy. |
| 349 | if (subBitWidth == BitWidth) { |
| 350 | *this = subBits; |
| 351 | return; |
| 352 | } |
| 353 | |
| 354 | // Single word result can be done as a direct bitmask. |
| 355 | if (isSingleWord()) { |
Craig Topper | 5e11374 | 2017-04-22 06:31:36 +0000 | [diff] [blame] | 356 | uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - subBitWidth); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 357 | U.VAL &= ~(mask << bitPosition); |
| 358 | U.VAL |= (subBits.U.VAL << bitPosition); |
Simon Pilgrim | b02667c | 2017-03-10 13:44:32 +0000 | [diff] [blame] | 359 | return; |
| 360 | } |
| 361 | |
| 362 | unsigned loBit = whichBit(bitPosition); |
| 363 | unsigned loWord = whichWord(bitPosition); |
| 364 | unsigned hi1Word = whichWord(bitPosition + subBitWidth - 1); |
| 365 | |
| 366 | // Insertion within a single word can be done as a direct bitmask. |
| 367 | if (loWord == hi1Word) { |
Craig Topper | 5e11374 | 2017-04-22 06:31:36 +0000 | [diff] [blame] | 368 | uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - subBitWidth); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 369 | U.pVal[loWord] &= ~(mask << loBit); |
| 370 | U.pVal[loWord] |= (subBits.U.VAL << loBit); |
Simon Pilgrim | b02667c | 2017-03-10 13:44:32 +0000 | [diff] [blame] | 371 | return; |
| 372 | } |
| 373 | |
| 374 | // Insert on word boundaries. |
| 375 | if (loBit == 0) { |
| 376 | // Direct copy whole words. |
| 377 | unsigned numWholeSubWords = subBitWidth / APINT_BITS_PER_WORD; |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 378 | memcpy(U.pVal + loWord, subBits.getRawData(), |
Simon Pilgrim | b02667c | 2017-03-10 13:44:32 +0000 | [diff] [blame] | 379 | numWholeSubWords * APINT_WORD_SIZE); |
| 380 | |
| 381 | // Mask+insert remaining bits. |
| 382 | unsigned remainingBits = subBitWidth % APINT_BITS_PER_WORD; |
| 383 | if (remainingBits != 0) { |
Craig Topper | 5e11374 | 2017-04-22 06:31:36 +0000 | [diff] [blame] | 384 | uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - remainingBits); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 385 | U.pVal[hi1Word] &= ~mask; |
| 386 | U.pVal[hi1Word] |= subBits.getWord(subBitWidth - 1); |
Simon Pilgrim | b02667c | 2017-03-10 13:44:32 +0000 | [diff] [blame] | 387 | } |
| 388 | return; |
| 389 | } |
| 390 | |
| 391 | // General case - set/clear individual bits in dst based on src. |
| 392 | // TODO - there is scope for optimization here, but at the moment this code |
| 393 | // path is barely used so prefer readability over performance. |
| 394 | for (unsigned i = 0; i != subBitWidth; ++i) { |
| 395 | if (subBits[i]) |
| 396 | setBit(bitPosition + i); |
| 397 | else |
| 398 | clearBit(bitPosition + i); |
| 399 | } |
| 400 | } |
| 401 | |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 402 | APInt APInt::extractBits(unsigned numBits, unsigned bitPosition) const { |
| 403 | assert(numBits > 0 && "Can't extract zero bits"); |
| 404 | assert(bitPosition < BitWidth && (numBits + bitPosition) <= BitWidth && |
| 405 | "Illegal bit extraction"); |
| 406 | |
| 407 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 408 | return APInt(numBits, U.VAL >> bitPosition); |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 409 | |
| 410 | unsigned loBit = whichBit(bitPosition); |
| 411 | unsigned loWord = whichWord(bitPosition); |
| 412 | unsigned hiWord = whichWord(bitPosition + numBits - 1); |
| 413 | |
| 414 | // Single word result extracting bits from a single word source. |
| 415 | if (loWord == hiWord) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 416 | return APInt(numBits, U.pVal[loWord] >> loBit); |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 417 | |
| 418 | // Extracting bits that start on a source word boundary can be done |
| 419 | // as a fast memory copy. |
| 420 | if (loBit == 0) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 421 | return APInt(numBits, makeArrayRef(U.pVal + loWord, 1 + hiWord - loWord)); |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 422 | |
| 423 | // General case - shift + copy source words directly into place. |
| 424 | APInt Result(numBits, 0); |
| 425 | unsigned NumSrcWords = getNumWords(); |
| 426 | unsigned NumDstWords = Result.getNumWords(); |
| 427 | |
| 428 | for (unsigned word = 0; word < NumDstWords; ++word) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 429 | uint64_t w0 = U.pVal[loWord + word]; |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 430 | uint64_t w1 = |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 431 | (loWord + word + 1) < NumSrcWords ? U.pVal[loWord + word + 1] : 0; |
| 432 | Result.U.pVal[word] = (w0 >> loBit) | (w1 << (APINT_BITS_PER_WORD - loBit)); |
Simon Pilgrim | 0f5fb5f | 2017-02-25 20:01:58 +0000 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | return Result.clearUnusedBits(); |
| 436 | } |
| 437 | |
Benjamin Kramer | 92d8998 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 438 | unsigned APInt::getBitsNeeded(StringRef str, uint8_t radix) { |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 439 | assert(!str.empty() && "Invalid string length"); |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 440 | assert((radix == 10 || radix == 8 || radix == 16 || radix == 2 || |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 441 | radix == 36) && |
| 442 | "Radix should be 2, 8, 10, 16, or 36!"); |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 443 | |
| 444 | size_t slen = str.size(); |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 445 | |
Eric Christopher | 43a1dec | 2009-08-21 04:10:31 +0000 | [diff] [blame] | 446 | // Each computation below needs to know if it's negative. |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 447 | StringRef::iterator p = str.begin(); |
Eric Christopher | 43a1dec | 2009-08-21 04:10:31 +0000 | [diff] [blame] | 448 | unsigned isNegative = *p == '-'; |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 449 | if (*p == '-' || *p == '+') { |
| 450 | p++; |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 451 | slen--; |
Eric Christopher | 43a1dec | 2009-08-21 04:10:31 +0000 | [diff] [blame] | 452 | assert(slen && "String is only a sign, needs a value."); |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 453 | } |
Eric Christopher | 43a1dec | 2009-08-21 04:10:31 +0000 | [diff] [blame] | 454 | |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 455 | // For radixes of power-of-two values, the bits required is accurately and |
| 456 | // easily computed |
| 457 | if (radix == 2) |
| 458 | return slen + isNegative; |
| 459 | if (radix == 8) |
| 460 | return slen * 3 + isNegative; |
| 461 | if (radix == 16) |
| 462 | return slen * 4 + isNegative; |
| 463 | |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 464 | // FIXME: base 36 |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 465 | |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 466 | // This is grossly inefficient but accurate. We could probably do something |
| 467 | // with a computation of roughly slen*64/20 and then adjust by the value of |
| 468 | // the first few digits. But, I'm not sure how accurate that could be. |
| 469 | |
| 470 | // Compute a sufficient number of bits that is always large enough but might |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 471 | // be too large. This avoids the assertion in the constructor. This |
| 472 | // calculation doesn't work appropriately for the numbers 0-9, so just use 4 |
| 473 | // bits in that case. |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 474 | unsigned sufficient |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 475 | = radix == 10? (slen == 1 ? 4 : slen * 64/18) |
| 476 | : (slen == 1 ? 7 : slen * 16/3); |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 477 | |
| 478 | // Convert to the actual binary value. |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 479 | APInt tmp(sufficient, StringRef(p, slen), radix); |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 480 | |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 481 | // Compute how many bits are required. If the log is infinite, assume we need |
| 482 | // just bit. |
| 483 | unsigned log = tmp.logBase2(); |
| 484 | if (log == (unsigned)-1) { |
| 485 | return isNegative + 1; |
| 486 | } else { |
| 487 | return isNegative + log + 1; |
| 488 | } |
Reid Spencer | 9329e7b | 2007-04-13 19:19:07 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Chandler Carruth | 71bd7d1 | 2012-03-04 12:02:57 +0000 | [diff] [blame] | 491 | hash_code llvm::hash_value(const APInt &Arg) { |
| 492 | if (Arg.isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 493 | return hash_combine(Arg.U.VAL); |
Reid Spencer | b2bc985 | 2007-02-26 21:02:27 +0000 | [diff] [blame] | 494 | |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 495 | return hash_combine_range(Arg.U.pVal, Arg.U.pVal + Arg.getNumWords()); |
Reid Spencer | b2bc985 | 2007-02-26 21:02:27 +0000 | [diff] [blame] | 496 | } |
| 497 | |
Benjamin Kramer | b4b5150 | 2015-03-25 16:49:59 +0000 | [diff] [blame] | 498 | bool APInt::isSplat(unsigned SplatSizeInBits) const { |
| 499 | assert(getBitWidth() % SplatSizeInBits == 0 && |
| 500 | "SplatSizeInBits must divide width!"); |
| 501 | // We can check that all parts of an integer are equal by making use of a |
| 502 | // little trick: rotate and check if it's still the same value. |
| 503 | return *this == rotl(SplatSizeInBits); |
| 504 | } |
| 505 | |
Pawel Bylica | 6eeeac7 | 2015-04-06 13:31:39 +0000 | [diff] [blame] | 506 | /// This function returns the high "numBits" bits of this APInt. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 507 | APInt APInt::getHiBits(unsigned numBits) const { |
Craig Topper | e7e3560 | 2017-03-31 18:48:14 +0000 | [diff] [blame] | 508 | return this->lshr(BitWidth - numBits); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 509 | } |
| 510 | |
Pawel Bylica | 6eeeac7 | 2015-04-06 13:31:39 +0000 | [diff] [blame] | 511 | /// This function returns the low "numBits" bits of this APInt. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 512 | APInt APInt::getLoBits(unsigned numBits) const { |
Craig Topper | e7e3560 | 2017-03-31 18:48:14 +0000 | [diff] [blame] | 513 | APInt Result(getLowBitsSet(BitWidth, numBits)); |
| 514 | Result &= *this; |
| 515 | return Result; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Craig Topper | 9881bd9 | 2017-05-02 06:32:27 +0000 | [diff] [blame] | 518 | /// Return a value containing V broadcasted over NewLen bits. |
| 519 | APInt APInt::getSplat(unsigned NewLen, const APInt &V) { |
| 520 | assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); |
| 521 | |
| 522 | APInt Val = V.zextOrSelf(NewLen); |
| 523 | for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) |
| 524 | Val |= Val << I; |
| 525 | |
| 526 | return Val; |
| 527 | } |
| 528 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 529 | unsigned APInt::countLeadingZerosSlowCase() const { |
Matthias Braun | a6be4e8 | 2016-02-15 20:06:22 +0000 | [diff] [blame] | 530 | unsigned Count = 0; |
| 531 | for (int i = getNumWords()-1; i >= 0; --i) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 532 | uint64_t V = U.pVal[i]; |
Matthias Braun | a6be4e8 | 2016-02-15 20:06:22 +0000 | [diff] [blame] | 533 | if (V == 0) |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 534 | Count += APINT_BITS_PER_WORD; |
| 535 | else { |
Matthias Braun | a6be4e8 | 2016-02-15 20:06:22 +0000 | [diff] [blame] | 536 | Count += llvm::countLeadingZeros(V); |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 537 | break; |
Reid Spencer | 74cf82e | 2007-02-21 00:29:48 +0000 | [diff] [blame] | 538 | } |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 539 | } |
Matthias Braun | a6be4e8 | 2016-02-15 20:06:22 +0000 | [diff] [blame] | 540 | // Adjust for unused bits in the most significant word (they are zero). |
| 541 | unsigned Mod = BitWidth % APINT_BITS_PER_WORD; |
| 542 | Count -= Mod > 0 ? APINT_BITS_PER_WORD - Mod : 0; |
John McCall | df951bd | 2010-02-03 03:42:44 +0000 | [diff] [blame] | 543 | return Count; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 546 | unsigned APInt::countLeadingOnes() const { |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 547 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 548 | return llvm::countLeadingOnes(U.VAL << (APINT_BITS_PER_WORD - BitWidth)); |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 549 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 550 | unsigned highWordBits = BitWidth % APINT_BITS_PER_WORD; |
Torok Edwin | ec39eb8 | 2009-01-27 18:06:03 +0000 | [diff] [blame] | 551 | unsigned shift; |
| 552 | if (!highWordBits) { |
| 553 | highWordBits = APINT_BITS_PER_WORD; |
| 554 | shift = 0; |
| 555 | } else { |
| 556 | shift = APINT_BITS_PER_WORD - highWordBits; |
| 557 | } |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 558 | int i = getNumWords() - 1; |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 559 | unsigned Count = llvm::countLeadingOnes(U.pVal[i] << shift); |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 560 | if (Count == highWordBits) { |
| 561 | for (i--; i >= 0; --i) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 562 | if (U.pVal[i] == WORD_MAX) |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 563 | Count += APINT_BITS_PER_WORD; |
| 564 | else { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 565 | Count += llvm::countLeadingOnes(U.pVal[i]); |
Reid Spencer | 31acef5 | 2007-02-27 21:59:26 +0000 | [diff] [blame] | 566 | break; |
| 567 | } |
| 568 | } |
| 569 | } |
| 570 | return Count; |
| 571 | } |
| 572 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 573 | unsigned APInt::countTrailingZeros() const { |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 574 | if (isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 575 | return std::min(unsigned(llvm::countTrailingZeros(U.VAL)), BitWidth); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 576 | unsigned Count = 0; |
| 577 | unsigned i = 0; |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 578 | for (; i < getNumWords() && U.pVal[i] == 0; ++i) |
Reid Spencer | aa8dcfe | 2007-02-26 07:44:38 +0000 | [diff] [blame] | 579 | Count += APINT_BITS_PER_WORD; |
| 580 | if (i < getNumWords()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 581 | Count += llvm::countTrailingZeros(U.pVal[i]); |
Chris Lattner | c2c4c74 | 2007-11-23 22:36:25 +0000 | [diff] [blame] | 582 | return std::min(Count, BitWidth); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 585 | unsigned APInt::countTrailingOnesSlowCase() const { |
| 586 | unsigned Count = 0; |
| 587 | unsigned i = 0; |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 588 | for (; i < getNumWords() && U.pVal[i] == WORD_MAX; ++i) |
Dan Gohman | 8b4fa9d | 2008-02-13 21:11:05 +0000 | [diff] [blame] | 589 | Count += APINT_BITS_PER_WORD; |
| 590 | if (i < getNumWords()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 591 | Count += llvm::countTrailingOnes(U.pVal[i]); |
Craig Topper | 3a29e3b8 | 2017-04-22 19:59:11 +0000 | [diff] [blame] | 592 | assert(Count <= BitWidth); |
| 593 | return Count; |
Dan Gohman | 8b4fa9d | 2008-02-13 21:11:05 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 596 | unsigned APInt::countPopulationSlowCase() const { |
| 597 | unsigned Count = 0; |
| 598 | for (unsigned i = 0; i < getNumWords(); ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 599 | Count += llvm::countPopulation(U.pVal[i]); |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 600 | return Count; |
| 601 | } |
| 602 | |
Craig Topper | baa392e | 2017-04-20 02:11:27 +0000 | [diff] [blame] | 603 | bool APInt::intersectsSlowCase(const APInt &RHS) const { |
| 604 | for (unsigned i = 0, e = getNumWords(); i != e; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 605 | if ((U.pVal[i] & RHS.U.pVal[i]) != 0) |
Craig Topper | baa392e | 2017-04-20 02:11:27 +0000 | [diff] [blame] | 606 | return true; |
| 607 | |
| 608 | return false; |
| 609 | } |
| 610 | |
Craig Topper | a8129a1 | 2017-04-20 16:17:13 +0000 | [diff] [blame] | 611 | bool APInt::isSubsetOfSlowCase(const APInt &RHS) const { |
| 612 | for (unsigned i = 0, e = getNumWords(); i != e; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 613 | if ((U.pVal[i] & ~RHS.U.pVal[i]) != 0) |
Craig Topper | a8129a1 | 2017-04-20 16:17:13 +0000 | [diff] [blame] | 614 | return false; |
| 615 | |
| 616 | return true; |
| 617 | } |
| 618 | |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 619 | APInt APInt::byteSwap() const { |
| 620 | assert(BitWidth >= 16 && BitWidth % 16 == 0 && "Cannot byteswap!"); |
| 621 | if (BitWidth == 16) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 622 | return APInt(BitWidth, ByteSwap_16(uint16_t(U.VAL))); |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 623 | if (BitWidth == 32) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 624 | return APInt(BitWidth, ByteSwap_32(unsigned(U.VAL))); |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 625 | if (BitWidth == 48) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 626 | unsigned Tmp1 = unsigned(U.VAL >> 16); |
Zhou Sheng | cfa2ac0 | 2007-02-15 06:36:31 +0000 | [diff] [blame] | 627 | Tmp1 = ByteSwap_32(Tmp1); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 628 | uint16_t Tmp2 = uint16_t(U.VAL); |
Zhou Sheng | cfa2ac0 | 2007-02-15 06:36:31 +0000 | [diff] [blame] | 629 | Tmp2 = ByteSwap_16(Tmp2); |
Jeff Cohen | e06855e | 2007-03-20 20:42:36 +0000 | [diff] [blame] | 630 | return APInt(BitWidth, (uint64_t(Tmp2) << 32) | Tmp1); |
Zhou Sheng | cfa2ac0 | 2007-02-15 06:36:31 +0000 | [diff] [blame] | 631 | } |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 632 | if (BitWidth == 64) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 633 | return APInt(BitWidth, ByteSwap_64(U.VAL)); |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 634 | |
| 635 | APInt Result(getNumWords() * APINT_BITS_PER_WORD, 0); |
| 636 | for (unsigned I = 0, N = getNumWords(); I != N; ++I) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 637 | Result.U.pVal[I] = ByteSwap_64(U.pVal[N - I - 1]); |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 638 | if (Result.BitWidth != BitWidth) { |
Richard Smith | 55bd375 | 2017-04-13 20:29:59 +0000 | [diff] [blame] | 639 | Result.lshrInPlace(Result.BitWidth - BitWidth); |
Richard Smith | 4f9a808 | 2011-11-23 21:33:37 +0000 | [diff] [blame] | 640 | Result.BitWidth = BitWidth; |
| 641 | } |
| 642 | return Result; |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 645 | APInt APInt::reverseBits() const { |
| 646 | switch (BitWidth) { |
| 647 | case 64: |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 648 | return APInt(BitWidth, llvm::reverseBits<uint64_t>(U.VAL)); |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 649 | case 32: |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 650 | return APInt(BitWidth, llvm::reverseBits<uint32_t>(U.VAL)); |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 651 | case 16: |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 652 | return APInt(BitWidth, llvm::reverseBits<uint16_t>(U.VAL)); |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 653 | case 8: |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 654 | return APInt(BitWidth, llvm::reverseBits<uint8_t>(U.VAL)); |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 655 | default: |
| 656 | break; |
| 657 | } |
| 658 | |
| 659 | APInt Val(*this); |
Craig Topper | 9eaef07 | 2017-04-18 05:02:21 +0000 | [diff] [blame] | 660 | APInt Reversed(BitWidth, 0); |
| 661 | unsigned S = BitWidth; |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 662 | |
Craig Topper | 9eaef07 | 2017-04-18 05:02:21 +0000 | [diff] [blame] | 663 | for (; Val != 0; Val.lshrInPlace(1)) { |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 664 | Reversed <<= 1; |
Craig Topper | 9eaef07 | 2017-04-18 05:02:21 +0000 | [diff] [blame] | 665 | Reversed |= Val[0]; |
Matt Arsenault | 155dda9 | 2016-03-21 15:00:35 +0000 | [diff] [blame] | 666 | --S; |
| 667 | } |
| 668 | |
| 669 | Reversed <<= S; |
| 670 | return Reversed; |
| 671 | } |
| 672 | |
Craig Topper | 278ebd2 | 2017-04-01 20:30:57 +0000 | [diff] [blame] | 673 | APInt llvm::APIntOps::GreatestCommonDivisor(APInt A, APInt B) { |
Richard Smith | 55bd375 | 2017-04-13 20:29:59 +0000 | [diff] [blame] | 674 | // Fast-path a common case. |
| 675 | if (A == B) return A; |
| 676 | |
| 677 | // Corner cases: if either operand is zero, the other is the gcd. |
| 678 | if (!A) return B; |
| 679 | if (!B) return A; |
| 680 | |
| 681 | // Count common powers of 2 and remove all other powers of 2. |
| 682 | unsigned Pow2; |
| 683 | { |
| 684 | unsigned Pow2_A = A.countTrailingZeros(); |
| 685 | unsigned Pow2_B = B.countTrailingZeros(); |
| 686 | if (Pow2_A > Pow2_B) { |
| 687 | A.lshrInPlace(Pow2_A - Pow2_B); |
| 688 | Pow2 = Pow2_B; |
| 689 | } else if (Pow2_B > Pow2_A) { |
| 690 | B.lshrInPlace(Pow2_B - Pow2_A); |
| 691 | Pow2 = Pow2_A; |
| 692 | } else { |
| 693 | Pow2 = Pow2_A; |
| 694 | } |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 695 | } |
Richard Smith | 55bd375 | 2017-04-13 20:29:59 +0000 | [diff] [blame] | 696 | |
| 697 | // Both operands are odd multiples of 2^Pow_2: |
| 698 | // |
| 699 | // gcd(a, b) = gcd(|a - b| / 2^i, min(a, b)) |
| 700 | // |
| 701 | // This is a modified version of Stein's algorithm, taking advantage of |
| 702 | // efficient countTrailingZeros(). |
| 703 | while (A != B) { |
| 704 | if (A.ugt(B)) { |
| 705 | A -= B; |
| 706 | A.lshrInPlace(A.countTrailingZeros() - Pow2); |
| 707 | } else { |
| 708 | B -= A; |
| 709 | B.lshrInPlace(B.countTrailingZeros() - Pow2); |
| 710 | } |
| 711 | } |
| 712 | |
Zhou Sheng | dac6378 | 2007-02-06 03:00:16 +0000 | [diff] [blame] | 713 | return A; |
| 714 | } |
Chris Lattner | 28cbd1d | 2007-02-06 05:38:37 +0000 | [diff] [blame] | 715 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 716 | APInt llvm::APIntOps::RoundDoubleToAPInt(double Double, unsigned width) { |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 717 | union { |
| 718 | double D; |
| 719 | uint64_t I; |
| 720 | } T; |
| 721 | T.D = Double; |
Reid Spencer | 974551a | 2007-02-27 01:28:10 +0000 | [diff] [blame] | 722 | |
| 723 | // Get the sign bit from the highest order bit |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 724 | bool isNeg = T.I >> 63; |
Reid Spencer | 974551a | 2007-02-27 01:28:10 +0000 | [diff] [blame] | 725 | |
| 726 | // Get the 11-bit exponent and adjust for the 1023 bit bias |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 727 | int64_t exp = ((T.I >> 52) & 0x7ff) - 1023; |
Reid Spencer | 974551a | 2007-02-27 01:28:10 +0000 | [diff] [blame] | 728 | |
| 729 | // If the exponent is negative, the value is < 0 so just return 0. |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 730 | if (exp < 0) |
Reid Spencer | 66d0d57 | 2007-02-28 01:30:08 +0000 | [diff] [blame] | 731 | return APInt(width, 0u); |
Reid Spencer | 974551a | 2007-02-27 01:28:10 +0000 | [diff] [blame] | 732 | |
| 733 | // Extract the mantissa by clearing the top 12 bits (sign + exponent). |
| 734 | uint64_t mantissa = (T.I & (~0ULL >> 12)) | 1ULL << 52; |
| 735 | |
| 736 | // If the exponent doesn't shift all bits out of the mantissa |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 737 | if (exp < 52) |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 738 | return isNeg ? -APInt(width, mantissa >> (52 - exp)) : |
Reid Spencer | 54abdcf | 2007-02-27 18:23:40 +0000 | [diff] [blame] | 739 | APInt(width, mantissa >> (52 - exp)); |
| 740 | |
| 741 | // If the client didn't provide enough bits for us to shift the mantissa into |
| 742 | // then the result is undefined, just return 0 |
| 743 | if (width <= exp - 52) |
| 744 | return APInt(width, 0); |
Reid Spencer | 974551a | 2007-02-27 01:28:10 +0000 | [diff] [blame] | 745 | |
| 746 | // Otherwise, we have to shift the mantissa bits up to the right location |
Reid Spencer | 54abdcf | 2007-02-27 18:23:40 +0000 | [diff] [blame] | 747 | APInt Tmp(width, mantissa); |
Craig Topper | 24e7101 | 2017-04-28 03:36:24 +0000 | [diff] [blame] | 748 | Tmp <<= (unsigned)exp - 52; |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 749 | return isNeg ? -Tmp : Tmp; |
| 750 | } |
| 751 | |
Pawel Bylica | 6eeeac7 | 2015-04-06 13:31:39 +0000 | [diff] [blame] | 752 | /// This function converts this APInt to a double. |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 753 | /// The layout for double is as following (IEEE Standard 754): |
| 754 | /// -------------------------------------- |
| 755 | /// | Sign Exponent Fraction Bias | |
| 756 | /// |-------------------------------------- | |
| 757 | /// | 1[63] 11[62-52] 52[51-00] 1023 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 758 | /// -------------------------------------- |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 759 | double APInt::roundToDouble(bool isSigned) const { |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 760 | |
| 761 | // Handle the simple case where the value is contained in one uint64_t. |
Dale Johannesen | 54be785 | 2009-08-12 18:04:11 +0000 | [diff] [blame] | 762 | // It is wrong to optimize getWord(0) to VAL; there might be more than one word. |
Reid Spencer | be4ddf6 | 2007-02-18 20:09:41 +0000 | [diff] [blame] | 763 | if (isSingleWord() || getActiveBits() <= APINT_BITS_PER_WORD) { |
| 764 | if (isSigned) { |
David Majnemer | 0399226 | 2016-06-24 21:15:36 +0000 | [diff] [blame] | 765 | int64_t sext = SignExtend64(getWord(0), BitWidth); |
Reid Spencer | be4ddf6 | 2007-02-18 20:09:41 +0000 | [diff] [blame] | 766 | return double(sext); |
| 767 | } else |
Dale Johannesen | 34c08bb | 2009-08-12 17:42:34 +0000 | [diff] [blame] | 768 | return double(getWord(0)); |
Reid Spencer | be4ddf6 | 2007-02-18 20:09:41 +0000 | [diff] [blame] | 769 | } |
| 770 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 771 | // Determine if the value is negative. |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 772 | bool isNeg = isSigned ? (*this)[BitWidth-1] : false; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 773 | |
| 774 | // Construct the absolute value if we're negative. |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 775 | APInt Tmp(isNeg ? -(*this) : (*this)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 776 | |
| 777 | // Figure out how many bits we're using. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 778 | unsigned n = Tmp.getActiveBits(); |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 779 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 780 | // The exponent (without bias normalization) is just the number of bits |
| 781 | // we are using. Note that the sign bit is gone since we constructed the |
| 782 | // absolute value. |
| 783 | uint64_t exp = n; |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 784 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 785 | // Return infinity for exponent overflow |
| 786 | if (exp > 1023) { |
| 787 | if (!isSigned || !isNeg) |
Jeff Cohen | e06855e | 2007-03-20 20:42:36 +0000 | [diff] [blame] | 788 | return std::numeric_limits<double>::infinity(); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 789 | else |
Jeff Cohen | e06855e | 2007-03-20 20:42:36 +0000 | [diff] [blame] | 790 | return -std::numeric_limits<double>::infinity(); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 791 | } |
| 792 | exp += 1023; // Increment for 1023 bias |
| 793 | |
| 794 | // Number of bits in mantissa is 52. To obtain the mantissa value, we must |
| 795 | // extract the high 52 bits from the correct words in pVal. |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 796 | uint64_t mantissa; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 797 | unsigned hiWord = whichWord(n-1); |
| 798 | if (hiWord == 0) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 799 | mantissa = Tmp.U.pVal[0]; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 800 | if (n > 52) |
| 801 | mantissa >>= n - 52; // shift down, we want the top 52 bits. |
| 802 | } else { |
| 803 | assert(hiWord > 0 && "huh?"); |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 804 | uint64_t hibits = Tmp.U.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD); |
| 805 | uint64_t lobits = Tmp.U.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 806 | mantissa = hibits | lobits; |
| 807 | } |
| 808 | |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 809 | // The leading bit of mantissa is implicit, so get rid of it. |
Reid Spencer | fbd48a5 | 2007-02-18 00:44:22 +0000 | [diff] [blame] | 810 | uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0; |
Zhou Sheng | d707d63 | 2007-02-12 20:02:55 +0000 | [diff] [blame] | 811 | union { |
| 812 | double D; |
| 813 | uint64_t I; |
| 814 | } T; |
| 815 | T.I = sign | (exp << 52) | mantissa; |
| 816 | return T.D; |
| 817 | } |
| 818 | |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 819 | // Truncate to new width. |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 820 | APInt APInt::trunc(unsigned width) const { |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 821 | assert(width < BitWidth && "Invalid APInt Truncate request"); |
Chris Lattner | 1ac3e25 | 2008-08-20 17:02:31 +0000 | [diff] [blame] | 822 | assert(width && "Can't truncate to 0 bits"); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 823 | |
| 824 | if (width <= APINT_BITS_PER_WORD) |
| 825 | return APInt(width, getRawData()[0]); |
| 826 | |
| 827 | APInt Result(getMemory(getNumWords(width)), width); |
| 828 | |
| 829 | // Copy full words. |
| 830 | unsigned i; |
| 831 | for (i = 0; i != width / APINT_BITS_PER_WORD; i++) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 832 | Result.U.pVal[i] = U.pVal[i]; |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 833 | |
| 834 | // Truncate and copy any partial word. |
| 835 | unsigned bits = (0 - width) % APINT_BITS_PER_WORD; |
| 836 | if (bits != 0) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 837 | Result.U.pVal[i] = U.pVal[i] << bits >> bits; |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 838 | |
| 839 | return Result; |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | // Sign extend to a new width. |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 843 | APInt APInt::sext(unsigned Width) const { |
| 844 | assert(Width > BitWidth && "Invalid APInt SignExtend request"); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 845 | |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 846 | if (Width <= APINT_BITS_PER_WORD) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 847 | return APInt(Width, SignExtend64(U.VAL, BitWidth)); |
Reid Spencer | b6b5cc3 | 2007-02-25 23:44:53 +0000 | [diff] [blame] | 848 | |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 849 | APInt Result(getMemory(getNumWords(Width)), Width); |
Reid Spencer | b6b5cc3 | 2007-02-25 23:44:53 +0000 | [diff] [blame] | 850 | |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 851 | // Copy words. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 852 | std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); |
Reid Spencer | b6b5cc3 | 2007-02-25 23:44:53 +0000 | [diff] [blame] | 853 | |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 854 | // Sign extend the last word since there may be unused bits in the input. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 855 | Result.U.pVal[getNumWords() - 1] = |
| 856 | SignExtend64(Result.U.pVal[getNumWords() - 1], |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 857 | ((BitWidth - 1) % APINT_BITS_PER_WORD) + 1); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 858 | |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 859 | // Fill with sign bits. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 860 | std::memset(Result.U.pVal + getNumWords(), isNegative() ? -1 : 0, |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 861 | (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); |
| 862 | Result.clearUnusedBits(); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 863 | return Result; |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | // Zero extend to a new width. |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 867 | APInt APInt::zext(unsigned width) const { |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 868 | assert(width > BitWidth && "Invalid APInt ZeroExtend request"); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 869 | |
| 870 | if (width <= APINT_BITS_PER_WORD) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 871 | return APInt(width, U.VAL); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 872 | |
| 873 | APInt Result(getMemory(getNumWords(width)), width); |
| 874 | |
| 875 | // Copy words. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 876 | std::memcpy(Result.U.pVal, getRawData(), getNumWords() * APINT_WORD_SIZE); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 877 | |
| 878 | // Zero remaining words. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 879 | std::memset(Result.U.pVal + getNumWords(), 0, |
Craig Topper | 1dec281 | 2017-04-24 17:37:10 +0000 | [diff] [blame] | 880 | (Result.getNumWords() - getNumWords()) * APINT_WORD_SIZE); |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 881 | |
| 882 | return Result; |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 883 | } |
| 884 | |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 885 | APInt APInt::zextOrTrunc(unsigned width) const { |
Reid Spencer | 742d170 | 2007-03-01 17:15:32 +0000 | [diff] [blame] | 886 | if (BitWidth < width) |
| 887 | return zext(width); |
| 888 | if (BitWidth > width) |
| 889 | return trunc(width); |
| 890 | return *this; |
| 891 | } |
| 892 | |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 893 | APInt APInt::sextOrTrunc(unsigned width) const { |
Reid Spencer | 742d170 | 2007-03-01 17:15:32 +0000 | [diff] [blame] | 894 | if (BitWidth < width) |
| 895 | return sext(width); |
| 896 | if (BitWidth > width) |
| 897 | return trunc(width); |
| 898 | return *this; |
| 899 | } |
| 900 | |
Rafael Espindola | bb893fe | 2012-01-27 23:33:07 +0000 | [diff] [blame] | 901 | APInt APInt::zextOrSelf(unsigned width) const { |
| 902 | if (BitWidth < width) |
| 903 | return zext(width); |
| 904 | return *this; |
| 905 | } |
| 906 | |
| 907 | APInt APInt::sextOrSelf(unsigned width) const { |
| 908 | if (BitWidth < width) |
| 909 | return sext(width); |
| 910 | return *this; |
| 911 | } |
| 912 | |
Zhou Sheng | e93db8f | 2007-02-09 07:48:24 +0000 | [diff] [blame] | 913 | /// Arithmetic right-shift this APInt by shiftAmt. |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 914 | /// @brief Arithmetic right-shift function. |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 915 | void APInt::ashrInPlace(const APInt &shiftAmt) { |
| 916 | ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | /// Arithmetic right-shift this APInt by shiftAmt. |
| 920 | /// @brief Arithmetic right-shift function. |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 921 | void APInt::ashrSlowCase(unsigned ShiftAmt) { |
| 922 | // Don't bother performing a no-op shift. |
| 923 | if (!ShiftAmt) |
| 924 | return; |
Reid Spencer | 1825dd0 | 2007-03-02 22:39:11 +0000 | [diff] [blame] | 925 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 926 | // Save the original sign bit for later. |
| 927 | bool Negative = isNegative(); |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 928 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 929 | // WordShift is the inter-part shift; BitShift is is intra-part shift. |
| 930 | unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD; |
| 931 | unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; |
Reid Spencer | aa8dcfe | 2007-02-26 07:44:38 +0000 | [diff] [blame] | 932 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 933 | unsigned WordsToMove = getNumWords() - WordShift; |
| 934 | if (WordsToMove != 0) { |
| 935 | // Sign extend the last word to fill in the unused bits. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 936 | U.pVal[getNumWords() - 1] = SignExtend64( |
| 937 | U.pVal[getNumWords() - 1], ((BitWidth - 1) % APINT_BITS_PER_WORD) + 1); |
Renato Golin | cc4a912 | 2017-04-23 12:02:07 +0000 | [diff] [blame] | 938 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 939 | // Fastpath for moving by whole words. |
| 940 | if (BitShift == 0) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 941 | std::memmove(U.pVal, U.pVal + WordShift, WordsToMove * APINT_WORD_SIZE); |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 942 | } else { |
| 943 | // Move the words containing significant bits. |
| 944 | for (unsigned i = 0; i != WordsToMove - 1; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 945 | U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | |
| 946 | (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); |
Renato Golin | cc4a912 | 2017-04-23 12:02:07 +0000 | [diff] [blame] | 947 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 948 | // Handle the last word which has no high bits to copy. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 949 | U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 950 | // Sign extend one more time. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 951 | U.pVal[WordsToMove - 1] = |
| 952 | SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); |
Chris Lattner | dad2d09 | 2007-05-03 18:15:36 +0000 | [diff] [blame] | 953 | } |
Reid Spencer | aa8dcfe | 2007-02-26 07:44:38 +0000 | [diff] [blame] | 954 | } |
| 955 | |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 956 | // Fill in the remainder based on the original sign. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 957 | std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, |
Craig Topper | 8b37326 | 2017-04-24 17:18:47 +0000 | [diff] [blame] | 958 | WordShift * APINT_WORD_SIZE); |
| 959 | clearUnusedBits(); |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 960 | } |
| 961 | |
Zhou Sheng | e93db8f | 2007-02-09 07:48:24 +0000 | [diff] [blame] | 962 | /// Logical right-shift this APInt by shiftAmt. |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 963 | /// @brief Logical right-shift function. |
Craig Topper | fc947bc | 2017-04-18 17:14:21 +0000 | [diff] [blame] | 964 | void APInt::lshrInPlace(const APInt &shiftAmt) { |
| 965 | lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | /// Logical right-shift this APInt by shiftAmt. |
| 969 | /// @brief Logical right-shift function. |
Craig Topper | ae8bd67 | 2017-04-18 19:13:27 +0000 | [diff] [blame] | 970 | void APInt::lshrSlowCase(unsigned ShiftAmt) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 971 | tcShiftRight(U.pVal, getNumWords(), ShiftAmt); |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Zhou Sheng | e93db8f | 2007-02-09 07:48:24 +0000 | [diff] [blame] | 974 | /// Left-shift this APInt by shiftAmt. |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 975 | /// @brief Left-shift function. |
Craig Topper | 24e7101 | 2017-04-28 03:36:24 +0000 | [diff] [blame] | 976 | APInt &APInt::operator<<=(const APInt &shiftAmt) { |
Nick Lewycky | 030c450 | 2009-01-19 17:42:33 +0000 | [diff] [blame] | 977 | // It's undefined behavior in C to shift by BitWidth or greater. |
Craig Topper | 24e7101 | 2017-04-28 03:36:24 +0000 | [diff] [blame] | 978 | *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth); |
| 979 | return *this; |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 980 | } |
| 981 | |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 982 | void APInt::shlSlowCase(unsigned ShiftAmt) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 983 | tcShiftLeft(U.pVal, getNumWords(), ShiftAmt); |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 984 | clearUnusedBits(); |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 985 | } |
| 986 | |
Joey Gouly | 51c0ae5 | 2017-02-07 11:58:22 +0000 | [diff] [blame] | 987 | // Calculate the rotate amount modulo the bit width. |
| 988 | static unsigned rotateModulo(unsigned BitWidth, const APInt &rotateAmt) { |
| 989 | unsigned rotBitWidth = rotateAmt.getBitWidth(); |
| 990 | APInt rot = rotateAmt; |
| 991 | if (rotBitWidth < BitWidth) { |
| 992 | // Extend the rotate APInt, so that the urem doesn't divide by 0. |
| 993 | // e.g. APInt(1, 32) would give APInt(1, 0). |
| 994 | rot = rotateAmt.zext(BitWidth); |
| 995 | } |
| 996 | rot = rot.urem(APInt(rot.getBitWidth(), BitWidth)); |
| 997 | return rot.getLimitedValue(BitWidth); |
| 998 | } |
| 999 | |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 1000 | APInt APInt::rotl(const APInt &rotateAmt) const { |
Joey Gouly | 51c0ae5 | 2017-02-07 11:58:22 +0000 | [diff] [blame] | 1001 | return rotl(rotateModulo(BitWidth, rotateAmt)); |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1004 | APInt APInt::rotl(unsigned rotateAmt) const { |
Eli Friedman | 2aae94f | 2011-12-22 03:15:35 +0000 | [diff] [blame] | 1005 | rotateAmt %= BitWidth; |
Reid Spencer | 98ed7db | 2007-05-14 00:15:28 +0000 | [diff] [blame] | 1006 | if (rotateAmt == 0) |
| 1007 | return *this; |
Eli Friedman | 2aae94f | 2011-12-22 03:15:35 +0000 | [diff] [blame] | 1008 | return shl(rotateAmt) | lshr(BitWidth - rotateAmt); |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 1011 | APInt APInt::rotr(const APInt &rotateAmt) const { |
Joey Gouly | 51c0ae5 | 2017-02-07 11:58:22 +0000 | [diff] [blame] | 1012 | return rotr(rotateModulo(BitWidth, rotateAmt)); |
Dan Gohman | 105c1d4 | 2008-02-29 01:40:47 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1015 | APInt APInt::rotr(unsigned rotateAmt) const { |
Eli Friedman | 2aae94f | 2011-12-22 03:15:35 +0000 | [diff] [blame] | 1016 | rotateAmt %= BitWidth; |
Reid Spencer | 98ed7db | 2007-05-14 00:15:28 +0000 | [diff] [blame] | 1017 | if (rotateAmt == 0) |
| 1018 | return *this; |
Eli Friedman | 2aae94f | 2011-12-22 03:15:35 +0000 | [diff] [blame] | 1019 | return lshr(rotateAmt) | shl(BitWidth - rotateAmt); |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1020 | } |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1021 | |
| 1022 | // Square Root - this method computes and returns the square root of "this". |
| 1023 | // Three mechanisms are used for computation. For small values (<= 5 bits), |
| 1024 | // a table lookup is done. This gets some performance for common cases. For |
| 1025 | // values using less than 52 bits, the value is converted to double and then |
| 1026 | // the libc sqrt function is called. The result is rounded and then converted |
| 1027 | // back to a uint64_t which is then used to construct the result. Finally, |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1028 | // the Babylonian method for computing square roots is used. |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1029 | APInt APInt::sqrt() const { |
| 1030 | |
| 1031 | // Determine the magnitude of the value. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1032 | unsigned magnitude = getActiveBits(); |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1033 | |
| 1034 | // Use a fast table for some small values. This also gets rid of some |
| 1035 | // rounding errors in libc sqrt for small values. |
| 1036 | if (magnitude <= 5) { |
Reid Spencer | 2f6ad4d | 2007-03-01 17:47:31 +0000 | [diff] [blame] | 1037 | static const uint8_t results[32] = { |
Reid Spencer | c8841d2 | 2007-03-01 06:23:32 +0000 | [diff] [blame] | 1038 | /* 0 */ 0, |
| 1039 | /* 1- 2 */ 1, 1, |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1040 | /* 3- 6 */ 2, 2, 2, 2, |
Reid Spencer | c8841d2 | 2007-03-01 06:23:32 +0000 | [diff] [blame] | 1041 | /* 7-12 */ 3, 3, 3, 3, 3, 3, |
| 1042 | /* 13-20 */ 4, 4, 4, 4, 4, 4, 4, 4, |
| 1043 | /* 21-30 */ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, |
| 1044 | /* 31 */ 6 |
| 1045 | }; |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1046 | return APInt(BitWidth, results[ (isSingleWord() ? U.VAL : U.pVal[0]) ]); |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | // If the magnitude of the value fits in less than 52 bits (the precision of |
| 1050 | // an IEEE double precision floating point value), then we can use the |
| 1051 | // libc sqrt function which will probably use a hardware sqrt computation. |
| 1052 | // This should be faster than the algorithm below. |
Jeff Cohen | b622c11 | 2007-03-05 00:00:42 +0000 | [diff] [blame] | 1053 | if (magnitude < 52) { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1054 | return APInt(BitWidth, |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1055 | uint64_t(::round(::sqrt(double(isSingleWord() ? U.VAL |
| 1056 | : U.pVal[0]))))); |
Jeff Cohen | b622c11 | 2007-03-05 00:00:42 +0000 | [diff] [blame] | 1057 | } |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1058 | |
| 1059 | // Okay, all the short cuts are exhausted. We must compute it. The following |
| 1060 | // is a classical Babylonian method for computing the square root. This code |
Sanjay Patel | 4cb54e0 | 2014-09-11 15:41:01 +0000 | [diff] [blame] | 1061 | // was adapted to APInt from a wikipedia article on such computations. |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1062 | // See http://www.wikipedia.org/ and go to the page named |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1063 | // Calculate_an_integer_square_root. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1064 | unsigned nbits = BitWidth, i = 4; |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1065 | APInt testy(BitWidth, 16); |
| 1066 | APInt x_old(BitWidth, 1); |
| 1067 | APInt x_new(BitWidth, 0); |
| 1068 | APInt two(BitWidth, 2); |
| 1069 | |
| 1070 | // Select a good starting value using binary logarithms. |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1071 | for (;; i += 2, testy = testy.shl(2)) |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1072 | if (i >= nbits || this->ule(testy)) { |
| 1073 | x_old = x_old.shl(i / 2); |
| 1074 | break; |
| 1075 | } |
| 1076 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1077 | // Use the Babylonian method to arrive at the integer square root: |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1078 | for (;;) { |
| 1079 | x_new = (this->udiv(x_old) + x_old).udiv(two); |
| 1080 | if (x_old.ule(x_new)) |
| 1081 | break; |
| 1082 | x_old = x_new; |
| 1083 | } |
| 1084 | |
| 1085 | // Make sure we return the closest approximation |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1086 | // NOTE: The rounding calculation below is correct. It will produce an |
Reid Spencer | cf81756 | 2007-03-02 04:21:55 +0000 | [diff] [blame] | 1087 | // off-by-one discrepancy with results from pari/gp. That discrepancy has been |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1088 | // determined to be a rounding issue with pari/gp as it begins to use a |
Reid Spencer | cf81756 | 2007-03-02 04:21:55 +0000 | [diff] [blame] | 1089 | // floating point representation after 192 bits. There are no discrepancies |
| 1090 | // between this algorithm and pari/gp for bit widths < 192 bits. |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1091 | APInt square(x_old * x_old); |
| 1092 | APInt nextSquare((x_old + 1) * (x_old +1)); |
| 1093 | if (this->ult(square)) |
| 1094 | return x_old; |
David Blaikie | 54c9462 | 2011-12-01 20:58:30 +0000 | [diff] [blame] | 1095 | assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); |
| 1096 | APInt midpoint((nextSquare - square).udiv(two)); |
| 1097 | APInt offset(*this - square); |
| 1098 | if (offset.ult(midpoint)) |
| 1099 | return x_old; |
Reid Spencer | d99feaf | 2007-03-01 05:39:56 +0000 | [diff] [blame] | 1100 | return x_old + 1; |
| 1101 | } |
| 1102 | |
Wojciech Matyjewicz | 41b744d | 2008-06-23 19:39:50 +0000 | [diff] [blame] | 1103 | /// Computes the multiplicative inverse of this APInt for a given modulo. The |
| 1104 | /// iterative extended Euclidean algorithm is used to solve for this value, |
| 1105 | /// however we simplify it to speed up calculating only the inverse, and take |
| 1106 | /// advantage of div+rem calculations. We also use some tricks to avoid copying |
| 1107 | /// (potentially large) APInts around. |
| 1108 | APInt APInt::multiplicativeInverse(const APInt& modulo) const { |
| 1109 | assert(ult(modulo) && "This APInt must be smaller than the modulo"); |
| 1110 | |
| 1111 | // Using the properties listed at the following web page (accessed 06/21/08): |
| 1112 | // http://www.numbertheory.org/php/euclid.html |
| 1113 | // (especially the properties numbered 3, 4 and 9) it can be proved that |
| 1114 | // BitWidth bits suffice for all the computations in the algorithm implemented |
| 1115 | // below. More precisely, this number of bits suffice if the multiplicative |
| 1116 | // inverse exists, but may not suffice for the general extended Euclidean |
| 1117 | // algorithm. |
| 1118 | |
| 1119 | APInt r[2] = { modulo, *this }; |
| 1120 | APInt t[2] = { APInt(BitWidth, 0), APInt(BitWidth, 1) }; |
| 1121 | APInt q(BitWidth, 0); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1122 | |
Wojciech Matyjewicz | 41b744d | 2008-06-23 19:39:50 +0000 | [diff] [blame] | 1123 | unsigned i; |
| 1124 | for (i = 0; r[i^1] != 0; i ^= 1) { |
| 1125 | // An overview of the math without the confusing bit-flipping: |
| 1126 | // q = r[i-2] / r[i-1] |
| 1127 | // r[i] = r[i-2] % r[i-1] |
| 1128 | // t[i] = t[i-2] - t[i-1] * q |
| 1129 | udivrem(r[i], r[i^1], q, r[i]); |
| 1130 | t[i] -= t[i^1] * q; |
| 1131 | } |
| 1132 | |
| 1133 | // If this APInt and the modulo are not coprime, there is no multiplicative |
| 1134 | // inverse, so return 0. We check this by looking at the next-to-last |
| 1135 | // remainder, which is the gcd(*this,modulo) as calculated by the Euclidean |
| 1136 | // algorithm. |
| 1137 | if (r[i] != 1) |
| 1138 | return APInt(BitWidth, 0); |
| 1139 | |
| 1140 | // The next-to-last t is the multiplicative inverse. However, we are |
| 1141 | // interested in a positive inverse. Calcuate a positive one from a negative |
| 1142 | // one if necessary. A simple addition of the modulo suffices because |
Wojciech Matyjewicz | f0d21cd | 2008-07-20 15:55:14 +0000 | [diff] [blame] | 1143 | // abs(t[i]) is known to be less than *this/2 (see the link above). |
Wojciech Matyjewicz | 41b744d | 2008-06-23 19:39:50 +0000 | [diff] [blame] | 1144 | return t[i].isNegative() ? t[i] + modulo : t[i]; |
| 1145 | } |
| 1146 | |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1147 | /// Calculate the magic numbers required to implement a signed integer division |
| 1148 | /// by a constant as a sequence of multiplies, adds and shifts. Requires that |
| 1149 | /// the divisor not be 0, 1, or -1. Taken from "Hacker's Delight", Henry S. |
| 1150 | /// Warren, Jr., chapter 10. |
| 1151 | APInt::ms APInt::magic() const { |
| 1152 | const APInt& d = *this; |
| 1153 | unsigned p; |
| 1154 | APInt ad, anc, delta, q1, r1, q2, r2, t; |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1155 | APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1156 | struct ms mag; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1157 | |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1158 | ad = d.abs(); |
| 1159 | t = signedMin + (d.lshr(d.getBitWidth() - 1)); |
| 1160 | anc = t - 1 - t.urem(ad); // absolute value of nc |
| 1161 | p = d.getBitWidth() - 1; // initialize p |
| 1162 | q1 = signedMin.udiv(anc); // initialize q1 = 2p/abs(nc) |
| 1163 | r1 = signedMin - q1*anc; // initialize r1 = rem(2p,abs(nc)) |
| 1164 | q2 = signedMin.udiv(ad); // initialize q2 = 2p/abs(d) |
| 1165 | r2 = signedMin - q2*ad; // initialize r2 = rem(2p,abs(d)) |
| 1166 | do { |
| 1167 | p = p + 1; |
| 1168 | q1 = q1<<1; // update q1 = 2p/abs(nc) |
| 1169 | r1 = r1<<1; // update r1 = rem(2p/abs(nc)) |
| 1170 | if (r1.uge(anc)) { // must be unsigned comparison |
| 1171 | q1 = q1 + 1; |
| 1172 | r1 = r1 - anc; |
| 1173 | } |
| 1174 | q2 = q2<<1; // update q2 = 2p/abs(d) |
| 1175 | r2 = r2<<1; // update r2 = rem(2p/abs(d)) |
| 1176 | if (r2.uge(ad)) { // must be unsigned comparison |
| 1177 | q2 = q2 + 1; |
| 1178 | r2 = r2 - ad; |
| 1179 | } |
| 1180 | delta = ad - r2; |
Cameron Zwarich | 8731d0c | 2011-02-21 00:22:02 +0000 | [diff] [blame] | 1181 | } while (q1.ult(delta) || (q1 == delta && r1 == 0)); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1182 | |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1183 | mag.m = q2 + 1; |
| 1184 | if (d.isNegative()) mag.m = -mag.m; // resulting magic number |
| 1185 | mag.s = p - d.getBitWidth(); // resulting shift |
| 1186 | return mag; |
| 1187 | } |
| 1188 | |
| 1189 | /// Calculate the magic numbers required to implement an unsigned integer |
| 1190 | /// division by a constant as a sequence of multiplies, adds and shifts. |
| 1191 | /// Requires that the divisor not be 0. Taken from "Hacker's Delight", Henry |
| 1192 | /// S. Warren, Jr., chapter 10. |
Benjamin Kramer | 09a51ba | 2011-03-17 20:39:06 +0000 | [diff] [blame] | 1193 | /// LeadingZeros can be used to simplify the calculation if the upper bits |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 1194 | /// of the divided value are known zero. |
Benjamin Kramer | 09a51ba | 2011-03-17 20:39:06 +0000 | [diff] [blame] | 1195 | APInt::mu APInt::magicu(unsigned LeadingZeros) const { |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1196 | const APInt& d = *this; |
| 1197 | unsigned p; |
| 1198 | APInt nc, delta, q1, r1, q2, r2; |
| 1199 | struct mu magu; |
| 1200 | magu.a = 0; // initialize "add" indicator |
Benjamin Kramer | 09a51ba | 2011-03-17 20:39:06 +0000 | [diff] [blame] | 1201 | APInt allOnes = APInt::getAllOnesValue(d.getBitWidth()).lshr(LeadingZeros); |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1202 | APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); |
| 1203 | APInt signedMax = APInt::getSignedMaxValue(d.getBitWidth()); |
| 1204 | |
Benjamin Kramer | 3aab6a8 | 2012-07-11 18:31:59 +0000 | [diff] [blame] | 1205 | nc = allOnes - (allOnes - d).urem(d); |
Jay Foad | fe0c648 | 2009-04-30 10:15:35 +0000 | [diff] [blame] | 1206 | p = d.getBitWidth() - 1; // initialize p |
| 1207 | q1 = signedMin.udiv(nc); // initialize q1 = 2p/nc |
| 1208 | r1 = signedMin - q1*nc; // initialize r1 = rem(2p,nc) |
| 1209 | q2 = signedMax.udiv(d); // initialize q2 = (2p-1)/d |
| 1210 | r2 = signedMax - q2*d; // initialize r2 = rem((2p-1),d) |
| 1211 | do { |
| 1212 | p = p + 1; |
| 1213 | if (r1.uge(nc - r1)) { |
| 1214 | q1 = q1 + q1 + 1; // update q1 |
| 1215 | r1 = r1 + r1 - nc; // update r1 |
| 1216 | } |
| 1217 | else { |
| 1218 | q1 = q1+q1; // update q1 |
| 1219 | r1 = r1+r1; // update r1 |
| 1220 | } |
| 1221 | if ((r2 + 1).uge(d - r2)) { |
| 1222 | if (q2.uge(signedMax)) magu.a = 1; |
| 1223 | q2 = q2+q2 + 1; // update q2 |
| 1224 | r2 = r2+r2 + 1 - d; // update r2 |
| 1225 | } |
| 1226 | else { |
| 1227 | if (q2.uge(signedMin)) magu.a = 1; |
| 1228 | q2 = q2+q2; // update q2 |
| 1229 | r2 = r2+r2 + 1; // update r2 |
| 1230 | } |
| 1231 | delta = d - 1 - r2; |
| 1232 | } while (p < d.getBitWidth()*2 && |
| 1233 | (q1.ult(delta) || (q1 == delta && r1 == 0))); |
| 1234 | magu.m = q2 + 1; // resulting magic number |
| 1235 | magu.s = p - d.getBitWidth(); // resulting shift |
| 1236 | return magu; |
| 1237 | } |
| 1238 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1239 | /// Implementation of Knuth's Algorithm D (Division of nonnegative integers) |
| 1240 | /// from "Art of Computer Programming, Volume 2", section 4.3.1, p. 272. The |
| 1241 | /// variables here have the same names as in the algorithm. Comments explain |
| 1242 | /// the algorithm and any deviation from it. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1243 | static void KnuthDiv(unsigned *u, unsigned *v, unsigned *q, unsigned* r, |
| 1244 | unsigned m, unsigned n) { |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1245 | assert(u && "Must provide dividend"); |
| 1246 | assert(v && "Must provide divisor"); |
| 1247 | assert(q && "Must provide quotient"); |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1248 | assert(u != v && u != q && v != q && "Must use different memory"); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1249 | assert(n>1 && "n must be > 1"); |
| 1250 | |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1251 | // b denotes the base of the number system. In our case b is 2^32. |
George Burgess IV | 381fc0e | 2016-08-25 01:05:08 +0000 | [diff] [blame] | 1252 | const uint64_t b = uint64_t(1) << 32; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1253 | |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1254 | DEBUG(dbgs() << "KnuthDiv: m=" << m << " n=" << n << '\n'); |
| 1255 | DEBUG(dbgs() << "KnuthDiv: original:"); |
| 1256 | DEBUG(for (int i = m+n; i >=0; i--) dbgs() << " " << u[i]); |
| 1257 | DEBUG(dbgs() << " by"); |
| 1258 | DEBUG(for (int i = n; i >0; i--) dbgs() << " " << v[i-1]); |
| 1259 | DEBUG(dbgs() << '\n'); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1260 | // D1. [Normalize.] Set d = b / (v[n-1] + 1) and multiply all the digits of |
| 1261 | // u and v by d. Note that we have taken Knuth's advice here to use a power |
| 1262 | // of 2 value for d such that d * v[n-1] >= b/2 (b is the base). A power of |
| 1263 | // 2 allows us to shift instead of multiply and it is easy to determine the |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1264 | // shift amount from the leading zeros. We are basically normalizing the u |
| 1265 | // and v so that its high bits are shifted to the top of v's range without |
| 1266 | // overflow. Note that this can require an extra word in u so that u must |
| 1267 | // be of length m+n+1. |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 1268 | unsigned shift = countLeadingZeros(v[n-1]); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1269 | unsigned v_carry = 0; |
| 1270 | unsigned u_carry = 0; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1271 | if (shift) { |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1272 | for (unsigned i = 0; i < m+n; ++i) { |
| 1273 | unsigned u_tmp = u[i] >> (32 - shift); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1274 | u[i] = (u[i] << shift) | u_carry; |
| 1275 | u_carry = u_tmp; |
Reid Spencer | 100502d | 2007-02-17 03:16:00 +0000 | [diff] [blame] | 1276 | } |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1277 | for (unsigned i = 0; i < n; ++i) { |
| 1278 | unsigned v_tmp = v[i] >> (32 - shift); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1279 | v[i] = (v[i] << shift) | v_carry; |
| 1280 | v_carry = v_tmp; |
| 1281 | } |
| 1282 | } |
| 1283 | u[m+n] = u_carry; |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1284 | |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1285 | DEBUG(dbgs() << "KnuthDiv: normal:"); |
| 1286 | DEBUG(for (int i = m+n; i >=0; i--) dbgs() << " " << u[i]); |
| 1287 | DEBUG(dbgs() << " by"); |
| 1288 | DEBUG(for (int i = n; i >0; i--) dbgs() << " " << v[i-1]); |
| 1289 | DEBUG(dbgs() << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1290 | |
| 1291 | // D2. [Initialize j.] Set j to m. This is the loop counter over the places. |
| 1292 | int j = m; |
| 1293 | do { |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1294 | DEBUG(dbgs() << "KnuthDiv: quotient digit #" << j << '\n'); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1295 | // D3. [Calculate q'.]. |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1296 | // Set qp = (u[j+n]*b + u[j+n-1]) / v[n-1]. (qp=qprime=q') |
| 1297 | // Set rp = (u[j+n]*b + u[j+n-1]) % v[n-1]. (rp=rprime=r') |
| 1298 | // Now test if qp == b or qp*v[n-2] > b*rp + u[j+n-2]; if so, decrease |
| 1299 | // qp by 1, inrease rp by v[n-1], and repeat this test if rp < b. The test |
| 1300 | // on v[n-2] determines at high speed most of the cases in which the trial |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1301 | // value qp is one too large, and it eliminates all cases where qp is two |
| 1302 | // too large. |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1303 | uint64_t dividend = ((uint64_t(u[j+n]) << 32) + u[j+n-1]); |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1304 | DEBUG(dbgs() << "KnuthDiv: dividend == " << dividend << '\n'); |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1305 | uint64_t qp = dividend / v[n-1]; |
| 1306 | uint64_t rp = dividend % v[n-1]; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1307 | if (qp == b || qp*v[n-2] > b*rp + u[j+n-2]) { |
| 1308 | qp--; |
| 1309 | rp += v[n-1]; |
Reid Spencer | df6cf5a | 2007-02-24 10:01:42 +0000 | [diff] [blame] | 1310 | if (rp < b && (qp == b || qp*v[n-2] > b*rp + u[j+n-2])) |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 1311 | qp--; |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1312 | } |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1313 | DEBUG(dbgs() << "KnuthDiv: qp == " << qp << ", rp == " << rp << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1314 | |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1315 | // D4. [Multiply and subtract.] Replace (u[j+n]u[j+n-1]...u[j]) with |
| 1316 | // (u[j+n]u[j+n-1]..u[j]) - qp * (v[n-1]...v[1]v[0]). This computation |
| 1317 | // consists of a simple multiplication by a one-place number, combined with |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1318 | // a subtraction. |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1319 | // The digits (u[j+n]...u[j]) should be kept positive; if the result of |
| 1320 | // this step is actually negative, (u[j+n]...u[j]) should be left as the |
| 1321 | // true value plus b**(n+1), namely as the b's complement of |
| 1322 | // the true value, and a "borrow" to the left should be remembered. |
Pawel Bylica | 86ac447 | 2015-04-24 07:38:39 +0000 | [diff] [blame] | 1323 | int64_t borrow = 0; |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1324 | for (unsigned i = 0; i < n; ++i) { |
Pawel Bylica | 86ac447 | 2015-04-24 07:38:39 +0000 | [diff] [blame] | 1325 | uint64_t p = uint64_t(qp) * uint64_t(v[i]); |
| 1326 | int64_t subres = int64_t(u[j+i]) - borrow - (unsigned)p; |
| 1327 | u[j+i] = (unsigned)subres; |
| 1328 | borrow = (p >> 32) - (subres >> 32); |
| 1329 | DEBUG(dbgs() << "KnuthDiv: u[j+i] = " << u[j+i] |
Daniel Dunbar | 763ace9 | 2009-07-13 05:27:30 +0000 | [diff] [blame] | 1330 | << ", borrow = " << borrow << '\n'); |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 1331 | } |
Pawel Bylica | 86ac447 | 2015-04-24 07:38:39 +0000 | [diff] [blame] | 1332 | bool isNeg = u[j+n] < borrow; |
| 1333 | u[j+n] -= (unsigned)borrow; |
| 1334 | |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1335 | DEBUG(dbgs() << "KnuthDiv: after subtraction:"); |
| 1336 | DEBUG(for (int i = m+n; i >=0; i--) dbgs() << " " << u[i]); |
| 1337 | DEBUG(dbgs() << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1338 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1339 | // D5. [Test remainder.] Set q[j] = qp. If the result of step D4 was |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1340 | // negative, go to step D6; otherwise go on to step D7. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1341 | q[j] = (unsigned)qp; |
Reid Spencer | aa8dcfe | 2007-02-26 07:44:38 +0000 | [diff] [blame] | 1342 | if (isNeg) { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1343 | // D6. [Add back]. The probability that this step is necessary is very |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1344 | // small, on the order of only 2/b. Make sure that test data accounts for |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1345 | // this possibility. Decrease q[j] by 1 |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1346 | q[j]--; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1347 | // and add (0v[n-1]...v[1]v[0]) to (u[j+n]u[j+n-1]...u[j+1]u[j]). |
| 1348 | // A carry will occur to the left of u[j+n], and it should be ignored |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1349 | // since it cancels with the borrow that occurred in D4. |
| 1350 | bool carry = false; |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1351 | for (unsigned i = 0; i < n; i++) { |
| 1352 | unsigned limit = std::min(u[j+i],v[i]); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1353 | u[j+i] += v[i] + carry; |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 1354 | carry = u[j+i] < limit || (carry && u[j+i] == limit); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1355 | } |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 1356 | u[j+n] += carry; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1357 | } |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1358 | DEBUG(dbgs() << "KnuthDiv: after correction:"); |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1359 | DEBUG(for (int i = m+n; i >=0; i--) dbgs() << " " << u[i]); |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1360 | DEBUG(dbgs() << "\nKnuthDiv: digit result = " << q[j] << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1361 | |
Reid Spencer | cb292e4 | 2007-02-23 01:57:13 +0000 | [diff] [blame] | 1362 | // D7. [Loop on j.] Decrease j by one. Now if j >= 0, go back to D3. |
| 1363 | } while (--j >= 0); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1364 | |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1365 | DEBUG(dbgs() << "KnuthDiv: quotient:"); |
| 1366 | DEBUG(for (int i = m; i >=0; i--) dbgs() <<" " << q[i]); |
| 1367 | DEBUG(dbgs() << '\n'); |
Reid Spencer | a5e0d20 | 2007-02-24 03:58:46 +0000 | [diff] [blame] | 1368 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1369 | // D8. [Unnormalize]. Now q[...] is the desired quotient, and the desired |
| 1370 | // remainder may be obtained by dividing u[...] by d. If r is non-null we |
| 1371 | // compute the remainder (urem uses this). |
| 1372 | if (r) { |
| 1373 | // The value d is expressed by the "shift" value above since we avoided |
| 1374 | // multiplication by d by using a shift left. So, all we have to do is |
Simon Pilgrim | 0099beb | 2017-03-09 13:57:04 +0000 | [diff] [blame] | 1375 | // shift right here. |
Reid Spencer | 468ad911 | 2007-02-24 20:38:01 +0000 | [diff] [blame] | 1376 | if (shift) { |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1377 | unsigned carry = 0; |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1378 | DEBUG(dbgs() << "KnuthDiv: remainder:"); |
Reid Spencer | 468ad911 | 2007-02-24 20:38:01 +0000 | [diff] [blame] | 1379 | for (int i = n-1; i >= 0; i--) { |
| 1380 | r[i] = (u[i] >> shift) | carry; |
| 1381 | carry = u[i] << (32 - shift); |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1382 | DEBUG(dbgs() << " " << r[i]); |
Reid Spencer | 468ad911 | 2007-02-24 20:38:01 +0000 | [diff] [blame] | 1383 | } |
| 1384 | } else { |
| 1385 | for (int i = n-1; i >= 0; i--) { |
| 1386 | r[i] = u[i]; |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1387 | DEBUG(dbgs() << " " << r[i]); |
Reid Spencer | 468ad911 | 2007-02-24 20:38:01 +0000 | [diff] [blame] | 1388 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1389 | } |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1390 | DEBUG(dbgs() << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1391 | } |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 1392 | DEBUG(dbgs() << '\n'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
Benjamin Kramer | c321e53 | 2016-06-08 19:09:22 +0000 | [diff] [blame] | 1395 | void APInt::divide(const APInt &LHS, unsigned lhsWords, const APInt &RHS, |
| 1396 | unsigned rhsWords, APInt *Quotient, APInt *Remainder) { |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1397 | assert(lhsWords >= rhsWords && "Fractional result"); |
| 1398 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1399 | // First, compose the values into an array of 32-bit words instead of |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1400 | // 64-bit words. This is a necessity of both the "short division" algorithm |
Dan Gohman | 4a61882 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 1401 | // and the Knuth "classical algorithm" which requires there to be native |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1402 | // operations for +, -, and * on an m bit value with an m*2 bit result. We |
| 1403 | // can't use 64-bit operands here because we don't have native results of |
| 1404 | // 128-bits. Furthermore, casting the 64-bit values to 32-bit values won't |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1405 | // work on large-endian machines. |
Dan Gohman | cff6953 | 2009-04-01 18:45:54 +0000 | [diff] [blame] | 1406 | uint64_t mask = ~0ull >> (sizeof(unsigned)*CHAR_BIT); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1407 | unsigned n = rhsWords * 2; |
| 1408 | unsigned m = (lhsWords * 2) - n; |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1409 | |
| 1410 | // Allocate space for the temporary values we need either on the stack, if |
| 1411 | // it will fit, or on the heap if it won't. |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1412 | unsigned SPACE[128]; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 1413 | unsigned *U = nullptr; |
| 1414 | unsigned *V = nullptr; |
| 1415 | unsigned *Q = nullptr; |
| 1416 | unsigned *R = nullptr; |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1417 | if ((Remainder?4:3)*n+2*m+1 <= 128) { |
| 1418 | U = &SPACE[0]; |
| 1419 | V = &SPACE[m+n+1]; |
| 1420 | Q = &SPACE[(m+n+1) + n]; |
| 1421 | if (Remainder) |
| 1422 | R = &SPACE[(m+n+1) + n + (m+n)]; |
| 1423 | } else { |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1424 | U = new unsigned[m + n + 1]; |
| 1425 | V = new unsigned[n]; |
| 1426 | Q = new unsigned[m+n]; |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1427 | if (Remainder) |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1428 | R = new unsigned[n]; |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | // Initialize the dividend |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1432 | memset(U, 0, (m+n+1)*sizeof(unsigned)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1433 | for (unsigned i = 0; i < lhsWords; ++i) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1434 | uint64_t tmp = (LHS.getNumWords() == 1 ? LHS.U.VAL : LHS.U.pVal[i]); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1435 | U[i * 2] = (unsigned)(tmp & mask); |
Dan Gohman | cff6953 | 2009-04-01 18:45:54 +0000 | [diff] [blame] | 1436 | U[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1437 | } |
| 1438 | U[m+n] = 0; // this extra word is for "spill" in the Knuth algorithm. |
| 1439 | |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1440 | // Initialize the divisor |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1441 | memset(V, 0, (n)*sizeof(unsigned)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1442 | for (unsigned i = 0; i < rhsWords; ++i) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1443 | uint64_t tmp = (RHS.getNumWords() == 1 ? RHS.U.VAL : RHS.U.pVal[i]); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1444 | V[i * 2] = (unsigned)(tmp & mask); |
Dan Gohman | cff6953 | 2009-04-01 18:45:54 +0000 | [diff] [blame] | 1445 | V[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1448 | // initialize the quotient and remainder |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1449 | memset(Q, 0, (m+n) * sizeof(unsigned)); |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1450 | if (Remainder) |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1451 | memset(R, 0, n * sizeof(unsigned)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1452 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1453 | // Now, adjust m and n for the Knuth division. n is the number of words in |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1454 | // the divisor. m is the number of words by which the dividend exceeds the |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1455 | // divisor (i.e. m+n is the length of the dividend). These sizes must not |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1456 | // contain any zero words or the Knuth algorithm fails. |
| 1457 | for (unsigned i = n; i > 0 && V[i-1] == 0; i--) { |
| 1458 | n--; |
| 1459 | m++; |
| 1460 | } |
| 1461 | for (unsigned i = m+n; i > 0 && U[i-1] == 0; i--) |
| 1462 | m--; |
| 1463 | |
| 1464 | // If we're left with only a single word for the divisor, Knuth doesn't work |
| 1465 | // so we implement the short division algorithm here. This is much simpler |
| 1466 | // and faster because we are certain that we can divide a 64-bit quantity |
| 1467 | // by a 32-bit quantity at hardware speed and short division is simply a |
| 1468 | // series of such operations. This is just like doing short division but we |
| 1469 | // are using base 2^32 instead of base 10. |
| 1470 | assert(n != 0 && "Divide by zero?"); |
| 1471 | if (n == 1) { |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1472 | unsigned divisor = V[0]; |
| 1473 | unsigned remainder = 0; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1474 | for (int i = m+n-1; i >= 0; i--) { |
| 1475 | uint64_t partial_dividend = uint64_t(remainder) << 32 | U[i]; |
| 1476 | if (partial_dividend == 0) { |
| 1477 | Q[i] = 0; |
| 1478 | remainder = 0; |
| 1479 | } else if (partial_dividend < divisor) { |
| 1480 | Q[i] = 0; |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1481 | remainder = (unsigned)partial_dividend; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1482 | } else if (partial_dividend == divisor) { |
| 1483 | Q[i] = 1; |
| 1484 | remainder = 0; |
| 1485 | } else { |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1486 | Q[i] = (unsigned)(partial_dividend / divisor); |
| 1487 | remainder = (unsigned)(partial_dividend - (Q[i] * divisor)); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1488 | } |
| 1489 | } |
| 1490 | if (R) |
| 1491 | R[0] = remainder; |
| 1492 | } else { |
| 1493 | // Now we're ready to invoke the Knuth classical divide algorithm. In this |
| 1494 | // case n > 1. |
| 1495 | KnuthDiv(U, V, Q, R, m, n); |
| 1496 | } |
| 1497 | |
| 1498 | // If the caller wants the quotient |
| 1499 | if (Quotient) { |
| 1500 | // Set up the Quotient value's memory. |
| 1501 | if (Quotient->BitWidth != LHS.BitWidth) { |
| 1502 | if (Quotient->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1503 | Quotient->U.VAL = 0; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1504 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1505 | delete [] Quotient->U.pVal; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1506 | Quotient->BitWidth = LHS.BitWidth; |
| 1507 | if (!Quotient->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1508 | Quotient->U.pVal = getClearedMemory(Quotient->getNumWords()); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1509 | } else |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1510 | Quotient->clearAllBits(); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1511 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1512 | // The quotient is in Q. Reconstitute the quotient into Quotient's low |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1513 | // order words. |
Yaron Keren | 39fc5a6 | 2015-03-26 19:45:19 +0000 | [diff] [blame] | 1514 | // This case is currently dead as all users of divide() handle trivial cases |
| 1515 | // earlier. |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1516 | if (lhsWords == 1) { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1517 | uint64_t tmp = |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1518 | uint64_t(Q[0]) | (uint64_t(Q[1]) << (APINT_BITS_PER_WORD / 2)); |
| 1519 | if (Quotient->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1520 | Quotient->U.VAL = tmp; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1521 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1522 | Quotient->U.pVal[0] = tmp; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1523 | } else { |
| 1524 | assert(!Quotient->isSingleWord() && "Quotient APInt not large enough"); |
| 1525 | for (unsigned i = 0; i < lhsWords; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1526 | Quotient->U.pVal[i] = |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1527 | uint64_t(Q[i*2]) | (uint64_t(Q[i*2+1]) << (APINT_BITS_PER_WORD / 2)); |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | // If the caller wants the remainder |
| 1532 | if (Remainder) { |
| 1533 | // Set up the Remainder value's memory. |
| 1534 | if (Remainder->BitWidth != RHS.BitWidth) { |
| 1535 | if (Remainder->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1536 | Remainder->U.VAL = 0; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1537 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1538 | delete [] Remainder->U.pVal; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1539 | Remainder->BitWidth = RHS.BitWidth; |
| 1540 | if (!Remainder->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1541 | Remainder->U.pVal = getClearedMemory(Remainder->getNumWords()); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1542 | } else |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1543 | Remainder->clearAllBits(); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1544 | |
| 1545 | // The remainder is in R. Reconstitute the remainder into Remainder's low |
| 1546 | // order words. |
| 1547 | if (rhsWords == 1) { |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1548 | uint64_t tmp = |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1549 | uint64_t(R[0]) | (uint64_t(R[1]) << (APINT_BITS_PER_WORD / 2)); |
| 1550 | if (Remainder->isSingleWord()) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1551 | Remainder->U.VAL = tmp; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1552 | else |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1553 | Remainder->U.pVal[0] = tmp; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1554 | } else { |
| 1555 | assert(!Remainder->isSingleWord() && "Remainder APInt not large enough"); |
| 1556 | for (unsigned i = 0; i < rhsWords; ++i) |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1557 | Remainder->U.pVal[i] = |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1558 | uint64_t(R[i*2]) | (uint64_t(R[i*2+1]) << (APINT_BITS_PER_WORD / 2)); |
| 1559 | } |
| 1560 | } |
| 1561 | |
| 1562 | // Clean up the memory we allocated. |
Reid Spencer | 522ca7c | 2007-02-25 01:56:07 +0000 | [diff] [blame] | 1563 | if (U != &SPACE[0]) { |
| 1564 | delete [] U; |
| 1565 | delete [] V; |
| 1566 | delete [] Q; |
| 1567 | delete [] R; |
| 1568 | } |
Reid Spencer | 100502d | 2007-02-17 03:16:00 +0000 | [diff] [blame] | 1569 | } |
| 1570 | |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 1571 | APInt APInt::udiv(const APInt& RHS) const { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 1572 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1573 | |
| 1574 | // First, deal with the easy case |
| 1575 | if (isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1576 | assert(RHS.U.VAL != 0 && "Divide by zero?"); |
| 1577 | return APInt(BitWidth, U.VAL / RHS.U.VAL); |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 1578 | } |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1579 | |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1580 | // Get some facts about the LHS and RHS number of bits and words |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1581 | unsigned rhsBits = RHS.getActiveBits(); |
| 1582 | unsigned rhsWords = !rhsBits ? 0 : (APInt::whichWord(rhsBits - 1) + 1); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1583 | assert(rhsWords && "Divided by zero???"); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1584 | unsigned lhsBits = this->getActiveBits(); |
| 1585 | unsigned lhsWords = !lhsBits ? 0 : (APInt::whichWord(lhsBits - 1) + 1); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1586 | |
| 1587 | // Deal with some degenerate cases |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1588 | if (!lhsWords) |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1589 | // 0 / X ===> 0 |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1590 | return APInt(BitWidth, 0); |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1591 | else if (lhsWords < rhsWords || this->ult(RHS)) { |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1592 | // X / Y ===> 0, iff X < Y |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1593 | return APInt(BitWidth, 0); |
| 1594 | } else if (*this == RHS) { |
| 1595 | // X / X ===> 1 |
| 1596 | return APInt(BitWidth, 1); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1597 | } else if (lhsWords == 1 && rhsWords == 1) { |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1598 | // All high words are zero, just use native divide |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1599 | return APInt(BitWidth, this->U.pVal[0] / RHS.U.pVal[0]); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1600 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1601 | |
| 1602 | // We have to compute it the hard way. Invoke the Knuth divide algorithm. |
| 1603 | APInt Quotient(1,0); // to hold result. |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 1604 | divide(*this, lhsWords, RHS, rhsWords, &Quotient, nullptr); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1605 | return Quotient; |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 1606 | } |
| 1607 | |
Jakub Staszak | 6605c60 | 2013-02-20 00:17:42 +0000 | [diff] [blame] | 1608 | APInt APInt::sdiv(const APInt &RHS) const { |
| 1609 | if (isNegative()) { |
| 1610 | if (RHS.isNegative()) |
| 1611 | return (-(*this)).udiv(-RHS); |
| 1612 | return -((-(*this)).udiv(RHS)); |
| 1613 | } |
| 1614 | if (RHS.isNegative()) |
| 1615 | return -(this->udiv(-RHS)); |
| 1616 | return this->udiv(RHS); |
| 1617 | } |
| 1618 | |
Reid Spencer | 1d07212 | 2007-02-16 22:36:51 +0000 | [diff] [blame] | 1619 | APInt APInt::urem(const APInt& RHS) const { |
Reid Spencer | a32372d1 | 2007-02-17 00:18:01 +0000 | [diff] [blame] | 1620 | assert(BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1621 | if (isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1622 | assert(RHS.U.VAL != 0 && "Remainder by zero?"); |
| 1623 | return APInt(BitWidth, U.VAL % RHS.U.VAL); |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 1624 | } |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1625 | |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1626 | // Get some facts about the LHS |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1627 | unsigned lhsBits = getActiveBits(); |
| 1628 | unsigned lhsWords = !lhsBits ? 0 : (whichWord(lhsBits - 1) + 1); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1629 | |
| 1630 | // Get some facts about the RHS |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1631 | unsigned rhsBits = RHS.getActiveBits(); |
| 1632 | unsigned rhsWords = !rhsBits ? 0 : (APInt::whichWord(rhsBits - 1) + 1); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1633 | assert(rhsWords && "Performing remainder operation by zero ???"); |
| 1634 | |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1635 | // Check the degenerate cases |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1636 | if (lhsWords == 0) { |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1637 | // 0 % Y ===> 0 |
| 1638 | return APInt(BitWidth, 0); |
| 1639 | } else if (lhsWords < rhsWords || this->ult(RHS)) { |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1640 | // X % Y ===> X, iff X < Y |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1641 | return *this; |
| 1642 | } else if (*this == RHS) { |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1643 | // X % X == 0; |
Reid Spencer | 58a6a43 | 2007-02-21 08:21:52 +0000 | [diff] [blame] | 1644 | return APInt(BitWidth, 0); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1645 | } else if (lhsWords == 1) { |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1646 | // All high words are zero, just use native remainder |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1647 | return APInt(BitWidth, U.pVal[0] % RHS.U.pVal[0]); |
Reid Spencer | 3986776 | 2007-02-17 02:07:07 +0000 | [diff] [blame] | 1648 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1649 | |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1650 | // We have to compute it the hard way. Invoke the Knuth divide algorithm. |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1651 | APInt Remainder(1,0); |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 1652 | divide(*this, lhsWords, RHS, rhsWords, nullptr, &Remainder); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1653 | return Remainder; |
Zhou Sheng | fbf61ea | 2007-02-08 14:35:19 +0000 | [diff] [blame] | 1654 | } |
Reid Spencer | 100502d | 2007-02-17 03:16:00 +0000 | [diff] [blame] | 1655 | |
Jakub Staszak | 6605c60 | 2013-02-20 00:17:42 +0000 | [diff] [blame] | 1656 | APInt APInt::srem(const APInt &RHS) const { |
| 1657 | if (isNegative()) { |
| 1658 | if (RHS.isNegative()) |
| 1659 | return -((-(*this)).urem(-RHS)); |
| 1660 | return -((-(*this)).urem(RHS)); |
| 1661 | } |
| 1662 | if (RHS.isNegative()) |
| 1663 | return this->urem(-RHS); |
| 1664 | return this->urem(RHS); |
| 1665 | } |
| 1666 | |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1667 | void APInt::udivrem(const APInt &LHS, const APInt &RHS, |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1668 | APInt &Quotient, APInt &Remainder) { |
David Majnemer | 7f03920 | 2014-12-14 09:41:56 +0000 | [diff] [blame] | 1669 | assert(LHS.BitWidth == RHS.BitWidth && "Bit widths must be the same"); |
| 1670 | |
| 1671 | // First, deal with the easy case |
| 1672 | if (LHS.isSingleWord()) { |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1673 | assert(RHS.U.VAL != 0 && "Divide by zero?"); |
| 1674 | uint64_t QuotVal = LHS.U.VAL / RHS.U.VAL; |
| 1675 | uint64_t RemVal = LHS.U.VAL % RHS.U.VAL; |
David Majnemer | 7f03920 | 2014-12-14 09:41:56 +0000 | [diff] [blame] | 1676 | Quotient = APInt(LHS.BitWidth, QuotVal); |
| 1677 | Remainder = APInt(LHS.BitWidth, RemVal); |
| 1678 | return; |
| 1679 | } |
| 1680 | |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1681 | // Get some size facts about the dividend and divisor |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1682 | unsigned lhsBits = LHS.getActiveBits(); |
| 1683 | unsigned lhsWords = !lhsBits ? 0 : (APInt::whichWord(lhsBits - 1) + 1); |
| 1684 | unsigned rhsBits = RHS.getActiveBits(); |
| 1685 | unsigned rhsWords = !rhsBits ? 0 : (APInt::whichWord(rhsBits - 1) + 1); |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1686 | |
| 1687 | // Check the degenerate cases |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1688 | if (lhsWords == 0) { |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1689 | Quotient = 0; // 0 / Y ===> 0 |
| 1690 | Remainder = 0; // 0 % Y ===> 0 |
| 1691 | return; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | if (lhsWords < rhsWords || LHS.ult(RHS)) { |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1695 | Remainder = LHS; // X % Y ===> X, iff X < Y |
| 1696 | Quotient = 0; // X / Y ===> 0, iff X < Y |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1697 | return; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1698 | } |
| 1699 | |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1700 | if (LHS == RHS) { |
| 1701 | Quotient = 1; // X / X ===> 1 |
| 1702 | Remainder = 0; // X % X ===> 0; |
| 1703 | return; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1706 | if (lhsWords == 1 && rhsWords == 1) { |
| 1707 | // There is only one word to consider so use the native versions. |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1708 | uint64_t lhsValue = LHS.isSingleWord() ? LHS.U.VAL : LHS.U.pVal[0]; |
| 1709 | uint64_t rhsValue = RHS.isSingleWord() ? RHS.U.VAL : RHS.U.pVal[0]; |
Wojciech Matyjewicz | 41b744d | 2008-06-23 19:39:50 +0000 | [diff] [blame] | 1710 | Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); |
| 1711 | Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); |
Reid Spencer | 4c50b52 | 2007-05-13 23:44:59 +0000 | [diff] [blame] | 1712 | return; |
| 1713 | } |
| 1714 | |
| 1715 | // Okay, lets do it the long way |
| 1716 | divide(LHS, lhsWords, RHS, rhsWords, &Quotient, &Remainder); |
| 1717 | } |
| 1718 | |
Jakub Staszak | 6605c60 | 2013-02-20 00:17:42 +0000 | [diff] [blame] | 1719 | void APInt::sdivrem(const APInt &LHS, const APInt &RHS, |
| 1720 | APInt &Quotient, APInt &Remainder) { |
| 1721 | if (LHS.isNegative()) { |
| 1722 | if (RHS.isNegative()) |
| 1723 | APInt::udivrem(-LHS, -RHS, Quotient, Remainder); |
| 1724 | else { |
| 1725 | APInt::udivrem(-LHS, RHS, Quotient, Remainder); |
| 1726 | Quotient = -Quotient; |
| 1727 | } |
| 1728 | Remainder = -Remainder; |
| 1729 | } else if (RHS.isNegative()) { |
| 1730 | APInt::udivrem(LHS, -RHS, Quotient, Remainder); |
| 1731 | Quotient = -Quotient; |
| 1732 | } else { |
| 1733 | APInt::udivrem(LHS, RHS, Quotient, Remainder); |
| 1734 | } |
| 1735 | } |
| 1736 | |
Chris Lattner | 2c819b0 | 2010-10-13 23:54:10 +0000 | [diff] [blame] | 1737 | APInt APInt::sadd_ov(const APInt &RHS, bool &Overflow) const { |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1738 | APInt Res = *this+RHS; |
| 1739 | Overflow = isNonNegative() == RHS.isNonNegative() && |
| 1740 | Res.isNonNegative() != isNonNegative(); |
| 1741 | return Res; |
| 1742 | } |
| 1743 | |
Chris Lattner | 698661c | 2010-10-14 00:05:07 +0000 | [diff] [blame] | 1744 | APInt APInt::uadd_ov(const APInt &RHS, bool &Overflow) const { |
| 1745 | APInt Res = *this+RHS; |
| 1746 | Overflow = Res.ult(RHS); |
| 1747 | return Res; |
| 1748 | } |
| 1749 | |
Chris Lattner | 2c819b0 | 2010-10-13 23:54:10 +0000 | [diff] [blame] | 1750 | APInt APInt::ssub_ov(const APInt &RHS, bool &Overflow) const { |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1751 | APInt Res = *this - RHS; |
| 1752 | Overflow = isNonNegative() != RHS.isNonNegative() && |
| 1753 | Res.isNonNegative() != isNonNegative(); |
| 1754 | return Res; |
| 1755 | } |
| 1756 | |
Chris Lattner | 698661c | 2010-10-14 00:05:07 +0000 | [diff] [blame] | 1757 | APInt APInt::usub_ov(const APInt &RHS, bool &Overflow) const { |
Chris Lattner | b9681ad | 2010-10-14 00:30:00 +0000 | [diff] [blame] | 1758 | APInt Res = *this-RHS; |
| 1759 | Overflow = Res.ugt(*this); |
Chris Lattner | 698661c | 2010-10-14 00:05:07 +0000 | [diff] [blame] | 1760 | return Res; |
| 1761 | } |
| 1762 | |
Chris Lattner | 2c819b0 | 2010-10-13 23:54:10 +0000 | [diff] [blame] | 1763 | APInt APInt::sdiv_ov(const APInt &RHS, bool &Overflow) const { |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1764 | // MININT/-1 --> overflow. |
| 1765 | Overflow = isMinSignedValue() && RHS.isAllOnesValue(); |
| 1766 | return sdiv(RHS); |
| 1767 | } |
| 1768 | |
Chris Lattner | 2c819b0 | 2010-10-13 23:54:10 +0000 | [diff] [blame] | 1769 | APInt APInt::smul_ov(const APInt &RHS, bool &Overflow) const { |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1770 | APInt Res = *this * RHS; |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 1771 | |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1772 | if (*this != 0 && RHS != 0) |
| 1773 | Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS; |
| 1774 | else |
| 1775 | Overflow = false; |
| 1776 | return Res; |
| 1777 | } |
| 1778 | |
Frits van Bommel | 0bb2ad2 | 2011-03-27 14:26:13 +0000 | [diff] [blame] | 1779 | APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { |
| 1780 | APInt Res = *this * RHS; |
| 1781 | |
| 1782 | if (*this != 0 && RHS != 0) |
| 1783 | Overflow = Res.udiv(RHS) != *this || Res.udiv(*this) != RHS; |
| 1784 | else |
| 1785 | Overflow = false; |
| 1786 | return Res; |
| 1787 | } |
| 1788 | |
David Majnemer | a252138 | 2014-10-13 21:48:30 +0000 | [diff] [blame] | 1789 | APInt APInt::sshl_ov(const APInt &ShAmt, bool &Overflow) const { |
| 1790 | Overflow = ShAmt.uge(getBitWidth()); |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1791 | if (Overflow) |
David Majnemer | a252138 | 2014-10-13 21:48:30 +0000 | [diff] [blame] | 1792 | return APInt(BitWidth, 0); |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1793 | |
| 1794 | if (isNonNegative()) // Don't allow sign change. |
David Majnemer | a252138 | 2014-10-13 21:48:30 +0000 | [diff] [blame] | 1795 | Overflow = ShAmt.uge(countLeadingZeros()); |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1796 | else |
David Majnemer | a252138 | 2014-10-13 21:48:30 +0000 | [diff] [blame] | 1797 | Overflow = ShAmt.uge(countLeadingOnes()); |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 1798 | |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1799 | return *this << ShAmt; |
| 1800 | } |
| 1801 | |
David Majnemer | a252138 | 2014-10-13 21:48:30 +0000 | [diff] [blame] | 1802 | APInt APInt::ushl_ov(const APInt &ShAmt, bool &Overflow) const { |
| 1803 | Overflow = ShAmt.uge(getBitWidth()); |
| 1804 | if (Overflow) |
| 1805 | return APInt(BitWidth, 0); |
| 1806 | |
| 1807 | Overflow = ShAmt.ugt(countLeadingZeros()); |
| 1808 | |
| 1809 | return *this << ShAmt; |
| 1810 | } |
| 1811 | |
Chris Lattner | 79bdd88 | 2010-10-13 23:46:33 +0000 | [diff] [blame] | 1812 | |
| 1813 | |
| 1814 | |
Benjamin Kramer | 92d8998 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 1815 | void APInt::fromString(unsigned numbits, StringRef str, uint8_t radix) { |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1816 | // Check our assumptions here |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 1817 | assert(!str.empty() && "Invalid string length"); |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 1818 | assert((radix == 10 || radix == 8 || radix == 16 || radix == 2 || |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 1819 | radix == 36) && |
| 1820 | "Radix should be 2, 8, 10, 16, or 36!"); |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 1821 | |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 1822 | StringRef::iterator p = str.begin(); |
| 1823 | size_t slen = str.size(); |
| 1824 | bool isNeg = *p == '-'; |
Erick Tryzelaar | 1264bcb | 2009-08-21 03:15:14 +0000 | [diff] [blame] | 1825 | if (*p == '-' || *p == '+') { |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 1826 | p++; |
| 1827 | slen--; |
Eric Christopher | 43a1dec | 2009-08-21 04:10:31 +0000 | [diff] [blame] | 1828 | assert(slen && "String is only a sign, needs a value."); |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 1829 | } |
Chris Lattner | dad2d09 | 2007-05-03 18:15:36 +0000 | [diff] [blame] | 1830 | assert((slen <= numbits || radix != 2) && "Insufficient bit width"); |
Chris Lattner | b869a0a | 2009-04-25 18:34:04 +0000 | [diff] [blame] | 1831 | assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width"); |
| 1832 | assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width"); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 1833 | assert((((slen-1)*64)/22 <= numbits || radix != 10) && |
| 1834 | "Insufficient bit width"); |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1835 | |
Craig Topper | b339c6d | 2017-05-03 15:46:24 +0000 | [diff] [blame] | 1836 | // Allocate memory if needed |
| 1837 | if (isSingleWord()) |
| 1838 | U.VAL = 0; |
| 1839 | else |
| 1840 | U.pVal = getClearedMemory(getNumWords()); |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1841 | |
| 1842 | // Figure out if we can shift instead of multiply |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1843 | unsigned shift = (radix == 16 ? 4 : radix == 8 ? 3 : radix == 2 ? 1 : 0); |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1844 | |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1845 | // Enter digit traversal loop |
Daniel Dunbar | 3a1efd11 | 2009-08-13 02:33:34 +0000 | [diff] [blame] | 1846 | for (StringRef::iterator e = str.end(); p != e; ++p) { |
Erick Tryzelaar | dadb1571 | 2009-08-21 03:15:28 +0000 | [diff] [blame] | 1847 | unsigned digit = getDigit(*p, radix); |
Erick Tryzelaar | 6096409 | 2009-08-21 06:48:37 +0000 | [diff] [blame] | 1848 | assert(digit < radix && "Invalid character in digit string"); |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1849 | |
Reid Spencer | a93c981 | 2007-05-16 19:18:22 +0000 | [diff] [blame] | 1850 | // Shift or multiply the value by the radix |
Chris Lattner | b869a0a | 2009-04-25 18:34:04 +0000 | [diff] [blame] | 1851 | if (slen > 1) { |
| 1852 | if (shift) |
| 1853 | *this <<= shift; |
| 1854 | else |
Craig Topper | f15bec5 | 2017-05-08 04:55:12 +0000 | [diff] [blame^] | 1855 | *this *= radix; |
Chris Lattner | b869a0a | 2009-04-25 18:34:04 +0000 | [diff] [blame] | 1856 | } |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1857 | |
| 1858 | // Add in the digit we just interpreted |
Craig Topper | b7d8faa | 2017-04-02 06:59:38 +0000 | [diff] [blame] | 1859 | *this += digit; |
Reid Spencer | 100502d | 2007-02-17 03:16:00 +0000 | [diff] [blame] | 1860 | } |
Reid Spencer | b6b5cc3 | 2007-02-25 23:44:53 +0000 | [diff] [blame] | 1861 | // If its negative, put it in two's complement form |
Reid Spencer | aa8dcfe | 2007-02-26 07:44:38 +0000 | [diff] [blame] | 1862 | if (isNeg) { |
Jakub Staszak | 773be0c | 2013-03-20 23:56:19 +0000 | [diff] [blame] | 1863 | --(*this); |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1864 | this->flipAllBits(); |
Reid Spencer | b6b5cc3 | 2007-02-25 23:44:53 +0000 | [diff] [blame] | 1865 | } |
Reid Spencer | 100502d | 2007-02-17 03:16:00 +0000 | [diff] [blame] | 1866 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1867 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1868 | void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix, |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1869 | bool Signed, bool formatAsCLiteral) const { |
Simon Pilgrim | 4c0ea9d | 2017-02-23 16:07:04 +0000 | [diff] [blame] | 1870 | assert((Radix == 10 || Radix == 8 || Radix == 16 || Radix == 2 || |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 1871 | Radix == 36) && |
Dylan Noblesmith | 1c419ff | 2011-12-16 20:36:31 +0000 | [diff] [blame] | 1872 | "Radix should be 2, 8, 10, 16, or 36!"); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1873 | |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1874 | const char *Prefix = ""; |
| 1875 | if (formatAsCLiteral) { |
| 1876 | switch (Radix) { |
| 1877 | case 2: |
| 1878 | // Binary literals are a non-standard extension added in gcc 4.3: |
| 1879 | // http://gcc.gnu.org/onlinedocs/gcc-4.3.0/gcc/Binary-constants.html |
| 1880 | Prefix = "0b"; |
| 1881 | break; |
| 1882 | case 8: |
| 1883 | Prefix = "0"; |
| 1884 | break; |
Dylan Noblesmith | 1c419ff | 2011-12-16 20:36:31 +0000 | [diff] [blame] | 1885 | case 10: |
| 1886 | break; // No prefix |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1887 | case 16: |
| 1888 | Prefix = "0x"; |
| 1889 | break; |
Dylan Noblesmith | 1c419ff | 2011-12-16 20:36:31 +0000 | [diff] [blame] | 1890 | default: |
| 1891 | llvm_unreachable("Invalid radix!"); |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1892 | } |
| 1893 | } |
| 1894 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1895 | // First, check for a zero value and just short circuit the logic below. |
| 1896 | if (*this == 0) { |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1897 | while (*Prefix) { |
| 1898 | Str.push_back(*Prefix); |
| 1899 | ++Prefix; |
| 1900 | }; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1901 | Str.push_back('0'); |
| 1902 | return; |
| 1903 | } |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1904 | |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 1905 | static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1906 | |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1907 | if (isSingleWord()) { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1908 | char Buffer[65]; |
| 1909 | char *BufPtr = Buffer+65; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1910 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1911 | uint64_t N; |
Chris Lattner | b91c903 | 2010-08-18 00:33:47 +0000 | [diff] [blame] | 1912 | if (!Signed) { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1913 | N = getZExtValue(); |
Chris Lattner | b91c903 | 2010-08-18 00:33:47 +0000 | [diff] [blame] | 1914 | } else { |
| 1915 | int64_t I = getSExtValue(); |
| 1916 | if (I >= 0) { |
| 1917 | N = I; |
| 1918 | } else { |
| 1919 | Str.push_back('-'); |
| 1920 | N = -(uint64_t)I; |
| 1921 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1922 | } |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1923 | |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1924 | while (*Prefix) { |
| 1925 | Str.push_back(*Prefix); |
| 1926 | ++Prefix; |
| 1927 | }; |
| 1928 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1929 | while (N) { |
| 1930 | *--BufPtr = Digits[N % Radix]; |
| 1931 | N /= Radix; |
| 1932 | } |
| 1933 | Str.append(BufPtr, Buffer+65); |
| 1934 | return; |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1935 | } |
| 1936 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1937 | APInt Tmp(*this); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1938 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1939 | if (Signed && isNegative()) { |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1940 | // They want to print the signed version and it is a negative value |
| 1941 | // Flip the bits and add one to turn it into the equivalent positive |
| 1942 | // value and put a '-' in the result. |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1943 | Tmp.flipAllBits(); |
Jakub Staszak | 773be0c | 2013-03-20 23:56:19 +0000 | [diff] [blame] | 1944 | ++Tmp; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1945 | Str.push_back('-'); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1946 | } |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1947 | |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1948 | while (*Prefix) { |
| 1949 | Str.push_back(*Prefix); |
| 1950 | ++Prefix; |
| 1951 | }; |
| 1952 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1953 | // We insert the digits backward, then reverse them to get the right order. |
| 1954 | unsigned StartDig = Str.size(); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1955 | |
| 1956 | // For the 2, 8 and 16 bit cases, we can just shift instead of divide |
| 1957 | // because the number of bits per digit (1, 3 and 4 respectively) divides |
Craig Topper | d7ed50d | 2017-04-02 06:59:36 +0000 | [diff] [blame] | 1958 | // equally. We just shift until the value is zero. |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 1959 | if (Radix == 2 || Radix == 8 || Radix == 16) { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1960 | // Just shift tmp right for each digit width until it becomes zero |
| 1961 | unsigned ShiftAmt = (Radix == 16 ? 4 : (Radix == 8 ? 3 : 1)); |
| 1962 | unsigned MaskAmt = Radix - 1; |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1963 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1964 | while (Tmp != 0) { |
| 1965 | unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt; |
| 1966 | Str.push_back(Digits[Digit]); |
Craig Topper | fc947bc | 2017-04-18 17:14:21 +0000 | [diff] [blame] | 1967 | Tmp.lshrInPlace(ShiftAmt); |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1968 | } |
| 1969 | } else { |
Douglas Gregor | 663c068 | 2011-09-14 15:54:46 +0000 | [diff] [blame] | 1970 | APInt divisor(Radix == 10? 4 : 8, Radix); |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1971 | while (Tmp != 0) { |
| 1972 | APInt APdigit(1, 0); |
| 1973 | APInt tmp2(Tmp.getBitWidth(), 0); |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1974 | divide(Tmp, Tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2, |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1975 | &APdigit); |
Chris Lattner | 77527f5 | 2009-01-21 18:09:24 +0000 | [diff] [blame] | 1976 | unsigned Digit = (unsigned)APdigit.getZExtValue(); |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1977 | assert(Digit < Radix && "divide failed"); |
| 1978 | Str.push_back(Digits[Digit]); |
| 1979 | Tmp = tmp2; |
| 1980 | } |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1981 | } |
Eric Christopher | 820256b | 2009-08-21 04:06:45 +0000 | [diff] [blame] | 1982 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1983 | // Reverse the digits before returning. |
| 1984 | std::reverse(Str.begin()+StartDig, Str.end()); |
Reid Spencer | fb77b2b | 2007-02-20 08:51:03 +0000 | [diff] [blame] | 1985 | } |
| 1986 | |
Pawel Bylica | 6eeeac7 | 2015-04-06 13:31:39 +0000 | [diff] [blame] | 1987 | /// Returns the APInt as a std::string. Note that this is an inefficient method. |
| 1988 | /// It is better to pass in a SmallVector/SmallString to the methods above. |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1989 | std::string APInt::toString(unsigned Radix = 10, bool Signed = true) const { |
| 1990 | SmallString<40> S; |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 1991 | toString(S, Radix, Signed, /* formatAsCLiteral = */false); |
Daniel Dunbar | 8b0b115 | 2009-08-19 20:07:03 +0000 | [diff] [blame] | 1992 | return S.str(); |
Reid Spencer | 1ba8335 | 2007-02-21 03:55:44 +0000 | [diff] [blame] | 1993 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 1994 | |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 1995 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Yaron Keren | eb2a254 | 2016-01-29 20:50:44 +0000 | [diff] [blame] | 1996 | LLVM_DUMP_METHOD void APInt::dump() const { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1997 | SmallString<40> S, U; |
| 1998 | this->toStringUnsigned(U); |
| 1999 | this->toStringSigned(S); |
David Greene | f32fcb4 | 2010-01-05 01:28:52 +0000 | [diff] [blame] | 2000 | dbgs() << "APInt(" << BitWidth << "b, " |
Davide Italiano | 5a473d2 | 2017-01-31 21:26:18 +0000 | [diff] [blame] | 2001 | << U << "u " << S << "s)\n"; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 2002 | } |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 2003 | #endif |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 2004 | |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 2005 | void APInt::print(raw_ostream &OS, bool isSigned) const { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 2006 | SmallString<40> S; |
Ted Kremenek | b05f02e | 2011-06-15 00:51:55 +0000 | [diff] [blame] | 2007 | this->toString(S, 10, isSigned, /* formatAsCLiteral = */false); |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 2008 | OS << S; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 2009 | } |
| 2010 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2011 | // This implements a variety of operations on a representation of |
| 2012 | // arbitrary precision, two's-complement, bignum integer values. |
| 2013 | |
Chris Lattner | 96cffa6 | 2009-08-23 23:11:28 +0000 | [diff] [blame] | 2014 | // Assumed by lowHalf, highHalf, partMSB and partLSB. A fairly safe |
| 2015 | // and unrestricting assumption. |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2016 | static_assert(APInt::APINT_BITS_PER_WORD % 2 == 0, |
| 2017 | "Part width must be divisible by 2!"); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2018 | |
| 2019 | /* Some handy functions local to this file. */ |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2020 | |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2021 | /* Returns the integer part with the least significant BITS set. |
| 2022 | BITS cannot be zero. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2023 | static inline APInt::WordType lowBitMask(unsigned bits) { |
| 2024 | assert(bits != 0 && bits <= APInt::APINT_BITS_PER_WORD); |
Chris Lattner | fe02c1f | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2025 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2026 | return ~(APInt::WordType) 0 >> (APInt::APINT_BITS_PER_WORD - bits); |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2027 | } |
Chris Lattner | fe02c1f | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2028 | |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2029 | /* Returns the value of the lower half of PART. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2030 | static inline APInt::WordType lowHalf(APInt::WordType part) { |
| 2031 | return part & lowBitMask(APInt::APINT_BITS_PER_WORD / 2); |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2032 | } |
Chris Lattner | fe02c1f | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2033 | |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2034 | /* Returns the value of the upper half of PART. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2035 | static inline APInt::WordType highHalf(APInt::WordType part) { |
| 2036 | return part >> (APInt::APINT_BITS_PER_WORD / 2); |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2037 | } |
Chris Lattner | fe02c1f | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2038 | |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2039 | /* Returns the bit number of the most significant set bit of a part. |
| 2040 | If the input number has no bits set -1U is returned. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2041 | static unsigned partMSB(APInt::WordType value) { |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2042 | return findLastSet(value, ZB_Max); |
| 2043 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2044 | |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2045 | /* Returns the bit number of the least significant set bit of a |
| 2046 | part. If the input number has no bits set -1U is returned. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2047 | static unsigned partLSB(APInt::WordType value) { |
Craig Topper | 76f4246 | 2017-03-28 05:32:53 +0000 | [diff] [blame] | 2048 | return findFirstSet(value, ZB_Max); |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 2049 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2050 | |
| 2051 | /* Sets the least significant part of a bignum to the input value, and |
| 2052 | zeroes out higher parts. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2053 | void APInt::tcSet(WordType *dst, WordType part, unsigned parts) { |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2054 | assert(parts > 0); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2055 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2056 | dst[0] = part; |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2057 | for (unsigned i = 1; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2058 | dst[i] = 0; |
| 2059 | } |
| 2060 | |
| 2061 | /* Assign one bignum to another. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2062 | void APInt::tcAssign(WordType *dst, const WordType *src, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2063 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2064 | dst[i] = src[i]; |
| 2065 | } |
| 2066 | |
| 2067 | /* Returns true if a bignum is zero, false otherwise. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2068 | bool APInt::tcIsZero(const WordType *src, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2069 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2070 | if (src[i]) |
| 2071 | return false; |
| 2072 | |
| 2073 | return true; |
| 2074 | } |
| 2075 | |
| 2076 | /* Extract the given bit of a bignum; returns 0 or 1. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2077 | int APInt::tcExtractBit(const WordType *parts, unsigned bit) { |
Craig Topper | 00b47ee | 2017-04-02 19:35:18 +0000 | [diff] [blame] | 2078 | return (parts[whichWord(bit)] & maskBit(bit)) != 0; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
John McCall | dcb9a7a | 2010-02-28 02:51:25 +0000 | [diff] [blame] | 2081 | /* Set the given bit of a bignum. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2082 | void APInt::tcSetBit(WordType *parts, unsigned bit) { |
Craig Topper | 00b47ee | 2017-04-02 19:35:18 +0000 | [diff] [blame] | 2083 | parts[whichWord(bit)] |= maskBit(bit); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2084 | } |
| 2085 | |
John McCall | dcb9a7a | 2010-02-28 02:51:25 +0000 | [diff] [blame] | 2086 | /* Clears the given bit of a bignum. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2087 | void APInt::tcClearBit(WordType *parts, unsigned bit) { |
Craig Topper | 00b47ee | 2017-04-02 19:35:18 +0000 | [diff] [blame] | 2088 | parts[whichWord(bit)] &= ~maskBit(bit); |
John McCall | dcb9a7a | 2010-02-28 02:51:25 +0000 | [diff] [blame] | 2089 | } |
| 2090 | |
Neil Booth | c8b650a | 2007-10-06 00:43:45 +0000 | [diff] [blame] | 2091 | /* Returns the bit number of the least significant set bit of a |
| 2092 | number. If the input number has no bits set -1U is returned. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2093 | unsigned APInt::tcLSB(const WordType *parts, unsigned n) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2094 | for (unsigned i = 0; i < n; i++) { |
| 2095 | if (parts[i] != 0) { |
| 2096 | unsigned lsb = partLSB(parts[i]); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2097 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2098 | return lsb + i * APINT_BITS_PER_WORD; |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2099 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2100 | } |
| 2101 | |
| 2102 | return -1U; |
| 2103 | } |
| 2104 | |
Neil Booth | c8b650a | 2007-10-06 00:43:45 +0000 | [diff] [blame] | 2105 | /* Returns the bit number of the most significant set bit of a number. |
| 2106 | If the input number has no bits set -1U is returned. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2107 | unsigned APInt::tcMSB(const WordType *parts, unsigned n) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2108 | do { |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2109 | --n; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2110 | |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2111 | if (parts[n] != 0) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2112 | unsigned msb = partMSB(parts[n]); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2113 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2114 | return msb + n * APINT_BITS_PER_WORD; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2115 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2116 | } while (n); |
| 2117 | |
| 2118 | return -1U; |
| 2119 | } |
| 2120 | |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2121 | /* Copy the bit vector of width srcBITS from SRC, starting at bit |
| 2122 | srcLSB, to DST, of dstCOUNT parts, such that the bit srcLSB becomes |
| 2123 | the least significant bit of DST. All high bits above srcBITS in |
| 2124 | DST are zero-filled. */ |
| 2125 | void |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2126 | APInt::tcExtract(WordType *dst, unsigned dstCount, const WordType *src, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2127 | unsigned srcBits, unsigned srcLSB) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2128 | unsigned dstParts = (srcBits + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2129 | assert(dstParts <= dstCount); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2130 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2131 | unsigned firstSrcPart = srcLSB / APINT_BITS_PER_WORD; |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2132 | tcAssign (dst, src + firstSrcPart, dstParts); |
| 2133 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2134 | unsigned shift = srcLSB % APINT_BITS_PER_WORD; |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2135 | tcShiftRight (dst, dstParts, shift); |
| 2136 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2137 | /* We now have (dstParts * APINT_BITS_PER_WORD - shift) bits from SRC |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2138 | in DST. If this is less that srcBits, append the rest, else |
| 2139 | clear the high bits. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2140 | unsigned n = dstParts * APINT_BITS_PER_WORD - shift; |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2141 | if (n < srcBits) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2142 | WordType mask = lowBitMask (srcBits - n); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2143 | dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2144 | << n % APINT_BITS_PER_WORD); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2145 | } else if (n > srcBits) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2146 | if (srcBits % APINT_BITS_PER_WORD) |
| 2147 | dst[dstParts - 1] &= lowBitMask (srcBits % APINT_BITS_PER_WORD); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2148 | } |
| 2149 | |
| 2150 | /* Clear high parts. */ |
| 2151 | while (dstParts < dstCount) |
| 2152 | dst[dstParts++] = 0; |
| 2153 | } |
| 2154 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2155 | /* DST += RHS + C where C is zero or one. Returns the carry flag. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2156 | APInt::WordType APInt::tcAdd(WordType *dst, const WordType *rhs, |
| 2157 | WordType c, unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2158 | assert(c <= 1); |
| 2159 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2160 | for (unsigned i = 0; i < parts; i++) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2161 | WordType l = dst[i]; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2162 | if (c) { |
| 2163 | dst[i] += rhs[i] + 1; |
| 2164 | c = (dst[i] <= l); |
| 2165 | } else { |
| 2166 | dst[i] += rhs[i]; |
| 2167 | c = (dst[i] < l); |
| 2168 | } |
| 2169 | } |
| 2170 | |
| 2171 | return c; |
| 2172 | } |
| 2173 | |
Craig Topper | 92fc477 | 2017-04-13 04:36:06 +0000 | [diff] [blame] | 2174 | /// This function adds a single "word" integer, src, to the multiple |
| 2175 | /// "word" integer array, dst[]. dst[] is modified to reflect the addition and |
| 2176 | /// 1 is returned if there is a carry out, otherwise 0 is returned. |
| 2177 | /// @returns the carry of the addition. |
| 2178 | APInt::WordType APInt::tcAddPart(WordType *dst, WordType src, |
| 2179 | unsigned parts) { |
| 2180 | for (unsigned i = 0; i < parts; ++i) { |
| 2181 | dst[i] += src; |
| 2182 | if (dst[i] >= src) |
| 2183 | return 0; // No need to carry so exit early. |
| 2184 | src = 1; // Carry one to next digit. |
| 2185 | } |
| 2186 | |
| 2187 | return 1; |
| 2188 | } |
| 2189 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2190 | /* DST -= RHS + C where C is zero or one. Returns the carry flag. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2191 | APInt::WordType APInt::tcSubtract(WordType *dst, const WordType *rhs, |
| 2192 | WordType c, unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2193 | assert(c <= 1); |
| 2194 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2195 | for (unsigned i = 0; i < parts; i++) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2196 | WordType l = dst[i]; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2197 | if (c) { |
| 2198 | dst[i] -= rhs[i] + 1; |
| 2199 | c = (dst[i] >= l); |
| 2200 | } else { |
| 2201 | dst[i] -= rhs[i]; |
| 2202 | c = (dst[i] > l); |
| 2203 | } |
| 2204 | } |
| 2205 | |
| 2206 | return c; |
| 2207 | } |
| 2208 | |
Craig Topper | 92fc477 | 2017-04-13 04:36:06 +0000 | [diff] [blame] | 2209 | /// This function subtracts a single "word" (64-bit word), src, from |
| 2210 | /// the multi-word integer array, dst[], propagating the borrowed 1 value until |
| 2211 | /// no further borrowing is needed or it runs out of "words" in dst. The result |
| 2212 | /// is 1 if "borrowing" exhausted the digits in dst, or 0 if dst was not |
| 2213 | /// exhausted. In other words, if src > dst then this function returns 1, |
| 2214 | /// otherwise 0. |
| 2215 | /// @returns the borrow out of the subtraction |
| 2216 | APInt::WordType APInt::tcSubtractPart(WordType *dst, WordType src, |
| 2217 | unsigned parts) { |
| 2218 | for (unsigned i = 0; i < parts; ++i) { |
| 2219 | WordType Dst = dst[i]; |
| 2220 | dst[i] -= src; |
| 2221 | if (src <= Dst) |
| 2222 | return 0; // No need to borrow so exit early. |
| 2223 | src = 1; // We have to "borrow 1" from next "word" |
| 2224 | } |
| 2225 | |
| 2226 | return 1; |
| 2227 | } |
| 2228 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2229 | /* Negate a bignum in-place. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2230 | void APInt::tcNegate(WordType *dst, unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2231 | tcComplement(dst, parts); |
| 2232 | tcIncrement(dst, parts); |
| 2233 | } |
| 2234 | |
Neil Booth | c8b650a | 2007-10-06 00:43:45 +0000 | [diff] [blame] | 2235 | /* DST += SRC * MULTIPLIER + CARRY if add is true |
| 2236 | DST = SRC * MULTIPLIER + CARRY if add is false |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2237 | |
| 2238 | Requires 0 <= DSTPARTS <= SRCPARTS + 1. If DST overlaps SRC |
| 2239 | they must start at the same point, i.e. DST == SRC. |
| 2240 | |
| 2241 | If DSTPARTS == SRCPARTS + 1 no overflow occurs and zero is |
| 2242 | returned. Otherwise DST is filled with the least significant |
| 2243 | DSTPARTS parts of the result, and if all of the omitted higher |
| 2244 | parts were zero return zero, otherwise overflow occurred and |
| 2245 | return one. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2246 | int APInt::tcMultiplyPart(WordType *dst, const WordType *src, |
| 2247 | WordType multiplier, WordType carry, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2248 | unsigned srcParts, unsigned dstParts, |
| 2249 | bool add) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2250 | /* Otherwise our writes of DST kill our later reads of SRC. */ |
| 2251 | assert(dst <= src || dst >= src + srcParts); |
| 2252 | assert(dstParts <= srcParts + 1); |
| 2253 | |
| 2254 | /* N loops; minimum of dstParts and srcParts. */ |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2255 | unsigned n = dstParts < srcParts ? dstParts: srcParts; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2256 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2257 | unsigned i; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2258 | for (i = 0; i < n; i++) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2259 | WordType low, mid, high, srcPart; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2260 | |
| 2261 | /* [ LOW, HIGH ] = MULTIPLIER * SRC[i] + DST[i] + CARRY. |
| 2262 | |
| 2263 | This cannot overflow, because |
| 2264 | |
| 2265 | (n - 1) * (n - 1) + 2 (n - 1) = (n - 1) * (n + 1) |
| 2266 | |
| 2267 | which is less than n^2. */ |
| 2268 | |
| 2269 | srcPart = src[i]; |
| 2270 | |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2271 | if (multiplier == 0 || srcPart == 0) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2272 | low = carry; |
| 2273 | high = 0; |
| 2274 | } else { |
| 2275 | low = lowHalf(srcPart) * lowHalf(multiplier); |
| 2276 | high = highHalf(srcPart) * highHalf(multiplier); |
| 2277 | |
| 2278 | mid = lowHalf(srcPart) * highHalf(multiplier); |
| 2279 | high += highHalf(mid); |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2280 | mid <<= APINT_BITS_PER_WORD / 2; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2281 | if (low + mid < low) |
| 2282 | high++; |
| 2283 | low += mid; |
| 2284 | |
| 2285 | mid = highHalf(srcPart) * lowHalf(multiplier); |
| 2286 | high += highHalf(mid); |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2287 | mid <<= APINT_BITS_PER_WORD / 2; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2288 | if (low + mid < low) |
| 2289 | high++; |
| 2290 | low += mid; |
| 2291 | |
| 2292 | /* Now add carry. */ |
| 2293 | if (low + carry < low) |
| 2294 | high++; |
| 2295 | low += carry; |
| 2296 | } |
| 2297 | |
| 2298 | if (add) { |
| 2299 | /* And now DST[i], and store the new low part there. */ |
| 2300 | if (low + dst[i] < low) |
| 2301 | high++; |
| 2302 | dst[i] += low; |
| 2303 | } else |
| 2304 | dst[i] = low; |
| 2305 | |
| 2306 | carry = high; |
| 2307 | } |
| 2308 | |
| 2309 | if (i < dstParts) { |
| 2310 | /* Full multiplication, there is no overflow. */ |
| 2311 | assert(i + 1 == dstParts); |
| 2312 | dst[i] = carry; |
| 2313 | return 0; |
| 2314 | } else { |
| 2315 | /* We overflowed if there is carry. */ |
| 2316 | if (carry) |
| 2317 | return 1; |
| 2318 | |
| 2319 | /* We would overflow if any significant unwritten parts would be |
| 2320 | non-zero. This is true if any remaining src parts are non-zero |
| 2321 | and the multiplier is non-zero. */ |
| 2322 | if (multiplier) |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2323 | for (; i < srcParts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2324 | if (src[i]) |
| 2325 | return 1; |
| 2326 | |
| 2327 | /* We fitted in the narrow destination. */ |
| 2328 | return 0; |
| 2329 | } |
| 2330 | } |
| 2331 | |
| 2332 | /* DST = LHS * RHS, where DST has the same width as the operands and |
| 2333 | is filled with the least significant parts of the result. Returns |
| 2334 | one if overflow occurred, otherwise zero. DST must be disjoint |
| 2335 | from both operands. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2336 | int APInt::tcMultiply(WordType *dst, const WordType *lhs, |
| 2337 | const WordType *rhs, unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2338 | assert(dst != lhs && dst != rhs); |
| 2339 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2340 | int overflow = 0; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2341 | tcSet(dst, 0, parts); |
| 2342 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2343 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2344 | overflow |= tcMultiplyPart(&dst[i], lhs, rhs[i], 0, parts, |
| 2345 | parts - i, true); |
| 2346 | |
| 2347 | return overflow; |
| 2348 | } |
| 2349 | |
Neil Booth | 0ea72a9 | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2350 | /* DST = LHS * RHS, where DST has width the sum of the widths of the |
| 2351 | operands. No overflow occurs. DST must be disjoint from both |
| 2352 | operands. Returns the number of parts required to hold the |
| 2353 | result. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2354 | unsigned APInt::tcFullMultiply(WordType *dst, const WordType *lhs, |
| 2355 | const WordType *rhs, unsigned lhsParts, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2356 | unsigned rhsParts) { |
Neil Booth | 0ea72a9 | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2357 | /* Put the narrower number on the LHS for less loops below. */ |
| 2358 | if (lhsParts > rhsParts) { |
| 2359 | return tcFullMultiply (dst, rhs, lhs, rhsParts, lhsParts); |
| 2360 | } else { |
Neil Booth | 0ea72a9 | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2361 | assert(dst != lhs && dst != rhs); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2362 | |
Neil Booth | 0ea72a9 | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2363 | tcSet(dst, 0, rhsParts); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2364 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2365 | for (unsigned i = 0; i < lhsParts; i++) |
| 2366 | tcMultiplyPart(&dst[i], rhs, lhs[i], 0, rhsParts, rhsParts + 1, true); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2367 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2368 | unsigned n = lhsParts + rhsParts; |
Neil Booth | 0ea72a9 | 2007-10-06 00:24:48 +0000 | [diff] [blame] | 2369 | |
| 2370 | return n - (dst[n - 1] == 0); |
| 2371 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2372 | } |
| 2373 | |
| 2374 | /* If RHS is zero LHS and REMAINDER are left unchanged, return one. |
| 2375 | Otherwise set LHS to LHS / RHS with the fractional part discarded, |
| 2376 | set REMAINDER to the remainder, return zero. i.e. |
| 2377 | |
| 2378 | OLD_LHS = RHS * LHS + REMAINDER |
| 2379 | |
| 2380 | SCRATCH is a bignum of the same size as the operands and result for |
| 2381 | use by the routine; its contents need not be initialized and are |
| 2382 | destroyed. LHS, REMAINDER and SCRATCH must be distinct. |
| 2383 | */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2384 | int APInt::tcDivide(WordType *lhs, const WordType *rhs, |
| 2385 | WordType *remainder, WordType *srhs, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2386 | unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2387 | assert(lhs != remainder && lhs != srhs && remainder != srhs); |
| 2388 | |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2389 | unsigned shiftCount = tcMSB(rhs, parts) + 1; |
Chris Lattner | fe02c1f | 2007-08-20 22:49:32 +0000 | [diff] [blame] | 2390 | if (shiftCount == 0) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2391 | return true; |
| 2392 | |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2393 | shiftCount = parts * APINT_BITS_PER_WORD - shiftCount; |
| 2394 | unsigned n = shiftCount / APINT_BITS_PER_WORD; |
| 2395 | WordType mask = (WordType) 1 << (shiftCount % APINT_BITS_PER_WORD); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2396 | |
| 2397 | tcAssign(srhs, rhs, parts); |
| 2398 | tcShiftLeft(srhs, parts, shiftCount); |
| 2399 | tcAssign(remainder, lhs, parts); |
| 2400 | tcSet(lhs, 0, parts); |
| 2401 | |
| 2402 | /* Loop, subtracting SRHS if REMAINDER is greater and adding that to |
| 2403 | the total. */ |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 2404 | for (;;) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2405 | int compare; |
| 2406 | |
| 2407 | compare = tcCompare(remainder, srhs, parts); |
| 2408 | if (compare >= 0) { |
| 2409 | tcSubtract(remainder, srhs, 0, parts); |
| 2410 | lhs[n] |= mask; |
| 2411 | } |
| 2412 | |
| 2413 | if (shiftCount == 0) |
| 2414 | break; |
| 2415 | shiftCount--; |
| 2416 | tcShiftRight(srhs, parts, 1); |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 2417 | if ((mask >>= 1) == 0) { |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2418 | mask = (WordType) 1 << (APINT_BITS_PER_WORD - 1); |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 2419 | n--; |
| 2420 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2421 | } |
| 2422 | |
| 2423 | return false; |
| 2424 | } |
| 2425 | |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 2426 | /// Shift a bignum left Cound bits in-place. Shifted in bits are zero. There are |
| 2427 | /// no restrictions on Count. |
| 2428 | void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) { |
| 2429 | // Don't bother performing a no-op shift. |
| 2430 | if (!Count) |
| 2431 | return; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2432 | |
Craig Topper | c6b0568 | 2017-04-24 17:00:22 +0000 | [diff] [blame] | 2433 | // WordShift is the inter-part shift; BitShift is the intra-part shift. |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 2434 | unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); |
| 2435 | unsigned BitShift = Count % APINT_BITS_PER_WORD; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2436 | |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 2437 | // Fastpath for moving by whole words. |
| 2438 | if (BitShift == 0) { |
| 2439 | std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); |
| 2440 | } else { |
| 2441 | while (Words-- > WordShift) { |
| 2442 | Dst[Words] = Dst[Words - WordShift] << BitShift; |
| 2443 | if (Words > WordShift) |
| 2444 | Dst[Words] |= |
| 2445 | Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2446 | } |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2447 | } |
Craig Topper | a8a4f0d | 2017-04-18 04:39:48 +0000 | [diff] [blame] | 2448 | |
| 2449 | // Fill in the remainder with 0s. |
| 2450 | std::memset(Dst, 0, WordShift * APINT_WORD_SIZE); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2451 | } |
| 2452 | |
Craig Topper | 9575d8f | 2017-04-17 21:43:43 +0000 | [diff] [blame] | 2453 | /// Shift a bignum right Count bits in-place. Shifted in bits are zero. There |
| 2454 | /// are no restrictions on Count. |
| 2455 | void APInt::tcShiftRight(WordType *Dst, unsigned Words, unsigned Count) { |
| 2456 | // Don't bother performing a no-op shift. |
| 2457 | if (!Count) |
| 2458 | return; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2459 | |
Craig Topper | c6b0568 | 2017-04-24 17:00:22 +0000 | [diff] [blame] | 2460 | // WordShift is the inter-part shift; BitShift is the intra-part shift. |
Craig Topper | 9575d8f | 2017-04-17 21:43:43 +0000 | [diff] [blame] | 2461 | unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); |
| 2462 | unsigned BitShift = Count % APINT_BITS_PER_WORD; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2463 | |
Craig Topper | 9575d8f | 2017-04-17 21:43:43 +0000 | [diff] [blame] | 2464 | unsigned WordsToMove = Words - WordShift; |
| 2465 | // Fastpath for moving by whole words. |
| 2466 | if (BitShift == 0) { |
| 2467 | std::memmove(Dst, Dst + WordShift, WordsToMove * APINT_WORD_SIZE); |
| 2468 | } else { |
| 2469 | for (unsigned i = 0; i != WordsToMove; ++i) { |
| 2470 | Dst[i] = Dst[i + WordShift] >> BitShift; |
| 2471 | if (i + 1 != WordsToMove) |
| 2472 | Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift); |
Neil Booth | b618216 | 2007-10-08 13:47:12 +0000 | [diff] [blame] | 2473 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2474 | } |
Craig Topper | 9575d8f | 2017-04-17 21:43:43 +0000 | [diff] [blame] | 2475 | |
| 2476 | // Fill in the remainder with 0s. |
| 2477 | std::memset(Dst + WordsToMove, 0, WordShift * APINT_WORD_SIZE); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2478 | } |
| 2479 | |
| 2480 | /* Bitwise and of two bignums. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2481 | void APInt::tcAnd(WordType *dst, const WordType *rhs, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2482 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2483 | dst[i] &= rhs[i]; |
| 2484 | } |
| 2485 | |
| 2486 | /* Bitwise inclusive or of two bignums. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2487 | void APInt::tcOr(WordType *dst, const WordType *rhs, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2488 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2489 | dst[i] |= rhs[i]; |
| 2490 | } |
| 2491 | |
| 2492 | /* Bitwise exclusive or of two bignums. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2493 | void APInt::tcXor(WordType *dst, const WordType *rhs, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2494 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2495 | dst[i] ^= rhs[i]; |
| 2496 | } |
| 2497 | |
| 2498 | /* Complement a bignum in-place. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2499 | void APInt::tcComplement(WordType *dst, unsigned parts) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2500 | for (unsigned i = 0; i < parts; i++) |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2501 | dst[i] = ~dst[i]; |
| 2502 | } |
| 2503 | |
| 2504 | /* Comparison (unsigned) of two bignums. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2505 | int APInt::tcCompare(const WordType *lhs, const WordType *rhs, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2506 | unsigned parts) { |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2507 | while (parts) { |
Craig Topper | 99cfe4f | 2017-04-01 21:50:06 +0000 | [diff] [blame] | 2508 | parts--; |
Craig Topper | 1dc8fc8 | 2017-04-21 16:13:15 +0000 | [diff] [blame] | 2509 | if (lhs[parts] != rhs[parts]) |
| 2510 | return (lhs[parts] > rhs[parts]) ? 1 : -1; |
Craig Topper | 99cfe4f | 2017-04-01 21:50:06 +0000 | [diff] [blame] | 2511 | } |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2512 | |
| 2513 | return 0; |
| 2514 | } |
| 2515 | |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2516 | /* Set the least significant BITS bits of a bignum, clear the |
| 2517 | rest. */ |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2518 | void APInt::tcSetLeastSignificantBits(WordType *dst, unsigned parts, |
Craig Topper | 6a851808 | 2017-03-28 05:32:55 +0000 | [diff] [blame] | 2519 | unsigned bits) { |
Craig Topper | b003816 | 2017-03-28 05:32:52 +0000 | [diff] [blame] | 2520 | unsigned i = 0; |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2521 | while (bits > APINT_BITS_PER_WORD) { |
| 2522 | dst[i++] = ~(WordType) 0; |
| 2523 | bits -= APINT_BITS_PER_WORD; |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2524 | } |
| 2525 | |
| 2526 | if (bits) |
Craig Topper | 55229b7 | 2017-04-02 19:17:22 +0000 | [diff] [blame] | 2527 | dst[i++] = ~(WordType) 0 >> (APINT_BITS_PER_WORD - bits); |
Chris Lattner | 6b69568 | 2007-08-16 15:56:55 +0000 | [diff] [blame] | 2528 | |
| 2529 | while (i < parts) |
| 2530 | dst[i++] = 0; |
| 2531 | } |