Daniel Dunbar | e655128 | 2009-09-16 22:38:48 +0000 | [diff] [blame] | 1 | //===-- StringRef.cpp - Lightweight String References ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/ADT/StringRef.h" |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/APInt.h" |
Ted Kremenek | 13302ec | 2010-11-07 06:09:02 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/OwningPtr.h" |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 13 | #include <bitset> |
Douglas Gregor | ad6b6da | 2010-01-07 00:51:54 +0000 | [diff] [blame] | 14 | |
Daniel Dunbar | e655128 | 2009-09-16 22:38:48 +0000 | [diff] [blame] | 15 | using namespace llvm; |
| 16 | |
Daniel Dunbar | 77696be | 2009-09-22 03:34:40 +0000 | [diff] [blame] | 17 | // MSVC emits references to this into the translation units which reference it. |
| 18 | #ifndef _MSC_VER |
Daniel Dunbar | e655128 | 2009-09-16 22:38:48 +0000 | [diff] [blame] | 19 | const size_t StringRef::npos; |
Daniel Dunbar | 77696be | 2009-09-22 03:34:40 +0000 | [diff] [blame] | 20 | #endif |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 21 | |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 22 | static char ascii_tolower(char x) { |
| 23 | if (x >= 'A' && x <= 'Z') |
| 24 | return x - 'A' + 'a'; |
| 25 | return x; |
| 26 | } |
| 27 | |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 28 | static bool ascii_isdigit(char x) { |
| 29 | return x >= '0' && x <= '9'; |
| 30 | } |
| 31 | |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 32 | /// compare_lower - Compare strings, ignoring case. |
| 33 | int StringRef::compare_lower(StringRef RHS) const { |
Daniel Dunbar | 58ce7ac | 2009-11-19 18:53:18 +0000 | [diff] [blame] | 34 | for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) { |
Benjamin Kramer | 0043e35 | 2010-08-26 14:21:08 +0000 | [diff] [blame] | 35 | unsigned char LHC = ascii_tolower(Data[I]); |
| 36 | unsigned char RHC = ascii_tolower(RHS.Data[I]); |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 37 | if (LHC != RHC) |
| 38 | return LHC < RHC ? -1 : 1; |
| 39 | } |
| 40 | |
| 41 | if (Length == RHS.Length) |
Benjamin Kramer | 0043e35 | 2010-08-26 14:21:08 +0000 | [diff] [blame] | 42 | return 0; |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 43 | return Length < RHS.Length ? -1 : 1; |
| 44 | } |
| 45 | |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 46 | /// compare_numeric - Compare strings, handle embedded numbers. |
| 47 | int StringRef::compare_numeric(StringRef RHS) const { |
| 48 | for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) { |
Jakob Stoklund Olesen | 7850dd0 | 2011-09-30 17:03:55 +0000 | [diff] [blame] | 49 | // Check for sequences of digits. |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 50 | if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) { |
Jakob Stoklund Olesen | 7850dd0 | 2011-09-30 17:03:55 +0000 | [diff] [blame] | 51 | // The longer sequence of numbers is considered larger. |
| 52 | // This doesn't really handle prefixed zeros well. |
| 53 | size_t J; |
| 54 | for (J = I + 1; J != E + 1; ++J) { |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 55 | bool ld = J < Length && ascii_isdigit(Data[J]); |
| 56 | bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]); |
| 57 | if (ld != rd) |
| 58 | return rd ? -1 : 1; |
| 59 | if (!rd) |
| 60 | break; |
| 61 | } |
Jakob Stoklund Olesen | 7850dd0 | 2011-09-30 17:03:55 +0000 | [diff] [blame] | 62 | // The two number sequences have the same length (J-I), just memcmp them. |
| 63 | if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) |
| 64 | return Res < 0 ? -1 : 1; |
| 65 | // Identical number sequences, continue search after the numbers. |
| 66 | I = J - 1; |
| 67 | continue; |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 68 | } |
Jakob Stoklund Olesen | 7850dd0 | 2011-09-30 17:03:55 +0000 | [diff] [blame] | 69 | if (Data[I] != RHS.Data[I]) |
| 70 | return (unsigned char)Data[I] < (unsigned char)RHS.Data[I] ? -1 : 1; |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 71 | } |
| 72 | if (Length == RHS.Length) |
Benjamin Kramer | 0043e35 | 2010-08-26 14:21:08 +0000 | [diff] [blame] | 73 | return 0; |
Jakob Stoklund Olesen | 160a3bf | 2010-05-26 21:47:28 +0000 | [diff] [blame] | 74 | return Length < RHS.Length ? -1 : 1; |
| 75 | } |
| 76 | |
Douglas Gregor | 7e54d5b | 2009-12-31 04:24:34 +0000 | [diff] [blame] | 77 | // Compute the edit distance between the two given strings. |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 78 | unsigned StringRef::edit_distance(llvm::StringRef Other, |
Douglas Gregor | 5ee568a | 2010-10-19 22:13:48 +0000 | [diff] [blame] | 79 | bool AllowReplacements, |
| 80 | unsigned MaxEditDistance) { |
Douglas Gregor | 7e54d5b | 2009-12-31 04:24:34 +0000 | [diff] [blame] | 81 | // The algorithm implemented below is the "classic" |
| 82 | // dynamic-programming algorithm for computing the Levenshtein |
| 83 | // distance, which is described here: |
| 84 | // |
| 85 | // http://en.wikipedia.org/wiki/Levenshtein_distance |
| 86 | // |
| 87 | // Although the algorithm is typically described using an m x n |
| 88 | // array, only two rows are used at a time, so this implemenation |
| 89 | // just keeps two separate vectors for those two rows. |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 90 | size_type m = size(); |
| 91 | size_type n = Other.size(); |
| 92 | |
Douglas Gregor | 2772ea8 | 2010-01-07 02:24:06 +0000 | [diff] [blame] | 93 | const unsigned SmallBufferSize = 64; |
| 94 | unsigned SmallBuffer[SmallBufferSize]; |
Ted Kremenek | 13302ec | 2010-11-07 06:09:02 +0000 | [diff] [blame] | 95 | llvm::OwningArrayPtr<unsigned> Allocated; |
Douglas Gregor | 2772ea8 | 2010-01-07 02:24:06 +0000 | [diff] [blame] | 96 | unsigned *previous = SmallBuffer; |
Ted Kremenek | 13302ec | 2010-11-07 06:09:02 +0000 | [diff] [blame] | 97 | if (2*(n + 1) > SmallBufferSize) { |
| 98 | previous = new unsigned [2*(n+1)]; |
| 99 | Allocated.reset(previous); |
| 100 | } |
Douglas Gregor | 2772ea8 | 2010-01-07 02:24:06 +0000 | [diff] [blame] | 101 | unsigned *current = previous + (n + 1); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 102 | |
| 103 | for (unsigned i = 0; i <= n; ++i) |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 104 | previous[i] = i; |
| 105 | |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 106 | for (size_type y = 1; y <= m; ++y) { |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 107 | current[0] = y; |
Douglas Gregor | 5ee568a | 2010-10-19 22:13:48 +0000 | [diff] [blame] | 108 | unsigned BestThisRow = current[0]; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 109 | |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 110 | for (size_type x = 1; x <= n; ++x) { |
| 111 | if (AllowReplacements) { |
| 112 | current[x] = min(previous[x-1] + ((*this)[y-1] == Other[x-1]? 0u:1u), |
| 113 | min(current[x-1], previous[x])+1); |
| 114 | } |
| 115 | else { |
| 116 | if ((*this)[y-1] == Other[x-1]) current[x] = previous[x-1]; |
| 117 | else current[x] = min(current[x-1], previous[x]) + 1; |
| 118 | } |
Douglas Gregor | 5ee568a | 2010-10-19 22:13:48 +0000 | [diff] [blame] | 119 | BestThisRow = min(BestThisRow, current[x]); |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 120 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 121 | |
Douglas Gregor | 5ee568a | 2010-10-19 22:13:48 +0000 | [diff] [blame] | 122 | if (MaxEditDistance && BestThisRow > MaxEditDistance) |
| 123 | return MaxEditDistance + 1; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 124 | |
Douglas Gregor | ad6b6da | 2010-01-07 00:51:54 +0000 | [diff] [blame] | 125 | unsigned *tmp = current; |
| 126 | current = previous; |
| 127 | previous = tmp; |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Douglas Gregor | ad6b6da | 2010-01-07 00:51:54 +0000 | [diff] [blame] | 130 | unsigned Result = previous[n]; |
Douglas Gregor | ad6b6da | 2010-01-07 00:51:54 +0000 | [diff] [blame] | 131 | return Result; |
Douglas Gregor | 441c8b4 | 2009-12-30 17:23:44 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 134 | //===----------------------------------------------------------------------===// |
| 135 | // String Searching |
| 136 | //===----------------------------------------------------------------------===// |
| 137 | |
| 138 | |
| 139 | /// find - Search for the first string \arg Str in the string. |
| 140 | /// |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 141 | /// \return - The index of the first occurrence of \arg Str, or npos if not |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 142 | /// found. |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 143 | size_t StringRef::find(StringRef Str, size_t From) const { |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 144 | size_t N = Str.size(); |
| 145 | if (N > Length) |
| 146 | return npos; |
Benjamin Kramer | 6e6a558 | 2011-10-15 10:08:31 +0000 | [diff] [blame^] | 147 | |
| 148 | // For short haystacks or unsupported needles fall back to the naive algorithm |
| 149 | if (Length < 16 || N > 255 || N == 0) { |
| 150 | for (size_t e = Length - N + 1, i = min(From, e); i != e; ++i) |
| 151 | if (substr(i, N).equals(Str)) |
| 152 | return i; |
| 153 | return npos; |
| 154 | } |
| 155 | |
| 156 | // Build the bad char heuristic table, with uint8_t to reduce cache thrashing. |
| 157 | uint8_t BadCharSkip[256]; |
| 158 | std::memset(BadCharSkip, N, 256); |
| 159 | for (unsigned i = 0; i != N-1; ++i) |
| 160 | BadCharSkip[(uint8_t)Str[i]] = N-1-i; |
| 161 | |
| 162 | unsigned Len = Length, Pos = min(From, Length); |
| 163 | while (Len >= N) { |
| 164 | if (substr(Pos, N).equals(Str)) // See if this is the correct substring. |
| 165 | return Pos; |
| 166 | |
| 167 | // Otherwise skip the appropriate number of bytes. |
| 168 | uint8_t Skip = BadCharSkip[(uint8_t)Data[Pos+N-1]]; |
| 169 | Len -= Skip; |
| 170 | Pos += Skip; |
| 171 | } |
| 172 | |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 173 | return npos; |
| 174 | } |
| 175 | |
| 176 | /// rfind - Search for the last string \arg Str in the string. |
| 177 | /// |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 178 | /// \return - The index of the last occurrence of \arg Str, or npos if not |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 179 | /// found. |
Daniel Dunbar | 2928c83 | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 180 | size_t StringRef::rfind(StringRef Str) const { |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 181 | size_t N = Str.size(); |
| 182 | if (N > Length) |
| 183 | return npos; |
| 184 | for (size_t i = Length - N + 1, e = 0; i != e;) { |
| 185 | --i; |
| 186 | if (substr(i, N).equals(Str)) |
| 187 | return i; |
| 188 | } |
| 189 | return npos; |
| 190 | } |
| 191 | |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 192 | /// find_first_of - Find the first character in the string that is in \arg |
| 193 | /// Chars, or npos if not found. |
| 194 | /// |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 195 | /// Note: O(size() + Chars.size()) |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 196 | StringRef::size_type StringRef::find_first_of(StringRef Chars, |
| 197 | size_t From) const { |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 198 | std::bitset<1 << CHAR_BIT> CharBits; |
| 199 | for (size_type i = 0; i != Chars.size(); ++i) |
| 200 | CharBits.set((unsigned char)Chars[i]); |
| 201 | |
Daniel Dunbar | 58ce7ac | 2009-11-19 18:53:18 +0000 | [diff] [blame] | 202 | for (size_type i = min(From, Length), e = Length; i != e; ++i) |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 203 | if (CharBits.test((unsigned char)Data[i])) |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 204 | return i; |
| 205 | return npos; |
| 206 | } |
| 207 | |
| 208 | /// find_first_not_of - Find the first character in the string that is not |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 209 | /// \arg C or npos if not found. |
| 210 | StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const { |
Daniel Dunbar | 58ce7ac | 2009-11-19 18:53:18 +0000 | [diff] [blame] | 211 | for (size_type i = min(From, Length), e = Length; i != e; ++i) |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 212 | if (Data[i] != C) |
| 213 | return i; |
| 214 | return npos; |
| 215 | } |
| 216 | |
| 217 | /// find_first_not_of - Find the first character in the string that is not |
| 218 | /// in the string \arg Chars, or npos if not found. |
| 219 | /// |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 220 | /// Note: O(size() + Chars.size()) |
Daniel Dunbar | 64066bd | 2009-11-11 00:28:53 +0000 | [diff] [blame] | 221 | StringRef::size_type StringRef::find_first_not_of(StringRef Chars, |
| 222 | size_t From) const { |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 223 | std::bitset<1 << CHAR_BIT> CharBits; |
| 224 | for (size_type i = 0; i != Chars.size(); ++i) |
| 225 | CharBits.set((unsigned char)Chars[i]); |
| 226 | |
Daniel Dunbar | 58ce7ac | 2009-11-19 18:53:18 +0000 | [diff] [blame] | 227 | for (size_type i = min(From, Length), e = Length; i != e; ++i) |
Benjamin Kramer | 250eb00 | 2010-08-23 18:16:08 +0000 | [diff] [blame] | 228 | if (!CharBits.test((unsigned char)Data[i])) |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 229 | return i; |
| 230 | return npos; |
| 231 | } |
| 232 | |
Michael J. Spencer | 63c133b | 2010-11-30 23:27:35 +0000 | [diff] [blame] | 233 | /// find_last_of - Find the last character in the string that is in \arg C, |
| 234 | /// or npos if not found. |
| 235 | /// |
| 236 | /// Note: O(size() + Chars.size()) |
| 237 | StringRef::size_type StringRef::find_last_of(StringRef Chars, |
| 238 | size_t From) const { |
| 239 | std::bitset<1 << CHAR_BIT> CharBits; |
| 240 | for (size_type i = 0; i != Chars.size(); ++i) |
| 241 | CharBits.set((unsigned char)Chars[i]); |
| 242 | |
| 243 | for (size_type i = min(From, Length) - 1, e = -1; i != e; --i) |
| 244 | if (CharBits.test((unsigned char)Data[i])) |
| 245 | return i; |
| 246 | return npos; |
| 247 | } |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 248 | |
| 249 | //===----------------------------------------------------------------------===// |
| 250 | // Helpful Algorithms |
| 251 | //===----------------------------------------------------------------------===// |
| 252 | |
| 253 | /// count - Return the number of non-overlapped occurrences of \arg Str in |
| 254 | /// the string. |
Daniel Dunbar | 2928c83 | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 255 | size_t StringRef::count(StringRef Str) const { |
Chris Lattner | 05a32c8 | 2009-09-20 01:22:16 +0000 | [diff] [blame] | 256 | size_t Count = 0; |
| 257 | size_t N = Str.size(); |
| 258 | if (N > Length) |
| 259 | return 0; |
| 260 | for (size_t i = 0, e = Length - N + 1; i != e; ++i) |
| 261 | if (substr(i, N).equals(Str)) |
| 262 | ++Count; |
| 263 | return Count; |
| 264 | } |
| 265 | |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 266 | static unsigned GetAutoSenseRadix(StringRef &Str) { |
| 267 | if (Str.startswith("0x")) { |
| 268 | Str = Str.substr(2); |
| 269 | return 16; |
| 270 | } else if (Str.startswith("0b")) { |
| 271 | Str = Str.substr(2); |
| 272 | return 2; |
| 273 | } else if (Str.startswith("0")) { |
| 274 | return 8; |
| 275 | } else { |
| 276 | return 10; |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | |
Chris Lattner | 63c6b7d | 2009-09-19 23:58:48 +0000 | [diff] [blame] | 281 | /// GetAsUnsignedInteger - Workhorse method that converts a integer character |
| 282 | /// sequence of radix up to 36 to an unsigned long long value. |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 283 | static bool GetAsUnsignedInteger(StringRef Str, unsigned Radix, |
| 284 | unsigned long long &Result) { |
| 285 | // Autosense radix if not specified. |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 286 | if (Radix == 0) |
| 287 | Radix = GetAutoSenseRadix(Str); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 288 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 289 | // Empty strings (after the radix autosense) are invalid. |
| 290 | if (Str.empty()) return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 291 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 292 | // Parse all the bytes of the string given this radix. Watch for overflow. |
| 293 | Result = 0; |
| 294 | while (!Str.empty()) { |
| 295 | unsigned CharVal; |
| 296 | if (Str[0] >= '0' && Str[0] <= '9') |
| 297 | CharVal = Str[0]-'0'; |
| 298 | else if (Str[0] >= 'a' && Str[0] <= 'z') |
| 299 | CharVal = Str[0]-'a'+10; |
| 300 | else if (Str[0] >= 'A' && Str[0] <= 'Z') |
| 301 | CharVal = Str[0]-'A'+10; |
| 302 | else |
| 303 | return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 304 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 305 | // If the parsed value is larger than the integer radix, the string is |
| 306 | // invalid. |
| 307 | if (CharVal >= Radix) |
| 308 | return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 309 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 310 | // Add in this character. |
| 311 | unsigned long long PrevResult = Result; |
| 312 | Result = Result*Radix+CharVal; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 313 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 314 | // Check for overflow. |
| 315 | if (Result < PrevResult) |
| 316 | return true; |
| 317 | |
| 318 | Str = Str.substr(1); |
| 319 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 320 | |
Chris Lattner | cea1438 | 2009-09-19 19:47:14 +0000 | [diff] [blame] | 321 | return false; |
| 322 | } |
| 323 | |
| 324 | bool StringRef::getAsInteger(unsigned Radix, unsigned long long &Result) const { |
| 325 | return GetAsUnsignedInteger(*this, Radix, Result); |
| 326 | } |
| 327 | |
Chris Lattner | 63c6b7d | 2009-09-19 23:58:48 +0000 | [diff] [blame] | 328 | |
| 329 | bool StringRef::getAsInteger(unsigned Radix, long long &Result) const { |
| 330 | unsigned long long ULLVal; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 331 | |
Chris Lattner | 63c6b7d | 2009-09-19 23:58:48 +0000 | [diff] [blame] | 332 | // Handle positive strings first. |
| 333 | if (empty() || front() != '-') { |
| 334 | if (GetAsUnsignedInteger(*this, Radix, ULLVal) || |
| 335 | // Check for value so large it overflows a signed value. |
| 336 | (long long)ULLVal < 0) |
| 337 | return true; |
| 338 | Result = ULLVal; |
| 339 | return false; |
| 340 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 341 | |
Chris Lattner | 63c6b7d | 2009-09-19 23:58:48 +0000 | [diff] [blame] | 342 | // Get the positive part of the value. |
| 343 | if (GetAsUnsignedInteger(substr(1), Radix, ULLVal) || |
| 344 | // Reject values so large they'd overflow as negative signed, but allow |
| 345 | // "-0". This negates the unsigned so that the negative isn't undefined |
| 346 | // on signed overflow. |
| 347 | (long long)-ULLVal > 0) |
| 348 | return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 349 | |
Chris Lattner | 63c6b7d | 2009-09-19 23:58:48 +0000 | [diff] [blame] | 350 | Result = -ULLVal; |
| 351 | return false; |
| 352 | } |
| 353 | |
| 354 | bool StringRef::getAsInteger(unsigned Radix, int &Result) const { |
| 355 | long long Val; |
| 356 | if (getAsInteger(Radix, Val) || |
| 357 | (int)Val != Val) |
| 358 | return true; |
| 359 | Result = Val; |
| 360 | return false; |
| 361 | } |
| 362 | |
| 363 | bool StringRef::getAsInteger(unsigned Radix, unsigned &Result) const { |
| 364 | unsigned long long Val; |
| 365 | if (getAsInteger(Radix, Val) || |
| 366 | (unsigned)Val != Val) |
| 367 | return true; |
| 368 | Result = Val; |
| 369 | return false; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 370 | } |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 371 | |
| 372 | bool StringRef::getAsInteger(unsigned Radix, APInt &Result) const { |
| 373 | StringRef Str = *this; |
| 374 | |
| 375 | // Autosense radix if not specified. |
| 376 | if (Radix == 0) |
| 377 | Radix = GetAutoSenseRadix(Str); |
| 378 | |
| 379 | assert(Radix > 1 && Radix <= 36); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 380 | |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 381 | // Empty strings (after the radix autosense) are invalid. |
| 382 | if (Str.empty()) return true; |
| 383 | |
| 384 | // Skip leading zeroes. This can be a significant improvement if |
| 385 | // it means we don't need > 64 bits. |
| 386 | while (!Str.empty() && Str.front() == '0') |
| 387 | Str = Str.substr(1); |
| 388 | |
| 389 | // If it was nothing but zeroes.... |
| 390 | if (Str.empty()) { |
| 391 | Result = APInt(64, 0); |
| 392 | return false; |
| 393 | } |
| 394 | |
| 395 | // (Over-)estimate the required number of bits. |
| 396 | unsigned Log2Radix = 0; |
| 397 | while ((1U << Log2Radix) < Radix) Log2Radix++; |
| 398 | bool IsPowerOf2Radix = ((1U << Log2Radix) == Radix); |
| 399 | |
| 400 | unsigned BitWidth = Log2Radix * Str.size(); |
| 401 | if (BitWidth < Result.getBitWidth()) |
| 402 | BitWidth = Result.getBitWidth(); // don't shrink the result |
| 403 | else |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 404 | Result = Result.zext(BitWidth); |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 405 | |
| 406 | APInt RadixAP, CharAP; // unused unless !IsPowerOf2Radix |
| 407 | if (!IsPowerOf2Radix) { |
| 408 | // These must have the same bit-width as Result. |
| 409 | RadixAP = APInt(BitWidth, Radix); |
| 410 | CharAP = APInt(BitWidth, 0); |
| 411 | } |
| 412 | |
| 413 | // Parse all the bytes of the string given this radix. |
| 414 | Result = 0; |
| 415 | while (!Str.empty()) { |
| 416 | unsigned CharVal; |
| 417 | if (Str[0] >= '0' && Str[0] <= '9') |
| 418 | CharVal = Str[0]-'0'; |
| 419 | else if (Str[0] >= 'a' && Str[0] <= 'z') |
| 420 | CharVal = Str[0]-'a'+10; |
| 421 | else if (Str[0] >= 'A' && Str[0] <= 'Z') |
| 422 | CharVal = Str[0]-'A'+10; |
| 423 | else |
| 424 | return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 425 | |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 426 | // If the parsed value is larger than the integer radix, the string is |
| 427 | // invalid. |
| 428 | if (CharVal >= Radix) |
| 429 | return true; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 430 | |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 431 | // Add in this character. |
| 432 | if (IsPowerOf2Radix) { |
| 433 | Result <<= Log2Radix; |
| 434 | Result |= CharVal; |
| 435 | } else { |
| 436 | Result *= RadixAP; |
| 437 | CharAP = CharVal; |
| 438 | Result += CharAP; |
| 439 | } |
| 440 | |
| 441 | Str = Str.substr(1); |
| 442 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 443 | |
John McCall | 1e7ad39 | 2010-02-28 09:55:58 +0000 | [diff] [blame] | 444 | return false; |
| 445 | } |