summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/StringRef.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-19 19:47:14 +0000
committerChris Lattner <sabre@nondot.org>2009-09-19 19:47:14 +0000
commit68ee70035e7d555372711a64702780af6c6069f5 (patch)
treed84ee3b6da8c2129864e5259e02f7532f4feca31 /llvm/lib/Support/StringRef.cpp
parent1cbaae56cf9d74304d3052cea169c2d09bedd17b (diff)
downloadbcm5719-llvm-68ee70035e7d555372711a64702780af6c6069f5.tar.gz
bcm5719-llvm-68ee70035e7d555372711a64702780af6c6069f5.zip
provide a "strtoull" operation that works on StringRef's.
llvm-svn: 82322
Diffstat (limited to 'llvm/lib/Support/StringRef.cpp')
-rw-r--r--llvm/lib/Support/StringRef.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/llvm/lib/Support/StringRef.cpp b/llvm/lib/Support/StringRef.cpp
index 4751f06645c..2e7d3c0c6e8 100644
--- a/llvm/lib/Support/StringRef.cpp
+++ b/llvm/lib/Support/StringRef.cpp
@@ -11,3 +11,66 @@
using namespace llvm;
const size_t StringRef::npos;
+
+static bool GetAsUnsignedInteger(StringRef Str, unsigned Radix,
+ unsigned long long &Result) {
+ // Autosense radix if not specified.
+ if (Radix == 0) {
+ if (Str[0] != '0') {
+ Radix = 10;
+ } else {
+ if (Str.size() < 2) {
+ Radix = 8;
+ } else {
+ if (Str[1] == 'x') {
+ Str = Str.substr(2);
+ Radix = 16;
+ } else if (Str[1] == 'b') {
+ Str = Str.substr(2);
+ Radix = 2;
+ } else {
+ Radix = 8;
+ }
+ }
+ }
+ }
+
+ // Empty strings (after the radix autosense) are invalid.
+ if (Str.empty()) return true;
+
+ // Parse all the bytes of the string given this radix. Watch for overflow.
+ Result = 0;
+ while (!Str.empty()) {
+ unsigned CharVal;
+ if (Str[0] >= '0' && Str[0] <= '9')
+ CharVal = Str[0]-'0';
+ else if (Str[0] >= 'a' && Str[0] <= 'z')
+ CharVal = Str[0]-'a'+10;
+ else if (Str[0] >= 'A' && Str[0] <= 'Z')
+ CharVal = Str[0]-'A'+10;
+ else
+ return true;
+
+ // If the parsed value is larger than the integer radix, the string is
+ // invalid.
+ if (CharVal >= Radix)
+ return true;
+
+ // Add in this character.
+ unsigned long long PrevResult = Result;
+ Result = Result*Radix+CharVal;
+
+ // Check for overflow.
+ if (Result < PrevResult)
+ return true;
+
+ Str = Str.substr(1);
+ }
+
+ return false;
+}
+
+bool StringRef::getAsInteger(unsigned Radix, unsigned long long &Result) const {
+ return GetAsUnsignedInteger(*this, Radix, Result);
+}
+
OpenPOWER on IntegriCloud