diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-22 23:10:29 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 23:10:29 +0000 |
| commit | e6db2c338b52fe4dadf29c6bdba76b7f8a50ba18 (patch) | |
| tree | e7f28dfedcfc25f6aca57600322a14e6a4fe5db9 /llvm | |
| parent | 9cedbefb24a5d7a0cf6612fb779dbb9f046ffe97 (diff) | |
| download | bcm5719-llvm-e6db2c338b52fe4dadf29c6bdba76b7f8a50ba18.tar.gz bcm5719-llvm-e6db2c338b52fe4dadf29c6bdba76b7f8a50ba18.zip | |
add a raw_ostream::indent method, to be used like:
OS.indent(i) << "whatever";
people seem to like indenting things ;-)
llvm-svn: 79784
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Support/raw_ostream.h | 4 | ||||
| -rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/llvm/include/llvm/Support/raw_ostream.h b/llvm/include/llvm/Support/raw_ostream.h index a9d1b5a7a25..c9a8787429f 100644 --- a/llvm/include/llvm/Support/raw_ostream.h +++ b/llvm/include/llvm/Support/raw_ostream.h @@ -230,6 +230,10 @@ public: // Formatted output, see the format() function in Support/Format.h. raw_ostream &operator<<(const format_object_base &Fmt); + /// indent - Insert 'NumSpaces' spaces. + raw_ostream &indent(unsigned NumSpaces); + + /// Changes the foreground color of text that will be output from this point /// forward. /// @param colors ANSI color to use, the special SAVEDCOLOR can be used to diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 917e6be6699..94507bd67ba 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -289,6 +289,23 @@ raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { } } +/// indent - Insert 'NumSpaces' spaces. +raw_ostream &raw_ostream::indent(unsigned NumSpaces) { + const char *Spaces = " "; + + // Usually the indentation is small, handle it with a fastpath. + if (NumSpaces <= 16) + return write(Spaces, NumSpaces); + + while (NumSpaces) { + unsigned NumToWrite = std::min(NumSpaces, 16U); + write(Spaces, NumToWrite); + NumSpaces -= NumToWrite; + } + return *this; +} + + //===----------------------------------------------------------------------===// // Formatted Output //===----------------------------------------------------------------------===// |

