Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- TextDiagnosticPrinter.cpp - Diagnostic Printer -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This diagnostic client prints out their diagnostic messages. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Dunbar | e1bd4e6 | 2009-03-02 06:16:29 +0000 | [diff] [blame] | 14 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 15 | #include "clang/Basic/FileManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | #include "clang/Basic/SourceManager.h" |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 17 | #include "clang/Frontend/DiagnosticOptions.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 18 | #include "clang/Lex/Lexer.h" |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 19 | #include "llvm/Support/MemoryBuffer.h" |
Chris Lattner | a03a5b5 | 2008-11-19 06:56:25 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | f4c8396 | 2008-11-19 06:51:40 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 23 | #include <algorithm> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 26 | static const enum llvm::raw_ostream::Colors noteColor = |
| 27 | llvm::raw_ostream::BLACK; |
| 28 | static const enum llvm::raw_ostream::Colors fixitColor = |
| 29 | llvm::raw_ostream::GREEN; |
| 30 | static const enum llvm::raw_ostream::Colors caretColor = |
| 31 | llvm::raw_ostream::GREEN; |
| 32 | static const enum llvm::raw_ostream::Colors warningColor = |
| 33 | llvm::raw_ostream::MAGENTA; |
| 34 | static const enum llvm::raw_ostream::Colors errorColor = llvm::raw_ostream::RED; |
| 35 | static const enum llvm::raw_ostream::Colors fatalColor = llvm::raw_ostream::RED; |
Daniel Dunbar | b96b670 | 2010-02-25 03:23:40 +0000 | [diff] [blame] | 36 | // Used for changing only the bold attribute. |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 37 | static const enum llvm::raw_ostream::Colors savedColor = |
| 38 | llvm::raw_ostream::SAVEDCOLOR; |
| 39 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 40 | /// \brief Number of spaces to indent when word-wrapping. |
| 41 | const unsigned WordWrapIndentation = 6; |
| 42 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 43 | TextDiagnosticPrinter::TextDiagnosticPrinter(llvm::raw_ostream &os, |
Daniel Dunbar | aea3641 | 2009-11-11 09:38:24 +0000 | [diff] [blame] | 44 | const DiagnosticOptions &diags, |
| 45 | bool _OwnsOutputStream) |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 46 | : OS(os), LangOpts(0), DiagOpts(&diags), |
Daniel Dunbar | aea3641 | 2009-11-11 09:38:24 +0000 | [diff] [blame] | 47 | LastCaretDiagnosticWasNote(0), |
| 48 | OwnsOutputStream(_OwnsOutputStream) { |
| 49 | } |
| 50 | |
| 51 | TextDiagnosticPrinter::~TextDiagnosticPrinter() { |
| 52 | if (OwnsOutputStream) |
| 53 | delete &OS; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 56 | void TextDiagnosticPrinter::PrintIncludeStack(Diagnostic::Level Level, |
| 57 | SourceLocation Loc, |
| 58 | const SourceManager &SM) { |
| 59 | if (!DiagOpts->ShowNoteIncludeStack && Level == Diagnostic::Note) return; |
| 60 | |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 61 | if (Loc.isInvalid()) return; |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 62 | |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 63 | PresumedLoc PLoc = SM.getPresumedLoc(Loc); |
Douglas Gregor | cb7b1e1 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 64 | if (PLoc.isInvalid()) |
| 65 | return; |
| 66 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 67 | // Print out the other include frames first. |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 68 | PrintIncludeStack(Level, PLoc.getIncludeLoc(), SM); |
Chris Lattner | 5ce24c8 | 2009-04-21 03:57:54 +0000 | [diff] [blame] | 69 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 70 | if (DiagOpts->ShowLocation) |
Chris Lattner | 5ce24c8 | 2009-04-21 03:57:54 +0000 | [diff] [blame] | 71 | OS << "In file included from " << PLoc.getFilename() |
| 72 | << ':' << PLoc.getLine() << ":\n"; |
| 73 | else |
| 74 | OS << "In included file:\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /// HighlightRange - Given a SourceRange and a line number, highlight (with ~'s) |
| 78 | /// any characters in LineNo that intersect the SourceRange. |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 79 | void TextDiagnosticPrinter::HighlightRange(const CharSourceRange &R, |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 80 | const SourceManager &SM, |
Chris Lattner | 3b4d5e9 | 2009-01-17 08:45:21 +0000 | [diff] [blame] | 81 | unsigned LineNo, FileID FID, |
Gordon Henriksen | aad6953 | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 82 | std::string &CaretLine, |
Nuno Lopes | db82568 | 2008-08-05 19:40:20 +0000 | [diff] [blame] | 83 | const std::string &SourceLine) { |
Gordon Henriksen | aad6953 | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 84 | assert(CaretLine.size() == SourceLine.size() && |
| 85 | "Expect a correspondence between source and caret line!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 86 | if (!R.isValid()) return; |
| 87 | |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 88 | SourceLocation Begin = SM.getInstantiationLoc(R.getBegin()); |
| 89 | SourceLocation End = SM.getInstantiationLoc(R.getEnd()); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 34837a5 | 2009-02-17 05:19:10 +0000 | [diff] [blame] | 91 | // If the End location and the start location are the same and are a macro |
| 92 | // location, then the range was something that came from a macro expansion |
| 93 | // or _Pragma. If this is an object-like macro, the best we can do is to |
| 94 | // highlight the range. If this is a function-like macro, we'd also like to |
| 95 | // highlight the arguments. |
| 96 | if (Begin == End && R.getEnd().isMacroID()) |
| 97 | End = SM.getInstantiationRange(R.getEnd()).second; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 30fc933 | 2009-02-04 01:06:56 +0000 | [diff] [blame] | 99 | unsigned StartLineNo = SM.getInstantiationLineNumber(Begin); |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 100 | if (StartLineNo > LineNo || SM.getFileID(Begin) != FID) |
Chris Lattner | e41b7cd | 2008-01-12 06:43:35 +0000 | [diff] [blame] | 101 | return; // No intersection. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 102 | |
Chris Lattner | 30fc933 | 2009-02-04 01:06:56 +0000 | [diff] [blame] | 103 | unsigned EndLineNo = SM.getInstantiationLineNumber(End); |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 104 | if (EndLineNo < LineNo || SM.getFileID(End) != FID) |
Chris Lattner | e41b7cd | 2008-01-12 06:43:35 +0000 | [diff] [blame] | 105 | return; // No intersection. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 106 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 107 | // Compute the column number of the start. |
| 108 | unsigned StartColNo = 0; |
| 109 | if (StartLineNo == LineNo) { |
Chris Lattner | 7da5aea | 2009-02-04 00:55:58 +0000 | [diff] [blame] | 110 | StartColNo = SM.getInstantiationColumnNumber(Begin); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 111 | if (StartColNo) --StartColNo; // Zero base the col #. |
| 112 | } |
| 113 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 114 | // Compute the column number of the end. |
Gordon Henriksen | aad6953 | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 115 | unsigned EndColNo = CaretLine.size(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 116 | if (EndLineNo == LineNo) { |
Chris Lattner | 7da5aea | 2009-02-04 00:55:58 +0000 | [diff] [blame] | 117 | EndColNo = SM.getInstantiationColumnNumber(End); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 118 | if (EndColNo) { |
| 119 | --EndColNo; // Zero base the col #. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 121 | // Add in the length of the token, so that we cover multi-char tokens if |
| 122 | // this is a token range. |
| 123 | if (R.isTokenRange()) |
| 124 | EndColNo += Lexer::MeasureTokenLength(End, SM, *LangOpts); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 125 | } else { |
Gordon Henriksen | aad6953 | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 126 | EndColNo = CaretLine.size(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 127 | } |
| 128 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 129 | |
Chris Lattner | 41e79e2 | 2010-02-12 18:52:52 +0000 | [diff] [blame] | 130 | assert(StartColNo <= EndColNo && "Invalid range!"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 131 | |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 132 | // Check that a token range does not highlight only whitespace. |
| 133 | if (R.isTokenRange()) { |
| 134 | // Pick the first non-whitespace column. |
| 135 | while (StartColNo < SourceLine.size() && |
| 136 | (SourceLine[StartColNo] == ' ' || SourceLine[StartColNo] == '\t')) |
| 137 | ++StartColNo; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 138 | |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 139 | // Pick the last non-whitespace column. |
| 140 | if (EndColNo > SourceLine.size()) |
| 141 | EndColNo = SourceLine.size(); |
| 142 | while (EndColNo-1 && |
| 143 | (SourceLine[EndColNo-1] == ' ' || SourceLine[EndColNo-1] == '\t')) |
| 144 | --EndColNo; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 145 | |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 146 | // If the start/end passed each other, then we are trying to highlight a |
| 147 | // range that just exists in whitespace, which must be some sort of other |
| 148 | // bug. |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 149 | assert(StartColNo <= EndColNo && "Trying to highlight whitespace??"); |
| 150 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 151 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 152 | // Fill the range with ~'s. |
Nuno Lopes | db82568 | 2008-08-05 19:40:20 +0000 | [diff] [blame] | 153 | for (unsigned i = StartColNo; i < EndColNo; ++i) |
Gordon Henriksen | aad6953 | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 154 | CaretLine[i] = '~'; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 157 | /// \brief When the source code line we want to print is too long for |
| 158 | /// the terminal, select the "interesting" region. |
| 159 | static void SelectInterestingSourceRegion(std::string &SourceLine, |
| 160 | std::string &CaretLine, |
| 161 | std::string &FixItInsertionLine, |
Douglas Gregor | cfe1f9d | 2009-05-04 06:27:32 +0000 | [diff] [blame] | 162 | unsigned EndOfCaretToken, |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 163 | unsigned Columns) { |
Douglas Gregor | ce487ef | 2010-04-16 00:23:51 +0000 | [diff] [blame] | 164 | unsigned MaxSize = std::max(SourceLine.size(), |
| 165 | std::max(CaretLine.size(), |
| 166 | FixItInsertionLine.size())); |
| 167 | if (MaxSize > SourceLine.size()) |
| 168 | SourceLine.resize(MaxSize, ' '); |
| 169 | if (MaxSize > CaretLine.size()) |
| 170 | CaretLine.resize(MaxSize, ' '); |
| 171 | if (!FixItInsertionLine.empty() && MaxSize > FixItInsertionLine.size()) |
| 172 | FixItInsertionLine.resize(MaxSize, ' '); |
| 173 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 174 | // Find the slice that we need to display the full caret line |
| 175 | // correctly. |
| 176 | unsigned CaretStart = 0, CaretEnd = CaretLine.size(); |
| 177 | for (; CaretStart != CaretEnd; ++CaretStart) |
| 178 | if (!isspace(CaretLine[CaretStart])) |
| 179 | break; |
| 180 | |
| 181 | for (; CaretEnd != CaretStart; --CaretEnd) |
| 182 | if (!isspace(CaretLine[CaretEnd - 1])) |
| 183 | break; |
Douglas Gregor | cfe1f9d | 2009-05-04 06:27:32 +0000 | [diff] [blame] | 184 | |
| 185 | // Make sure we don't chop the string shorter than the caret token |
| 186 | // itself. |
| 187 | if (CaretEnd < EndOfCaretToken) |
| 188 | CaretEnd = EndOfCaretToken; |
| 189 | |
Douglas Gregor | 844da34 | 2009-05-03 04:33:32 +0000 | [diff] [blame] | 190 | // If we have a fix-it line, make sure the slice includes all of the |
| 191 | // fix-it information. |
| 192 | if (!FixItInsertionLine.empty()) { |
| 193 | unsigned FixItStart = 0, FixItEnd = FixItInsertionLine.size(); |
| 194 | for (; FixItStart != FixItEnd; ++FixItStart) |
| 195 | if (!isspace(FixItInsertionLine[FixItStart])) |
| 196 | break; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 197 | |
Douglas Gregor | 844da34 | 2009-05-03 04:33:32 +0000 | [diff] [blame] | 198 | for (; FixItEnd != FixItStart; --FixItEnd) |
| 199 | if (!isspace(FixItInsertionLine[FixItEnd - 1])) |
| 200 | break; |
| 201 | |
| 202 | if (FixItStart < CaretStart) |
| 203 | CaretStart = FixItStart; |
| 204 | if (FixItEnd > CaretEnd) |
| 205 | CaretEnd = FixItEnd; |
| 206 | } |
| 207 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 208 | // CaretLine[CaretStart, CaretEnd) contains all of the interesting |
| 209 | // parts of the caret line. While this slice is smaller than the |
| 210 | // number of columns we have, try to grow the slice to encompass |
| 211 | // more context. |
| 212 | |
| 213 | // If the end of the interesting region comes before we run out of |
| 214 | // space in the terminal, start at the beginning of the line. |
Douglas Gregor | c95bd4d | 2009-05-15 18:05:24 +0000 | [diff] [blame] | 215 | if (Columns > 3 && CaretEnd < Columns - 3) |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 216 | CaretStart = 0; |
| 217 | |
Douglas Gregor | c95bd4d | 2009-05-15 18:05:24 +0000 | [diff] [blame] | 218 | unsigned TargetColumns = Columns; |
| 219 | if (TargetColumns > 8) |
| 220 | TargetColumns -= 8; // Give us extra room for the ellipses. |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 221 | unsigned SourceLength = SourceLine.size(); |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 222 | while ((CaretEnd - CaretStart) < TargetColumns) { |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 223 | bool ExpandedRegion = false; |
| 224 | // Move the start of the interesting region left until we've |
| 225 | // pulled in something else interesting. |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 226 | if (CaretStart == 1) |
| 227 | CaretStart = 0; |
| 228 | else if (CaretStart > 1) { |
| 229 | unsigned NewStart = CaretStart - 1; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 230 | |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 231 | // Skip over any whitespace we see here; we're looking for |
| 232 | // another bit of interesting text. |
| 233 | while (NewStart && isspace(SourceLine[NewStart])) |
| 234 | --NewStart; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 235 | |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 236 | // Skip over this bit of "interesting" text. |
| 237 | while (NewStart && !isspace(SourceLine[NewStart])) |
| 238 | --NewStart; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 239 | |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 240 | // Move up to the non-whitespace character we just saw. |
| 241 | if (NewStart) |
| 242 | ++NewStart; |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 243 | |
| 244 | // If we're still within our limit, update the starting |
| 245 | // position within the source/caret line. |
Douglas Gregor | 2fb3ea3 | 2009-05-04 06:45:38 +0000 | [diff] [blame] | 246 | if (CaretEnd - NewStart <= TargetColumns) { |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 247 | CaretStart = NewStart; |
| 248 | ExpandedRegion = true; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | // Move the end of the interesting region right until we've |
| 253 | // pulled in something else interesting. |
Daniel Dunbar | 1ef29d2 | 2009-05-03 23:04:40 +0000 | [diff] [blame] | 254 | if (CaretEnd != SourceLength) { |
Daniel Dunbar | 06d1072 | 2009-10-19 09:11:21 +0000 | [diff] [blame] | 255 | assert(CaretEnd < SourceLength && "Unexpected caret position!"); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 256 | unsigned NewEnd = CaretEnd; |
| 257 | |
| 258 | // Skip over any whitespace we see here; we're looking for |
| 259 | // another bit of interesting text. |
Douglas Gregor | 1f0eb56 | 2009-05-18 22:09:16 +0000 | [diff] [blame] | 260 | while (NewEnd != SourceLength && isspace(SourceLine[NewEnd - 1])) |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 261 | ++NewEnd; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 262 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 263 | // Skip over this bit of "interesting" text. |
Douglas Gregor | 1f0eb56 | 2009-05-18 22:09:16 +0000 | [diff] [blame] | 264 | while (NewEnd != SourceLength && !isspace(SourceLine[NewEnd - 1])) |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 265 | ++NewEnd; |
| 266 | |
| 267 | if (NewEnd - CaretStart <= TargetColumns) { |
| 268 | CaretEnd = NewEnd; |
| 269 | ExpandedRegion = true; |
| 270 | } |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 271 | } |
Daniel Dunbar | 1ef29d2 | 2009-05-03 23:04:40 +0000 | [diff] [blame] | 272 | |
| 273 | if (!ExpandedRegion) |
| 274 | break; |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | // [CaretStart, CaretEnd) is the slice we want. Update the various |
| 278 | // output lines to show only this slice, with two-space padding |
| 279 | // before the lines so that it looks nicer. |
Douglas Gregor | 7d101f6 | 2009-05-03 04:12:51 +0000 | [diff] [blame] | 280 | if (CaretEnd < SourceLine.size()) |
| 281 | SourceLine.replace(CaretEnd, std::string::npos, "..."); |
Douglas Gregor | 2167de4 | 2009-05-03 15:24:25 +0000 | [diff] [blame] | 282 | if (CaretEnd < CaretLine.size()) |
| 283 | CaretLine.erase(CaretEnd, std::string::npos); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 284 | if (FixItInsertionLine.size() > CaretEnd) |
| 285 | FixItInsertionLine.erase(CaretEnd, std::string::npos); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 286 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 287 | if (CaretStart > 2) { |
Douglas Gregor | 7d101f6 | 2009-05-03 04:12:51 +0000 | [diff] [blame] | 288 | SourceLine.replace(0, CaretStart, " ..."); |
| 289 | CaretLine.replace(0, CaretStart, " "); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 290 | if (FixItInsertionLine.size() >= CaretStart) |
Douglas Gregor | 7d101f6 | 2009-05-03 04:12:51 +0000 | [diff] [blame] | 291 | FixItInsertionLine.replace(0, CaretStart, " "); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 292 | } |
| 293 | } |
| 294 | |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 295 | void TextDiagnosticPrinter::EmitCaretDiagnostic(Diagnostic::Level Level, |
| 296 | SourceLocation Loc, |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 297 | CharSourceRange *Ranges, |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 298 | unsigned NumRanges, |
Chris Lattner | 5c5db4e | 2010-04-20 20:49:23 +0000 | [diff] [blame] | 299 | const SourceManager &SM, |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 300 | const FixItHint *Hints, |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 301 | unsigned NumHints, |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 302 | unsigned Columns, |
| 303 | unsigned OnMacroInst, |
| 304 | unsigned MacroSkipStart, |
| 305 | unsigned MacroSkipEnd) { |
Daniel Dunbar | efcbe94 | 2009-11-05 02:42:12 +0000 | [diff] [blame] | 306 | assert(LangOpts && "Unexpected diagnostic outside source file processing"); |
Chris Lattner | 55dcef0 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 307 | assert(!Loc.isInvalid() && "must have a valid source location here"); |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 308 | |
| 309 | // If this is a macro ID, first emit information about where this was |
Chris Lattner | 2e77aa1 | 2009-12-04 07:06:35 +0000 | [diff] [blame] | 310 | // instantiated (recursively) then emit information about where the token was |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 311 | // spelled from. |
Chris Lattner | 55dcef0 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 312 | if (!Loc.isFileID()) { |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 313 | // Whether to suppress printing this macro instantiation. |
| 314 | bool Suppressed |
| 315 | = OnMacroInst >= MacroSkipStart && OnMacroInst < MacroSkipEnd; |
| 316 | |
| 317 | |
Chris Lattner | 609b3ab | 2009-02-18 18:50:45 +0000 | [diff] [blame] | 318 | SourceLocation OneLevelUp = SM.getImmediateInstantiationRange(Loc).first; |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 319 | // FIXME: Map ranges? |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 320 | EmitCaretDiagnostic(Level, OneLevelUp, Ranges, NumRanges, SM, 0, 0, Columns, |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 321 | OnMacroInst + 1, MacroSkipStart, MacroSkipEnd); |
| 322 | |
Chris Lattner | 2e77aa1 | 2009-12-04 07:06:35 +0000 | [diff] [blame] | 323 | // Map the location. |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 324 | Loc = SM.getImmediateSpellingLoc(Loc); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 325 | |
Chris Lattner | 676f024 | 2009-02-20 00:25:28 +0000 | [diff] [blame] | 326 | // Map the ranges. |
| 327 | for (unsigned i = 0; i != NumRanges; ++i) { |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 328 | CharSourceRange &R = Ranges[i]; |
| 329 | SourceLocation S = R.getBegin(), E = R.getEnd(); |
| 330 | if (S.isMacroID()) |
| 331 | R.setBegin(SM.getImmediateSpellingLoc(S)); |
| 332 | if (E.isMacroID()) |
| 333 | R.setEnd(SM.getImmediateSpellingLoc(E)); |
Chris Lattner | 676f024 | 2009-02-20 00:25:28 +0000 | [diff] [blame] | 334 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 335 | |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 336 | if (!Suppressed) { |
| 337 | // Get the pretty name, according to #line directives etc. |
| 338 | PresumedLoc PLoc = SM.getPresumedLoc(Loc); |
Douglas Gregor | cb7b1e1 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 339 | if (PLoc.isInvalid()) |
| 340 | return; |
| 341 | |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 342 | // If this diagnostic is not in the main file, print out the |
| 343 | // "included from" lines. |
| 344 | if (LastWarningLoc != PLoc.getIncludeLoc()) { |
| 345 | LastWarningLoc = PLoc.getIncludeLoc(); |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 346 | PrintIncludeStack(Level, LastWarningLoc, SM); |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | if (DiagOpts->ShowLocation) { |
| 350 | // Emit the file/line/column that this expansion came from. |
| 351 | OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':'; |
| 352 | if (DiagOpts->ShowColumn) |
| 353 | OS << PLoc.getColumn() << ':'; |
| 354 | OS << ' '; |
| 355 | } |
| 356 | OS << "note: instantiated from:\n"; |
| 357 | |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 358 | EmitCaretDiagnostic(Level, Loc, Ranges, NumRanges, SM, Hints, NumHints, |
| 359 | Columns, OnMacroInst + 1, MacroSkipStart, |
| 360 | MacroSkipEnd); |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 361 | return; |
Chris Lattner | 2e77aa1 | 2009-12-04 07:06:35 +0000 | [diff] [blame] | 362 | } |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 363 | |
| 364 | if (OnMacroInst == MacroSkipStart) { |
| 365 | // Tell the user that we've skipped contexts. |
| 366 | OS << "note: (skipping " << (MacroSkipEnd - MacroSkipStart) |
| 367 | << " contexts in backtrace; use -fmacro-backtrace-limit=0 to see " |
| 368 | "all)\n"; |
Chris Lattner | 5ce24c8 | 2009-04-21 03:57:54 +0000 | [diff] [blame] | 369 | } |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 370 | |
Chris Lattner | 037fb7f | 2009-05-05 22:03:18 +0000 | [diff] [blame] | 371 | return; |
Chris Lattner | 55dcef0 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 372 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 373 | |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 374 | // Decompose the location into a FID/Offset pair. |
| 375 | std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); |
| 376 | FileID FID = LocInfo.first; |
| 377 | unsigned FileOffset = LocInfo.second; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 378 | |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 379 | // Get information about the buffer it points into. |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 380 | bool Invalid = false; |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 381 | const char *BufStart = SM.getBufferData(FID, &Invalid).data(); |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 382 | if (Invalid) |
Douglas Gregor | aea67db | 2010-03-15 22:54:52 +0000 | [diff] [blame] | 383 | return; |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 384 | |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 385 | unsigned ColNo = SM.getColumnNumber(FID, FileOffset); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 386 | unsigned CaretEndColNo |
Douglas Gregor | cfe1f9d | 2009-05-04 06:27:32 +0000 | [diff] [blame] | 387 | = ColNo + Lexer::MeasureTokenLength(Loc, SM, *LangOpts); |
| 388 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 389 | // Rewind from the current position to the start of the line. |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 390 | const char *TokPtr = BufStart+FileOffset; |
| 391 | const char *LineStart = TokPtr-ColNo+1; // Column # is 1-based. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 392 | |
| 393 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 394 | // Compute the line end. Scan forward from the error position to the end of |
| 395 | // the line. |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 396 | const char *LineEnd = TokPtr; |
Chris Lattner | cd1148b | 2009-03-08 08:11:22 +0000 | [diff] [blame] | 397 | while (*LineEnd != '\n' && *LineEnd != '\r' && *LineEnd != '\0') |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 398 | ++LineEnd; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 399 | |
Daniel Dunbar | 06d1072 | 2009-10-19 09:11:21 +0000 | [diff] [blame] | 400 | // FIXME: This shouldn't be necessary, but the CaretEndColNo can extend past |
| 401 | // the source line length as currently being computed. See |
| 402 | // test/Misc/message-length.c. |
| 403 | CaretEndColNo = std::min(CaretEndColNo, unsigned(LineEnd - LineStart)); |
| 404 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 405 | // Copy the line of code into an std::string for ease of manipulation. |
| 406 | std::string SourceLine(LineStart, LineEnd); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 407 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 408 | // Create a line for the caret that is filled with spaces that is the same |
| 409 | // length as the line of source code. |
| 410 | std::string CaretLine(LineEnd-LineStart, ' '); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 411 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 412 | // Highlight all of the characters covered by Ranges with ~ characters. |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 413 | if (NumRanges) { |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 414 | unsigned LineNo = SM.getLineNumber(FID, FileOffset); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 415 | |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 416 | for (unsigned i = 0, e = NumRanges; i != e; ++i) |
| 417 | HighlightRange(Ranges[i], SM, LineNo, FID, CaretLine, SourceLine); |
Chris Lattner | b88af81 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 418 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 419 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 420 | // Next, insert the caret itself. |
| 421 | if (ColNo-1 < CaretLine.size()) |
| 422 | CaretLine[ColNo-1] = '^'; |
| 423 | else |
| 424 | CaretLine.push_back('^'); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 425 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 426 | // Scan the source line, looking for tabs. If we find any, manually expand |
Chris Lattner | 52388f9 | 2010-01-13 03:06:50 +0000 | [diff] [blame] | 427 | // them to spaces and update the CaretLine to match. |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 428 | for (unsigned i = 0; i != SourceLine.size(); ++i) { |
| 429 | if (SourceLine[i] != '\t') continue; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 430 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 431 | // Replace this tab with at least one space. |
| 432 | SourceLine[i] = ' '; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 433 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 434 | // Compute the number of spaces we need to insert. |
Chris Lattner | 52388f9 | 2010-01-13 03:06:50 +0000 | [diff] [blame] | 435 | unsigned TabStop = DiagOpts->TabStop; |
| 436 | assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop && |
| 437 | "Invalid -ftabstop value"); |
Chris Lattner | 124fca5 | 2010-01-09 21:54:33 +0000 | [diff] [blame] | 438 | unsigned NumSpaces = ((i+TabStop)/TabStop * TabStop) - (i+1); |
| 439 | assert(NumSpaces < TabStop && "Invalid computation of space amt"); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 440 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 441 | // Insert spaces into the SourceLine. |
| 442 | SourceLine.insert(i+1, NumSpaces, ' '); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 443 | |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 444 | // Insert spaces or ~'s into CaretLine. |
| 445 | CaretLine.insert(i+1, NumSpaces, CaretLine[i] == '~' ? '~' : ' '); |
| 446 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 770dbf0 | 2009-04-28 22:33:16 +0000 | [diff] [blame] | 448 | // If we are in -fdiagnostics-print-source-range-info mode, we are trying to |
| 449 | // produce easily machine parsable output. Add a space before the source line |
| 450 | // and the caret to make it trivial to tell the main diagnostic line from what |
| 451 | // the user is intended to see. |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 452 | if (DiagOpts->ShowSourceRanges) { |
Chris Lattner | 770dbf0 | 2009-04-28 22:33:16 +0000 | [diff] [blame] | 453 | SourceLine = ' ' + SourceLine; |
| 454 | CaretLine = ' ' + CaretLine; |
| 455 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 456 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 457 | std::string FixItInsertionLine; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 458 | if (NumHints && DiagOpts->ShowFixits) { |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 459 | for (const FixItHint *Hint = Hints, *LastHint = Hints + NumHints; |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 460 | Hint != LastHint; ++Hint) { |
Douglas Gregor | 783c56f | 2010-08-18 14:24:02 +0000 | [diff] [blame] | 461 | if (!Hint->CodeToInsert.empty()) { |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 462 | // We have an insertion hint. Determine whether the inserted |
| 463 | // code is on the same line as the caret. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 464 | std::pair<FileID, unsigned> HintLocInfo |
Douglas Gregor | 783c56f | 2010-08-18 14:24:02 +0000 | [diff] [blame] | 465 | = SM.getDecomposedInstantiationLoc(Hint->RemoveRange.getBegin()); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 466 | if (SM.getLineNumber(HintLocInfo.first, HintLocInfo.second) == |
| 467 | SM.getLineNumber(FID, FileOffset)) { |
| 468 | // Insert the new code into the line just below the code |
| 469 | // that the user wrote. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 470 | unsigned HintColNo |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 471 | = SM.getColumnNumber(HintLocInfo.first, HintLocInfo.second); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 472 | unsigned LastColumnModified |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 473 | = HintColNo - 1 + Hint->CodeToInsert.size(); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 474 | if (LastColumnModified > FixItInsertionLine.size()) |
| 475 | FixItInsertionLine.resize(LastColumnModified, ' '); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 476 | std::copy(Hint->CodeToInsert.begin(), Hint->CodeToInsert.end(), |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 477 | FixItInsertionLine.begin() + HintColNo - 1); |
Douglas Gregor | 844da34 | 2009-05-03 04:33:32 +0000 | [diff] [blame] | 478 | } else { |
| 479 | FixItInsertionLine.clear(); |
| 480 | break; |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | } |
Douglas Gregor | e44433c | 2010-01-18 19:28:01 +0000 | [diff] [blame] | 484 | // Now that we have the entire fixit line, expand the tabs in it. |
| 485 | // Since we don't want to insert spaces in the middle of a word, |
| 486 | // find each word and the column it should line up with and insert |
| 487 | // spaces until they match. |
| 488 | if (!FixItInsertionLine.empty()) { |
| 489 | unsigned FixItPos = 0; |
| 490 | unsigned LinePos = 0; |
| 491 | unsigned TabExpandedCol = 0; |
| 492 | unsigned LineLength = LineEnd - LineStart; |
| 493 | |
| 494 | while (FixItPos < FixItInsertionLine.size() && LinePos < LineLength) { |
| 495 | // Find the next word in the FixIt line. |
| 496 | while (FixItPos < FixItInsertionLine.size() && |
| 497 | FixItInsertionLine[FixItPos] == ' ') |
| 498 | ++FixItPos; |
| 499 | unsigned CharDistance = FixItPos - TabExpandedCol; |
| 500 | |
| 501 | // Walk forward in the source line, keeping track of |
| 502 | // the tab-expanded column. |
| 503 | for (unsigned I = 0; I < CharDistance; ++I, ++LinePos) |
| 504 | if (LinePos >= LineLength || LineStart[LinePos] != '\t') |
| 505 | ++TabExpandedCol; |
| 506 | else |
| 507 | TabExpandedCol = |
| 508 | (TabExpandedCol/DiagOpts->TabStop + 1) * DiagOpts->TabStop; |
| 509 | |
| 510 | // Adjust the fixit line to match this column. |
| 511 | FixItInsertionLine.insert(FixItPos, TabExpandedCol-FixItPos, ' '); |
| 512 | FixItPos = TabExpandedCol; |
| 513 | |
| 514 | // Walk to the end of the word. |
| 515 | while (FixItPos < FixItInsertionLine.size() && |
| 516 | FixItInsertionLine[FixItPos] != ' ') |
| 517 | ++FixItPos; |
| 518 | } |
| 519 | } |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 520 | } |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 521 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 522 | // If the source line is too long for our terminal, select only the |
| 523 | // "interesting" source region within that line. |
| 524 | if (Columns && SourceLine.size() > Columns) |
| 525 | SelectInterestingSourceRegion(SourceLine, CaretLine, FixItInsertionLine, |
Douglas Gregor | cfe1f9d | 2009-05-04 06:27:32 +0000 | [diff] [blame] | 526 | CaretEndColNo, Columns); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 527 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 528 | // Finally, remove any blank spaces from the end of CaretLine. |
| 529 | while (CaretLine[CaretLine.size()-1] == ' ') |
| 530 | CaretLine.erase(CaretLine.end()-1); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 531 | |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 532 | // Emit what we have computed. |
| 533 | OS << SourceLine << '\n'; |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 534 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 535 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 536 | OS.changeColor(caretColor, true); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 537 | OS << CaretLine << '\n'; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 538 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 539 | OS.resetColor(); |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 540 | |
| 541 | if (!FixItInsertionLine.empty()) { |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 542 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 543 | // Print fixit line in color |
| 544 | OS.changeColor(fixitColor, false); |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 545 | if (DiagOpts->ShowSourceRanges) |
Douglas Gregor | 47f7177 | 2009-05-01 23:32:58 +0000 | [diff] [blame] | 546 | OS << ' '; |
| 547 | OS << FixItInsertionLine << '\n'; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 548 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 549 | OS.resetColor(); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 550 | } |
Douglas Gregor | 4786c15 | 2010-08-19 20:24:43 +0000 | [diff] [blame] | 551 | |
| 552 | if (DiagOpts->ShowParseableFixits) { |
| 553 | |
| 554 | // We follow FixItRewriter's example in not (yet) handling |
| 555 | // fix-its in macros. |
| 556 | bool BadApples = false; |
| 557 | for (const FixItHint *Hint = Hints; Hint != Hints + NumHints; ++Hint) { |
| 558 | if (Hint->RemoveRange.isInvalid() || |
| 559 | Hint->RemoveRange.getBegin().isMacroID() || |
| 560 | Hint->RemoveRange.getEnd().isMacroID()) { |
| 561 | BadApples = true; |
| 562 | break; |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | if (!BadApples) { |
| 567 | for (const FixItHint *Hint = Hints; Hint != Hints + NumHints; ++Hint) { |
| 568 | |
| 569 | SourceLocation B = Hint->RemoveRange.getBegin(); |
| 570 | SourceLocation E = Hint->RemoveRange.getEnd(); |
| 571 | |
| 572 | std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B); |
| 573 | std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(E); |
| 574 | |
| 575 | // Adjust for token ranges. |
| 576 | if (Hint->RemoveRange.isTokenRange()) |
| 577 | EInfo.second += Lexer::MeasureTokenLength(E, SM, *LangOpts); |
| 578 | |
| 579 | // We specifically do not do word-wrapping or tab-expansion here, |
| 580 | // because this is supposed to be easy to parse. |
Douglas Gregor | cb7b1e1 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 581 | PresumedLoc PLoc = SM.getPresumedLoc(B); |
| 582 | if (PLoc.isInvalid()) |
| 583 | break; |
| 584 | |
Douglas Gregor | bf5e09d | 2010-08-20 03:17:33 +0000 | [diff] [blame] | 585 | OS << "fix-it:\""; |
Douglas Gregor | 4786c15 | 2010-08-19 20:24:43 +0000 | [diff] [blame] | 586 | OS.write_escaped(SM.getPresumedLoc(B).getFilename()); |
| 587 | OS << "\":{" << SM.getLineNumber(BInfo.first, BInfo.second) |
| 588 | << ':' << SM.getColumnNumber(BInfo.first, BInfo.second) |
| 589 | << '-' << SM.getLineNumber(EInfo.first, EInfo.second) |
| 590 | << ':' << SM.getColumnNumber(EInfo.first, EInfo.second) |
Douglas Gregor | bf5e09d | 2010-08-20 03:17:33 +0000 | [diff] [blame] | 591 | << "}:\""; |
Douglas Gregor | 4786c15 | 2010-08-19 20:24:43 +0000 | [diff] [blame] | 592 | OS.write_escaped(Hint->CodeToInsert); |
| 593 | OS << "\"\n"; |
| 594 | } |
| 595 | } |
| 596 | } |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 599 | /// \brief Skip over whitespace in the string, starting at the given |
| 600 | /// index. |
| 601 | /// |
| 602 | /// \returns The index of the first non-whitespace character that is |
| 603 | /// greater than or equal to Idx or, if no such character exists, |
| 604 | /// returns the end of the string. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 605 | static unsigned skipWhitespace(unsigned Idx, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 606 | const llvm::SmallVectorImpl<char> &Str, |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 607 | unsigned Length) { |
| 608 | while (Idx < Length && isspace(Str[Idx])) |
| 609 | ++Idx; |
| 610 | return Idx; |
| 611 | } |
| 612 | |
| 613 | /// \brief If the given character is the start of some kind of |
| 614 | /// balanced punctuation (e.g., quotes or parentheses), return the |
| 615 | /// character that will terminate the punctuation. |
| 616 | /// |
| 617 | /// \returns The ending punctuation character, if any, or the NULL |
| 618 | /// character if the input character does not start any punctuation. |
| 619 | static inline char findMatchingPunctuation(char c) { |
| 620 | switch (c) { |
| 621 | case '\'': return '\''; |
| 622 | case '`': return '\''; |
| 623 | case '"': return '"'; |
| 624 | case '(': return ')'; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 625 | case '[': return ']'; |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 626 | case '{': return '}'; |
| 627 | default: break; |
| 628 | } |
| 629 | |
| 630 | return 0; |
| 631 | } |
| 632 | |
| 633 | /// \brief Find the end of the word starting at the given offset |
| 634 | /// within a string. |
| 635 | /// |
| 636 | /// \returns the index pointing one character past the end of the |
| 637 | /// word. |
Daniel Dunbar | eae18f8 | 2009-12-06 09:56:18 +0000 | [diff] [blame] | 638 | static unsigned findEndOfWord(unsigned Start, |
| 639 | const llvm::SmallVectorImpl<char> &Str, |
| 640 | unsigned Length, unsigned Column, |
| 641 | unsigned Columns) { |
| 642 | assert(Start < Str.size() && "Invalid start position!"); |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 643 | unsigned End = Start + 1; |
| 644 | |
Daniel Dunbar | eae18f8 | 2009-12-06 09:56:18 +0000 | [diff] [blame] | 645 | // If we are already at the end of the string, take that as the word. |
| 646 | if (End == Str.size()) |
| 647 | return End; |
| 648 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 649 | // Determine if the start of the string is actually opening |
| 650 | // punctuation, e.g., a quote or parentheses. |
| 651 | char EndPunct = findMatchingPunctuation(Str[Start]); |
| 652 | if (!EndPunct) { |
| 653 | // This is a normal word. Just find the first space character. |
| 654 | while (End < Length && !isspace(Str[End])) |
| 655 | ++End; |
| 656 | return End; |
| 657 | } |
| 658 | |
| 659 | // We have the start of a balanced punctuation sequence (quotes, |
| 660 | // parentheses, etc.). Determine the full sequence is. |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 661 | llvm::SmallString<16> PunctuationEndStack; |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 662 | PunctuationEndStack.push_back(EndPunct); |
| 663 | while (End < Length && !PunctuationEndStack.empty()) { |
| 664 | if (Str[End] == PunctuationEndStack.back()) |
| 665 | PunctuationEndStack.pop_back(); |
| 666 | else if (char SubEndPunct = findMatchingPunctuation(Str[End])) |
| 667 | PunctuationEndStack.push_back(SubEndPunct); |
| 668 | |
| 669 | ++End; |
| 670 | } |
| 671 | |
| 672 | // Find the first space character after the punctuation ended. |
| 673 | while (End < Length && !isspace(Str[End])) |
| 674 | ++End; |
| 675 | |
| 676 | unsigned PunctWordLength = End - Start; |
| 677 | if (// If the word fits on this line |
| 678 | Column + PunctWordLength <= Columns || |
| 679 | // ... or the word is "short enough" to take up the next line |
| 680 | // without too much ugly white space |
| 681 | PunctWordLength < Columns/3) |
| 682 | return End; // Take the whole thing as a single "word". |
| 683 | |
| 684 | // The whole quoted/parenthesized string is too long to print as a |
| 685 | // single "word". Instead, find the "word" that starts just after |
| 686 | // the punctuation and use that end-point instead. This will recurse |
| 687 | // until it finds something small enough to consider a word. |
| 688 | return findEndOfWord(Start + 1, Str, Length, Column + 1, Columns); |
| 689 | } |
| 690 | |
| 691 | /// \brief Print the given string to a stream, word-wrapping it to |
| 692 | /// some number of columns in the process. |
| 693 | /// |
| 694 | /// \brief OS the stream to which the word-wrapping string will be |
| 695 | /// emitted. |
| 696 | /// |
| 697 | /// \brief Str the string to word-wrap and output. |
| 698 | /// |
| 699 | /// \brief Columns the number of columns to word-wrap to. |
| 700 | /// |
| 701 | /// \brief Column the column number at which the first character of \p |
| 702 | /// Str will be printed. This will be non-zero when part of the first |
| 703 | /// line has already been printed. |
| 704 | /// |
| 705 | /// \brief Indentation the number of spaces to indent any lines beyond |
| 706 | /// the first line. |
| 707 | /// |
| 708 | /// \returns true if word-wrapping was required, or false if the |
| 709 | /// string fit on the first line. |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 710 | static bool PrintWordWrapped(llvm::raw_ostream &OS, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 711 | const llvm::SmallVectorImpl<char> &Str, |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 712 | unsigned Columns, |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 713 | unsigned Column = 0, |
| 714 | unsigned Indentation = WordWrapIndentation) { |
| 715 | unsigned Length = Str.size(); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 716 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 717 | // If there is a newline in this message somewhere, find that |
| 718 | // newline and split the message into the part before the newline |
| 719 | // (which will be word-wrapped) and the part from the newline one |
| 720 | // (which will be emitted unchanged). |
| 721 | for (unsigned I = 0; I != Length; ++I) |
| 722 | if (Str[I] == '\n') { |
| 723 | Length = I; |
| 724 | break; |
| 725 | } |
| 726 | |
| 727 | // The string used to indent each line. |
| 728 | llvm::SmallString<16> IndentStr; |
| 729 | IndentStr.assign(Indentation, ' '); |
| 730 | bool Wrapped = false; |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 731 | for (unsigned WordStart = 0, WordEnd; WordStart < Length; |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 732 | WordStart = WordEnd) { |
| 733 | // Find the beginning of the next word. |
| 734 | WordStart = skipWhitespace(WordStart, Str, Length); |
| 735 | if (WordStart == Length) |
| 736 | break; |
| 737 | |
| 738 | // Find the end of this word. |
| 739 | WordEnd = findEndOfWord(WordStart, Str, Length, Column, Columns); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 740 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 741 | // Does this word fit on the current line? |
| 742 | unsigned WordLength = WordEnd - WordStart; |
| 743 | if (Column + WordLength < Columns) { |
| 744 | // This word fits on the current line; print it there. |
| 745 | if (WordStart) { |
| 746 | OS << ' '; |
| 747 | Column += 1; |
| 748 | } |
| 749 | OS.write(&Str[WordStart], WordLength); |
| 750 | Column += WordLength; |
| 751 | continue; |
| 752 | } |
| 753 | |
| 754 | // This word does not fit on the current line, so wrap to the next |
| 755 | // line. |
Douglas Gregor | 44cf08e | 2009-05-03 03:52:38 +0000 | [diff] [blame] | 756 | OS << '\n'; |
| 757 | OS.write(&IndentStr[0], Indentation); |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 758 | OS.write(&Str[WordStart], WordLength); |
| 759 | Column = Indentation + WordLength; |
| 760 | Wrapped = true; |
| 761 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 762 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 763 | if (Length == Str.size()) |
| 764 | return Wrapped; // We're done. |
| 765 | |
| 766 | // There is a newline in the message, followed by something that |
| 767 | // will not be word-wrapped. Print that. |
| 768 | OS.write(&Str[Length], Str.size() - Length); |
| 769 | return true; |
| 770 | } |
Chris Lattner | 94f5578 | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 771 | |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 772 | void TextDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level, |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 773 | const DiagnosticInfo &Info) { |
Argyrios Kyrtzidis | f2224d8 | 2010-11-18 20:06:46 +0000 | [diff] [blame] | 774 | // Default implementation (Warnings/errors count). |
| 775 | DiagnosticClient::HandleDiagnostic(Level, Info); |
| 776 | |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 777 | // Keeps track of the the starting position of the location |
| 778 | // information (e.g., "foo.c:10:4:") that precedes the error |
| 779 | // message. We use this information to determine how long the |
| 780 | // file+line+column number prefix is. |
| 781 | uint64_t StartOfLocationInfo = OS.tell(); |
| 782 | |
Daniel Dunbar | b96b670 | 2010-02-25 03:23:40 +0000 | [diff] [blame] | 783 | if (!Prefix.empty()) |
| 784 | OS << Prefix << ": "; |
| 785 | |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 786 | // If the location is specified, print out a file/line/col and include trace |
| 787 | // if enabled. |
| 788 | if (Info.getLocation().isValid()) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 789 | const SourceManager &SM = Info.getSourceManager(); |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 790 | PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation()); |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 791 | if (PLoc.isInvalid()) { |
| 792 | // At least print the file name if available: |
| 793 | FileID FID = SM.getFileID(Info.getLocation()); |
| 794 | if (!FID.isInvalid()) { |
| 795 | const FileEntry* FE = SM.getFileEntryForID(FID); |
| 796 | if (FE && FE->getName()) { |
| 797 | OS << FE->getName(); |
| 798 | if (FE->getDevice() == 0 && FE->getInode() == 0 |
| 799 | && FE->getFileMode() == 0) { |
| 800 | // in PCH is a guess, but a good one: |
| 801 | OS << " (in PCH)"; |
| 802 | } |
| 803 | OS << ": "; |
Chris Lattner | 1fbee5d | 2009-03-13 01:08:23 +0000 | [diff] [blame] | 804 | } |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 805 | } |
| 806 | } else { |
| 807 | unsigned LineNo = PLoc.getLine(); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 808 | |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 809 | // First, if this diagnostic is not in the main file, print out the |
| 810 | // "included from" lines. |
| 811 | if (LastWarningLoc != PLoc.getIncludeLoc()) { |
| 812 | LastWarningLoc = PLoc.getIncludeLoc(); |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 813 | PrintIncludeStack(Level, LastWarningLoc, SM); |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 814 | StartOfLocationInfo = OS.tell(); |
| 815 | } |
| 816 | |
| 817 | // Compute the column number. |
Matt Beaumont-Gay | 32ad935 | 2011-03-31 01:46:47 +0000 | [diff] [blame] | 818 | if (DiagOpts->ShowLocation) { |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 819 | if (DiagOpts->ShowColors) |
| 820 | OS.changeColor(savedColor, true); |
| 821 | |
Douglas Gregor | c9471b0 | 2011-05-21 17:07:29 +0000 | [diff] [blame] | 822 | OS << PLoc.getFilename(); |
| 823 | switch (DiagOpts->Format) { |
| 824 | case DiagnosticOptions::Clang: OS << ':' << LineNo; break; |
| 825 | case DiagnosticOptions::Msvc: OS << '(' << LineNo; break; |
| 826 | case DiagnosticOptions::Vi: OS << " +" << LineNo; break; |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 827 | } |
Douglas Gregor | c9471b0 | 2011-05-21 17:07:29 +0000 | [diff] [blame] | 828 | if (DiagOpts->ShowColumn) |
| 829 | if (unsigned ColNo = PLoc.getColumn()) { |
| 830 | if (DiagOpts->Format == DiagnosticOptions::Msvc) { |
| 831 | OS << ','; |
| 832 | ColNo--; |
| 833 | } else |
| 834 | OS << ':'; |
| 835 | OS << ColNo; |
| 836 | } |
| 837 | switch (DiagOpts->Format) { |
| 838 | case DiagnosticOptions::Clang: |
| 839 | case DiagnosticOptions::Vi: OS << ':'; break; |
| 840 | case DiagnosticOptions::Msvc: OS << ") : "; break; |
| 841 | } |
| 842 | |
| 843 | |
Axel Naumann | 0433116 | 2011-01-27 10:55:51 +0000 | [diff] [blame] | 844 | if (DiagOpts->ShowSourceRanges && Info.getNumRanges()) { |
| 845 | FileID CaretFileID = |
| 846 | SM.getFileID(SM.getInstantiationLoc(Info.getLocation())); |
| 847 | bool PrintedRange = false; |
| 848 | |
| 849 | for (unsigned i = 0, e = Info.getNumRanges(); i != e; ++i) { |
| 850 | // Ignore invalid ranges. |
| 851 | if (!Info.getRange(i).isValid()) continue; |
| 852 | |
| 853 | SourceLocation B = Info.getRange(i).getBegin(); |
| 854 | SourceLocation E = Info.getRange(i).getEnd(); |
| 855 | B = SM.getInstantiationLoc(B); |
| 856 | E = SM.getInstantiationLoc(E); |
| 857 | |
| 858 | // If the End location and the start location are the same and are a |
| 859 | // macro location, then the range was something that came from a |
| 860 | // macro expansion or _Pragma. If this is an object-like macro, the |
| 861 | // best we can do is to highlight the range. If this is a |
| 862 | // function-like macro, we'd also like to highlight the arguments. |
| 863 | if (B == E && Info.getRange(i).getEnd().isMacroID()) |
| 864 | E = SM.getInstantiationRange(Info.getRange(i).getEnd()).second; |
| 865 | |
| 866 | std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B); |
| 867 | std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(E); |
| 868 | |
| 869 | // If the start or end of the range is in another file, just discard |
| 870 | // it. |
| 871 | if (BInfo.first != CaretFileID || EInfo.first != CaretFileID) |
| 872 | continue; |
| 873 | |
| 874 | // Add in the length of the token, so that we cover multi-char |
| 875 | // tokens. |
| 876 | unsigned TokSize = 0; |
| 877 | if (Info.getRange(i).isTokenRange()) |
| 878 | TokSize = Lexer::MeasureTokenLength(E, SM, *LangOpts); |
| 879 | |
| 880 | OS << '{' << SM.getLineNumber(BInfo.first, BInfo.second) << ':' |
| 881 | << SM.getColumnNumber(BInfo.first, BInfo.second) << '-' |
| 882 | << SM.getLineNumber(EInfo.first, EInfo.second) << ':' |
| 883 | << (SM.getColumnNumber(EInfo.first, EInfo.second)+TokSize) |
| 884 | << '}'; |
| 885 | PrintedRange = true; |
| 886 | } |
| 887 | |
| 888 | if (PrintedRange) |
| 889 | OS << ':'; |
| 890 | } |
Chris Lattner | 1fbee5d | 2009-03-13 01:08:23 +0000 | [diff] [blame] | 891 | } |
Chris Lattner | b8bf65e | 2009-01-30 17:41:53 +0000 | [diff] [blame] | 892 | OS << ' '; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 893 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 894 | OS.resetColor(); |
| 895 | } |
| 896 | } |
| 897 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 898 | if (DiagOpts->ShowColors) { |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 899 | // Print diagnostic category in bold and color |
| 900 | switch (Level) { |
| 901 | case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type"); |
| 902 | case Diagnostic::Note: OS.changeColor(noteColor, true); break; |
| 903 | case Diagnostic::Warning: OS.changeColor(warningColor, true); break; |
| 904 | case Diagnostic::Error: OS.changeColor(errorColor, true); break; |
| 905 | case Diagnostic::Fatal: OS.changeColor(fatalColor, true); break; |
Chris Lattner | b8bf65e | 2009-01-30 17:41:53 +0000 | [diff] [blame] | 906 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 907 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 908 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 909 | switch (Level) { |
Chris Lattner | 4132758 | 2009-02-06 03:57:44 +0000 | [diff] [blame] | 910 | case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type"); |
Nate Begeman | 165b954 | 2008-04-17 18:06:57 +0000 | [diff] [blame] | 911 | case Diagnostic::Note: OS << "note: "; break; |
| 912 | case Diagnostic::Warning: OS << "warning: "; break; |
| 913 | case Diagnostic::Error: OS << "error: "; break; |
Chris Lattner | 4132758 | 2009-02-06 03:57:44 +0000 | [diff] [blame] | 914 | case Diagnostic::Fatal: OS << "fatal error: "; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 915 | } |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 916 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 917 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 918 | OS.resetColor(); |
| 919 | |
Chris Lattner | f4c8396 | 2008-11-19 06:51:40 +0000 | [diff] [blame] | 920 | llvm::SmallString<100> OutStr; |
| 921 | Info.FormatDiagnostic(OutStr); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 922 | |
Douglas Gregor | 7d2b8c1 | 2011-04-15 22:04:17 +0000 | [diff] [blame] | 923 | if (DiagOpts->ShowNames && |
| 924 | !DiagnosticIDs::isBuiltinNote(Info.getID())) { |
| 925 | OutStr += " ["; |
| 926 | OutStr += DiagnosticIDs::getName(Info.getID()); |
| 927 | OutStr += "]"; |
| 928 | } |
| 929 | |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 930 | std::string OptionName; |
Chris Lattner | 8d2ea4e | 2010-02-16 18:29:31 +0000 | [diff] [blame] | 931 | if (DiagOpts->ShowOptionNames) { |
Ted Kremenek | 7decebf | 2011-02-25 01:28:26 +0000 | [diff] [blame] | 932 | // Was this a warning mapped to an error using -Werror or pragma? |
| 933 | if (Level == Diagnostic::Error && |
| 934 | DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID())) { |
| 935 | diag::Mapping mapping = diag::MAP_IGNORE; |
| 936 | Info.getDiags()->getDiagnosticLevel(Info.getID(), Info.getLocation(), |
| 937 | &mapping); |
| 938 | if (mapping == diag::MAP_WARNING) |
| 939 | OptionName += "-Werror"; |
| 940 | } |
| 941 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 942 | if (const char * |
| 943 | Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID())) { |
Ted Kremenek | 7decebf | 2011-02-25 01:28:26 +0000 | [diff] [blame] | 944 | if (!OptionName.empty()) |
| 945 | OptionName += ','; |
| 946 | OptionName += "-W"; |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 947 | OptionName += Opt; |
Chris Lattner | d342bf7 | 2010-05-24 18:37:03 +0000 | [diff] [blame] | 948 | } else if (Info.getID() == diag::fatal_too_many_errors) { |
| 949 | OptionName = "-ferror-limit="; |
Chris Lattner | 04e4427 | 2010-04-12 21:53:11 +0000 | [diff] [blame] | 950 | } else { |
| 951 | // If the diagnostic is an extension diagnostic and not enabled by default |
| 952 | // then it must have been turned on with -pedantic. |
| 953 | bool EnabledByDefault; |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 954 | if (DiagnosticIDs::isBuiltinExtensionDiag(Info.getID(), |
| 955 | EnabledByDefault) && |
Chris Lattner | 04e4427 | 2010-04-12 21:53:11 +0000 | [diff] [blame] | 956 | !EnabledByDefault) |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 957 | OptionName = "-pedantic"; |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 958 | } |
Chris Lattner | 8d2ea4e | 2010-02-16 18:29:31 +0000 | [diff] [blame] | 959 | } |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 960 | |
| 961 | // If the user wants to see category information, include it too. |
| 962 | unsigned DiagCategory = 0; |
Chris Lattner | 6fbe839 | 2010-05-04 21:55:25 +0000 | [diff] [blame] | 963 | if (DiagOpts->ShowCategories) |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 964 | DiagCategory = DiagnosticIDs::getCategoryNumberForDiag(Info.getID()); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 965 | |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 966 | // If there is any categorization information, include it. |
| 967 | if (!OptionName.empty() || DiagCategory != 0) { |
| 968 | bool NeedsComma = false; |
| 969 | OutStr += " ["; |
| 970 | |
| 971 | if (!OptionName.empty()) { |
| 972 | OutStr += OptionName; |
| 973 | NeedsComma = true; |
| 974 | } |
| 975 | |
| 976 | if (DiagCategory) { |
| 977 | if (NeedsComma) OutStr += ','; |
Chris Lattner | 6fbe839 | 2010-05-04 21:55:25 +0000 | [diff] [blame] | 978 | if (DiagOpts->ShowCategories == 1) |
| 979 | OutStr += llvm::utostr(DiagCategory); |
| 980 | else { |
| 981 | assert(DiagOpts->ShowCategories == 2 && "Invalid ShowCategories value"); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 982 | OutStr += DiagnosticIDs::getCategoryNameFromID(DiagCategory); |
Chris Lattner | 6fbe839 | 2010-05-04 21:55:25 +0000 | [diff] [blame] | 983 | } |
Chris Lattner | c9b8890 | 2010-05-04 21:13:21 +0000 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | OutStr += "]"; |
| 987 | } |
| 988 | |
| 989 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 990 | if (DiagOpts->ShowColors) { |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 991 | // Print warnings, errors and fatal errors in bold, no color |
| 992 | switch (Level) { |
| 993 | case Diagnostic::Warning: OS.changeColor(savedColor, true); break; |
| 994 | case Diagnostic::Error: OS.changeColor(savedColor, true); break; |
| 995 | case Diagnostic::Fatal: OS.changeColor(savedColor, true); break; |
| 996 | default: break; //don't bold notes |
| 997 | } |
| 998 | } |
| 999 | |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 1000 | if (DiagOpts->MessageLength) { |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 1001 | // We will be word-wrapping the error message, so compute the |
| 1002 | // column number where we currently are (after printing the |
| 1003 | // location information). |
| 1004 | unsigned Column = OS.tell() - StartOfLocationInfo; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 1005 | PrintWordWrapped(OS, OutStr, DiagOpts->MessageLength, Column); |
Douglas Gregor | fffd93f | 2009-05-01 21:53:04 +0000 | [diff] [blame] | 1006 | } else { |
| 1007 | OS.write(OutStr.begin(), OutStr.size()); |
| 1008 | } |
Chris Lattner | f4c8396 | 2008-11-19 06:51:40 +0000 | [diff] [blame] | 1009 | OS << '\n'; |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 1010 | if (DiagOpts->ShowColors) |
Torok Edwin | 603fca7 | 2009-06-04 07:18:23 +0000 | [diff] [blame] | 1011 | OS.resetColor(); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 1012 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 1013 | // If caret diagnostics are enabled and we have location, we want to |
| 1014 | // emit the caret. However, we only do this if the location moved |
| 1015 | // from the last diagnostic, if the last diagnostic was a note that |
| 1016 | // was part of a different warning or error diagnostic, or if the |
| 1017 | // diagnostic has ranges. We don't want to emit the same caret |
| 1018 | // multiple times if one loc has multiple diagnostics. |
Daniel Dunbar | eace874 | 2009-11-04 06:24:30 +0000 | [diff] [blame] | 1019 | if (DiagOpts->ShowCarets && Info.getLocation().isValid() && |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 1020 | ((LastLoc != Info.getLocation()) || Info.getNumRanges() || |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 1021 | (LastCaretDiagnosticWasNote && Level != Diagnostic::Note) || |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1022 | Info.getNumFixItHints())) { |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 1023 | // Cache the LastLoc, it allows us to omit duplicate source/caret spewage. |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 1024 | LastLoc = FullSourceLoc(Info.getLocation(), Info.getSourceManager()); |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 1025 | LastCaretDiagnosticWasNote = (Level == Diagnostic::Note); |
Chris Lattner | b9c3f96 | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 1026 | |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 1027 | // Get the ranges into a local array we can hack on. |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 1028 | CharSourceRange Ranges[20]; |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 1029 | unsigned NumRanges = Info.getNumRanges(); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 1030 | assert(NumRanges < 20 && "Out of space"); |
Chris Lattner | ebbbb1b | 2009-02-20 00:18:51 +0000 | [diff] [blame] | 1031 | for (unsigned i = 0; i != NumRanges; ++i) |
| 1032 | Ranges[i] = Info.getRange(i); |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 1033 | |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1034 | unsigned NumHints = Info.getNumFixItHints(); |
Chris Lattner | 0a76aae | 2010-06-18 22:45:06 +0000 | [diff] [blame] | 1035 | for (unsigned i = 0; i != NumHints; ++i) { |
| 1036 | const FixItHint &Hint = Info.getFixItHint(i); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 1037 | if (Hint.RemoveRange.isValid()) { |
| 1038 | assert(NumRanges < 20 && "Out of space"); |
| 1039 | Ranges[NumRanges++] = Hint.RemoveRange; |
| 1040 | } |
| 1041 | } |
| 1042 | |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 1043 | unsigned MacroInstSkipStart = 0, MacroInstSkipEnd = 0; |
| 1044 | if (DiagOpts && DiagOpts->MacroBacktraceLimit && !LastLoc.isFileID()) { |
| 1045 | // Compute the length of the macro-instantiation backtrace, so that we |
| 1046 | // can establish which steps in the macro backtrace we'll skip. |
| 1047 | SourceLocation Loc = LastLoc; |
| 1048 | unsigned Depth = 0; |
| 1049 | do { |
| 1050 | ++Depth; |
| 1051 | Loc = LastLoc.getManager().getImmediateInstantiationRange(Loc).first; |
| 1052 | } while (!Loc.isFileID()); |
| 1053 | |
| 1054 | if (Depth > DiagOpts->MacroBacktraceLimit) { |
| 1055 | MacroInstSkipStart = DiagOpts->MacroBacktraceLimit / 2 + |
| 1056 | DiagOpts->MacroBacktraceLimit % 2; |
| 1057 | MacroInstSkipEnd = Depth - DiagOpts->MacroBacktraceLimit / 2; |
| 1058 | } |
| 1059 | } |
| 1060 | |
Chandler Carruth | abaca7a | 2011-03-27 01:50:55 +0000 | [diff] [blame] | 1061 | EmitCaretDiagnostic(Level, LastLoc, Ranges, NumRanges, LastLoc.getManager(), |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1062 | Info.getFixItHints(), |
| 1063 | Info.getNumFixItHints(), |
Douglas Gregor | 6c1cb99 | 2010-05-04 17:13:42 +0000 | [diff] [blame] | 1064 | DiagOpts->MessageLength, |
| 1065 | 0, MacroInstSkipStart, MacroInstSkipEnd); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1066 | } |
Daniel Dunbar | cbff0dc | 2009-09-07 23:07:56 +0000 | [diff] [blame] | 1067 | |
Chris Lattner | a03a5b5 | 2008-11-19 06:56:25 +0000 | [diff] [blame] | 1068 | OS.flush(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1069 | } |