Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- TextDiagnosticPrinter.cpp - Diagnostic Printer -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 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. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This diagnostic client prints out their diagnostic messages. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Nico Weber | 0e13eaa | 2008-08-05 23:33:20 +0000 | [diff] [blame] | 14 | #include "clang/Driver/TextDiagnosticPrinter.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 15 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 16 | #include "clang/Lex/Lexer.h" |
Chris Lattner | 92a3353 | 2008-11-19 06:56:25 +0000 | [diff] [blame] | 17 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | be8e5a4 | 2008-11-19 06:51:40 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 21 | void TextDiagnosticPrinter:: |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 22 | PrintIncludeStack(SourceLocation Loc, const SourceManager &SM) { |
| 23 | if (Loc.isInvalid()) return; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 24 | |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 25 | PresumedLoc PLoc = SM.getPresumedLoc(Loc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 26 | |
| 27 | // Print out the other include frames first. |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 28 | PrintIncludeStack(PLoc.getIncludeLoc(), SM); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 29 | |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 30 | OS << "In file included from " << PLoc.getFilename() |
| 31 | << ':' << PLoc.getLine() << ":\n"; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | /// HighlightRange - Given a SourceRange and a line number, highlight (with ~'s) |
| 35 | /// any characters in LineNo that intersect the SourceRange. |
Ted Kremenek | b3ee193 | 2007-12-11 21:27:55 +0000 | [diff] [blame] | 36 | void TextDiagnosticPrinter::HighlightRange(const SourceRange &R, |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 37 | const SourceManager &SM, |
Chris Lattner | 10aaf53 | 2009-01-17 08:45:21 +0000 | [diff] [blame] | 38 | unsigned LineNo, FileID FID, |
Gordon Henriksen | f0a835c | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 39 | std::string &CaretLine, |
Nuno Lopes | d0e162c | 2008-08-05 19:40:20 +0000 | [diff] [blame] | 40 | const std::string &SourceLine) { |
Gordon Henriksen | f0a835c | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 41 | assert(CaretLine.size() == SourceLine.size() && |
| 42 | "Expect a correspondence between source and caret line!"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 43 | if (!R.isValid()) return; |
| 44 | |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 45 | SourceLocation Begin = SM.getInstantiationLoc(R.getBegin()); |
| 46 | SourceLocation End = SM.getInstantiationLoc(R.getEnd()); |
| 47 | |
Chris Lattner | e357b11 | 2009-02-17 05:19:10 +0000 | [diff] [blame] | 48 | // If the End location and the start location are the same and are a macro |
| 49 | // location, then the range was something that came from a macro expansion |
| 50 | // or _Pragma. If this is an object-like macro, the best we can do is to |
| 51 | // highlight the range. If this is a function-like macro, we'd also like to |
| 52 | // highlight the arguments. |
| 53 | if (Begin == End && R.getEnd().isMacroID()) |
| 54 | End = SM.getInstantiationRange(R.getEnd()).second; |
| 55 | |
Chris Lattner | 2d89c56 | 2009-02-04 01:06:56 +0000 | [diff] [blame] | 56 | unsigned StartLineNo = SM.getInstantiationLineNumber(Begin); |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 57 | if (StartLineNo > LineNo || SM.getFileID(Begin) != FID) |
Chris Lattner | a0030d2 | 2008-01-12 06:43:35 +0000 | [diff] [blame] | 58 | return; // No intersection. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 2d89c56 | 2009-02-04 01:06:56 +0000 | [diff] [blame] | 60 | unsigned EndLineNo = SM.getInstantiationLineNumber(End); |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 61 | if (EndLineNo < LineNo || SM.getFileID(End) != FID) |
Chris Lattner | a0030d2 | 2008-01-12 06:43:35 +0000 | [diff] [blame] | 62 | return; // No intersection. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 63 | |
| 64 | // Compute the column number of the start. |
| 65 | unsigned StartColNo = 0; |
| 66 | if (StartLineNo == LineNo) { |
Chris Lattner | e79fc85 | 2009-02-04 00:55:58 +0000 | [diff] [blame] | 67 | StartColNo = SM.getInstantiationColumnNumber(Begin); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 68 | if (StartColNo) --StartColNo; // Zero base the col #. |
| 69 | } |
| 70 | |
| 71 | // Pick the first non-whitespace column. |
| 72 | while (StartColNo < SourceLine.size() && |
| 73 | (SourceLine[StartColNo] == ' ' || SourceLine[StartColNo] == '\t')) |
| 74 | ++StartColNo; |
| 75 | |
| 76 | // Compute the column number of the end. |
Gordon Henriksen | f0a835c | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 77 | unsigned EndColNo = CaretLine.size(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 78 | if (EndLineNo == LineNo) { |
Chris Lattner | e79fc85 | 2009-02-04 00:55:58 +0000 | [diff] [blame] | 79 | EndColNo = SM.getInstantiationColumnNumber(End); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 80 | if (EndColNo) { |
| 81 | --EndColNo; // Zero base the col #. |
| 82 | |
| 83 | // Add in the length of the token, so that we cover multi-char tokens. |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 84 | EndColNo += Lexer::MeasureTokenLength(End, SM); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 85 | } else { |
Gordon Henriksen | f0a835c | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 86 | EndColNo = CaretLine.size(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
| 90 | // Pick the last non-whitespace column. |
Nuno Lopes | d0e162c | 2008-08-05 19:40:20 +0000 | [diff] [blame] | 91 | if (EndColNo <= SourceLine.size()) |
| 92 | while (EndColNo-1 && |
| 93 | (SourceLine[EndColNo-1] == ' ' || SourceLine[EndColNo-1] == '\t')) |
| 94 | --EndColNo; |
| 95 | else |
| 96 | EndColNo = SourceLine.size(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 97 | |
| 98 | // Fill the range with ~'s. |
| 99 | assert(StartColNo <= EndColNo && "Invalid range!"); |
Nuno Lopes | d0e162c | 2008-08-05 19:40:20 +0000 | [diff] [blame] | 100 | for (unsigned i = StartColNo; i < EndColNo; ++i) |
Gordon Henriksen | f0a835c | 2008-08-09 19:58:22 +0000 | [diff] [blame] | 101 | CaretLine[i] = '~'; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Chris Lattner | 34e6c26 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 104 | void TextDiagnosticPrinter::EmitCaretDiagnostic(const DiagnosticInfo &Info, |
| 105 | SourceLocation Loc, |
| 106 | SourceManager &SM) { |
Chris Lattner | 37f9ad2 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 107 | assert(!Loc.isInvalid() && "must have a valid source location here"); |
| 108 | |
Chris Lattner | 3b29a18 | 2009-02-17 07:54:55 +0000 | [diff] [blame] | 109 | // We always emit diagnostics about the instantiation points, not the spelling |
| 110 | // points. This more closely correlates to what the user writes. |
Chris Lattner | 37f9ad2 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 111 | if (!Loc.isFileID()) { |
Chris Lattner | 459da5d | 2009-02-18 18:50:45 +0000 | [diff] [blame^] | 112 | SourceLocation OneLevelUp = SM.getImmediateInstantiationRange(Loc).first; |
Chris Lattner | 37f9ad2 | 2009-02-17 08:44:50 +0000 | [diff] [blame] | 113 | EmitCaretDiagnostic(Info, OneLevelUp, SM); |
| 114 | |
| 115 | Loc = SM.getInstantiationLoc(SM.getImmediateSpellingLoc(Loc)); |
| 116 | |
| 117 | // Emit the file/line/column that this expansion came from. |
| 118 | OS << SM.getBufferName(Loc) << ':' << SM.getInstantiationLineNumber(Loc) |
| 119 | << ':'; |
| 120 | if (ShowColumn) |
| 121 | OS << SM.getInstantiationColumnNumber(Loc) << ':'; |
| 122 | OS << " note: instantiated from:\n"; |
| 123 | } |
Chris Lattner | 34e6c26 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 124 | |
| 125 | // Decompose the location into a FID/Offset pair. |
| 126 | std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); |
| 127 | FileID FID = LocInfo.first; |
| 128 | unsigned FileOffset = LocInfo.second; |
| 129 | |
| 130 | // Get information about the buffer it points into. |
| 131 | std::pair<const char*, const char*> BufferInfo = SM.getBufferData(FID); |
| 132 | const char *BufStart = BufferInfo.first; |
| 133 | const char *BufEnd = BufferInfo.second; |
| 134 | |
| 135 | unsigned ColNo = SM.getColumnNumber(FID, FileOffset); |
Chris Lattner | c1303fb | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 136 | |
| 137 | // Rewind from the current position to the start of the line. |
Chris Lattner | 34e6c26 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 138 | const char *TokPtr = BufStart+FileOffset; |
| 139 | const char *LineStart = TokPtr-ColNo+1; // Column # is 1-based. |
| 140 | |
Chris Lattner | c1303fb | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 141 | |
| 142 | // Compute the line end. Scan forward from the error position to the end of |
| 143 | // the line. |
Chris Lattner | 34e6c26 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 144 | const char *LineEnd = TokPtr; |
Chris Lattner | c1303fb | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 145 | while (LineEnd != BufEnd && |
| 146 | *LineEnd != '\n' && *LineEnd != '\r') |
| 147 | ++LineEnd; |
| 148 | |
| 149 | // Copy the line of code into an std::string for ease of manipulation. |
| 150 | std::string SourceLine(LineStart, LineEnd); |
| 151 | |
| 152 | // Create a line for the caret that is filled with spaces that is the same |
| 153 | // length as the line of source code. |
| 154 | std::string CaretLine(LineEnd-LineStart, ' '); |
| 155 | |
| 156 | // Highlight all of the characters covered by Ranges with ~ characters. |
Chris Lattner | 34e6c26 | 2009-02-17 07:51:53 +0000 | [diff] [blame] | 157 | if (Info.getNumRanges()) { |
| 158 | unsigned LineNo = SM.getLineNumber(FID, FileOffset); |
| 159 | |
| 160 | for (unsigned i = 0; i != Info.getNumRanges(); ++i) |
| 161 | HighlightRange(Info.getRange(i), SM, LineNo, FID, CaretLine, SourceLine); |
| 162 | } |
Chris Lattner | c1303fb | 2009-02-17 07:38:37 +0000 | [diff] [blame] | 163 | |
| 164 | // Next, insert the caret itself. |
| 165 | if (ColNo-1 < CaretLine.size()) |
| 166 | CaretLine[ColNo-1] = '^'; |
| 167 | else |
| 168 | CaretLine.push_back('^'); |
| 169 | |
| 170 | // Scan the source line, looking for tabs. If we find any, manually expand |
| 171 | // them to 8 characters and update the CaretLine to match. |
| 172 | for (unsigned i = 0; i != SourceLine.size(); ++i) { |
| 173 | if (SourceLine[i] != '\t') continue; |
| 174 | |
| 175 | // Replace this tab with at least one space. |
| 176 | SourceLine[i] = ' '; |
| 177 | |
| 178 | // Compute the number of spaces we need to insert. |
| 179 | unsigned NumSpaces = ((i+8)&~7) - (i+1); |
| 180 | assert(NumSpaces < 8 && "Invalid computation of space amt"); |
| 181 | |
| 182 | // Insert spaces into the SourceLine. |
| 183 | SourceLine.insert(i+1, NumSpaces, ' '); |
| 184 | |
| 185 | // Insert spaces or ~'s into CaretLine. |
| 186 | CaretLine.insert(i+1, NumSpaces, CaretLine[i] == '~' ? '~' : ' '); |
| 187 | } |
| 188 | |
| 189 | // Finally, remove any blank spaces from the end of CaretLine. |
| 190 | while (CaretLine[CaretLine.size()-1] == ' ') |
| 191 | CaretLine.erase(CaretLine.end()-1); |
| 192 | |
| 193 | // Emit what we have computed. |
| 194 | OS << SourceLine << '\n'; |
| 195 | OS << CaretLine << '\n'; |
| 196 | } |
| 197 | |
| 198 | |
Chris Lattner | 6948ae6 | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 199 | void TextDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level, |
| 200 | const DiagnosticInfo &Info) { |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 201 | // If the location is specified, print out a file/line/col and include trace |
| 202 | // if enabled. |
| 203 | if (Info.getLocation().isValid()) { |
Ted Kremenek | dd62ea6 | 2009-01-28 20:47:47 +0000 | [diff] [blame] | 204 | const SourceManager &SM = Info.getLocation().getManager(); |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 205 | PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation()); |
| 206 | unsigned LineNo = PLoc.getLine(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 207 | |
| 208 | // First, if this diagnostic is not in the main file, print out the |
| 209 | // "included from" lines. |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 210 | if (LastWarningLoc != PLoc.getIncludeLoc()) { |
| 211 | LastWarningLoc = PLoc.getIncludeLoc(); |
| 212 | PrintIncludeStack(LastWarningLoc, SM); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 215 | // Compute the column number. |
Chris Lattner | 68c1e19 | 2009-01-30 17:41:53 +0000 | [diff] [blame] | 216 | if (ShowLocation) { |
| 217 | OS << PLoc.getFilename() << ':' << LineNo << ':'; |
Chris Lattner | f0b2856 | 2009-02-17 07:34:34 +0000 | [diff] [blame] | 218 | if (ShowColumn) |
| 219 | if (unsigned ColNo = PLoc.getColumn()) |
| 220 | OS << ColNo << ':'; |
Chris Lattner | 68c1e19 | 2009-01-30 17:41:53 +0000 | [diff] [blame] | 221 | OS << ' '; |
| 222 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | switch (Level) { |
Chris Lattner | 95cb550 | 2009-02-06 03:57:44 +0000 | [diff] [blame] | 226 | case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type"); |
Nate Begeman | 01d7427 | 2008-04-17 18:06:57 +0000 | [diff] [blame] | 227 | case Diagnostic::Note: OS << "note: "; break; |
| 228 | case Diagnostic::Warning: OS << "warning: "; break; |
| 229 | case Diagnostic::Error: OS << "error: "; break; |
Chris Lattner | 95cb550 | 2009-02-06 03:57:44 +0000 | [diff] [blame] | 230 | case Diagnostic::Fatal: OS << "fatal error: "; break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Chris Lattner | be8e5a4 | 2008-11-19 06:51:40 +0000 | [diff] [blame] | 233 | llvm::SmallString<100> OutStr; |
| 234 | Info.FormatDiagnostic(OutStr); |
| 235 | OS.write(OutStr.begin(), OutStr.size()); |
| 236 | OS << '\n'; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 237 | |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 238 | // If caret diagnostics are enabled and we have location, we want to emit the |
| 239 | // caret. However, we only do this if the location moved from the last |
| 240 | // diagnostic, or if the diagnostic has ranges. We don't want to emit the |
| 241 | // same caret multiple times if one loc has multiple diagnostics. |
| 242 | if (CaretDiagnostics && Info.getLocation().isValid() && |
| 243 | ((LastLoc != Info.getLocation()) || Info.getNumRanges())) { |
Steve Naroff | b268d2a | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 244 | // Cache the LastLoc, it allows us to omit duplicate source/caret spewage. |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 245 | LastLoc = Info.getLocation(); |
| 246 | |
Chris Lattner | 3b29a18 | 2009-02-17 07:54:55 +0000 | [diff] [blame] | 247 | // Inspect the actual source location of the diagnostic, we don't care |
Chris Lattner | 836774b | 2009-01-27 07:57:44 +0000 | [diff] [blame] | 248 | // about presumed locations anymore. |
Chris Lattner | 3b29a18 | 2009-02-17 07:54:55 +0000 | [diff] [blame] | 249 | EmitCaretDiagnostic(Info, LastLoc, LastLoc.getManager()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 250 | } |
Chris Lattner | 92a3353 | 2008-11-19 06:56:25 +0000 | [diff] [blame] | 251 | |
| 252 | OS.flush(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 253 | } |