blob: ffe92e157e5965cce7566b573b63b8e66338bfc3 [file] [log] [blame]
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001//===- Diagnostic.cpp - C Language Family Diagnostic Handling -------------===//
Chris Lattner22eb9722006-06-18 05:43:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner22eb9722006-06-18 05:43:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Diagnostic-related interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenek39a76652010-04-12 19:54:17 +000014#include "clang/Basic/Diagnostic.h"
Alex Lorenzd0e27262017-08-25 15:48:00 +000015#include "clang/Basic/CharInfo.h"
16#include "clang/Basic/DiagnosticError.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000017#include "clang/Basic/DiagnosticIDs.h"
Douglas Gregor811db4e2012-10-23 22:26:28 +000018#include "clang/Basic/DiagnosticOptions.h"
Chris Lattnerb91fd172008-11-19 07:32:16 +000019#include "clang/Basic/IdentifierTable.h"
Ted Kremenek39a76652010-04-12 19:54:17 +000020#include "clang/Basic/PartialDiagnostic.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000021#include "clang/Basic/SourceLocation.h"
Benjamin Kramerbc9ef592017-01-18 15:50:26 +000022#include "clang/Basic/SourceManager.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000023#include "clang/Basic/Specifiers.h"
24#include "clang/Basic/TokenKinds.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000025#include "llvm/ADT/SmallString.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000026#include "llvm/ADT/SmallVector.h"
Jordan Rosec102b352012-09-22 01:24:42 +000027#include "llvm/ADT/StringExtras.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000028#include "llvm/ADT/StringRef.h"
Ted Kremenek84de4a12011-03-21 18:40:07 +000029#include "llvm/Support/CrashRecoveryContext.h"
Richard Trieub3b8bb02015-01-08 01:27:03 +000030#include "llvm/Support/Locale.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000031#include "llvm/Support/raw_ostream.h"
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000032#include <algorithm>
33#include <cassert>
34#include <cstddef>
35#include <cstdint>
36#include <cstring>
37#include <limits>
38#include <string>
39#include <utility>
40#include <vector>
Ted Kremenek84de4a12011-03-21 18:40:07 +000041
Chris Lattner22eb9722006-06-18 05:43:12 +000042using namespace clang;
43
Douglas Gregoraea7afd2015-06-24 22:02:08 +000044const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
45 DiagNullabilityKind nullability) {
46 StringRef string;
47 switch (nullability.first) {
48 case NullabilityKind::NonNull:
49 string = nullability.second ? "'nonnull'" : "'_Nonnull'";
50 break;
51
52 case NullabilityKind::Nullable:
53 string = nullability.second ? "'nullable'" : "'_Nullable'";
54 break;
55
56 case NullabilityKind::Unspecified:
57 string = nullability.second ? "'null_unspecified'" : "'_Null_unspecified'";
58 break;
59 }
60
61 DB.AddString(string);
62 return DB;
63}
64
David Blaikie9c902b52011-09-25 23:23:43 +000065static void DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT,
Craig Topper3aa4fb32014-06-12 05:32:35 +000066 StringRef Modifier, StringRef Argument,
Craig Toppere4753502014-06-12 05:32:27 +000067 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
68 SmallVectorImpl<char> &Output,
69 void *Cookie,
70 ArrayRef<intptr_t> QualTypeVals) {
71 StringRef Str = "<can't format argument>";
72 Output.append(Str.begin(), Str.end());
Chris Lattner6a2ed6f2008-11-23 09:13:29 +000073}
74
Nico Weber8321ad92018-01-17 02:55:27 +000075DiagnosticsEngine::DiagnosticsEngine(
76 IntrusiveRefCntPtr<DiagnosticIDs> diags,
77 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts, DiagnosticConsumer *client,
78 bool ShouldOwnClient)
Eugene Zelenko25cae5a22018-02-16 23:40:07 +000079 : Diags(std::move(diags)), DiagOpts(std::move(DiagOpts)) {
Alexander Kornienko41c247a2014-11-17 23:46:02 +000080 setClient(client, ShouldOwnClient);
Chris Lattner63ecc502008-11-23 09:21:17 +000081 ArgToStringFn = DummyArgToStringFn;
Douglas Gregor0e119552010-07-31 00:40:00 +000082
Douglas Gregoraa21cc42010-07-19 21:46:24 +000083 Reset();
Chris Lattnerae411572006-07-05 00:55:08 +000084}
85
Reid Klecknerdccbabf2014-12-17 20:23:11 +000086DiagnosticsEngine::~DiagnosticsEngine() {
87 // If we own the diagnostic client, destroy it first so that it can access the
88 // engine from its destructor.
89 setClient(nullptr);
90}
91
Fangrui Song2f553202018-12-01 01:43:05 +000092void DiagnosticsEngine::dump() const {
93 DiagStatesByLoc.dump(*SourceMgr);
94}
95
96void DiagnosticsEngine::dump(StringRef DiagName) const {
97 DiagStatesByLoc.dump(*SourceMgr, DiagName);
98}
99
David Blaikiee2eefae2011-09-25 23:39:51 +0000100void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
David Blaikie9c902b52011-09-25 23:23:43 +0000101 bool ShouldOwnClient) {
Alexander Kornienko41c247a2014-11-17 23:46:02 +0000102 Owner.reset(ShouldOwnClient ? client : nullptr);
Douglas Gregor7a964ad2011-01-31 22:04:05 +0000103 Client = client;
Douglas Gregor7a964ad2011-01-31 22:04:05 +0000104}
Chris Lattnerfb42a182009-07-12 21:18:45 +0000105
David Blaikie9c902b52011-09-25 23:23:43 +0000106void DiagnosticsEngine::pushMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000107 DiagStateOnPushStack.push_back(GetCurDiagState());
Chris Lattnerfb42a182009-07-12 21:18:45 +0000108}
109
David Blaikie9c902b52011-09-25 23:23:43 +0000110bool DiagnosticsEngine::popMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000111 if (DiagStateOnPushStack.empty())
Chris Lattnerfb42a182009-07-12 21:18:45 +0000112 return false;
113
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000114 if (DiagStateOnPushStack.back() != GetCurDiagState()) {
115 // State changed at some point between push/pop.
116 PushDiagStatePoint(DiagStateOnPushStack.back(), Loc);
117 }
118 DiagStateOnPushStack.pop_back();
Chris Lattnerfb42a182009-07-12 21:18:45 +0000119 return true;
120}
121
David Blaikie9c902b52011-09-25 23:23:43 +0000122void DiagnosticsEngine::Reset() {
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000123 ErrorOccurred = false;
DeLesley Hutchins8ecd4912012-12-07 22:53:48 +0000124 UncompilableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000125 FatalErrorOccurred = false;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +0000126 UnrecoverableErrorOccurred = false;
Fangrui Song6907ce22018-07-30 19:24:48 +0000127
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000128 NumWarnings = 0;
129 NumErrors = 0;
Argyrios Kyrtzidis1fa8b4b2011-07-29 01:25:44 +0000130 TrapNumErrorsOccurred = 0;
131 TrapNumUnrecoverableErrorsOccurred = 0;
Fangrui Song6907ce22018-07-30 19:24:48 +0000132
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000133 CurDiagID = std::numeric_limits<unsigned>::max();
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000134 LastDiagLevel = DiagnosticIDs::Ignored;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000135 DelayedDiagID = 0;
Argyrios Kyrtzidisbbbeea12011-03-26 18:58:17 +0000136
137 // Clear state related to #pragma diagnostic.
138 DiagStates.clear();
Richard Smithd230de22017-01-26 01:01:01 +0000139 DiagStatesByLoc.clear();
Argyrios Kyrtzidisbbbeea12011-03-26 18:58:17 +0000140 DiagStateOnPushStack.clear();
141
142 // Create a DiagState and DiagStatePoint representing diagnostic changes
143 // through command-line.
Benjamin Kramer3204b152015-05-29 19:42:19 +0000144 DiagStates.emplace_back();
Richard Smithd230de22017-01-26 01:01:01 +0000145 DiagStatesByLoc.appendFirst(&DiagStates.back());
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000146}
Chris Lattner22eb9722006-06-18 05:43:12 +0000147
David Blaikie9c902b52011-09-25 23:23:43 +0000148void DiagnosticsEngine::SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1,
Chad Rosier849a67b2012-02-07 23:24:49 +0000149 StringRef Arg2) {
Douglas Gregor85795312010-03-22 15:10:57 +0000150 if (DelayedDiagID)
151 return;
152
153 DelayedDiagID = DiagID;
Douglas Gregor96380982010-03-22 15:47:45 +0000154 DelayedDiagArg1 = Arg1.str();
155 DelayedDiagArg2 = Arg2.str();
Douglas Gregor85795312010-03-22 15:10:57 +0000156}
157
David Blaikie9c902b52011-09-25 23:23:43 +0000158void DiagnosticsEngine::ReportDelayed() {
Alex Lorenzce4518f2017-05-04 13:56:51 +0000159 unsigned ID = DelayedDiagID;
Douglas Gregor85795312010-03-22 15:10:57 +0000160 DelayedDiagID = 0;
Alex Lorenzce4518f2017-05-04 13:56:51 +0000161 Report(ID) << DelayedDiagArg1 << DelayedDiagArg2;
Douglas Gregor85795312010-03-22 15:10:57 +0000162}
163
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000164void DiagnosticsEngine::DiagStateMap::appendFirst(DiagState *State) {
Richard Smithd230de22017-01-26 01:01:01 +0000165 assert(Files.empty() && "not first");
166 FirstDiagState = CurDiagState = State;
167 CurDiagStateLoc = SourceLocation();
Benjamin Kramerbc9ef592017-01-18 15:50:26 +0000168}
169
Richard Smithd230de22017-01-26 01:01:01 +0000170void DiagnosticsEngine::DiagStateMap::append(SourceManager &SrcMgr,
171 SourceLocation Loc,
172 DiagState *State) {
173 CurDiagState = State;
174 CurDiagStateLoc = Loc;
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000175
Richard Smithd230de22017-01-26 01:01:01 +0000176 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
177 unsigned Offset = Decomp.second;
178 for (File *F = getFile(SrcMgr, Decomp.first); F;
179 Offset = F->ParentOffset, F = F->Parent) {
180 F->HasLocalTransitions = true;
181 auto &Last = F->StateTransitions.back();
182 assert(Last.Offset <= Offset && "state transitions added out of order");
Richard Smith99eff012012-08-17 00:55:32 +0000183
Richard Smithd230de22017-01-26 01:01:01 +0000184 if (Last.Offset == Offset) {
185 if (Last.State == State)
186 break;
187 Last.State = State;
188 continue;
189 }
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000190
Richard Smithd230de22017-01-26 01:01:01 +0000191 F->StateTransitions.push_back({State, Offset});
192 }
193}
194
195DiagnosticsEngine::DiagState *
196DiagnosticsEngine::DiagStateMap::lookup(SourceManager &SrcMgr,
197 SourceLocation Loc) const {
198 // Common case: we have not seen any diagnostic pragmas.
199 if (Files.empty())
200 return FirstDiagState;
201
202 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
203 const File *F = getFile(SrcMgr, Decomp.first);
204 return F->lookup(Decomp.second);
205}
206
207DiagnosticsEngine::DiagState *
208DiagnosticsEngine::DiagStateMap::File::lookup(unsigned Offset) const {
209 auto OnePastIt = std::upper_bound(
210 StateTransitions.begin(), StateTransitions.end(), Offset,
211 [](unsigned Offset, const DiagStatePoint &P) {
212 return Offset < P.Offset;
213 });
214 assert(OnePastIt != StateTransitions.begin() && "missing initial state");
215 return OnePastIt[-1].State;
216}
217
218DiagnosticsEngine::DiagStateMap::File *
219DiagnosticsEngine::DiagStateMap::getFile(SourceManager &SrcMgr,
220 FileID ID) const {
221 // Get or insert the File for this ID.
222 auto Range = Files.equal_range(ID);
223 if (Range.first != Range.second)
224 return &Range.first->second;
225 auto &F = Files.insert(Range.first, std::make_pair(ID, File()))->second;
226
227 // We created a new File; look up the diagnostic state at the start of it and
228 // initialize it.
229 if (ID.isValid()) {
230 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedIncludedLoc(ID);
231 F.Parent = getFile(SrcMgr, Decomp.first);
232 F.ParentOffset = Decomp.second;
233 F.StateTransitions.push_back({F.Parent->lookup(Decomp.second), 0});
234 } else {
235 // This is the (imaginary) root file into which we pretend all top-level
236 // files are included; it descends from the initial state.
237 //
238 // FIXME: This doesn't guarantee that we use the same ordering as
239 // isBeforeInTranslationUnit in the cases where someone invented another
240 // top-level file and added diagnostic pragmas to it. See the code at the
241 // end of isBeforeInTranslationUnit for the quirks it deals with.
242 F.StateTransitions.push_back({FirstDiagState, 0});
243 }
244 return &F;
245}
246
Richard Smith6c2b5a82018-02-09 01:15:13 +0000247void DiagnosticsEngine::DiagStateMap::dump(SourceManager &SrcMgr,
248 StringRef DiagName) const {
249 llvm::errs() << "diagnostic state at ";
Stephen Kelly3124ce72018-08-15 20:32:06 +0000250 CurDiagStateLoc.print(llvm::errs(), SrcMgr);
Richard Smith6c2b5a82018-02-09 01:15:13 +0000251 llvm::errs() << ": " << CurDiagState << "\n";
252
253 for (auto &F : Files) {
254 FileID ID = F.first;
255 File &File = F.second;
256
257 bool PrintedOuterHeading = false;
258 auto PrintOuterHeading = [&] {
259 if (PrintedOuterHeading) return;
260 PrintedOuterHeading = true;
261
262 llvm::errs() << "File " << &File << " <FileID " << ID.getHashValue()
263 << ">: " << SrcMgr.getBuffer(ID)->getBufferIdentifier();
264 if (F.second.Parent) {
265 std::pair<FileID, unsigned> Decomp =
266 SrcMgr.getDecomposedIncludedLoc(ID);
267 assert(File.ParentOffset == Decomp.second);
268 llvm::errs() << " parent " << File.Parent << " <FileID "
269 << Decomp.first.getHashValue() << "> ";
270 SrcMgr.getLocForStartOfFile(Decomp.first)
271 .getLocWithOffset(Decomp.second)
Stephen Kelly3124ce72018-08-15 20:32:06 +0000272 .print(llvm::errs(), SrcMgr);
Richard Smith6c2b5a82018-02-09 01:15:13 +0000273 }
274 if (File.HasLocalTransitions)
275 llvm::errs() << " has_local_transitions";
276 llvm::errs() << "\n";
277 };
278
279 if (DiagName.empty())
280 PrintOuterHeading();
281
282 for (DiagStatePoint &Transition : File.StateTransitions) {
283 bool PrintedInnerHeading = false;
284 auto PrintInnerHeading = [&] {
285 if (PrintedInnerHeading) return;
286 PrintedInnerHeading = true;
287
288 PrintOuterHeading();
289 llvm::errs() << " ";
290 SrcMgr.getLocForStartOfFile(ID)
291 .getLocWithOffset(Transition.Offset)
Stephen Kelly3124ce72018-08-15 20:32:06 +0000292 .print(llvm::errs(), SrcMgr);
Richard Smith6c2b5a82018-02-09 01:15:13 +0000293 llvm::errs() << ": state " << Transition.State << ":\n";
294 };
295
296 if (DiagName.empty())
297 PrintInnerHeading();
298
299 for (auto &Mapping : *Transition.State) {
300 StringRef Option =
301 DiagnosticIDs::getWarningOptionForDiag(Mapping.first);
302 if (!DiagName.empty() && DiagName != Option)
303 continue;
304
305 PrintInnerHeading();
306 llvm::errs() << " ";
307 if (Option.empty())
308 llvm::errs() << "<unknown " << Mapping.first << ">";
309 else
310 llvm::errs() << Option;
311 llvm::errs() << ": ";
312
313 switch (Mapping.second.getSeverity()) {
314 case diag::Severity::Ignored: llvm::errs() << "ignored"; break;
315 case diag::Severity::Remark: llvm::errs() << "remark"; break;
316 case diag::Severity::Warning: llvm::errs() << "warning"; break;
317 case diag::Severity::Error: llvm::errs() << "error"; break;
318 case diag::Severity::Fatal: llvm::errs() << "fatal"; break;
319 }
320
321 if (!Mapping.second.isUser())
322 llvm::errs() << " default";
323 if (Mapping.second.isPragma())
324 llvm::errs() << " pragma";
325 if (Mapping.second.hasNoWarningAsError())
326 llvm::errs() << " no-error";
327 if (Mapping.second.hasNoErrorAsFatal())
328 llvm::errs() << " no-fatal";
329 if (Mapping.second.wasUpgradedFromWarning())
330 llvm::errs() << " overruled";
331 llvm::errs() << "\n";
332 }
333 }
334 }
335}
336
Richard Smithd230de22017-01-26 01:01:01 +0000337void DiagnosticsEngine::PushDiagStatePoint(DiagState *State,
338 SourceLocation Loc) {
339 assert(Loc.isValid() && "Adding invalid loc point");
340 DiagStatesByLoc.append(*SourceMgr, Loc, State);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000341}
342
Alp Tokerd576e002014-06-12 11:13:52 +0000343void DiagnosticsEngine::setSeverity(diag::kind Diag, diag::Severity Map,
344 SourceLocation L) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000345 assert(Diag < diag::DIAG_UPPER_LIMIT &&
346 "Can only map builtin diagnostics");
347 assert((Diags->isBuiltinWarningOrExtension(Diag) ||
Alp Toker46df1c02014-06-12 10:15:20 +0000348 (Map == diag::Severity::Fatal || Map == diag::Severity::Error)) &&
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000349 "Cannot map errors into warnings!");
Richard Smith8a0527d2012-08-14 22:37:22 +0000350 assert((L.isInvalid() || SourceMgr) && "No SourceMgr for valid location");
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000351
Chad Rosierd1956e42012-02-03 01:49:51 +0000352 // Don't allow a mapping to a warning override an error/fatal mapping.
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +0000353 bool WasUpgradedFromWarning = false;
Alp Toker46df1c02014-06-12 10:15:20 +0000354 if (Map == diag::Severity::Warning) {
Alp Tokerc726c362014-06-10 09:31:37 +0000355 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
Alp Toker46df1c02014-06-12 10:15:20 +0000356 if (Info.getSeverity() == diag::Severity::Error ||
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +0000357 Info.getSeverity() == diag::Severity::Fatal) {
Alp Tokerc726c362014-06-10 09:31:37 +0000358 Map = Info.getSeverity();
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +0000359 WasUpgradedFromWarning = true;
360 }
Chad Rosierd1956e42012-02-03 01:49:51 +0000361 }
Alp Tokerc726c362014-06-10 09:31:37 +0000362 DiagnosticMapping Mapping = makeUserMapping(Map, L);
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +0000363 Mapping.setUpgradedFromWarning(WasUpgradedFromWarning);
Daniel Dunbar2fba0972011-10-04 21:17:24 +0000364
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000365 // Common case; setting all the diagnostics of a group in one place.
Richard Smithd230de22017-01-26 01:01:01 +0000366 if ((L.isInvalid() || L == DiagStatesByLoc.getCurDiagStateLoc()) &&
367 DiagStatesByLoc.getCurDiagState()) {
368 // FIXME: This is theoretically wrong: if the current state is shared with
369 // some other location (via push/pop) we will change the state for that
370 // other location as well. This cannot currently happen, as we can't update
371 // the diagnostic state at the same location at which we pop.
372 DiagStatesByLoc.getCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000373 return;
374 }
375
Richard Smithd230de22017-01-26 01:01:01 +0000376 // A diagnostic pragma occurred, create a new DiagState initialized with
377 // the current one and a new DiagStatePoint to record at which location
378 // the new state became active.
379 DiagStates.push_back(*GetCurDiagState());
380 DiagStates.back().setMapping(Diag, Mapping);
381 PushDiagStatePoint(&DiagStates.back(), L);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000382}
383
Richard Smith3be1cb22014-08-07 00:24:21 +0000384bool DiagnosticsEngine::setSeverityForGroup(diag::Flavor Flavor,
385 StringRef Group, diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000386 SourceLocation Loc) {
Daniel Dunbard908c122011-09-29 01:47:16 +0000387 // Get the diagnostics in this group.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000388 SmallVector<diag::kind, 256> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000389 if (Diags->getDiagnosticsInGroup(Flavor, Group, GroupDiags))
Daniel Dunbard908c122011-09-29 01:47:16 +0000390 return true;
391
392 // Set the mapping.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000393 for (diag::kind Diag : GroupDiags)
394 setSeverity(Diag, Map, Loc);
Daniel Dunbard908c122011-09-29 01:47:16 +0000395
396 return false;
397}
398
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000399bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group,
400 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000401 // If we are enabling this feature, just set the diagnostic mappings to map to
402 // errors.
403 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000404 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
405 diag::Severity::Error);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000406
407 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
408 // potentially downgrade anything already mapped to be a warning.
409
410 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000411 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000412 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
413 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000414 return true;
415
416 // Perform the mapping change.
Craig Toppera52e2b22015-11-26 05:10:07 +0000417 for (diag::kind Diag : GroupDiags) {
418 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000419
Alp Toker46df1c02014-06-12 10:15:20 +0000420 if (Info.getSeverity() == diag::Severity::Error ||
421 Info.getSeverity() == diag::Severity::Fatal)
422 Info.setSeverity(diag::Severity::Warning);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000423
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000424 Info.setNoWarningAsError(true);
425 }
426
427 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000428}
429
430bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group,
431 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000432 // If we are enabling this feature, just set the diagnostic mappings to map to
433 // fatal errors.
434 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000435 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
436 diag::Severity::Fatal);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000437
Richard Smithe37391c2017-05-03 00:28:49 +0000438 // Otherwise, we want to set the diagnostic mapping's "no Wfatal-errors" bit,
439 // and potentially downgrade anything already mapped to be a fatal error.
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000440
441 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000442 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000443 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
444 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000445 return true;
446
447 // Perform the mapping change.
Craig Toppera52e2b22015-11-26 05:10:07 +0000448 for (diag::kind Diag : GroupDiags) {
449 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000450
Alp Toker46df1c02014-06-12 10:15:20 +0000451 if (Info.getSeverity() == diag::Severity::Fatal)
452 Info.setSeverity(diag::Severity::Error);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000453
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000454 Info.setNoErrorAsFatal(true);
455 }
456
457 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000458}
459
Richard Smith3be1cb22014-08-07 00:24:21 +0000460void DiagnosticsEngine::setSeverityForAll(diag::Flavor Flavor,
461 diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000462 SourceLocation Loc) {
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000463 // Get all the diagnostics.
Gabor Horvath53b5c132017-12-20 16:55:41 +0000464 std::vector<diag::kind> AllDiags;
Gabor Horvath328d3af2017-11-14 12:14:49 +0000465 DiagnosticIDs::getAllDiagnostics(Flavor, AllDiags);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000466
467 // Set the mapping.
Craig Toppera52e2b22015-11-26 05:10:07 +0000468 for (diag::kind Diag : AllDiags)
469 if (Diags->isBuiltinWarningOrExtension(Diag))
470 setSeverity(Diag, Map, Loc);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000471}
472
David Blaikie9c902b52011-09-25 23:23:43 +0000473void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) {
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000474 assert(CurDiagID == std::numeric_limits<unsigned>::max() &&
475 "Multiple diagnostics in flight at once!");
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000476
477 CurDiagLoc = storedDiag.getLocation();
478 CurDiagID = storedDiag.getID();
479 NumDiagArgs = 0;
480
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000481 DiagRanges.clear();
Benjamin Kramerf367dd92015-06-12 15:31:50 +0000482 DiagRanges.append(storedDiag.range_begin(), storedDiag.range_end());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000483
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000484 DiagFixItHints.clear();
Benjamin Kramerf367dd92015-06-12 15:31:50 +0000485 DiagFixItHints.append(storedDiag.fixit_begin(), storedDiag.fixit_end());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000486
David Blaikiee2eefae2011-09-25 23:39:51 +0000487 assert(Client && "DiagnosticConsumer not set!");
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000488 Level DiagLevel = storedDiag.getLevel();
David Blaikieb5784322011-09-26 01:18:08 +0000489 Diagnostic Info(this, storedDiag.getMessage());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000490 Client->HandleDiagnostic(DiagLevel, Info);
491 if (Client->IncludeInDiagnosticCounts()) {
David Blaikie9c902b52011-09-25 23:23:43 +0000492 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000493 ++NumWarnings;
494 }
495
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000496 CurDiagID = std::numeric_limits<unsigned>::max();
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000497}
498
Jordan Rose6f524ac2012-07-11 16:50:36 +0000499bool DiagnosticsEngine::EmitCurrentDiagnostic(bool Force) {
500 assert(getClient() && "DiagnosticClient not set!");
501
502 bool Emitted;
503 if (Force) {
504 Diagnostic Info(this);
505
506 // Figure out the diagnostic level of this message.
507 DiagnosticIDs::Level DiagLevel
508 = Diags->getDiagnosticLevel(Info.getID(), Info.getLocation(), *this);
509
510 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
511 if (Emitted) {
512 // Emit the diagnostic regardless of suppression level.
513 Diags->EmitDiag(*this, DiagLevel);
514 }
515 } else {
516 // Process the diagnostic, sending the accumulated information to the
517 // DiagnosticConsumer.
518 Emitted = ProcessDiag();
519 }
Douglas Gregor85795312010-03-22 15:10:57 +0000520
521 // Clear out the current diagnostic object.
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000522 Clear();
Douglas Gregor85795312010-03-22 15:10:57 +0000523
524 // If there was a delayed diagnostic, emit it now.
Alex Lorenzce4518f2017-05-04 13:56:51 +0000525 if (!Force && DelayedDiagID)
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000526 ReportDelayed();
Douglas Gregor85795312010-03-22 15:10:57 +0000527
528 return Emitted;
529}
530
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000531DiagnosticConsumer::~DiagnosticConsumer() = default;
Nico Weber4c311642008-08-10 19:59:06 +0000532
David Blaikiee2eefae2011-09-25 23:39:51 +0000533void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
David Blaikieb5784322011-09-26 01:18:08 +0000534 const Diagnostic &Info) {
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000535 if (!IncludeInDiagnosticCounts())
536 return;
537
David Blaikie9c902b52011-09-25 23:23:43 +0000538 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000539 ++NumWarnings;
David Blaikie9c902b52011-09-25 23:23:43 +0000540 else if (DiagLevel >= DiagnosticsEngine::Error)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000541 ++NumErrors;
542}
Chris Lattner23be0672008-11-19 06:51:40 +0000543
Chris Lattner2b786902008-11-21 07:50:02 +0000544/// ModifierIs - Return true if the specified modifier matches specified string.
545template <std::size_t StrLen>
546static bool ModifierIs(const char *Modifier, unsigned ModifierLen,
547 const char (&Str)[StrLen]) {
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000548 return StrLen-1 == ModifierLen && memcmp(Modifier, Str, StrLen-1) == 0;
Chris Lattner2b786902008-11-21 07:50:02 +0000549}
550
John McCall8cb7a8a32010-01-14 20:11:39 +0000551/// ScanForward - Scans forward, looking for the given character, skipping
552/// nested clauses and escaped characters.
553static const char *ScanFormat(const char *I, const char *E, char Target) {
554 unsigned Depth = 0;
555
556 for ( ; I != E; ++I) {
557 if (Depth == 0 && *I == Target) return I;
558 if (Depth != 0 && *I == '}') Depth--;
559
560 if (*I == '%') {
561 I++;
562 if (I == E) break;
563
564 // Escaped characters get implicitly skipped here.
565
566 // Format specifier.
Jordan Rosea7d03842013-02-08 22:30:41 +0000567 if (!isDigit(*I) && !isPunctuation(*I)) {
568 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ;
John McCall8cb7a8a32010-01-14 20:11:39 +0000569 if (I == E) break;
570 if (*I == '{')
571 Depth++;
572 }
573 }
574 }
575 return E;
576}
577
Chris Lattner2b786902008-11-21 07:50:02 +0000578/// HandleSelectModifier - Handle the integer 'select' modifier. This is used
579/// like this: %select{foo|bar|baz}2. This means that the integer argument
580/// "%2" has a value from 0-2. If the value is 0, the diagnostic prints 'foo'.
581/// If the value is 1, it prints 'bar'. If it has the value 2, it prints 'baz'.
582/// This is very useful for certain classes of variant diagnostics.
David Blaikieb5784322011-09-26 01:18:08 +0000583static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo,
Chris Lattner2b786902008-11-21 07:50:02 +0000584 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000585 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000586 const char *ArgumentEnd = Argument+ArgumentLen;
Mike Stump11289f42009-09-09 15:08:12 +0000587
Chris Lattner2b786902008-11-21 07:50:02 +0000588 // Skip over 'ValNo' |'s.
589 while (ValNo) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000590 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
Chris Lattner2b786902008-11-21 07:50:02 +0000591 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
592 " larger than the number of options in the diagnostic string!");
593 Argument = NextVal+1; // Skip this string.
594 --ValNo;
595 }
Mike Stump11289f42009-09-09 15:08:12 +0000596
Chris Lattner2b786902008-11-21 07:50:02 +0000597 // Get the end of the value. This is either the } or the |.
John McCall8cb7a8a32010-01-14 20:11:39 +0000598 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
John McCalle4d54322010-01-13 23:58:20 +0000599
600 // Recursively format the result of the select clause into the output string.
601 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000602}
603
604/// HandleIntegerSModifier - Handle the integer 's' modifier. This adds the
605/// letter 's' to the string if the value is not 1. This is used in cases like
606/// this: "you idiot, you have %4 parameter%s4!".
607static void HandleIntegerSModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000608 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000609 if (ValNo != 1)
610 OutStr.push_back('s');
611}
612
John McCall9015cde2010-01-14 00:50:32 +0000613/// HandleOrdinalModifier - Handle the integer 'ord' modifier. This
614/// prints the ordinal form of the given integer, with 1 corresponding
615/// to the first ordinal. Currently this is hard-coded to use the
616/// English form.
617static void HandleOrdinalModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000618 SmallVectorImpl<char> &OutStr) {
John McCall9015cde2010-01-14 00:50:32 +0000619 assert(ValNo != 0 && "ValNo must be strictly positive!");
620
621 llvm::raw_svector_ostream Out(OutStr);
622
623 // We could use text forms for the first N ordinals, but the numeric
624 // forms are actually nicer in diagnostics because they stand out.
Jordan Rosec102b352012-09-22 01:24:42 +0000625 Out << ValNo << llvm::getOrdinalSuffix(ValNo);
John McCall9015cde2010-01-14 00:50:32 +0000626}
627
Sebastian Redl15b02d22008-11-22 13:44:36 +0000628/// PluralNumber - Parse an unsigned integer and advance Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000629static unsigned PluralNumber(const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000630 // Programming 101: Parse a decimal number :-)
631 unsigned Val = 0;
632 while (Start != End && *Start >= '0' && *Start <= '9') {
633 Val *= 10;
634 Val += *Start - '0';
635 ++Start;
636 }
637 return Val;
638}
639
640/// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000641static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000642 if (*Start != '[') {
643 unsigned Ref = PluralNumber(Start, End);
644 return Ref == Val;
645 }
646
647 ++Start;
648 unsigned Low = PluralNumber(Start, End);
649 assert(*Start == ',' && "Bad plural expression syntax: expected ,");
650 ++Start;
651 unsigned High = PluralNumber(Start, End);
652 assert(*Start == ']' && "Bad plural expression syntax: expected )");
653 ++Start;
654 return Low <= Val && Val <= High;
655}
656
657/// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
Chris Lattner2fe29202009-04-15 17:13:42 +0000658static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000659 // Empty condition?
660 if (*Start == ':')
661 return true;
662
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000663 while (true) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000664 char C = *Start;
665 if (C == '%') {
666 // Modulo expression
667 ++Start;
668 unsigned Arg = PluralNumber(Start, End);
669 assert(*Start == '=' && "Bad plural expression syntax: expected =");
670 ++Start;
671 unsigned ValMod = ValNo % Arg;
672 if (TestPluralRange(ValMod, Start, End))
673 return true;
674 } else {
Sebastian Redl3ceaf622008-11-27 07:28:14 +0000675 assert((C == '[' || (C >= '0' && C <= '9')) &&
Sebastian Redl15b02d22008-11-22 13:44:36 +0000676 "Bad plural expression syntax: unexpected character");
677 // Range expression
678 if (TestPluralRange(ValNo, Start, End))
679 return true;
680 }
681
682 // Scan for next or-expr part.
683 Start = std::find(Start, End, ',');
Mike Stump11289f42009-09-09 15:08:12 +0000684 if (Start == End)
Sebastian Redl15b02d22008-11-22 13:44:36 +0000685 break;
686 ++Start;
687 }
688 return false;
689}
690
691/// HandlePluralModifier - Handle the integer 'plural' modifier. This is used
692/// for complex plural forms, or in languages where all plurals are complex.
693/// The syntax is: %plural{cond1:form1|cond2:form2|:form3}, where condn are
694/// conditions that are tested in order, the form corresponding to the first
695/// that applies being emitted. The empty condition is always true, making the
696/// last form a default case.
697/// Conditions are simple boolean expressions, where n is the number argument.
698/// Here are the rules.
699/// condition := expression | empty
700/// empty := -> always true
701/// expression := numeric [',' expression] -> logical or
702/// numeric := range -> true if n in range
703/// | '%' number '=' range -> true if n % number in range
704/// range := number
705/// | '[' number ',' number ']' -> ranges are inclusive both ends
706///
707/// Here are some examples from the GNU gettext manual written in this form:
708/// English:
709/// {1:form0|:form1}
710/// Latvian:
711/// {0:form2|%100=11,%10=0,%10=[2,9]:form1|:form0}
712/// Gaeilge:
713/// {1:form0|2:form1|:form2}
714/// Romanian:
715/// {1:form0|0,%100=[1,19]:form1|:form2}
716/// Lithuanian:
717/// {%10=0,%100=[10,19]:form2|%10=1:form0|:form1}
718/// Russian (requires repeated form):
719/// {%100=[11,14]:form2|%10=1:form0|%10=[2,4]:form1|:form2}
720/// Slovak
721/// {1:form0|[2,4]:form1|:form2}
722/// Polish (requires repeated form):
723/// {1:form0|%100=[10,20]:form2|%10=[2,4]:form1|:form2}
David Blaikieb5784322011-09-26 01:18:08 +0000724static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo,
Sebastian Redl15b02d22008-11-22 13:44:36 +0000725 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000726 SmallVectorImpl<char> &OutStr) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000727 const char *ArgumentEnd = Argument + ArgumentLen;
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000728 while (true) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000729 assert(Argument < ArgumentEnd && "Plural expression didn't match.");
730 const char *ExprEnd = Argument;
731 while (*ExprEnd != ':') {
732 assert(ExprEnd != ArgumentEnd && "Plural missing expression end");
733 ++ExprEnd;
734 }
735 if (EvalPluralExpr(ValNo, Argument, ExprEnd)) {
736 Argument = ExprEnd + 1;
John McCall8cb7a8a32010-01-14 20:11:39 +0000737 ExprEnd = ScanFormat(Argument, ArgumentEnd, '|');
John McCall43b61682010-10-14 01:55:31 +0000738
739 // Recursively format the result of the plural clause into the
740 // output string.
741 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000742 return;
743 }
John McCall8cb7a8a32010-01-14 20:11:39 +0000744 Argument = ScanFormat(Argument, ArgumentEnd - 1, '|') + 1;
Sebastian Redl15b02d22008-11-22 13:44:36 +0000745 }
746}
747
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000748/// Returns the friendly description for a token kind that will appear
Alp Tokera231ad22014-01-06 12:54:18 +0000749/// without quotes in diagnostic messages. These strings may be translatable in
750/// future.
751static const char *getTokenDescForDiagnostic(tok::TokenKind Kind) {
Alp Tokerec543272013-12-24 09:48:30 +0000752 switch (Kind) {
753 case tok::identifier:
754 return "identifier";
755 default:
Craig Topperf1186c52014-05-08 06:41:40 +0000756 return nullptr;
Alp Tokerec543272013-12-24 09:48:30 +0000757 }
758}
Sebastian Redl15b02d22008-11-22 13:44:36 +0000759
Chris Lattner23be0672008-11-19 06:51:40 +0000760/// FormatDiagnostic - Format this diagnostic into a string, substituting the
761/// formal arguments into the %0 slots. The result is appended onto the Str
762/// array.
David Blaikieb5784322011-09-26 01:18:08 +0000763void Diagnostic::
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000764FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000765 if (!StoredDiagMessage.empty()) {
766 OutStr.append(StoredDiagMessage.begin(), StoredDiagMessage.end());
767 return;
768 }
769
Fangrui Song6907ce22018-07-30 19:24:48 +0000770 StringRef Diag =
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000771 getDiags()->getDiagnosticIDs()->getDescription(getID());
Mike Stump11289f42009-09-09 15:08:12 +0000772
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000773 FormatDiagnostic(Diag.begin(), Diag.end(), OutStr);
John McCalle4d54322010-01-13 23:58:20 +0000774}
775
David Blaikieb5784322011-09-26 01:18:08 +0000776void Diagnostic::
John McCalle4d54322010-01-13 23:58:20 +0000777FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000778 SmallVectorImpl<char> &OutStr) const {
Richard Trieub3b8bb02015-01-08 01:27:03 +0000779 // When the diagnostic string is only "%0", the entire string is being given
780 // by an outside source. Remove unprintable characters from this string
781 // and skip all the other string processing.
Richard Trieudcd7bb02015-01-17 00:56:10 +0000782 if (DiagEnd - DiagStr == 2 &&
783 StringRef(DiagStr, DiagEnd - DiagStr).equals("%0") &&
Richard Trieub3b8bb02015-01-08 01:27:03 +0000784 getArgKind(0) == DiagnosticsEngine::ak_std_string) {
785 const std::string &S = getArgStdStr(0);
786 for (char c : S) {
787 if (llvm::sys::locale::isPrint(c) || c == '\t') {
788 OutStr.push_back(c);
789 }
790 }
791 return;
792 }
793
Chris Lattnerc243f292009-10-20 05:25:22 +0000794 /// FormattedArgs - Keep track of all of the arguments formatted by
795 /// ConvertArgToString and pass them into subsequent calls to
796 /// ConvertArgToString, allowing the implementation to avoid redundancies in
797 /// obvious cases.
David Blaikie9c902b52011-09-25 23:23:43 +0000798 SmallVector<DiagnosticsEngine::ArgumentValue, 8> FormattedArgs;
Chandler Carruthd5173952011-07-11 17:49:21 +0000799
800 /// QualTypeVals - Pass a vector of arrays so that QualType names can be
801 /// compared to see if more information is needed to be printed.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000802 SmallVector<intptr_t, 2> QualTypeVals;
Richard Trieu91844232012-06-26 18:18:47 +0000803 SmallVector<char, 64> Tree;
804
Chandler Carruthd5173952011-07-11 17:49:21 +0000805 for (unsigned i = 0, e = getNumArgs(); i < e; ++i)
David Blaikie9c902b52011-09-25 23:23:43 +0000806 if (getArgKind(i) == DiagnosticsEngine::ak_qualtype)
Chandler Carruthd5173952011-07-11 17:49:21 +0000807 QualTypeVals.push_back(getRawArg(i));
808
Chris Lattner23be0672008-11-19 06:51:40 +0000809 while (DiagStr != DiagEnd) {
810 if (DiagStr[0] != '%') {
811 // Append non-%0 substrings to Str if we have one.
812 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
813 OutStr.append(DiagStr, StrEnd);
814 DiagStr = StrEnd;
Chris Lattner2b786902008-11-21 07:50:02 +0000815 continue;
Jordan Rosea7d03842013-02-08 22:30:41 +0000816 } else if (isPunctuation(DiagStr[1])) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000817 OutStr.push_back(DiagStr[1]); // %% -> %.
Chris Lattner23be0672008-11-19 06:51:40 +0000818 DiagStr += 2;
Chris Lattner2b786902008-11-21 07:50:02 +0000819 continue;
820 }
Mike Stump11289f42009-09-09 15:08:12 +0000821
Chris Lattner2b786902008-11-21 07:50:02 +0000822 // Skip the %.
823 ++DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000824
Chris Lattner2b786902008-11-21 07:50:02 +0000825 // This must be a placeholder for a diagnostic argument. The format for a
826 // placeholder is one of "%0", "%modifier0", or "%modifier{arguments}0".
827 // The digit is a number from 0-9 indicating which argument this comes from.
828 // The modifier is a string of digits from the set [-a-z]+, arguments is a
829 // brace enclosed string.
Craig Topperf1186c52014-05-08 06:41:40 +0000830 const char *Modifier = nullptr, *Argument = nullptr;
Chris Lattner2b786902008-11-21 07:50:02 +0000831 unsigned ModifierLen = 0, ArgumentLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000832
Chris Lattner2b786902008-11-21 07:50:02 +0000833 // Check to see if we have a modifier. If so eat it.
Jordan Rosea7d03842013-02-08 22:30:41 +0000834 if (!isDigit(DiagStr[0])) {
Chris Lattner2b786902008-11-21 07:50:02 +0000835 Modifier = DiagStr;
836 while (DiagStr[0] == '-' ||
837 (DiagStr[0] >= 'a' && DiagStr[0] <= 'z'))
838 ++DiagStr;
839 ModifierLen = DiagStr-Modifier;
Chris Lattner23be0672008-11-19 06:51:40 +0000840
Chris Lattner2b786902008-11-21 07:50:02 +0000841 // If we have an argument, get it next.
842 if (DiagStr[0] == '{') {
843 ++DiagStr; // Skip {.
844 Argument = DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000845
John McCall8cb7a8a32010-01-14 20:11:39 +0000846 DiagStr = ScanFormat(DiagStr, DiagEnd, '}');
847 assert(DiagStr != DiagEnd && "Mismatched {}'s in diagnostic string!");
Chris Lattner2b786902008-11-21 07:50:02 +0000848 ArgumentLen = DiagStr-Argument;
849 ++DiagStr; // Skip }.
Chris Lattner23be0672008-11-19 06:51:40 +0000850 }
Chris Lattner2b786902008-11-21 07:50:02 +0000851 }
Mike Stump11289f42009-09-09 15:08:12 +0000852
Jordan Rosea7d03842013-02-08 22:30:41 +0000853 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic");
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000854 unsigned ArgNo = *DiagStr++ - '0';
Chris Lattner2b786902008-11-21 07:50:02 +0000855
Richard Trieu91844232012-06-26 18:18:47 +0000856 // Only used for type diffing.
857 unsigned ArgNo2 = ArgNo;
858
David Blaikie9c902b52011-09-25 23:23:43 +0000859 DiagnosticsEngine::ArgumentKind Kind = getArgKind(ArgNo);
Richard Trieu90c31f52013-01-30 20:04:31 +0000860 if (ModifierIs(Modifier, ModifierLen, "diff")) {
Jordan Rosea7d03842013-02-08 22:30:41 +0000861 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) &&
Richard Trieu91844232012-06-26 18:18:47 +0000862 "Invalid format for diff modifier");
863 ++DiagStr; // Comma.
864 ArgNo2 = *DiagStr++ - '0';
Richard Trieu90c31f52013-01-30 20:04:31 +0000865 DiagnosticsEngine::ArgumentKind Kind2 = getArgKind(ArgNo2);
866 if (Kind == DiagnosticsEngine::ak_qualtype &&
867 Kind2 == DiagnosticsEngine::ak_qualtype)
868 Kind = DiagnosticsEngine::ak_qualtype_pair;
869 else {
870 // %diff only supports QualTypes. For other kinds of arguments,
871 // use the default printing. For example, if the modifier is:
872 // "%diff{compare $ to $|other text}1,2"
873 // treat it as:
874 // "compare %1 to %2"
Chandler Carruth8df65e42016-12-23 05:19:47 +0000875 const char *ArgumentEnd = Argument + ArgumentLen;
876 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|');
877 assert(ScanFormat(Pipe + 1, ArgumentEnd, '|') == ArgumentEnd &&
878 "Found too many '|'s in a %diff modifier!");
Richard Trieu90c31f52013-01-30 20:04:31 +0000879 const char *FirstDollar = ScanFormat(Argument, Pipe, '$');
880 const char *SecondDollar = ScanFormat(FirstDollar + 1, Pipe, '$');
Filipe Cabecinhased4a00c2013-01-30 22:03:24 +0000881 const char ArgStr1[] = { '%', static_cast<char>('0' + ArgNo) };
882 const char ArgStr2[] = { '%', static_cast<char>('0' + ArgNo2) };
Richard Trieu90c31f52013-01-30 20:04:31 +0000883 FormatDiagnostic(Argument, FirstDollar, OutStr);
884 FormatDiagnostic(ArgStr1, ArgStr1 + 2, OutStr);
885 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
886 FormatDiagnostic(ArgStr2, ArgStr2 + 2, OutStr);
887 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
888 continue;
889 }
Richard Trieu91844232012-06-26 18:18:47 +0000890 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000891
Chris Lattnerc243f292009-10-20 05:25:22 +0000892 switch (Kind) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000893 // ---- STRINGS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000894 case DiagnosticsEngine::ak_std_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000895 const std::string &S = getArgStdStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000896 assert(ModifierLen == 0 && "No modifiers for strings yet");
897 OutStr.append(S.begin(), S.end());
898 break;
899 }
David Blaikie9c902b52011-09-25 23:23:43 +0000900 case DiagnosticsEngine::ak_c_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000901 const char *S = getArgCStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000902 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000903
904 // Don't crash if get passed a null pointer by accident.
905 if (!S)
906 S = "(null)";
Mike Stump11289f42009-09-09 15:08:12 +0000907
Chris Lattner2b786902008-11-21 07:50:02 +0000908 OutStr.append(S, S + strlen(S));
909 break;
910 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000911 // ---- INTEGERS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000912 case DiagnosticsEngine::ak_sint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000913 int Val = getArgSInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000914
Chris Lattner2b786902008-11-21 07:50:02 +0000915 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCall43b61682010-10-14 01:55:31 +0000916 HandleSelectModifier(*this, (unsigned)Val, Argument, ArgumentLen,
917 OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000918 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
919 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000920 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000921 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
922 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000923 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
924 HandleOrdinalModifier((unsigned)Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000925 } else {
926 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000927 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000928 }
Chris Lattner2b786902008-11-21 07:50:02 +0000929 break;
930 }
David Blaikie9c902b52011-09-25 23:23:43 +0000931 case DiagnosticsEngine::ak_uint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000932 unsigned Val = getArgUInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000933
Chris Lattner2b786902008-11-21 07:50:02 +0000934 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCalle4d54322010-01-13 23:58:20 +0000935 HandleSelectModifier(*this, Val, Argument, ArgumentLen, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000936 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
937 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000938 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000939 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
940 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000941 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
942 HandleOrdinalModifier(Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000943 } else {
944 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000945 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000946 }
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000947 break;
Chris Lattner2b786902008-11-21 07:50:02 +0000948 }
Alp Tokerec543272013-12-24 09:48:30 +0000949 // ---- TOKEN SPELLINGS ----
950 case DiagnosticsEngine::ak_tokenkind: {
951 tok::TokenKind Kind = static_cast<tok::TokenKind>(getRawArg(ArgNo));
952 assert(ModifierLen == 0 && "No modifiers for token kinds yet");
953
954 llvm::raw_svector_ostream Out(OutStr);
Alp Tokera231ad22014-01-06 12:54:18 +0000955 if (const char *S = tok::getPunctuatorSpelling(Kind))
956 // Quoted token spelling for punctuators.
957 Out << '\'' << S << '\'';
958 else if (const char *S = tok::getKeywordSpelling(Kind))
959 // Unquoted token spelling for keywords.
960 Out << S;
961 else if (const char *S = getTokenDescForDiagnostic(Kind))
Alp Tokerec543272013-12-24 09:48:30 +0000962 // Unquoted translatable token name.
963 Out << S;
Alp Tokerec543272013-12-24 09:48:30 +0000964 else if (const char *S = tok::getTokenName(Kind))
965 // Debug name, shouldn't appear in user-facing diagnostics.
966 Out << '<' << S << '>';
967 else
968 Out << "(null)";
969 break;
970 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000971 // ---- NAMES and TYPES ----
David Blaikie9c902b52011-09-25 23:23:43 +0000972 case DiagnosticsEngine::ak_identifierinfo: {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000973 const IdentifierInfo *II = getArgIdentifier(ArgNo);
974 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000975
976 // Don't crash if get passed a null pointer by accident.
977 if (!II) {
978 const char *S = "(null)";
979 OutStr.append(S, S + strlen(S));
980 continue;
981 }
982
Daniel Dunbar07d07852009-10-18 21:17:35 +0000983 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\'';
Chris Lattnere3d20d92008-11-23 21:45:46 +0000984 break;
985 }
David Blaikie9c902b52011-09-25 23:23:43 +0000986 case DiagnosticsEngine::ak_qualtype:
987 case DiagnosticsEngine::ak_declarationname:
988 case DiagnosticsEngine::ak_nameddecl:
989 case DiagnosticsEngine::ak_nestednamespec:
990 case DiagnosticsEngine::ak_declcontext:
Aaron Ballman3e424b52013-12-26 18:30:57 +0000991 case DiagnosticsEngine::ak_attr:
Chris Lattnerc243f292009-10-20 05:25:22 +0000992 getDiags()->ConvertArgToString(Kind, getRawArg(ArgNo),
Craig Topper3aa4fb32014-06-12 05:32:35 +0000993 StringRef(Modifier, ModifierLen),
994 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000995 FormattedArgs,
Chandler Carruthd5173952011-07-11 17:49:21 +0000996 OutStr, QualTypeVals);
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000997 break;
Eugene Zelenko25cae5a22018-02-16 23:40:07 +0000998 case DiagnosticsEngine::ak_qualtype_pair: {
Richard Trieu91844232012-06-26 18:18:47 +0000999 // Create a struct with all the info needed for printing.
1000 TemplateDiffTypes TDT;
1001 TDT.FromType = getRawArg(ArgNo);
1002 TDT.ToType = getRawArg(ArgNo2);
1003 TDT.ElideType = getDiags()->ElideType;
1004 TDT.ShowColors = getDiags()->ShowColors;
Richard Trieu50f5f462012-07-10 01:46:04 +00001005 TDT.TemplateDiffUsed = false;
Richard Trieu91844232012-06-26 18:18:47 +00001006 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
1007
Richard Trieuc6058442012-06-29 21:12:16 +00001008 const char *ArgumentEnd = Argument + ArgumentLen;
1009 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|');
1010
Richard Trieua4056002012-07-13 21:18:32 +00001011 // Print the tree. If this diagnostic already has a tree, skip the
1012 // second tree.
1013 if (getDiags()->PrintTemplateTree && Tree.empty()) {
Richard Trieu91844232012-06-26 18:18:47 +00001014 TDT.PrintFromType = true;
1015 TDT.PrintTree = true;
1016 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +00001017 StringRef(Modifier, ModifierLen),
1018 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +00001019 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +00001020 Tree, QualTypeVals);
1021 // If there is no tree information, fall back to regular printing.
Richard Trieuc6058442012-06-29 21:12:16 +00001022 if (!Tree.empty()) {
1023 FormatDiagnostic(Pipe + 1, ArgumentEnd, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +00001024 break;
Richard Trieuc6058442012-06-29 21:12:16 +00001025 }
Richard Trieu91844232012-06-26 18:18:47 +00001026 }
1027
1028 // Non-tree printing, also the fall-back when tree printing fails.
1029 // The fall-back is triggered when the types compared are not templates.
Richard Trieuc6058442012-06-29 21:12:16 +00001030 const char *FirstDollar = ScanFormat(Argument, ArgumentEnd, '$');
1031 const char *SecondDollar = ScanFormat(FirstDollar + 1, ArgumentEnd, '$');
Richard Trieu91844232012-06-26 18:18:47 +00001032
1033 // Append before text
Richard Trieuc6058442012-06-29 21:12:16 +00001034 FormatDiagnostic(Argument, FirstDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +00001035
1036 // Append first type
1037 TDT.PrintTree = false;
1038 TDT.PrintFromType = true;
1039 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +00001040 StringRef(Modifier, ModifierLen),
1041 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +00001042 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +00001043 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +00001044 if (!TDT.TemplateDiffUsed)
1045 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
1046 TDT.FromType));
1047
Richard Trieu91844232012-06-26 18:18:47 +00001048 // Append middle text
Richard Trieuc6058442012-06-29 21:12:16 +00001049 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +00001050
1051 // Append second type
1052 TDT.PrintFromType = false;
1053 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +00001054 StringRef(Modifier, ModifierLen),
1055 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +00001056 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +00001057 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +00001058 if (!TDT.TemplateDiffUsed)
1059 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
1060 TDT.ToType));
1061
Richard Trieu91844232012-06-26 18:18:47 +00001062 // Append end text
Richard Trieuc6058442012-06-29 21:12:16 +00001063 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +00001064 break;
Nico Weber4c311642008-08-10 19:59:06 +00001065 }
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001066 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001067
Chris Lattnerc243f292009-10-20 05:25:22 +00001068 // Remember this argument info for subsequent formatting operations. Turn
1069 // std::strings into a null terminated string to make it be the same case as
1070 // all the other ones.
Richard Trieu91844232012-06-26 18:18:47 +00001071 if (Kind == DiagnosticsEngine::ak_qualtype_pair)
1072 continue;
1073 else if (Kind != DiagnosticsEngine::ak_std_string)
Chris Lattnerc243f292009-10-20 05:25:22 +00001074 FormattedArgs.push_back(std::make_pair(Kind, getRawArg(ArgNo)));
1075 else
David Blaikie9c902b52011-09-25 23:23:43 +00001076 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_c_string,
Chris Lattnerc243f292009-10-20 05:25:22 +00001077 (intptr_t)getArgStdStr(ArgNo).c_str()));
Nico Weber4c311642008-08-10 19:59:06 +00001078 }
Richard Trieu91844232012-06-26 18:18:47 +00001079
1080 // Append the type tree to the end of the diagnostics.
1081 OutStr.append(Tree.begin(), Tree.end());
Nico Weber4c311642008-08-10 19:59:06 +00001082}
Ted Kremenekea06ec12009-01-23 20:28:53 +00001083
David Blaikie9c902b52011-09-25 23:23:43 +00001084StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001085 StringRef Message)
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001086 : ID(ID), Level(Level), Message(Message) {}
Douglas Gregor33cdd812010-02-18 18:08:43 +00001087
Fangrui Song6907ce22018-07-30 19:24:48 +00001088StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level,
David Blaikieb5784322011-09-26 01:18:08 +00001089 const Diagnostic &Info)
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001090 : ID(Info.getID()), Level(Level) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00001091 assert((Info.getLocation().isInvalid() || Info.hasSourceManager()) &&
1092 "Valid source location without setting a source manager for diagnostic");
1093 if (Info.getLocation().isValid())
1094 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001095 SmallString<64> Message;
Douglas Gregor33cdd812010-02-18 18:08:43 +00001096 Info.FormatDiagnostic(Message);
1097 this->Message.assign(Message.begin(), Message.end());
Benjamin Kramerf9890422015-02-17 16:48:30 +00001098 this->Ranges.assign(Info.getRanges().begin(), Info.getRanges().end());
1099 this->FixIts.assign(Info.getFixItHints().begin(), Info.getFixItHints().end());
Douglas Gregor33cdd812010-02-18 18:08:43 +00001100}
1101
David Blaikie9c902b52011-09-25 23:23:43 +00001102StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001103 StringRef Message, FullSourceLoc Loc,
Chris Lattner54b16772011-07-23 17:14:25 +00001104 ArrayRef<CharSourceRange> Ranges,
Aaron Ballman234ebd72013-02-24 19:08:10 +00001105 ArrayRef<FixItHint> FixIts)
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001106 : ID(ID), Level(Level), Loc(Loc), Message(Message),
1107 Ranges(Ranges.begin(), Ranges.end()), FixIts(FixIts.begin(), FixIts.end())
Douglas Gregor925296b2011-07-19 16:10:42 +00001108{
Douglas Gregor925296b2011-07-19 16:10:42 +00001109}
1110
Ted Kremenekea06ec12009-01-23 20:28:53 +00001111/// IncludeInDiagnosticCounts - This method (whose default implementation
1112/// returns true) indicates whether the diagnostics handled by this
David Blaikiee2eefae2011-09-25 23:39:51 +00001113/// DiagnosticConsumer should be included in the number of diagnostics
David Blaikie9c902b52011-09-25 23:23:43 +00001114/// reported by DiagnosticsEngine.
David Blaikiee2eefae2011-09-25 23:39:51 +00001115bool DiagnosticConsumer::IncludeInDiagnosticCounts() const { return true; }
Douglas Gregor89336232010-03-29 23:34:08 +00001116
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001117void IgnoringDiagConsumer::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00001118
Eugene Zelenko25cae5a22018-02-16 23:40:07 +00001119ForwardingDiagnosticConsumer::~ForwardingDiagnosticConsumer() = default;
Douglas Gregor6b930962013-05-03 22:58:43 +00001120
1121void ForwardingDiagnosticConsumer::HandleDiagnostic(
1122 DiagnosticsEngine::Level DiagLevel,
1123 const Diagnostic &Info) {
1124 Target.HandleDiagnostic(DiagLevel, Info);
1125}
1126
1127void ForwardingDiagnosticConsumer::clear() {
1128 DiagnosticConsumer::clear();
1129 Target.clear();
1130}
1131
1132bool ForwardingDiagnosticConsumer::IncludeInDiagnosticCounts() const {
1133 return Target.IncludeInDiagnosticCounts();
1134}
1135
Benjamin Kramer7ec12c92012-02-07 22:29:24 +00001136PartialDiagnostic::StorageAllocator::StorageAllocator() {
Douglas Gregor89336232010-03-29 23:34:08 +00001137 for (unsigned I = 0; I != NumCached; ++I)
1138 FreeList[I] = Cached + I;
1139 NumFreeListEntries = NumCached;
1140}
1141
Benjamin Kramer7ec12c92012-02-07 22:29:24 +00001142PartialDiagnostic::StorageAllocator::~StorageAllocator() {
Chad Rosier849a67b2012-02-07 23:24:49 +00001143 // Don't assert if we are in a CrashRecovery context, as this invariant may
1144 // be invalidated during a crash.
Justin Lebarbf16db12016-08-10 01:09:07 +00001145 assert((NumFreeListEntries == NumCached ||
1146 llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
1147 "A partial is on the lam");
Douglas Gregor89336232010-03-29 23:34:08 +00001148}
Alex Lorenzd0e27262017-08-25 15:48:00 +00001149
1150char DiagnosticError::ID;