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