LLVM  8.0.1
FormattedStream.cpp
Go to the documentation of this file.
1 //===-- llvm/Support/FormattedStream.cpp - Formatted streams ----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the implementation of formatted_raw_ostream.
11 //
12 //===----------------------------------------------------------------------===//
13 
15 #include "llvm/Support/Debug.h"
17 #include <algorithm>
18 
19 using namespace llvm;
20 
21 /// UpdatePosition - Examine the given char sequence and figure out which
22 /// column we end up in after output, and how many line breaks are contained.
23 ///
24 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) {
25  unsigned &Column = Position.first;
26  unsigned &Line = Position.second;
27 
28  // Keep track of the current column and line by scanning the string for
29  // special characters
30  for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
31  ++Column;
32  switch (*Ptr) {
33  case '\n':
34  Line += 1;
36  case '\r':
37  Column = 0;
38  break;
39  case '\t':
40  // Assumes tab stop = 8 characters.
41  Column += (8 - (Column & 0x7)) & 0x7;
42  break;
43  }
44  }
45 }
46 
47 /// ComputePosition - Examine the current output and update line and column
48 /// counts.
49 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) {
50  // If our previous scan pointer is inside the buffer, assume we already
51  // scanned those bytes. This depends on raw_ostream to not change our buffer
52  // in unexpected ways.
53  if (Ptr <= Scanned && Scanned <= Ptr + Size)
54  // Scan all characters added since our last scan to determine the new
55  // column.
56  UpdatePosition(Position, Scanned, Size - (Scanned - Ptr));
57  else
58  UpdatePosition(Position, Ptr, Size);
59 
60  // Update the scanning pointer.
61  Scanned = Ptr + Size;
62 }
63 
64 /// PadToColumn - Align the output to some column number.
65 ///
66 /// \param NewCol - The column to move to.
67 ///
69  // Figure out what's in the buffer and add it to the column count.
70  ComputePosition(getBufferStart(), GetNumBytesInBuffer());
71 
72  // Output spaces until we reach the desired column.
73  indent(std::max(int(NewCol - getColumn()), 1));
74  return *this;
75 }
76 
77 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) {
78  // Figure out what's in the buffer and add it to the column count.
79  ComputePosition(Ptr, Size);
80 
81  // Write the data to the underlying stream (which is unbuffered, so
82  // the data will be immediately written out).
83  TheStream->write(Ptr, Size);
84 
85  // Reset the scanning pointer.
86  Scanned = nullptr;
87 }
88 
89 /// fouts() - This returns a reference to a formatted_raw_ostream for
90 /// standard output. Use it like: fouts() << "foo" << "bar";
92  static formatted_raw_ostream S(outs());
93  return S;
94 }
95 
96 /// ferrs() - This returns a reference to a formatted_raw_ostream for
97 /// standard error. Use it like: ferrs() << "foo" << "bar";
99  static formatted_raw_ostream S(errs());
100  return S;
101 }
102 
103 /// fdbgs() - This returns a reference to a formatted_raw_ostream for
104 /// the debug stream. Use it like: fdbgs() << "foo" << "bar";
106  static formatted_raw_ostream S(dbgs());
107  return S;
108 }
raw_ostream & errs()
This returns a reference to a raw_ostream for standard error.
GCNRegPressure max(const GCNRegPressure &P1, const GCNRegPressure &P2)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
#define LLVM_FALLTHROUGH
Definition: Compiler.h:86
formatted_raw_ostream - A raw_ostream that wraps another one and keeps track of line and column posit...
raw_ostream & indent(unsigned NumSpaces)
indent - Insert &#39;NumSpaces&#39; spaces.
Position
Position to insert a new instruction relative to an existing instruction.
formatted_raw_ostream & PadToColumn(unsigned NewCol)
PadToColumn - Align the output to some column number.
unsigned getColumn()
getColumn - Return the column number
raw_ostream & outs()
This returns a reference to a raw_ostream for standard output.
const char * getBufferStart() const
Return the beginning of the current stream buffer, or 0 if the stream is unbuffered.
Definition: raw_ostream.h:318
raw_ostream & write(unsigned char C)
formatted_raw_ostream & fdbgs()
fdbgs() - This returns a reference to a formatted_raw_ostream for debug output.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
size_t GetNumBytesInBuffer() const
Definition: raw_ostream.h:134
static void UpdatePosition(std::pair< unsigned, unsigned > &Position, const char *Ptr, size_t Size)
UpdatePosition - Examine the given char sequence and figure out which column we end up in after outpu...
uint32_t Size
Definition: Profile.cpp:47
formatted_raw_ostream & ferrs()
ferrs() - This returns a reference to a formatted_raw_ostream for standard error. ...
formatted_raw_ostream & fouts()
fouts() - This returns a reference to a formatted_raw_ostream for standard output.