aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/FormattedStream.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-07-13 16:49:27 +0000
committerDavid Greene <greened@obbligato.org>2009-07-13 16:49:27 +0000
commit191cf2851b40fea6b7d927d5de8f22c35dd33828 (patch)
treeb00ff7060975acb2e52097e27049260cb1fd264e /include/llvm/Support/FormattedStream.h
parentb134bc31be2c9f906ef5f79cc1366de1f197e25c (diff)
downloadexternal_llvm-191cf2851b40fea6b7d927d5de8f22c35dd33828.zip
external_llvm-191cf2851b40fea6b7d927d5de8f22c35dd33828.tar.gz
external_llvm-191cf2851b40fea6b7d927d5de8f22c35dd33828.tar.bz2
Make some more changes suggested by Chris. Manipulators go away.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/FormattedStream.h')
-rw-r--r--include/llvm/Support/FormattedStream.h49
1 files changed, 10 insertions, 39 deletions
diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h
index fb8aa35..2cead0a 100644
--- a/include/llvm/Support/FormattedStream.h
+++ b/include/llvm/Support/FormattedStream.h
@@ -12,23 +12,24 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_CODEGEN_ASMSTREAM_H
-#define LLVM_CODEGEN_ASMSTREAM_H
+#ifndef LLVM_SUPPORT_FORMATTEDSTREAM_H
+#define LLVM_SUPPORT_FORMATTEDSTREAM_H
#include "llvm/Support/raw_ostream.h"
namespace llvm
{
- /// raw_asm_fd_ostream - Formatted raw_fd_ostream to handle
- /// asm-specific constructs
+ /// formatted_raw_ostream - Formatted raw_fd_ostream to handle
+ /// asm-specific constructs.
///
class formatted_raw_ostream : public raw_ostream {
private:
- /// TheStream - The real stream we output to
+ /// TheStream - The real stream we output to.
///
raw_ostream &TheStream;
- /// Column - The current output column of the stream
+ /// Column - The current output column of the stream. The column
+ /// scheme is zero-based.
///
unsigned Column;
@@ -63,44 +64,14 @@ namespace llvm
formatted_raw_ostream(raw_ostream &Stream)
: raw_ostream(), TheStream(Stream), Column(0) {}
- /// PadToColumn - Align the output to some column number
+ /// PadToColumn - Align the output to some column number.
///
- /// \param NewCol - The column to move to
+ /// \param NewCol - The column to move to.
/// \param MinPad - The minimum space to give after the most
- /// recent I/O, even if the current column + minpad > newcol
+ /// recent I/O, even if the current column + minpad > newcol.
///
void PadToColumn(unsigned NewCol, unsigned MinPad = 0);
};
-
- /// Column - An I/O manipulator to advance the output to a certain column
- ///
- class Column {
- private:
- /// Col - The column to move to
- ///
- unsigned int Col;
-
- public:
- explicit Column(unsigned int c)
- : Col(c) {}
-
- /// operator() - Make Column a functor invokable by a stream
- /// output operator.
- ///
- formatted_raw_ostream &operator()(formatted_raw_ostream &Out) const {
- // Make at least one space before the next output
- Out.PadToColumn(Col, 1);
- return(Out);
- }
- };
-
- /// operator<< - Support coulmn-setting in formatted streams.
- ///
- inline formatted_raw_ostream &operator<<(formatted_raw_ostream &Out,
- const Column &Func)
- {
- return(Func(Out));
- }
}
#endif