blob: 1796f9f956888d32088e26d5ebd50c42a4b3eddb [file] [log] [blame]
David Greene191cf282009-07-13 16:49:27 +00001//===-- llvm/Support/FormattedStream.cpp - Formatted streams ----*- C++ -*-===//
David Greene62fe47a2009-07-10 21:14:44 +00002//
3// The LLVM Compiler Infrastructure
4//
David Greene191cf282009-07-13 16:49:27 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
David Greene62fe47a2009-07-10 21:14:44 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner1f318e02009-07-14 23:14:10 +000010// This file contains the implementation of formatted_raw_ostream.
David Greene62fe47a2009-07-10 21:14:44 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/FormattedStream.h"
David Greeneed0e2ad2009-07-23 23:21:10 +000015#include <algorithm>
16
David Greene191cf282009-07-13 16:49:27 +000017using namespace llvm;
David Greene62fe47a2009-07-10 21:14:44 +000018
David Greene191cf282009-07-13 16:49:27 +000019/// ComputeColumn - Examine the current output and figure out which
20/// column we end up in after output.
21///
Dan Gohmanad60f662009-07-16 15:24:40 +000022void formatted_raw_ostream::ComputeColumn(const char *Ptr, size_t Size) {
David Greene191cf282009-07-13 16:49:27 +000023 // Keep track of the current column by scanning the string for
24 // special characters
David Greene62fe47a2009-07-10 21:14:44 +000025
David Greene191cf282009-07-13 16:49:27 +000026 for (const char *epos = Ptr + Size; Ptr != epos; ++Ptr) {
27 ++Column;
28 if (*Ptr == '\n' || *Ptr == '\r')
29 Column = 0;
30 else if (*Ptr == '\t')
31 Column += (8 - (Column & 0x7)) & 0x7;
David Greene62fe47a2009-07-10 21:14:44 +000032 }
33}
David Greene191cf282009-07-13 16:49:27 +000034
35/// PadToColumn - Align the output to some column number.
36///
37/// \param NewCol - The column to move to.
38/// \param MinPad - The minimum space to give after the most recent
39/// I/O, even if the current column + minpad > newcol.
40///
Chris Lattner1f318e02009-07-14 23:14:10 +000041void formatted_raw_ostream::PadToColumn(unsigned NewCol, unsigned MinPad) {
David Greene191cf282009-07-13 16:49:27 +000042 flush();
43
44 // Output spaces until we reach the desired column.
45 unsigned num = NewCol - Column;
Chris Lattner1f318e02009-07-14 23:14:10 +000046 if (NewCol < Column || num < MinPad)
David Greene191cf282009-07-13 16:49:27 +000047 num = MinPad;
David Greene191cf282009-07-13 16:49:27 +000048
David Greeneed0e2ad2009-07-23 23:21:10 +000049 // Keep a buffer of spaces handy to speed up processing.
50 static char Spaces[MAX_COLUMN_PAD];
51 static bool Initialized = false;
52 if (!Initialized) {
53 std::fill_n(Spaces, MAX_COLUMN_PAD, ' '),
54 Initialized = true;
55 }
56
57 assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding");
58
59 write(Spaces, num);
David Greene191cf282009-07-13 16:49:27 +000060}
61
David Greene71847812009-07-14 20:18:05 +000062/// fouts() - This returns a reference to a formatted_raw_ostream for
63/// standard output. Use it like: fouts() << "foo" << "bar";
64formatted_raw_ostream &llvm::fouts() {
65 static formatted_raw_ostream S(outs());
66 return S;
67}
68
69/// ferrs() - This returns a reference to a formatted_raw_ostream for
70/// standard error. Use it like: ferrs() << "foo" << "bar";
71formatted_raw_ostream &llvm::ferrs() {
72 static formatted_raw_ostream S(errs());
73 return S;
74}