blob: 2bd7394c475982a7166d5053f643fc39dc85d57a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- TextDiagnosticPrinter.cpp - Diagnostic Printer -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This diagnostic client prints out their diagnostic messages.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbare1bd4e62009-03-02 06:16:29 +000014#include "clang/Frontend/TextDiagnosticPrinter.h"
Axel Naumann04331162011-01-27 10:55:51 +000015#include "clang/Basic/FileManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Basic/SourceManager.h"
Daniel Dunbareace8742009-11-04 06:24:30 +000017#include "clang/Frontend/DiagnosticOptions.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Lex/Lexer.h"
Chris Lattner037fb7f2009-05-05 22:03:18 +000019#include "llvm/Support/MemoryBuffer.h"
Chris Lattnera03a5b52008-11-19 06:56:25 +000020#include "llvm/Support/raw_ostream.h"
Chris Lattnerf4c83962008-11-19 06:51:40 +000021#include "llvm/ADT/SmallString.h"
Chris Lattnerc9b88902010-05-04 21:13:21 +000022#include "llvm/ADT/StringExtras.h"
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000023#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
Chris Lattner5f9e2722011-07-23 10:55:15 +000026static const enum raw_ostream::Colors noteColor =
27 raw_ostream::BLACK;
28static const enum raw_ostream::Colors fixitColor =
29 raw_ostream::GREEN;
30static const enum raw_ostream::Colors caretColor =
31 raw_ostream::GREEN;
32static const enum raw_ostream::Colors warningColor =
33 raw_ostream::MAGENTA;
34static const enum raw_ostream::Colors errorColor = raw_ostream::RED;
35static const enum raw_ostream::Colors fatalColor = raw_ostream::RED;
Daniel Dunbarb96b6702010-02-25 03:23:40 +000036// Used for changing only the bold attribute.
Chris Lattner5f9e2722011-07-23 10:55:15 +000037static const enum raw_ostream::Colors savedColor =
38 raw_ostream::SAVEDCOLOR;
Torok Edwin603fca72009-06-04 07:18:23 +000039
Douglas Gregorfffd93f2009-05-01 21:53:04 +000040/// \brief Number of spaces to indent when word-wrapping.
41const unsigned WordWrapIndentation = 6;
42
Chris Lattner5f9e2722011-07-23 10:55:15 +000043TextDiagnosticPrinter::TextDiagnosticPrinter(raw_ostream &os,
Daniel Dunbaraea36412009-11-11 09:38:24 +000044 const DiagnosticOptions &diags,
45 bool _OwnsOutputStream)
Daniel Dunbareace8742009-11-04 06:24:30 +000046 : OS(os), LangOpts(0), DiagOpts(&diags),
Daniel Dunbaraea36412009-11-11 09:38:24 +000047 LastCaretDiagnosticWasNote(0),
48 OwnsOutputStream(_OwnsOutputStream) {
49}
50
51TextDiagnosticPrinter::~TextDiagnosticPrinter() {
52 if (OwnsOutputStream)
53 delete &OS;
Daniel Dunbareace8742009-11-04 06:24:30 +000054}
55
Chandler Carruthabaca7a2011-03-27 01:50:55 +000056void TextDiagnosticPrinter::PrintIncludeStack(Diagnostic::Level Level,
57 SourceLocation Loc,
58 const SourceManager &SM) {
59 if (!DiagOpts->ShowNoteIncludeStack && Level == Diagnostic::Note) return;
60
Chris Lattnerb9c3f962009-01-27 07:57:44 +000061 if (Loc.isInvalid()) return;
Chris Lattner9dc1f532007-07-20 16:37:10 +000062
Chris Lattnerb9c3f962009-01-27 07:57:44 +000063 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Douglas Gregorcb7b1e12010-11-12 07:15:47 +000064 if (PLoc.isInvalid())
65 return;
66
Reid Spencer5f016e22007-07-11 17:01:13 +000067 // Print out the other include frames first.
Chandler Carruthabaca7a2011-03-27 01:50:55 +000068 PrintIncludeStack(Level, PLoc.getIncludeLoc(), SM);
Chris Lattner5ce24c82009-04-21 03:57:54 +000069
Daniel Dunbareace8742009-11-04 06:24:30 +000070 if (DiagOpts->ShowLocation)
Chris Lattner5ce24c82009-04-21 03:57:54 +000071 OS << "In file included from " << PLoc.getFilename()
72 << ':' << PLoc.getLine() << ":\n";
73 else
74 OS << "In included file:\n";
Reid Spencer5f016e22007-07-11 17:01:13 +000075}
76
77/// HighlightRange - Given a SourceRange and a line number, highlight (with ~'s)
78/// any characters in LineNo that intersect the SourceRange.
Chris Lattner0a76aae2010-06-18 22:45:06 +000079void TextDiagnosticPrinter::HighlightRange(const CharSourceRange &R,
Chris Lattnerb9c3f962009-01-27 07:57:44 +000080 const SourceManager &SM,
Chris Lattner3b4d5e92009-01-17 08:45:21 +000081 unsigned LineNo, FileID FID,
Gordon Henriksenaad69532008-08-09 19:58:22 +000082 std::string &CaretLine,
Nuno Lopesdb825682008-08-05 19:40:20 +000083 const std::string &SourceLine) {
Gordon Henriksenaad69532008-08-09 19:58:22 +000084 assert(CaretLine.size() == SourceLine.size() &&
85 "Expect a correspondence between source and caret line!");
Reid Spencer5f016e22007-07-11 17:01:13 +000086 if (!R.isValid()) return;
87
Chandler Carruth40278532011-07-25 16:49:02 +000088 SourceLocation Begin = SM.getExpansionLoc(R.getBegin());
89 SourceLocation End = SM.getExpansionLoc(R.getEnd());
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +000090
Chris Lattner34837a52009-02-17 05:19:10 +000091 // 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())
Chandler Carruthedc3dcc2011-07-25 16:56:02 +000097 End = SM.getExpansionRange(R.getEnd()).second;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +000098
Chris Lattner30fc9332009-02-04 01:06:56 +000099 unsigned StartLineNo = SM.getInstantiationLineNumber(Begin);
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000100 if (StartLineNo > LineNo || SM.getFileID(Begin) != FID)
Chris Lattnere41b7cd2008-01-12 06:43:35 +0000101 return; // No intersection.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000102
Chris Lattner30fc9332009-02-04 01:06:56 +0000103 unsigned EndLineNo = SM.getInstantiationLineNumber(End);
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000104 if (EndLineNo < LineNo || SM.getFileID(End) != FID)
Chris Lattnere41b7cd2008-01-12 06:43:35 +0000105 return; // No intersection.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000106
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 // Compute the column number of the start.
108 unsigned StartColNo = 0;
109 if (StartLineNo == LineNo) {
Chris Lattner7da5aea2009-02-04 00:55:58 +0000110 StartColNo = SM.getInstantiationColumnNumber(Begin);
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 if (StartColNo) --StartColNo; // Zero base the col #.
112 }
113
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 // Compute the column number of the end.
Gordon Henriksenaad69532008-08-09 19:58:22 +0000115 unsigned EndColNo = CaretLine.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 if (EndLineNo == LineNo) {
Chris Lattner7da5aea2009-02-04 00:55:58 +0000117 EndColNo = SM.getInstantiationColumnNumber(End);
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 if (EndColNo) {
119 --EndColNo; // Zero base the col #.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000120
Chris Lattner0a76aae2010-06-18 22:45:06 +0000121 // 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 Spencer5f016e22007-07-11 17:01:13 +0000125 } else {
Gordon Henriksenaad69532008-08-09 19:58:22 +0000126 EndColNo = CaretLine.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 }
128 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000129
Chris Lattner41e79e22010-02-12 18:52:52 +0000130 assert(StartColNo <= EndColNo && "Invalid range!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000131
Tom Care45f9b7e2010-06-21 21:21:01 +0000132 // 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 Rajaratnam19357542010-03-13 10:17:05 +0000138
Tom Care45f9b7e2010-06-21 21:21:01 +0000139 // 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 Rajaratnam19357542010-03-13 10:17:05 +0000145
Axel Naumann04331162011-01-27 10:55:51 +0000146 // 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 Care45f9b7e2010-06-21 21:21:01 +0000149 assert(StartColNo <= EndColNo && "Trying to highlight whitespace??");
150 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000151
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 // Fill the range with ~'s.
Nuno Lopesdb825682008-08-05 19:40:20 +0000153 for (unsigned i = StartColNo; i < EndColNo; ++i)
Gordon Henriksenaad69532008-08-09 19:58:22 +0000154 CaretLine[i] = '~';
Reid Spencer5f016e22007-07-11 17:01:13 +0000155}
156
Douglas Gregor47f71772009-05-01 23:32:58 +0000157/// \brief When the source code line we want to print is too long for
158/// the terminal, select the "interesting" region.
159static void SelectInterestingSourceRegion(std::string &SourceLine,
160 std::string &CaretLine,
161 std::string &FixItInsertionLine,
Douglas Gregorcfe1f9d2009-05-04 06:27:32 +0000162 unsigned EndOfCaretToken,
Douglas Gregor47f71772009-05-01 23:32:58 +0000163 unsigned Columns) {
Douglas Gregorce487ef2010-04-16 00:23:51 +0000164 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 Gregor47f71772009-05-01 23:32:58 +0000174 // 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 Gregorcfe1f9d2009-05-04 06:27:32 +0000184
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 Gregor844da342009-05-03 04:33:32 +0000190 // 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 Dunbarcbff0dc2009-09-07 23:07:56 +0000197
Douglas Gregor844da342009-05-03 04:33:32 +0000198 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 Gregor47f71772009-05-01 23:32:58 +0000208 // 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 Gregorc95bd4d2009-05-15 18:05:24 +0000215 if (Columns > 3 && CaretEnd < Columns - 3)
Douglas Gregor47f71772009-05-01 23:32:58 +0000216 CaretStart = 0;
217
Douglas Gregorc95bd4d2009-05-15 18:05:24 +0000218 unsigned TargetColumns = Columns;
219 if (TargetColumns > 8)
220 TargetColumns -= 8; // Give us extra room for the ellipses.
Douglas Gregor47f71772009-05-01 23:32:58 +0000221 unsigned SourceLength = SourceLine.size();
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000222 while ((CaretEnd - CaretStart) < TargetColumns) {
Douglas Gregor47f71772009-05-01 23:32:58 +0000223 bool ExpandedRegion = false;
224 // Move the start of the interesting region left until we've
225 // pulled in something else interesting.
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000226 if (CaretStart == 1)
227 CaretStart = 0;
228 else if (CaretStart > 1) {
229 unsigned NewStart = CaretStart - 1;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000230
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000231 // 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 Dunbarcbff0dc2009-09-07 23:07:56 +0000235
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000236 // Skip over this bit of "interesting" text.
237 while (NewStart && !isspace(SourceLine[NewStart]))
238 --NewStart;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000239
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000240 // Move up to the non-whitespace character we just saw.
241 if (NewStart)
242 ++NewStart;
Douglas Gregor47f71772009-05-01 23:32:58 +0000243
244 // If we're still within our limit, update the starting
245 // position within the source/caret line.
Douglas Gregor2fb3ea32009-05-04 06:45:38 +0000246 if (CaretEnd - NewStart <= TargetColumns) {
Douglas Gregor47f71772009-05-01 23:32:58 +0000247 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 Dunbar1ef29d22009-05-03 23:04:40 +0000254 if (CaretEnd != SourceLength) {
Daniel Dunbar06d10722009-10-19 09:11:21 +0000255 assert(CaretEnd < SourceLength && "Unexpected caret position!");
Douglas Gregor47f71772009-05-01 23:32:58 +0000256 unsigned NewEnd = CaretEnd;
257
258 // Skip over any whitespace we see here; we're looking for
259 // another bit of interesting text.
Douglas Gregor1f0eb562009-05-18 22:09:16 +0000260 while (NewEnd != SourceLength && isspace(SourceLine[NewEnd - 1]))
Douglas Gregor47f71772009-05-01 23:32:58 +0000261 ++NewEnd;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000262
Douglas Gregor47f71772009-05-01 23:32:58 +0000263 // Skip over this bit of "interesting" text.
Douglas Gregor1f0eb562009-05-18 22:09:16 +0000264 while (NewEnd != SourceLength && !isspace(SourceLine[NewEnd - 1]))
Douglas Gregor47f71772009-05-01 23:32:58 +0000265 ++NewEnd;
266
267 if (NewEnd - CaretStart <= TargetColumns) {
268 CaretEnd = NewEnd;
269 ExpandedRegion = true;
270 }
Douglas Gregor47f71772009-05-01 23:32:58 +0000271 }
Daniel Dunbar1ef29d22009-05-03 23:04:40 +0000272
273 if (!ExpandedRegion)
274 break;
Douglas Gregor47f71772009-05-01 23:32:58 +0000275 }
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 Gregor7d101f62009-05-03 04:12:51 +0000280 if (CaretEnd < SourceLine.size())
281 SourceLine.replace(CaretEnd, std::string::npos, "...");
Douglas Gregor2167de42009-05-03 15:24:25 +0000282 if (CaretEnd < CaretLine.size())
283 CaretLine.erase(CaretEnd, std::string::npos);
Douglas Gregor47f71772009-05-01 23:32:58 +0000284 if (FixItInsertionLine.size() > CaretEnd)
285 FixItInsertionLine.erase(CaretEnd, std::string::npos);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000286
Douglas Gregor47f71772009-05-01 23:32:58 +0000287 if (CaretStart > 2) {
Douglas Gregor7d101f62009-05-03 04:12:51 +0000288 SourceLine.replace(0, CaretStart, " ...");
289 CaretLine.replace(0, CaretStart, " ");
Douglas Gregor47f71772009-05-01 23:32:58 +0000290 if (FixItInsertionLine.size() >= CaretStart)
Douglas Gregor7d101f62009-05-03 04:12:51 +0000291 FixItInsertionLine.replace(0, CaretStart, " ");
Douglas Gregor47f71772009-05-01 23:32:58 +0000292 }
293}
294
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000295/// Look through spelling locations for a macro argument expansion, and
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000296/// if found skip to it so that we can trace the argument rather than the macros
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000297/// in which that argument is used. If no macro argument expansion is found,
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000298/// don't skip anything and return the starting location.
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000299static SourceLocation skipToMacroArgExpansion(const SourceManager &SM,
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000300 SourceLocation StartLoc) {
301 for (SourceLocation L = StartLoc; L.isMacroID();
302 L = SM.getImmediateSpellingLoc(L)) {
303 if (SM.isMacroArgInstantiation(L))
304 return L;
305 }
306
307 // Otherwise just return initial location, there's nothing to skip.
308 return StartLoc;
309}
310
311/// Gets the location of the immediate macro caller, one level up the stack
312/// toward the initial macro typed into the source.
313static SourceLocation getImmediateMacroCallerLoc(const SourceManager &SM,
314 SourceLocation Loc) {
315 if (!Loc.isMacroID()) return Loc;
316
317 // When we have the location of (part of) an expanded parameter, its spelling
318 // location points to the argument as typed into the macro call, and
319 // therefore is used to locate the macro caller.
320 if (SM.isMacroArgInstantiation(Loc))
321 return SM.getImmediateSpellingLoc(Loc);
322
323 // Otherwise, the caller of the macro is located where this macro is
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000324 // expanded (while the spelling is part of the macro definition).
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000325 return SM.getImmediateInstantiationRange(Loc).first;
326}
327
328/// Gets the location of the immediate macro callee, one level down the stack
329/// toward the leaf macro.
330static SourceLocation getImmediateMacroCalleeLoc(const SourceManager &SM,
331 SourceLocation Loc) {
332 if (!Loc.isMacroID()) return Loc;
333
334 // When we have the location of (part of) an expanded parameter, its
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000335 // expansion location points to the unexpanded paramater reference within
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000336 // the macro definition (or callee).
337 if (SM.isMacroArgInstantiation(Loc))
338 return SM.getImmediateInstantiationRange(Loc).first;
339
340 // Otherwise, the callee of the macro is located where this location was
341 // spelled inside the macro definition.
342 return SM.getImmediateSpellingLoc(Loc);
343}
344
Chris Lattner83068312011-06-28 05:11:33 +0000345void TextDiagnosticPrinter::EmitCaretDiagnostic(SourceLocation Loc,
Chris Lattner0a76aae2010-06-18 22:45:06 +0000346 CharSourceRange *Ranges,
Chris Lattnerebbbb1b2009-02-20 00:18:51 +0000347 unsigned NumRanges,
Chris Lattner5c5db4e2010-04-20 20:49:23 +0000348 const SourceManager &SM,
Douglas Gregor849b2432010-03-31 17:46:05 +0000349 const FixItHint *Hints,
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000350 unsigned NumHints,
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000351 unsigned Columns,
352 unsigned OnMacroInst,
353 unsigned MacroSkipStart,
354 unsigned MacroSkipEnd) {
Daniel Dunbarefcbe942009-11-05 02:42:12 +0000355 assert(LangOpts && "Unexpected diagnostic outside source file processing");
Chris Lattner55dcef02009-02-17 08:44:50 +0000356 assert(!Loc.isInvalid() && "must have a valid source location here");
Chris Lattner037fb7f2009-05-05 22:03:18 +0000357
358 // If this is a macro ID, first emit information about where this was
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000359 // expanded (recursively) then emit information about where the token was
Chris Lattner037fb7f2009-05-05 22:03:18 +0000360 // spelled from.
Chris Lattner55dcef02009-02-17 08:44:50 +0000361 if (!Loc.isFileID()) {
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000362 // Whether to suppress printing this macro expansion.
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000363 bool Suppressed
364 = OnMacroInst >= MacroSkipStart && OnMacroInst < MacroSkipEnd;
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000365
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000366 // When processing macros, skip over the expansions leading up to
367 // a macro argument, and trace the argument's expansion stack instead.
368 Loc = skipToMacroArgExpansion(SM, Loc);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000369
370 SourceLocation OneLevelUp = getImmediateMacroCallerLoc(SM, Loc);
371
Chris Lattner037fb7f2009-05-05 22:03:18 +0000372 // FIXME: Map ranges?
Chris Lattner83068312011-06-28 05:11:33 +0000373 EmitCaretDiagnostic(OneLevelUp, Ranges, NumRanges, SM,
Argyrios Kyrtzidis544607e2011-06-24 17:28:31 +0000374 Hints, NumHints, Columns,
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000375 OnMacroInst + 1, MacroSkipStart, MacroSkipEnd);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000376
Chris Lattner2e77aa12009-12-04 07:06:35 +0000377 // Map the location.
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000378 Loc = getImmediateMacroCalleeLoc(SM, Loc);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000379
Chris Lattner676f0242009-02-20 00:25:28 +0000380 // Map the ranges.
381 for (unsigned i = 0; i != NumRanges; ++i) {
Chris Lattner0a76aae2010-06-18 22:45:06 +0000382 CharSourceRange &R = Ranges[i];
383 SourceLocation S = R.getBegin(), E = R.getEnd();
384 if (S.isMacroID())
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000385 R.setBegin(getImmediateMacroCalleeLoc(SM, S));
Chris Lattner0a76aae2010-06-18 22:45:06 +0000386 if (E.isMacroID())
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000387 R.setEnd(getImmediateMacroCalleeLoc(SM, E));
Chris Lattner676f0242009-02-20 00:25:28 +0000388 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000389
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000390 if (!Suppressed) {
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000391 // Don't print recursive expansion notes from an expansion note.
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000392 Loc = SM.getSpellingLoc(Loc);
393
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000394 // Get the pretty name, according to #line directives etc.
395 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000396 if (PLoc.isInvalid())
397 return;
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000398
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000399 // If this diagnostic is not in the main file, print out the
400 // "included from" lines.
401 if (LastWarningLoc != PLoc.getIncludeLoc()) {
402 LastWarningLoc = PLoc.getIncludeLoc();
Richard Trieubb6a5672011-05-26 20:49:16 +0000403 PrintIncludeStack(Diagnostic::Note, LastWarningLoc, SM);
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000404 }
405
406 if (DiagOpts->ShowLocation) {
407 // Emit the file/line/column that this expansion came from.
408 OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':';
409 if (DiagOpts->ShowColumn)
410 OS << PLoc.getColumn() << ':';
411 OS << ' ';
412 }
Chandler Carruth4e805462011-07-14 08:20:28 +0000413 OS << "note: expanded from:\n";
Chris Lattner83068312011-06-28 05:11:33 +0000414
415 EmitCaretDiagnostic(Loc, Ranges, NumRanges, SM, 0, 0,
Chandler Carruthabaca7a2011-03-27 01:50:55 +0000416 Columns, OnMacroInst + 1, MacroSkipStart,
417 MacroSkipEnd);
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000418 return;
Chris Lattner2e77aa12009-12-04 07:06:35 +0000419 }
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000420
421 if (OnMacroInst == MacroSkipStart) {
422 // Tell the user that we've skipped contexts.
423 OS << "note: (skipping " << (MacroSkipEnd - MacroSkipStart)
Chandler Carruth4e805462011-07-14 08:20:28 +0000424 << " expansions in backtrace; use -fmacro-backtrace-limit=0 to see "
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000425 "all)\n";
Chris Lattner5ce24c82009-04-21 03:57:54 +0000426 }
Douglas Gregor6c1cb992010-05-04 17:13:42 +0000427
Chris Lattner037fb7f2009-05-05 22:03:18 +0000428 return;
Chris Lattner55dcef02009-02-17 08:44:50 +0000429 }
Chris Lattner83068312011-06-28 05:11:33 +0000430
Chris Lattnerb88af812009-02-17 07:51:53 +0000431 // Decompose the location into a FID/Offset pair.
432 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
433 FileID FID = LocInfo.first;
434 unsigned FileOffset = LocInfo.second;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000435
Chris Lattnerb88af812009-02-17 07:51:53 +0000436 // Get information about the buffer it points into.
Douglas Gregorf715ca12010-03-16 00:06:06 +0000437 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000438 const char *BufStart = SM.getBufferData(FID, &Invalid).data();
Douglas Gregorf715ca12010-03-16 00:06:06 +0000439 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +0000440 return;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000441
Chris Lattnerb88af812009-02-17 07:51:53 +0000442 unsigned ColNo = SM.getColumnNumber(FID, FileOffset);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000443 unsigned CaretEndColNo
Douglas Gregorcfe1f9d2009-05-04 06:27:32 +0000444 = ColNo + Lexer::MeasureTokenLength(Loc, SM, *LangOpts);
445
Chris Lattner94f55782009-02-17 07:38:37 +0000446 // Rewind from the current position to the start of the line.
Chris Lattnerb88af812009-02-17 07:51:53 +0000447 const char *TokPtr = BufStart+FileOffset;
448 const char *LineStart = TokPtr-ColNo+1; // Column # is 1-based.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000449
450
Chris Lattner94f55782009-02-17 07:38:37 +0000451 // Compute the line end. Scan forward from the error position to the end of
452 // the line.
Chris Lattnerb88af812009-02-17 07:51:53 +0000453 const char *LineEnd = TokPtr;
Chris Lattnercd1148b2009-03-08 08:11:22 +0000454 while (*LineEnd != '\n' && *LineEnd != '\r' && *LineEnd != '\0')
Chris Lattner94f55782009-02-17 07:38:37 +0000455 ++LineEnd;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000456
Daniel Dunbar06d10722009-10-19 09:11:21 +0000457 // FIXME: This shouldn't be necessary, but the CaretEndColNo can extend past
458 // the source line length as currently being computed. See
459 // test/Misc/message-length.c.
460 CaretEndColNo = std::min(CaretEndColNo, unsigned(LineEnd - LineStart));
461
Chris Lattner94f55782009-02-17 07:38:37 +0000462 // Copy the line of code into an std::string for ease of manipulation.
463 std::string SourceLine(LineStart, LineEnd);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000464
Chris Lattner94f55782009-02-17 07:38:37 +0000465 // Create a line for the caret that is filled with spaces that is the same
466 // length as the line of source code.
467 std::string CaretLine(LineEnd-LineStart, ' ');
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000468
Chris Lattner94f55782009-02-17 07:38:37 +0000469 // Highlight all of the characters covered by Ranges with ~ characters.
Chris Lattnerebbbb1b2009-02-20 00:18:51 +0000470 if (NumRanges) {
Chris Lattnerb88af812009-02-17 07:51:53 +0000471 unsigned LineNo = SM.getLineNumber(FID, FileOffset);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000472
Chris Lattnerebbbb1b2009-02-20 00:18:51 +0000473 for (unsigned i = 0, e = NumRanges; i != e; ++i)
474 HighlightRange(Ranges[i], SM, LineNo, FID, CaretLine, SourceLine);
Chris Lattnerb88af812009-02-17 07:51:53 +0000475 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000476
Chris Lattner94f55782009-02-17 07:38:37 +0000477 // Next, insert the caret itself.
478 if (ColNo-1 < CaretLine.size())
479 CaretLine[ColNo-1] = '^';
480 else
481 CaretLine.push_back('^');
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000482
Chris Lattner94f55782009-02-17 07:38:37 +0000483 // Scan the source line, looking for tabs. If we find any, manually expand
Chris Lattner52388f92010-01-13 03:06:50 +0000484 // them to spaces and update the CaretLine to match.
Chris Lattner94f55782009-02-17 07:38:37 +0000485 for (unsigned i = 0; i != SourceLine.size(); ++i) {
486 if (SourceLine[i] != '\t') continue;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000487
Chris Lattner94f55782009-02-17 07:38:37 +0000488 // Replace this tab with at least one space.
489 SourceLine[i] = ' ';
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000490
Chris Lattner94f55782009-02-17 07:38:37 +0000491 // Compute the number of spaces we need to insert.
Chris Lattner52388f92010-01-13 03:06:50 +0000492 unsigned TabStop = DiagOpts->TabStop;
493 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop &&
494 "Invalid -ftabstop value");
Chris Lattner124fca52010-01-09 21:54:33 +0000495 unsigned NumSpaces = ((i+TabStop)/TabStop * TabStop) - (i+1);
496 assert(NumSpaces < TabStop && "Invalid computation of space amt");
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000497
Chris Lattner94f55782009-02-17 07:38:37 +0000498 // Insert spaces into the SourceLine.
499 SourceLine.insert(i+1, NumSpaces, ' ');
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000500
Chris Lattner94f55782009-02-17 07:38:37 +0000501 // Insert spaces or ~'s into CaretLine.
502 CaretLine.insert(i+1, NumSpaces, CaretLine[i] == '~' ? '~' : ' ');
503 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000504
Chris Lattner770dbf02009-04-28 22:33:16 +0000505 // If we are in -fdiagnostics-print-source-range-info mode, we are trying to
506 // produce easily machine parsable output. Add a space before the source line
507 // and the caret to make it trivial to tell the main diagnostic line from what
508 // the user is intended to see.
Daniel Dunbareace8742009-11-04 06:24:30 +0000509 if (DiagOpts->ShowSourceRanges) {
Chris Lattner770dbf02009-04-28 22:33:16 +0000510 SourceLine = ' ' + SourceLine;
511 CaretLine = ' ' + CaretLine;
512 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000513
Douglas Gregor47f71772009-05-01 23:32:58 +0000514 std::string FixItInsertionLine;
Daniel Dunbareace8742009-11-04 06:24:30 +0000515 if (NumHints && DiagOpts->ShowFixits) {
Douglas Gregor849b2432010-03-31 17:46:05 +0000516 for (const FixItHint *Hint = Hints, *LastHint = Hints + NumHints;
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000517 Hint != LastHint; ++Hint) {
Douglas Gregor783c56f2010-08-18 14:24:02 +0000518 if (!Hint->CodeToInsert.empty()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000519 // We have an insertion hint. Determine whether the inserted
520 // code is on the same line as the caret.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000521 std::pair<FileID, unsigned> HintLocInfo
Douglas Gregor783c56f2010-08-18 14:24:02 +0000522 = SM.getDecomposedInstantiationLoc(Hint->RemoveRange.getBegin());
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000523 if (SM.getLineNumber(HintLocInfo.first, HintLocInfo.second) ==
524 SM.getLineNumber(FID, FileOffset)) {
525 // Insert the new code into the line just below the code
526 // that the user wrote.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000527 unsigned HintColNo
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000528 = SM.getColumnNumber(HintLocInfo.first, HintLocInfo.second);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000529 unsigned LastColumnModified
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000530 = HintColNo - 1 + Hint->CodeToInsert.size();
Douglas Gregor47f71772009-05-01 23:32:58 +0000531 if (LastColumnModified > FixItInsertionLine.size())
532 FixItInsertionLine.resize(LastColumnModified, ' ');
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000533 std::copy(Hint->CodeToInsert.begin(), Hint->CodeToInsert.end(),
Douglas Gregor47f71772009-05-01 23:32:58 +0000534 FixItInsertionLine.begin() + HintColNo - 1);
Douglas Gregor844da342009-05-03 04:33:32 +0000535 } else {
536 FixItInsertionLine.clear();
537 break;
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000538 }
539 }
540 }
Douglas Gregore44433c2010-01-18 19:28:01 +0000541 // Now that we have the entire fixit line, expand the tabs in it.
542 // Since we don't want to insert spaces in the middle of a word,
543 // find each word and the column it should line up with and insert
544 // spaces until they match.
545 if (!FixItInsertionLine.empty()) {
546 unsigned FixItPos = 0;
547 unsigned LinePos = 0;
548 unsigned TabExpandedCol = 0;
549 unsigned LineLength = LineEnd - LineStart;
550
551 while (FixItPos < FixItInsertionLine.size() && LinePos < LineLength) {
552 // Find the next word in the FixIt line.
553 while (FixItPos < FixItInsertionLine.size() &&
554 FixItInsertionLine[FixItPos] == ' ')
555 ++FixItPos;
556 unsigned CharDistance = FixItPos - TabExpandedCol;
557
558 // Walk forward in the source line, keeping track of
559 // the tab-expanded column.
560 for (unsigned I = 0; I < CharDistance; ++I, ++LinePos)
561 if (LinePos >= LineLength || LineStart[LinePos] != '\t')
562 ++TabExpandedCol;
563 else
564 TabExpandedCol =
565 (TabExpandedCol/DiagOpts->TabStop + 1) * DiagOpts->TabStop;
566
567 // Adjust the fixit line to match this column.
568 FixItInsertionLine.insert(FixItPos, TabExpandedCol-FixItPos, ' ');
569 FixItPos = TabExpandedCol;
570
571 // Walk to the end of the word.
572 while (FixItPos < FixItInsertionLine.size() &&
573 FixItInsertionLine[FixItPos] != ' ')
574 ++FixItPos;
575 }
576 }
Douglas Gregor47f71772009-05-01 23:32:58 +0000577 }
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000578
Douglas Gregor47f71772009-05-01 23:32:58 +0000579 // If the source line is too long for our terminal, select only the
580 // "interesting" source region within that line.
581 if (Columns && SourceLine.size() > Columns)
582 SelectInterestingSourceRegion(SourceLine, CaretLine, FixItInsertionLine,
Douglas Gregorcfe1f9d2009-05-04 06:27:32 +0000583 CaretEndColNo, Columns);
Douglas Gregor47f71772009-05-01 23:32:58 +0000584
Douglas Gregor47f71772009-05-01 23:32:58 +0000585 // Finally, remove any blank spaces from the end of CaretLine.
586 while (CaretLine[CaretLine.size()-1] == ' ')
587 CaretLine.erase(CaretLine.end()-1);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000588
Douglas Gregor47f71772009-05-01 23:32:58 +0000589 // Emit what we have computed.
590 OS << SourceLine << '\n';
Torok Edwin603fca72009-06-04 07:18:23 +0000591
Daniel Dunbareace8742009-11-04 06:24:30 +0000592 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000593 OS.changeColor(caretColor, true);
Douglas Gregor47f71772009-05-01 23:32:58 +0000594 OS << CaretLine << '\n';
Daniel Dunbareace8742009-11-04 06:24:30 +0000595 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000596 OS.resetColor();
Douglas Gregor47f71772009-05-01 23:32:58 +0000597
598 if (!FixItInsertionLine.empty()) {
Daniel Dunbareace8742009-11-04 06:24:30 +0000599 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000600 // Print fixit line in color
601 OS.changeColor(fixitColor, false);
Daniel Dunbareace8742009-11-04 06:24:30 +0000602 if (DiagOpts->ShowSourceRanges)
Douglas Gregor47f71772009-05-01 23:32:58 +0000603 OS << ' ';
604 OS << FixItInsertionLine << '\n';
Daniel Dunbareace8742009-11-04 06:24:30 +0000605 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000606 OS.resetColor();
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000607 }
Douglas Gregor4786c152010-08-19 20:24:43 +0000608
609 if (DiagOpts->ShowParseableFixits) {
610
611 // We follow FixItRewriter's example in not (yet) handling
612 // fix-its in macros.
613 bool BadApples = false;
614 for (const FixItHint *Hint = Hints; Hint != Hints + NumHints; ++Hint) {
615 if (Hint->RemoveRange.isInvalid() ||
616 Hint->RemoveRange.getBegin().isMacroID() ||
617 Hint->RemoveRange.getEnd().isMacroID()) {
618 BadApples = true;
619 break;
620 }
621 }
622
623 if (!BadApples) {
624 for (const FixItHint *Hint = Hints; Hint != Hints + NumHints; ++Hint) {
625
626 SourceLocation B = Hint->RemoveRange.getBegin();
627 SourceLocation E = Hint->RemoveRange.getEnd();
628
629 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B);
630 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(E);
631
632 // Adjust for token ranges.
633 if (Hint->RemoveRange.isTokenRange())
634 EInfo.second += Lexer::MeasureTokenLength(E, SM, *LangOpts);
635
636 // We specifically do not do word-wrapping or tab-expansion here,
637 // because this is supposed to be easy to parse.
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000638 PresumedLoc PLoc = SM.getPresumedLoc(B);
639 if (PLoc.isInvalid())
640 break;
641
Douglas Gregorbf5e09d2010-08-20 03:17:33 +0000642 OS << "fix-it:\"";
Douglas Gregor4786c152010-08-19 20:24:43 +0000643 OS.write_escaped(SM.getPresumedLoc(B).getFilename());
644 OS << "\":{" << SM.getLineNumber(BInfo.first, BInfo.second)
645 << ':' << SM.getColumnNumber(BInfo.first, BInfo.second)
646 << '-' << SM.getLineNumber(EInfo.first, EInfo.second)
647 << ':' << SM.getColumnNumber(EInfo.first, EInfo.second)
Douglas Gregorbf5e09d2010-08-20 03:17:33 +0000648 << "}:\"";
Douglas Gregor4786c152010-08-19 20:24:43 +0000649 OS.write_escaped(Hint->CodeToInsert);
650 OS << "\"\n";
651 }
652 }
653 }
Chris Lattner94f55782009-02-17 07:38:37 +0000654}
655
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000656/// \brief Skip over whitespace in the string, starting at the given
657/// index.
658///
659/// \returns The index of the first non-whitespace character that is
660/// greater than or equal to Idx or, if no such character exists,
661/// returns the end of the string.
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000662static unsigned skipWhitespace(unsigned Idx,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000663 const SmallVectorImpl<char> &Str,
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000664 unsigned Length) {
665 while (Idx < Length && isspace(Str[Idx]))
666 ++Idx;
667 return Idx;
668}
669
670/// \brief If the given character is the start of some kind of
671/// balanced punctuation (e.g., quotes or parentheses), return the
672/// character that will terminate the punctuation.
673///
674/// \returns The ending punctuation character, if any, or the NULL
675/// character if the input character does not start any punctuation.
676static inline char findMatchingPunctuation(char c) {
677 switch (c) {
678 case '\'': return '\'';
679 case '`': return '\'';
680 case '"': return '"';
681 case '(': return ')';
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000682 case '[': return ']';
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000683 case '{': return '}';
684 default: break;
685 }
686
687 return 0;
688}
689
690/// \brief Find the end of the word starting at the given offset
691/// within a string.
692///
693/// \returns the index pointing one character past the end of the
694/// word.
Daniel Dunbareae18f82009-12-06 09:56:18 +0000695static unsigned findEndOfWord(unsigned Start,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000696 const SmallVectorImpl<char> &Str,
Daniel Dunbareae18f82009-12-06 09:56:18 +0000697 unsigned Length, unsigned Column,
698 unsigned Columns) {
699 assert(Start < Str.size() && "Invalid start position!");
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000700 unsigned End = Start + 1;
701
Daniel Dunbareae18f82009-12-06 09:56:18 +0000702 // If we are already at the end of the string, take that as the word.
703 if (End == Str.size())
704 return End;
705
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000706 // Determine if the start of the string is actually opening
707 // punctuation, e.g., a quote or parentheses.
708 char EndPunct = findMatchingPunctuation(Str[Start]);
709 if (!EndPunct) {
710 // This is a normal word. Just find the first space character.
711 while (End < Length && !isspace(Str[End]))
712 ++End;
713 return End;
714 }
715
716 // We have the start of a balanced punctuation sequence (quotes,
717 // parentheses, etc.). Determine the full sequence is.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000718 llvm::SmallString<16> PunctuationEndStack;
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000719 PunctuationEndStack.push_back(EndPunct);
720 while (End < Length && !PunctuationEndStack.empty()) {
721 if (Str[End] == PunctuationEndStack.back())
722 PunctuationEndStack.pop_back();
723 else if (char SubEndPunct = findMatchingPunctuation(Str[End]))
724 PunctuationEndStack.push_back(SubEndPunct);
725
726 ++End;
727 }
728
729 // Find the first space character after the punctuation ended.
730 while (End < Length && !isspace(Str[End]))
731 ++End;
732
733 unsigned PunctWordLength = End - Start;
734 if (// If the word fits on this line
735 Column + PunctWordLength <= Columns ||
736 // ... or the word is "short enough" to take up the next line
737 // without too much ugly white space
738 PunctWordLength < Columns/3)
739 return End; // Take the whole thing as a single "word".
740
741 // The whole quoted/parenthesized string is too long to print as a
742 // single "word". Instead, find the "word" that starts just after
743 // the punctuation and use that end-point instead. This will recurse
744 // until it finds something small enough to consider a word.
745 return findEndOfWord(Start + 1, Str, Length, Column + 1, Columns);
746}
747
748/// \brief Print the given string to a stream, word-wrapping it to
749/// some number of columns in the process.
750///
751/// \brief OS the stream to which the word-wrapping string will be
752/// emitted.
753///
754/// \brief Str the string to word-wrap and output.
755///
756/// \brief Columns the number of columns to word-wrap to.
757///
758/// \brief Column the column number at which the first character of \p
759/// Str will be printed. This will be non-zero when part of the first
760/// line has already been printed.
761///
762/// \brief Indentation the number of spaces to indent any lines beyond
763/// the first line.
764///
765/// \returns true if word-wrapping was required, or false if the
766/// string fit on the first line.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000767static bool PrintWordWrapped(raw_ostream &OS,
768 const SmallVectorImpl<char> &Str,
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000769 unsigned Columns,
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000770 unsigned Column = 0,
771 unsigned Indentation = WordWrapIndentation) {
772 unsigned Length = Str.size();
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000773
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000774 // If there is a newline in this message somewhere, find that
775 // newline and split the message into the part before the newline
776 // (which will be word-wrapped) and the part from the newline one
777 // (which will be emitted unchanged).
778 for (unsigned I = 0; I != Length; ++I)
779 if (Str[I] == '\n') {
780 Length = I;
781 break;
782 }
783
784 // The string used to indent each line.
785 llvm::SmallString<16> IndentStr;
786 IndentStr.assign(Indentation, ' ');
787 bool Wrapped = false;
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000788 for (unsigned WordStart = 0, WordEnd; WordStart < Length;
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000789 WordStart = WordEnd) {
790 // Find the beginning of the next word.
791 WordStart = skipWhitespace(WordStart, Str, Length);
792 if (WordStart == Length)
793 break;
794
795 // Find the end of this word.
796 WordEnd = findEndOfWord(WordStart, Str, Length, Column, Columns);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000797
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000798 // Does this word fit on the current line?
799 unsigned WordLength = WordEnd - WordStart;
800 if (Column + WordLength < Columns) {
801 // This word fits on the current line; print it there.
802 if (WordStart) {
803 OS << ' ';
804 Column += 1;
805 }
806 OS.write(&Str[WordStart], WordLength);
807 Column += WordLength;
808 continue;
809 }
810
811 // This word does not fit on the current line, so wrap to the next
812 // line.
Douglas Gregor44cf08e2009-05-03 03:52:38 +0000813 OS << '\n';
814 OS.write(&IndentStr[0], Indentation);
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000815 OS.write(&Str[WordStart], WordLength);
816 Column = Indentation + WordLength;
817 Wrapped = true;
818 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000819
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000820 if (Length == Str.size())
821 return Wrapped; // We're done.
822
823 // There is a newline in the message, followed by something that
824 // will not be word-wrapped. Print that.
825 OS.write(&Str[Length], Str.size() - Length);
826 return true;
827}
Chris Lattner94f55782009-02-17 07:38:37 +0000828
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000829/// Get the presumed location of a diagnostic message. This computes the
830/// presumed location for the top of any macro backtrace when present.
831static PresumedLoc getDiagnosticPresumedLoc(const SourceManager &SM,
832 SourceLocation Loc) {
833 // This is a condensed form of the algorithm used by EmitCaretDiagnostic to
834 // walk to the top of the macro call stack.
835 while (Loc.isMacroID()) {
Chandler Carruth7e7736a2011-07-14 08:20:31 +0000836 Loc = skipToMacroArgExpansion(SM, Loc);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000837 Loc = getImmediateMacroCallerLoc(SM, Loc);
838 }
839
840 return SM.getPresumedLoc(Loc);
841}
842
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000843void TextDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level,
Chris Lattner0a14eee2008-11-18 07:04:44 +0000844 const DiagnosticInfo &Info) {
Argyrios Kyrtzidisf2224d82010-11-18 20:06:46 +0000845 // Default implementation (Warnings/errors count).
846 DiagnosticClient::HandleDiagnostic(Level, Info);
847
Douglas Gregorfffd93f2009-05-01 21:53:04 +0000848 // Keeps track of the the starting position of the location
849 // information (e.g., "foo.c:10:4:") that precedes the error
850 // message. We use this information to determine how long the
851 // file+line+column number prefix is.
852 uint64_t StartOfLocationInfo = OS.tell();
853
Daniel Dunbarb96b6702010-02-25 03:23:40 +0000854 if (!Prefix.empty())
855 OS << Prefix << ": ";
856
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000857 // If the location is specified, print out a file/line/col and include trace
858 // if enabled.
859 if (Info.getLocation().isValid()) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000860 const SourceManager &SM = Info.getSourceManager();
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000861 PresumedLoc PLoc = getDiagnosticPresumedLoc(SM, Info.getLocation());
Axel Naumann04331162011-01-27 10:55:51 +0000862 if (PLoc.isInvalid()) {
863 // At least print the file name if available:
864 FileID FID = SM.getFileID(Info.getLocation());
865 if (!FID.isInvalid()) {
866 const FileEntry* FE = SM.getFileEntryForID(FID);
867 if (FE && FE->getName()) {
868 OS << FE->getName();
869 if (FE->getDevice() == 0 && FE->getInode() == 0
870 && FE->getFileMode() == 0) {
871 // in PCH is a guess, but a good one:
872 OS << " (in PCH)";
873 }
874 OS << ": ";
Chris Lattner1fbee5d2009-03-13 01:08:23 +0000875 }
Axel Naumann04331162011-01-27 10:55:51 +0000876 }
877 } else {
878 unsigned LineNo = PLoc.getLine();
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000879
Axel Naumann04331162011-01-27 10:55:51 +0000880 // First, if this diagnostic is not in the main file, print out the
881 // "included from" lines.
882 if (LastWarningLoc != PLoc.getIncludeLoc()) {
883 LastWarningLoc = PLoc.getIncludeLoc();
Chandler Carruthabaca7a2011-03-27 01:50:55 +0000884 PrintIncludeStack(Level, LastWarningLoc, SM);
Axel Naumann04331162011-01-27 10:55:51 +0000885 StartOfLocationInfo = OS.tell();
886 }
887
888 // Compute the column number.
Matt Beaumont-Gay32ad9352011-03-31 01:46:47 +0000889 if (DiagOpts->ShowLocation) {
Axel Naumann04331162011-01-27 10:55:51 +0000890 if (DiagOpts->ShowColors)
891 OS.changeColor(savedColor, true);
892
Douglas Gregorc9471b02011-05-21 17:07:29 +0000893 OS << PLoc.getFilename();
894 switch (DiagOpts->Format) {
895 case DiagnosticOptions::Clang: OS << ':' << LineNo; break;
896 case DiagnosticOptions::Msvc: OS << '(' << LineNo; break;
897 case DiagnosticOptions::Vi: OS << " +" << LineNo; break;
Axel Naumann04331162011-01-27 10:55:51 +0000898 }
Douglas Gregorc9471b02011-05-21 17:07:29 +0000899 if (DiagOpts->ShowColumn)
900 if (unsigned ColNo = PLoc.getColumn()) {
901 if (DiagOpts->Format == DiagnosticOptions::Msvc) {
902 OS << ',';
903 ColNo--;
904 } else
905 OS << ':';
906 OS << ColNo;
907 }
908 switch (DiagOpts->Format) {
909 case DiagnosticOptions::Clang:
910 case DiagnosticOptions::Vi: OS << ':'; break;
911 case DiagnosticOptions::Msvc: OS << ") : "; break;
912 }
913
914
Axel Naumann04331162011-01-27 10:55:51 +0000915 if (DiagOpts->ShowSourceRanges && Info.getNumRanges()) {
916 FileID CaretFileID =
Chandler Carruth40278532011-07-25 16:49:02 +0000917 SM.getFileID(SM.getExpansionLoc(Info.getLocation()));
Axel Naumann04331162011-01-27 10:55:51 +0000918 bool PrintedRange = false;
919
920 for (unsigned i = 0, e = Info.getNumRanges(); i != e; ++i) {
921 // Ignore invalid ranges.
922 if (!Info.getRange(i).isValid()) continue;
923
924 SourceLocation B = Info.getRange(i).getBegin();
925 SourceLocation E = Info.getRange(i).getEnd();
Chandler Carruth40278532011-07-25 16:49:02 +0000926 B = SM.getExpansionLoc(B);
927 E = SM.getExpansionLoc(E);
Axel Naumann04331162011-01-27 10:55:51 +0000928
929 // If the End location and the start location are the same and are a
930 // macro location, then the range was something that came from a
931 // macro expansion or _Pragma. If this is an object-like macro, the
932 // best we can do is to highlight the range. If this is a
933 // function-like macro, we'd also like to highlight the arguments.
934 if (B == E && Info.getRange(i).getEnd().isMacroID())
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000935 E = SM.getExpansionRange(Info.getRange(i).getEnd()).second;
Axel Naumann04331162011-01-27 10:55:51 +0000936
937 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B);
938 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(E);
939
940 // If the start or end of the range is in another file, just discard
941 // it.
942 if (BInfo.first != CaretFileID || EInfo.first != CaretFileID)
943 continue;
944
945 // Add in the length of the token, so that we cover multi-char
946 // tokens.
947 unsigned TokSize = 0;
948 if (Info.getRange(i).isTokenRange())
949 TokSize = Lexer::MeasureTokenLength(E, SM, *LangOpts);
950
951 OS << '{' << SM.getLineNumber(BInfo.first, BInfo.second) << ':'
952 << SM.getColumnNumber(BInfo.first, BInfo.second) << '-'
953 << SM.getLineNumber(EInfo.first, EInfo.second) << ':'
954 << (SM.getColumnNumber(EInfo.first, EInfo.second)+TokSize)
955 << '}';
956 PrintedRange = true;
957 }
958
959 if (PrintedRange)
960 OS << ':';
961 }
Chris Lattner1fbee5d2009-03-13 01:08:23 +0000962 }
Chris Lattnerb8bf65e2009-01-30 17:41:53 +0000963 OS << ' ';
Daniel Dunbareace8742009-11-04 06:24:30 +0000964 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000965 OS.resetColor();
966 }
967 }
968
Daniel Dunbareace8742009-11-04 06:24:30 +0000969 if (DiagOpts->ShowColors) {
Torok Edwin603fca72009-06-04 07:18:23 +0000970 // Print diagnostic category in bold and color
971 switch (Level) {
972 case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type");
973 case Diagnostic::Note: OS.changeColor(noteColor, true); break;
974 case Diagnostic::Warning: OS.changeColor(warningColor, true); break;
975 case Diagnostic::Error: OS.changeColor(errorColor, true); break;
976 case Diagnostic::Fatal: OS.changeColor(fatalColor, true); break;
Chris Lattnerb8bf65e2009-01-30 17:41:53 +0000977 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000978 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000979
Reid Spencer5f016e22007-07-11 17:01:13 +0000980 switch (Level) {
Chris Lattner41327582009-02-06 03:57:44 +0000981 case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type");
Nate Begeman165b9542008-04-17 18:06:57 +0000982 case Diagnostic::Note: OS << "note: "; break;
983 case Diagnostic::Warning: OS << "warning: "; break;
984 case Diagnostic::Error: OS << "error: "; break;
Chris Lattner41327582009-02-06 03:57:44 +0000985 case Diagnostic::Fatal: OS << "fatal error: "; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000986 }
Torok Edwin603fca72009-06-04 07:18:23 +0000987
Daniel Dunbareace8742009-11-04 06:24:30 +0000988 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +0000989 OS.resetColor();
990
Chris Lattnerf4c83962008-11-19 06:51:40 +0000991 llvm::SmallString<100> OutStr;
992 Info.FormatDiagnostic(OutStr);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +0000993
Douglas Gregor7d2b8c12011-04-15 22:04:17 +0000994 if (DiagOpts->ShowNames &&
995 !DiagnosticIDs::isBuiltinNote(Info.getID())) {
996 OutStr += " [";
997 OutStr += DiagnosticIDs::getName(Info.getID());
998 OutStr += "]";
999 }
1000
Chris Lattnerc9b88902010-05-04 21:13:21 +00001001 std::string OptionName;
Chris Lattner8d2ea4e2010-02-16 18:29:31 +00001002 if (DiagOpts->ShowOptionNames) {
Ted Kremenek7decebf2011-02-25 01:28:26 +00001003 // Was this a warning mapped to an error using -Werror or pragma?
1004 if (Level == Diagnostic::Error &&
1005 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID())) {
1006 diag::Mapping mapping = diag::MAP_IGNORE;
1007 Info.getDiags()->getDiagnosticLevel(Info.getID(), Info.getLocation(),
1008 &mapping);
1009 if (mapping == diag::MAP_WARNING)
1010 OptionName += "-Werror";
1011 }
1012
Chris Lattner5f9e2722011-07-23 10:55:15 +00001013 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +00001014 if (!Opt.empty()) {
Ted Kremenek7decebf2011-02-25 01:28:26 +00001015 if (!OptionName.empty())
1016 OptionName += ',';
1017 OptionName += "-W";
Chris Lattnerc9b88902010-05-04 21:13:21 +00001018 OptionName += Opt;
Chris Lattnerd342bf72010-05-24 18:37:03 +00001019 } else if (Info.getID() == diag::fatal_too_many_errors) {
1020 OptionName = "-ferror-limit=";
Chris Lattner04e44272010-04-12 21:53:11 +00001021 } else {
1022 // If the diagnostic is an extension diagnostic and not enabled by default
1023 // then it must have been turned on with -pedantic.
1024 bool EnabledByDefault;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001025 if (DiagnosticIDs::isBuiltinExtensionDiag(Info.getID(),
1026 EnabledByDefault) &&
Chris Lattner04e44272010-04-12 21:53:11 +00001027 !EnabledByDefault)
Chris Lattnerc9b88902010-05-04 21:13:21 +00001028 OptionName = "-pedantic";
Douglas Gregorfffd93f2009-05-01 21:53:04 +00001029 }
Chris Lattner8d2ea4e2010-02-16 18:29:31 +00001030 }
Chris Lattnerc9b88902010-05-04 21:13:21 +00001031
1032 // If the user wants to see category information, include it too.
1033 unsigned DiagCategory = 0;
Chris Lattner6fbe8392010-05-04 21:55:25 +00001034 if (DiagOpts->ShowCategories)
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001035 DiagCategory = DiagnosticIDs::getCategoryNumberForDiag(Info.getID());
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +00001036
Chris Lattnerc9b88902010-05-04 21:13:21 +00001037 // If there is any categorization information, include it.
1038 if (!OptionName.empty() || DiagCategory != 0) {
1039 bool NeedsComma = false;
1040 OutStr += " [";
1041
1042 if (!OptionName.empty()) {
1043 OutStr += OptionName;
1044 NeedsComma = true;
1045 }
1046
1047 if (DiagCategory) {
1048 if (NeedsComma) OutStr += ',';
Chris Lattner6fbe8392010-05-04 21:55:25 +00001049 if (DiagOpts->ShowCategories == 1)
1050 OutStr += llvm::utostr(DiagCategory);
1051 else {
1052 assert(DiagOpts->ShowCategories == 2 && "Invalid ShowCategories value");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001053 OutStr += DiagnosticIDs::getCategoryNameFromID(DiagCategory);
Chris Lattner6fbe8392010-05-04 21:55:25 +00001054 }
Chris Lattnerc9b88902010-05-04 21:13:21 +00001055 }
1056
1057 OutStr += "]";
1058 }
1059
1060
Daniel Dunbareace8742009-11-04 06:24:30 +00001061 if (DiagOpts->ShowColors) {
Torok Edwin603fca72009-06-04 07:18:23 +00001062 // Print warnings, errors and fatal errors in bold, no color
1063 switch (Level) {
1064 case Diagnostic::Warning: OS.changeColor(savedColor, true); break;
1065 case Diagnostic::Error: OS.changeColor(savedColor, true); break;
1066 case Diagnostic::Fatal: OS.changeColor(savedColor, true); break;
1067 default: break; //don't bold notes
1068 }
1069 }
1070
Daniel Dunbareace8742009-11-04 06:24:30 +00001071 if (DiagOpts->MessageLength) {
Douglas Gregorfffd93f2009-05-01 21:53:04 +00001072 // We will be word-wrapping the error message, so compute the
1073 // column number where we currently are (after printing the
1074 // location information).
1075 unsigned Column = OS.tell() - StartOfLocationInfo;
Daniel Dunbareace8742009-11-04 06:24:30 +00001076 PrintWordWrapped(OS, OutStr, DiagOpts->MessageLength, Column);
Douglas Gregorfffd93f2009-05-01 21:53:04 +00001077 } else {
1078 OS.write(OutStr.begin(), OutStr.size());
1079 }
Chris Lattnerf4c83962008-11-19 06:51:40 +00001080 OS << '\n';
Daniel Dunbareace8742009-11-04 06:24:30 +00001081 if (DiagOpts->ShowColors)
Torok Edwin603fca72009-06-04 07:18:23 +00001082 OS.resetColor();
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +00001083
Douglas Gregordf667e72009-03-10 20:44:00 +00001084 // If caret diagnostics are enabled and we have location, we want to
1085 // emit the caret. However, we only do this if the location moved
1086 // from the last diagnostic, if the last diagnostic was a note that
1087 // was part of a different warning or error diagnostic, or if the
1088 // diagnostic has ranges. We don't want to emit the same caret
1089 // multiple times if one loc has multiple diagnostics.
Daniel Dunbareace8742009-11-04 06:24:30 +00001090 if (DiagOpts->ShowCarets && Info.getLocation().isValid() &&
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +00001091 ((LastLoc != Info.getLocation()) || Info.getNumRanges() ||
Douglas Gregordf667e72009-03-10 20:44:00 +00001092 (LastCaretDiagnosticWasNote && Level != Diagnostic::Note) ||
Douglas Gregor849b2432010-03-31 17:46:05 +00001093 Info.getNumFixItHints())) {
Steve Naroffefe7f362008-02-08 22:06:17 +00001094 // Cache the LastLoc, it allows us to omit duplicate source/caret spewage.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001095 LastLoc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
Douglas Gregordf667e72009-03-10 20:44:00 +00001096 LastCaretDiagnosticWasNote = (Level == Diagnostic::Note);
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001097
Chris Lattnerebbbb1b2009-02-20 00:18:51 +00001098 // Get the ranges into a local array we can hack on.
Chris Lattner0a76aae2010-06-18 22:45:06 +00001099 CharSourceRange Ranges[20];
Chris Lattnerebbbb1b2009-02-20 00:18:51 +00001100 unsigned NumRanges = Info.getNumRanges();
Douglas Gregor4b2d3f72009-02-26 21:00:50 +00001101 assert(NumRanges < 20 && "Out of space");
Chris Lattnerebbbb1b2009-02-20 00:18:51 +00001102 for (unsigned i = 0; i != NumRanges; ++i)
1103 Ranges[i] = Info.getRange(i);
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +00001104
Douglas Gregor849b2432010-03-31 17:46:05 +00001105 unsigned NumHints = Info.getNumFixItHints();
Chris Lattner0a76aae2010-06-18 22:45:06 +00001106 for (unsigned i = 0; i != NumHints; ++i) {
1107 const FixItHint &Hint = Info.getFixItHint(i);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +00001108 if (Hint.RemoveRange.isValid()) {
1109 assert(NumRanges < 20 && "Out of space");
1110 Ranges[NumRanges++] = Hint.RemoveRange;
1111 }
1112 }
1113
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +00001114 const SourceManager &SM = LastLoc.getManager();
Douglas Gregor6c1cb992010-05-04 17:13:42 +00001115 unsigned MacroInstSkipStart = 0, MacroInstSkipEnd = 0;
1116 if (DiagOpts && DiagOpts->MacroBacktraceLimit && !LastLoc.isFileID()) {
Chandler Carruth7e7736a2011-07-14 08:20:31 +00001117 // Compute the length of the macro-expansion backtrace, so that we
Douglas Gregor6c1cb992010-05-04 17:13:42 +00001118 // can establish which steps in the macro backtrace we'll skip.
1119 SourceLocation Loc = LastLoc;
1120 unsigned Depth = 0;
1121 do {
1122 ++Depth;
Chandler Carruth7e7736a2011-07-14 08:20:31 +00001123 Loc = skipToMacroArgExpansion(SM, Loc);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +00001124 Loc = getImmediateMacroCallerLoc(SM, Loc);
Douglas Gregor6c1cb992010-05-04 17:13:42 +00001125 } while (!Loc.isFileID());
1126
1127 if (Depth > DiagOpts->MacroBacktraceLimit) {
1128 MacroInstSkipStart = DiagOpts->MacroBacktraceLimit / 2 +
1129 DiagOpts->MacroBacktraceLimit % 2;
1130 MacroInstSkipEnd = Depth - DiagOpts->MacroBacktraceLimit / 2;
1131 }
1132 }
1133
Chris Lattner83068312011-06-28 05:11:33 +00001134 EmitCaretDiagnostic(LastLoc, Ranges, NumRanges, LastLoc.getManager(),
Douglas Gregor849b2432010-03-31 17:46:05 +00001135 Info.getFixItHints(),
1136 Info.getNumFixItHints(),
Douglas Gregor6c1cb992010-05-04 17:13:42 +00001137 DiagOpts->MessageLength,
1138 0, MacroInstSkipStart, MacroInstSkipEnd);
Reid Spencer5f016e22007-07-11 17:01:13 +00001139 }
Daniel Dunbarcbff0dc2009-09-07 23:07:56 +00001140
Chris Lattnera03a5b52008-11-19 06:56:25 +00001141 OS.flush();
Reid Spencer5f016e22007-07-11 17:01:13 +00001142}