[llvm-commits] [llvm] r58961 - /llvm/trunk/include/llvm/ADT/StringExtras.h
Chris Lattner
sabre at nondot.org
Sun Nov 9 20:22:48 PST 2008
Author: lattner
Date: Sun Nov 9 22:22:46 2008
New Revision: 58961
URL: http://llvm.org/viewvc/llvm-project?rev=58961&view=rev
Log:
split out the functionality of utohexstr into a new utohex_buffer
helper. This allows us to convert numbers to hex without necessarily
needing to make a std::string to hold the result.
Modified:
llvm/trunk/include/llvm/ADT/StringExtras.h
Modified: llvm/trunk/include/llvm/ADT/StringExtras.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/StringExtras.h?rev=58961&r1=58960&r2=58961&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/StringExtras.h (original)
+++ llvm/trunk/include/llvm/ADT/StringExtras.h Sun Nov 9 22:22:46 2008
@@ -29,19 +29,34 @@
return X < 10 ? '0' + X : 'A' + X - 10;
}
-static inline std::string utohexstr(uint64_t X) {
- char Buffer[40];
- char *BufPtr = Buffer+39;
-
- *BufPtr = 0; // Null terminate buffer...
- if (X == 0) *--BufPtr = '0'; // Handle special case...
+/// utohex_buffer - Emit the specified number into the buffer specified by
+/// BufferEnd, returning a pointer to the start of the string. This can be used
+/// like this: (note that the buffer must be large enough to handle any number):
+/// char Buffer[40];
+/// printf("0x%s", utohex_buffer(X, Buffer+40));
+///
+/// This should only be used with unsigned types.
+///
+template<typename IntTy>
+static inline char *utohex_buffer(IntTy X, char *BufferEnd) {
+ char *BufPtr = BufferEnd;
+ *--BufPtr = 0; // Null terminate buffer.
+ if (X == 0) {
+ *--BufPtr = '0'; // Handle special case.
+ return BufPtr;
+ }
while (X) {
unsigned char Mod = static_cast<unsigned char>(X) & 15;
*--BufPtr = hexdigit(Mod);
X >>= 4;
}
- return std::string(BufPtr);
+ return BufPtr;
+}
+
+static inline std::string utohexstr(uint64_t X) {
+ char Buffer[40];
+ return utohex_buffer(X, Buffer);
}
static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
More information about the llvm-commits
mailing list