blob: a8929466084d637211bc3f65a784d7cb348f4fc7 [file] [log] [blame]
Chris Lattner22eb9722006-06-18 05:43:12 +00001//===--- Diagnostic.cpp - C Language Family Diagnostic Handling -----------===//
2//
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
Jordan Rosea7d03842013-02-08 22:30:41 +000014#include "clang/Basic/CharInfo.h"
Ted Kremenek39a76652010-04-12 19:54:17 +000015#include "clang/Basic/Diagnostic.h"
Douglas Gregor811db4e2012-10-23 22:26:28 +000016#include "clang/Basic/DiagnosticOptions.h"
Chris Lattnerb91fd172008-11-19 07:32:16 +000017#include "clang/Basic/IdentifierTable.h"
Ted Kremenek39a76652010-04-12 19:54:17 +000018#include "clang/Basic/PartialDiagnostic.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000019#include "llvm/ADT/SmallString.h"
Jordan Rosec102b352012-09-22 01:24:42 +000020#include "llvm/ADT/StringExtras.h"
Ted Kremenek84de4a12011-03-21 18:40:07 +000021#include "llvm/Support/CrashRecoveryContext.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "llvm/Support/raw_ostream.h"
Ted Kremenek84de4a12011-03-21 18:40:07 +000023
Chris Lattner22eb9722006-06-18 05:43:12 +000024using namespace clang;
25
David Blaikie9c902b52011-09-25 23:23:43 +000026static void DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT,
Craig Topper3aa4fb32014-06-12 05:32:35 +000027 StringRef Modifier, StringRef Argument,
Craig Toppere4753502014-06-12 05:32:27 +000028 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
29 SmallVectorImpl<char> &Output,
30 void *Cookie,
31 ArrayRef<intptr_t> QualTypeVals) {
32 StringRef Str = "<can't format argument>";
33 Output.append(Str.begin(), Str.end());
Chris Lattner6a2ed6f2008-11-23 09:13:29 +000034}
35
David Blaikie9c902b52011-09-25 23:23:43 +000036DiagnosticsEngine::DiagnosticsEngine(
Alexander Kornienko41c247a2014-11-17 23:46:02 +000037 const IntrusiveRefCntPtr<DiagnosticIDs> &diags, DiagnosticOptions *DiagOpts,
38 DiagnosticConsumer *client, bool ShouldOwnClient)
39 : Diags(diags), DiagOpts(DiagOpts), Client(nullptr), SourceMgr(nullptr) {
40 setClient(client, ShouldOwnClient);
Chris Lattner63ecc502008-11-23 09:21:17 +000041 ArgToStringFn = DummyArgToStringFn;
Craig Topperf1186c52014-05-08 06:41:40 +000042 ArgToStringCookie = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +000043
Douglas Gregor0e119552010-07-31 00:40:00 +000044 AllExtensionsSilenced = 0;
45 IgnoreAllWarnings = false;
46 WarningsAsErrors = false;
Ted Kremenekfbbdced2011-08-18 01:12:56 +000047 EnableAllWarnings = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000048 ErrorsAsFatal = false;
49 SuppressSystemWarnings = false;
50 SuppressAllDiagnostics = false;
Richard Trieu91844232012-06-26 18:18:47 +000051 ElideType = true;
52 PrintTemplateTree = false;
53 ShowColors = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000054 ShowOverloads = Ovl_All;
Alp Tokerac4e8e52014-06-22 21:58:33 +000055 ExtBehavior = diag::Severity::Ignored;
Douglas Gregor0e119552010-07-31 00:40:00 +000056
57 ErrorLimit = 0;
58 TemplateBacktraceLimit = 0;
Richard Smithf6f003a2011-12-16 19:06:07 +000059 ConstexprBacktraceLimit = 0;
Douglas Gregor0e119552010-07-31 00:40:00 +000060
Douglas Gregoraa21cc42010-07-19 21:46:24 +000061 Reset();
Chris Lattnerae411572006-07-05 00:55:08 +000062}
63
Reid Klecknerdccbabf2014-12-17 20:23:11 +000064DiagnosticsEngine::~DiagnosticsEngine() {
65 // If we own the diagnostic client, destroy it first so that it can access the
66 // engine from its destructor.
67 setClient(nullptr);
68}
69
David Blaikiee2eefae2011-09-25 23:39:51 +000070void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
David Blaikie9c902b52011-09-25 23:23:43 +000071 bool ShouldOwnClient) {
Alexander Kornienko41c247a2014-11-17 23:46:02 +000072 Owner.reset(ShouldOwnClient ? client : nullptr);
Douglas Gregor7a964ad2011-01-31 22:04:05 +000073 Client = client;
Douglas Gregor7a964ad2011-01-31 22:04:05 +000074}
Chris Lattnerfb42a182009-07-12 21:18:45 +000075
David Blaikie9c902b52011-09-25 23:23:43 +000076void DiagnosticsEngine::pushMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000077 DiagStateOnPushStack.push_back(GetCurDiagState());
Chris Lattnerfb42a182009-07-12 21:18:45 +000078}
79
David Blaikie9c902b52011-09-25 23:23:43 +000080bool DiagnosticsEngine::popMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000081 if (DiagStateOnPushStack.empty())
Chris Lattnerfb42a182009-07-12 21:18:45 +000082 return false;
83
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000084 if (DiagStateOnPushStack.back() != GetCurDiagState()) {
85 // State changed at some point between push/pop.
86 PushDiagStatePoint(DiagStateOnPushStack.back(), Loc);
87 }
88 DiagStateOnPushStack.pop_back();
Chris Lattnerfb42a182009-07-12 21:18:45 +000089 return true;
90}
91
David Blaikie9c902b52011-09-25 23:23:43 +000092void DiagnosticsEngine::Reset() {
Douglas Gregoraa21cc42010-07-19 21:46:24 +000093 ErrorOccurred = false;
DeLesley Hutchins8ecd4912012-12-07 22:53:48 +000094 UncompilableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +000095 FatalErrorOccurred = false;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +000096 UnrecoverableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +000097
98 NumWarnings = 0;
99 NumErrors = 0;
Argyrios Kyrtzidis1fa8b4b2011-07-29 01:25:44 +0000100 TrapNumErrorsOccurred = 0;
101 TrapNumUnrecoverableErrorsOccurred = 0;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +0000102
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000103 CurDiagID = ~0U;
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000104 LastDiagLevel = DiagnosticIDs::Ignored;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000105 DelayedDiagID = 0;
Argyrios Kyrtzidisbbbeea12011-03-26 18:58:17 +0000106
107 // Clear state related to #pragma diagnostic.
108 DiagStates.clear();
109 DiagStatePoints.clear();
110 DiagStateOnPushStack.clear();
111
112 // Create a DiagState and DiagStatePoint representing diagnostic changes
113 // through command-line.
114 DiagStates.push_back(DiagState());
Richard Smithf995f2c2012-08-14 04:19:29 +0000115 DiagStatePoints.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000116}
Chris Lattner22eb9722006-06-18 05:43:12 +0000117
David Blaikie9c902b52011-09-25 23:23:43 +0000118void DiagnosticsEngine::SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1,
Chad Rosier849a67b2012-02-07 23:24:49 +0000119 StringRef Arg2) {
Douglas Gregor85795312010-03-22 15:10:57 +0000120 if (DelayedDiagID)
121 return;
122
123 DelayedDiagID = DiagID;
Douglas Gregor96380982010-03-22 15:47:45 +0000124 DelayedDiagArg1 = Arg1.str();
125 DelayedDiagArg2 = Arg2.str();
Douglas Gregor85795312010-03-22 15:10:57 +0000126}
127
David Blaikie9c902b52011-09-25 23:23:43 +0000128void DiagnosticsEngine::ReportDelayed() {
Douglas Gregor85795312010-03-22 15:10:57 +0000129 Report(DelayedDiagID) << DelayedDiagArg1 << DelayedDiagArg2;
130 DelayedDiagID = 0;
131 DelayedDiagArg1.clear();
132 DelayedDiagArg2.clear();
133}
134
David Blaikie9c902b52011-09-25 23:23:43 +0000135DiagnosticsEngine::DiagStatePointsTy::iterator
136DiagnosticsEngine::GetDiagStatePointForLoc(SourceLocation L) const {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000137 assert(!DiagStatePoints.empty());
138 assert(DiagStatePoints.front().Loc.isInvalid() &&
139 "Should have created a DiagStatePoint for command-line");
140
Richard Smith99eff012012-08-17 00:55:32 +0000141 if (!SourceMgr)
142 return DiagStatePoints.end() - 1;
143
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000144 FullSourceLoc Loc(L, *SourceMgr);
145 if (Loc.isInvalid())
146 return DiagStatePoints.end() - 1;
147
148 DiagStatePointsTy::iterator Pos = DiagStatePoints.end();
149 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
150 if (LastStateChangePos.isValid() &&
151 Loc.isBeforeInTranslationUnitThan(LastStateChangePos))
152 Pos = std::upper_bound(DiagStatePoints.begin(), DiagStatePoints.end(),
Craig Topperf1186c52014-05-08 06:41:40 +0000153 DiagStatePoint(nullptr, Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000154 --Pos;
155 return Pos;
156}
157
Alp Tokerd576e002014-06-12 11:13:52 +0000158void DiagnosticsEngine::setSeverity(diag::kind Diag, diag::Severity Map,
159 SourceLocation L) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000160 assert(Diag < diag::DIAG_UPPER_LIMIT &&
161 "Can only map builtin diagnostics");
162 assert((Diags->isBuiltinWarningOrExtension(Diag) ||
Alp Toker46df1c02014-06-12 10:15:20 +0000163 (Map == diag::Severity::Fatal || Map == diag::Severity::Error)) &&
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000164 "Cannot map errors into warnings!");
165 assert(!DiagStatePoints.empty());
Richard Smith8a0527d2012-08-14 22:37:22 +0000166 assert((L.isInvalid() || SourceMgr) && "No SourceMgr for valid location");
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000167
Richard Smith8a0527d2012-08-14 22:37:22 +0000168 FullSourceLoc Loc = SourceMgr? FullSourceLoc(L, *SourceMgr) : FullSourceLoc();
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000169 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
Chad Rosierd1956e42012-02-03 01:49:51 +0000170 // Don't allow a mapping to a warning override an error/fatal mapping.
Alp Toker46df1c02014-06-12 10:15:20 +0000171 if (Map == diag::Severity::Warning) {
Alp Tokerc726c362014-06-10 09:31:37 +0000172 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
Alp Toker46df1c02014-06-12 10:15:20 +0000173 if (Info.getSeverity() == diag::Severity::Error ||
174 Info.getSeverity() == diag::Severity::Fatal)
Alp Tokerc726c362014-06-10 09:31:37 +0000175 Map = Info.getSeverity();
Chad Rosierd1956e42012-02-03 01:49:51 +0000176 }
Alp Tokerc726c362014-06-10 09:31:37 +0000177 DiagnosticMapping Mapping = makeUserMapping(Map, L);
Daniel Dunbar2fba0972011-10-04 21:17:24 +0000178
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000179 // Common case; setting all the diagnostics of a group in one place.
180 if (Loc.isInvalid() || Loc == LastStateChangePos) {
Alp Tokerc726c362014-06-10 09:31:37 +0000181 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000182 return;
183 }
184
185 // Another common case; modifying diagnostic state in a source location
186 // after the previous one.
187 if ((Loc.isValid() && LastStateChangePos.isInvalid()) ||
188 LastStateChangePos.isBeforeInTranslationUnitThan(Loc)) {
Chris Lattner57540c52011-04-15 05:22:18 +0000189 // A diagnostic pragma occurred, create a new DiagState initialized with
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000190 // the current one and a new DiagStatePoint to record at which location
191 // the new state became active.
192 DiagStates.push_back(*GetCurDiagState());
193 PushDiagStatePoint(&DiagStates.back(), Loc);
Alp Tokerc726c362014-06-10 09:31:37 +0000194 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000195 return;
196 }
197
198 // We allow setting the diagnostic state in random source order for
199 // completeness but it should not be actually happening in normal practice.
200
201 DiagStatePointsTy::iterator Pos = GetDiagStatePointForLoc(Loc);
202 assert(Pos != DiagStatePoints.end());
203
204 // Update all diagnostic states that are active after the given location.
205 for (DiagStatePointsTy::iterator
206 I = Pos+1, E = DiagStatePoints.end(); I != E; ++I) {
Alp Tokerc726c362014-06-10 09:31:37 +0000207 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000208 }
209
210 // If the location corresponds to an existing point, just update its state.
211 if (Pos->Loc == Loc) {
Alp Tokerc726c362014-06-10 09:31:37 +0000212 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000213 return;
214 }
215
216 // Create a new state/point and fit it into the vector of DiagStatePoints
217 // so that the vector is always ordered according to location.
Alp Toker14c8aff2014-01-26 08:12:32 +0000218 assert(Pos->Loc.isBeforeInTranslationUnitThan(Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000219 DiagStates.push_back(*Pos->State);
220 DiagState *NewState = &DiagStates.back();
Alp Tokerc726c362014-06-10 09:31:37 +0000221 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000222 DiagStatePoints.insert(Pos+1, DiagStatePoint(NewState,
223 FullSourceLoc(Loc, *SourceMgr)));
224}
225
Richard Smith3be1cb22014-08-07 00:24:21 +0000226bool DiagnosticsEngine::setSeverityForGroup(diag::Flavor Flavor,
227 StringRef Group, diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000228 SourceLocation Loc) {
Daniel Dunbard908c122011-09-29 01:47:16 +0000229 // Get the diagnostics in this group.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000230 SmallVector<diag::kind, 256> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000231 if (Diags->getDiagnosticsInGroup(Flavor, Group, GroupDiags))
Daniel Dunbard908c122011-09-29 01:47:16 +0000232 return true;
233
234 // Set the mapping.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000235 for (diag::kind Diag : GroupDiags)
236 setSeverity(Diag, Map, Loc);
Daniel Dunbard908c122011-09-29 01:47:16 +0000237
238 return false;
239}
240
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000241bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group,
242 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000243 // If we are enabling this feature, just set the diagnostic mappings to map to
244 // errors.
245 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000246 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
247 diag::Severity::Error);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000248
249 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
250 // potentially downgrade anything already mapped to be a warning.
251
252 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000253 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000254 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
255 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000256 return true;
257
258 // Perform the mapping change.
259 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000260 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000261
Alp Toker46df1c02014-06-12 10:15:20 +0000262 if (Info.getSeverity() == diag::Severity::Error ||
263 Info.getSeverity() == diag::Severity::Fatal)
264 Info.setSeverity(diag::Severity::Warning);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000265
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000266 Info.setNoWarningAsError(true);
267 }
268
269 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000270}
271
272bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group,
273 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000274 // If we are enabling this feature, just set the diagnostic mappings to map to
275 // fatal errors.
276 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000277 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
278 diag::Severity::Fatal);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000279
280 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
281 // potentially downgrade anything already mapped to be an error.
282
283 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000284 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000285 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
286 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000287 return true;
288
289 // Perform the mapping change.
290 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000291 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000292
Alp Toker46df1c02014-06-12 10:15:20 +0000293 if (Info.getSeverity() == diag::Severity::Fatal)
294 Info.setSeverity(diag::Severity::Error);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000295
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000296 Info.setNoErrorAsFatal(true);
297 }
298
299 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000300}
301
Richard Smith3be1cb22014-08-07 00:24:21 +0000302void DiagnosticsEngine::setSeverityForAll(diag::Flavor Flavor,
303 diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000304 SourceLocation Loc) {
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000305 // Get all the diagnostics.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000306 SmallVector<diag::kind, 64> AllDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000307 Diags->getAllDiagnostics(Flavor, AllDiags);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000308
309 // Set the mapping.
310 for (unsigned i = 0, e = AllDiags.size(); i != e; ++i)
311 if (Diags->isBuiltinWarningOrExtension(AllDiags[i]))
Alp Tokerd576e002014-06-12 11:13:52 +0000312 setSeverity(AllDiags[i], Map, Loc);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000313}
314
David Blaikie9c902b52011-09-25 23:23:43 +0000315void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000316 assert(CurDiagID == ~0U && "Multiple diagnostics in flight at once!");
317
318 CurDiagLoc = storedDiag.getLocation();
319 CurDiagID = storedDiag.getID();
320 NumDiagArgs = 0;
321
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000322 DiagRanges.clear();
323 DiagRanges.reserve(storedDiag.range_size());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000324 for (StoredDiagnostic::range_iterator
325 RI = storedDiag.range_begin(),
326 RE = storedDiag.range_end(); RI != RE; ++RI)
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000327 DiagRanges.push_back(*RI);
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000328
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000329 DiagFixItHints.clear();
330 DiagFixItHints.reserve(storedDiag.fixit_size());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000331 for (StoredDiagnostic::fixit_iterator
332 FI = storedDiag.fixit_begin(),
333 FE = storedDiag.fixit_end(); FI != FE; ++FI)
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000334 DiagFixItHints.push_back(*FI);
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000335
David Blaikiee2eefae2011-09-25 23:39:51 +0000336 assert(Client && "DiagnosticConsumer not set!");
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000337 Level DiagLevel = storedDiag.getLevel();
David Blaikieb5784322011-09-26 01:18:08 +0000338 Diagnostic Info(this, storedDiag.getMessage());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000339 Client->HandleDiagnostic(DiagLevel, Info);
340 if (Client->IncludeInDiagnosticCounts()) {
David Blaikie9c902b52011-09-25 23:23:43 +0000341 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000342 ++NumWarnings;
343 }
344
345 CurDiagID = ~0U;
346}
347
Jordan Rose6f524ac2012-07-11 16:50:36 +0000348bool DiagnosticsEngine::EmitCurrentDiagnostic(bool Force) {
349 assert(getClient() && "DiagnosticClient not set!");
350
351 bool Emitted;
352 if (Force) {
353 Diagnostic Info(this);
354
355 // Figure out the diagnostic level of this message.
356 DiagnosticIDs::Level DiagLevel
357 = Diags->getDiagnosticLevel(Info.getID(), Info.getLocation(), *this);
358
359 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
360 if (Emitted) {
361 // Emit the diagnostic regardless of suppression level.
362 Diags->EmitDiag(*this, DiagLevel);
363 }
364 } else {
365 // Process the diagnostic, sending the accumulated information to the
366 // DiagnosticConsumer.
367 Emitted = ProcessDiag();
368 }
Douglas Gregor85795312010-03-22 15:10:57 +0000369
370 // Clear out the current diagnostic object.
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000371 unsigned DiagID = CurDiagID;
372 Clear();
Douglas Gregor85795312010-03-22 15:10:57 +0000373
374 // If there was a delayed diagnostic, emit it now.
Jordan Rose6f524ac2012-07-11 16:50:36 +0000375 if (!Force && DelayedDiagID && DelayedDiagID != DiagID)
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000376 ReportDelayed();
Douglas Gregor85795312010-03-22 15:10:57 +0000377
378 return Emitted;
379}
380
Nico Weber4c311642008-08-10 19:59:06 +0000381
David Blaikiee2eefae2011-09-25 23:39:51 +0000382DiagnosticConsumer::~DiagnosticConsumer() {}
Nico Weber4c311642008-08-10 19:59:06 +0000383
David Blaikiee2eefae2011-09-25 23:39:51 +0000384void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
David Blaikieb5784322011-09-26 01:18:08 +0000385 const Diagnostic &Info) {
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000386 if (!IncludeInDiagnosticCounts())
387 return;
388
David Blaikie9c902b52011-09-25 23:23:43 +0000389 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000390 ++NumWarnings;
David Blaikie9c902b52011-09-25 23:23:43 +0000391 else if (DiagLevel >= DiagnosticsEngine::Error)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000392 ++NumErrors;
393}
Chris Lattner23be0672008-11-19 06:51:40 +0000394
Chris Lattner2b786902008-11-21 07:50:02 +0000395/// ModifierIs - Return true if the specified modifier matches specified string.
396template <std::size_t StrLen>
397static bool ModifierIs(const char *Modifier, unsigned ModifierLen,
398 const char (&Str)[StrLen]) {
399 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
400}
401
John McCall8cb7a8a32010-01-14 20:11:39 +0000402/// ScanForward - Scans forward, looking for the given character, skipping
403/// nested clauses and escaped characters.
404static const char *ScanFormat(const char *I, const char *E, char Target) {
405 unsigned Depth = 0;
406
407 for ( ; I != E; ++I) {
408 if (Depth == 0 && *I == Target) return I;
409 if (Depth != 0 && *I == '}') Depth--;
410
411 if (*I == '%') {
412 I++;
413 if (I == E) break;
414
415 // Escaped characters get implicitly skipped here.
416
417 // Format specifier.
Jordan Rosea7d03842013-02-08 22:30:41 +0000418 if (!isDigit(*I) && !isPunctuation(*I)) {
419 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ;
John McCall8cb7a8a32010-01-14 20:11:39 +0000420 if (I == E) break;
421 if (*I == '{')
422 Depth++;
423 }
424 }
425 }
426 return E;
427}
428
Chris Lattner2b786902008-11-21 07:50:02 +0000429/// HandleSelectModifier - Handle the integer 'select' modifier. This is used
430/// like this: %select{foo|bar|baz}2. This means that the integer argument
431/// "%2" has a value from 0-2. If the value is 0, the diagnostic prints 'foo'.
432/// If the value is 1, it prints 'bar'. If it has the value 2, it prints 'baz'.
433/// This is very useful for certain classes of variant diagnostics.
David Blaikieb5784322011-09-26 01:18:08 +0000434static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo,
Chris Lattner2b786902008-11-21 07:50:02 +0000435 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000436 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000437 const char *ArgumentEnd = Argument+ArgumentLen;
Mike Stump11289f42009-09-09 15:08:12 +0000438
Chris Lattner2b786902008-11-21 07:50:02 +0000439 // Skip over 'ValNo' |'s.
440 while (ValNo) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000441 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
Chris Lattner2b786902008-11-21 07:50:02 +0000442 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
443 " larger than the number of options in the diagnostic string!");
444 Argument = NextVal+1; // Skip this string.
445 --ValNo;
446 }
Mike Stump11289f42009-09-09 15:08:12 +0000447
Chris Lattner2b786902008-11-21 07:50:02 +0000448 // Get the end of the value. This is either the } or the |.
John McCall8cb7a8a32010-01-14 20:11:39 +0000449 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
John McCalle4d54322010-01-13 23:58:20 +0000450
451 // Recursively format the result of the select clause into the output string.
452 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000453}
454
455/// HandleIntegerSModifier - Handle the integer 's' modifier. This adds the
456/// letter 's' to the string if the value is not 1. This is used in cases like
457/// this: "you idiot, you have %4 parameter%s4!".
458static void HandleIntegerSModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000459 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000460 if (ValNo != 1)
461 OutStr.push_back('s');
462}
463
John McCall9015cde2010-01-14 00:50:32 +0000464/// HandleOrdinalModifier - Handle the integer 'ord' modifier. This
465/// prints the ordinal form of the given integer, with 1 corresponding
466/// to the first ordinal. Currently this is hard-coded to use the
467/// English form.
468static void HandleOrdinalModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000469 SmallVectorImpl<char> &OutStr) {
John McCall9015cde2010-01-14 00:50:32 +0000470 assert(ValNo != 0 && "ValNo must be strictly positive!");
471
472 llvm::raw_svector_ostream Out(OutStr);
473
474 // We could use text forms for the first N ordinals, but the numeric
475 // forms are actually nicer in diagnostics because they stand out.
Jordan Rosec102b352012-09-22 01:24:42 +0000476 Out << ValNo << llvm::getOrdinalSuffix(ValNo);
John McCall9015cde2010-01-14 00:50:32 +0000477}
478
Chris Lattner2b786902008-11-21 07:50:02 +0000479
Sebastian Redl15b02d22008-11-22 13:44:36 +0000480/// PluralNumber - Parse an unsigned integer and advance Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000481static unsigned PluralNumber(const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000482 // Programming 101: Parse a decimal number :-)
483 unsigned Val = 0;
484 while (Start != End && *Start >= '0' && *Start <= '9') {
485 Val *= 10;
486 Val += *Start - '0';
487 ++Start;
488 }
489 return Val;
490}
491
492/// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000493static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000494 if (*Start != '[') {
495 unsigned Ref = PluralNumber(Start, End);
496 return Ref == Val;
497 }
498
499 ++Start;
500 unsigned Low = PluralNumber(Start, End);
501 assert(*Start == ',' && "Bad plural expression syntax: expected ,");
502 ++Start;
503 unsigned High = PluralNumber(Start, End);
504 assert(*Start == ']' && "Bad plural expression syntax: expected )");
505 ++Start;
506 return Low <= Val && Val <= High;
507}
508
509/// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
Chris Lattner2fe29202009-04-15 17:13:42 +0000510static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000511 // Empty condition?
512 if (*Start == ':')
513 return true;
514
515 while (1) {
516 char C = *Start;
517 if (C == '%') {
518 // Modulo expression
519 ++Start;
520 unsigned Arg = PluralNumber(Start, End);
521 assert(*Start == '=' && "Bad plural expression syntax: expected =");
522 ++Start;
523 unsigned ValMod = ValNo % Arg;
524 if (TestPluralRange(ValMod, Start, End))
525 return true;
526 } else {
Sebastian Redl3ceaf622008-11-27 07:28:14 +0000527 assert((C == '[' || (C >= '0' && C <= '9')) &&
Sebastian Redl15b02d22008-11-22 13:44:36 +0000528 "Bad plural expression syntax: unexpected character");
529 // Range expression
530 if (TestPluralRange(ValNo, Start, End))
531 return true;
532 }
533
534 // Scan for next or-expr part.
535 Start = std::find(Start, End, ',');
Mike Stump11289f42009-09-09 15:08:12 +0000536 if (Start == End)
Sebastian Redl15b02d22008-11-22 13:44:36 +0000537 break;
538 ++Start;
539 }
540 return false;
541}
542
543/// HandlePluralModifier - Handle the integer 'plural' modifier. This is used
544/// for complex plural forms, or in languages where all plurals are complex.
545/// The syntax is: %plural{cond1:form1|cond2:form2|:form3}, where condn are
546/// conditions that are tested in order, the form corresponding to the first
547/// that applies being emitted. The empty condition is always true, making the
548/// last form a default case.
549/// Conditions are simple boolean expressions, where n is the number argument.
550/// Here are the rules.
551/// condition := expression | empty
552/// empty := -> always true
553/// expression := numeric [',' expression] -> logical or
554/// numeric := range -> true if n in range
555/// | '%' number '=' range -> true if n % number in range
556/// range := number
557/// | '[' number ',' number ']' -> ranges are inclusive both ends
558///
559/// Here are some examples from the GNU gettext manual written in this form:
560/// English:
561/// {1:form0|:form1}
562/// Latvian:
563/// {0:form2|%100=11,%10=0,%10=[2,9]:form1|:form0}
564/// Gaeilge:
565/// {1:form0|2:form1|:form2}
566/// Romanian:
567/// {1:form0|0,%100=[1,19]:form1|:form2}
568/// Lithuanian:
569/// {%10=0,%100=[10,19]:form2|%10=1:form0|:form1}
570/// Russian (requires repeated form):
571/// {%100=[11,14]:form2|%10=1:form0|%10=[2,4]:form1|:form2}
572/// Slovak
573/// {1:form0|[2,4]:form1|:form2}
574/// Polish (requires repeated form):
575/// {1:form0|%100=[10,20]:form2|%10=[2,4]:form1|:form2}
David Blaikieb5784322011-09-26 01:18:08 +0000576static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo,
Sebastian Redl15b02d22008-11-22 13:44:36 +0000577 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000578 SmallVectorImpl<char> &OutStr) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000579 const char *ArgumentEnd = Argument + ArgumentLen;
580 while (1) {
581 assert(Argument < ArgumentEnd && "Plural expression didn't match.");
582 const char *ExprEnd = Argument;
583 while (*ExprEnd != ':') {
584 assert(ExprEnd != ArgumentEnd && "Plural missing expression end");
585 ++ExprEnd;
586 }
587 if (EvalPluralExpr(ValNo, Argument, ExprEnd)) {
588 Argument = ExprEnd + 1;
John McCall8cb7a8a32010-01-14 20:11:39 +0000589 ExprEnd = ScanFormat(Argument, ArgumentEnd, '|');
John McCall43b61682010-10-14 01:55:31 +0000590
591 // Recursively format the result of the plural clause into the
592 // output string.
593 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000594 return;
595 }
John McCall8cb7a8a32010-01-14 20:11:39 +0000596 Argument = ScanFormat(Argument, ArgumentEnd - 1, '|') + 1;
Sebastian Redl15b02d22008-11-22 13:44:36 +0000597 }
598}
599
Alp Tokera231ad22014-01-06 12:54:18 +0000600/// \brief Returns the friendly description for a token kind that will appear
601/// without quotes in diagnostic messages. These strings may be translatable in
602/// future.
603static const char *getTokenDescForDiagnostic(tok::TokenKind Kind) {
Alp Tokerec543272013-12-24 09:48:30 +0000604 switch (Kind) {
605 case tok::identifier:
606 return "identifier";
607 default:
Craig Topperf1186c52014-05-08 06:41:40 +0000608 return nullptr;
Alp Tokerec543272013-12-24 09:48:30 +0000609 }
610}
Sebastian Redl15b02d22008-11-22 13:44:36 +0000611
Chris Lattner23be0672008-11-19 06:51:40 +0000612/// FormatDiagnostic - Format this diagnostic into a string, substituting the
613/// formal arguments into the %0 slots. The result is appended onto the Str
614/// array.
David Blaikieb5784322011-09-26 01:18:08 +0000615void Diagnostic::
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000616FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000617 if (!StoredDiagMessage.empty()) {
618 OutStr.append(StoredDiagMessage.begin(), StoredDiagMessage.end());
619 return;
620 }
621
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000622 StringRef Diag =
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000623 getDiags()->getDiagnosticIDs()->getDescription(getID());
Mike Stump11289f42009-09-09 15:08:12 +0000624
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000625 FormatDiagnostic(Diag.begin(), Diag.end(), OutStr);
John McCalle4d54322010-01-13 23:58:20 +0000626}
627
David Blaikieb5784322011-09-26 01:18:08 +0000628void Diagnostic::
John McCalle4d54322010-01-13 23:58:20 +0000629FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000630 SmallVectorImpl<char> &OutStr) const {
John McCalle4d54322010-01-13 23:58:20 +0000631
Chris Lattnerc243f292009-10-20 05:25:22 +0000632 /// FormattedArgs - Keep track of all of the arguments formatted by
633 /// ConvertArgToString and pass them into subsequent calls to
634 /// ConvertArgToString, allowing the implementation to avoid redundancies in
635 /// obvious cases.
David Blaikie9c902b52011-09-25 23:23:43 +0000636 SmallVector<DiagnosticsEngine::ArgumentValue, 8> FormattedArgs;
Chandler Carruthd5173952011-07-11 17:49:21 +0000637
638 /// QualTypeVals - Pass a vector of arrays so that QualType names can be
639 /// compared to see if more information is needed to be printed.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000640 SmallVector<intptr_t, 2> QualTypeVals;
Richard Trieu91844232012-06-26 18:18:47 +0000641 SmallVector<char, 64> Tree;
642
Chandler Carruthd5173952011-07-11 17:49:21 +0000643 for (unsigned i = 0, e = getNumArgs(); i < e; ++i)
David Blaikie9c902b52011-09-25 23:23:43 +0000644 if (getArgKind(i) == DiagnosticsEngine::ak_qualtype)
Chandler Carruthd5173952011-07-11 17:49:21 +0000645 QualTypeVals.push_back(getRawArg(i));
646
Chris Lattner23be0672008-11-19 06:51:40 +0000647 while (DiagStr != DiagEnd) {
648 if (DiagStr[0] != '%') {
649 // Append non-%0 substrings to Str if we have one.
650 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
651 OutStr.append(DiagStr, StrEnd);
652 DiagStr = StrEnd;
Chris Lattner2b786902008-11-21 07:50:02 +0000653 continue;
Jordan Rosea7d03842013-02-08 22:30:41 +0000654 } else if (isPunctuation(DiagStr[1])) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000655 OutStr.push_back(DiagStr[1]); // %% -> %.
Chris Lattner23be0672008-11-19 06:51:40 +0000656 DiagStr += 2;
Chris Lattner2b786902008-11-21 07:50:02 +0000657 continue;
658 }
Mike Stump11289f42009-09-09 15:08:12 +0000659
Chris Lattner2b786902008-11-21 07:50:02 +0000660 // Skip the %.
661 ++DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000662
Chris Lattner2b786902008-11-21 07:50:02 +0000663 // This must be a placeholder for a diagnostic argument. The format for a
664 // placeholder is one of "%0", "%modifier0", or "%modifier{arguments}0".
665 // The digit is a number from 0-9 indicating which argument this comes from.
666 // The modifier is a string of digits from the set [-a-z]+, arguments is a
667 // brace enclosed string.
Craig Topperf1186c52014-05-08 06:41:40 +0000668 const char *Modifier = nullptr, *Argument = nullptr;
Chris Lattner2b786902008-11-21 07:50:02 +0000669 unsigned ModifierLen = 0, ArgumentLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000670
Chris Lattner2b786902008-11-21 07:50:02 +0000671 // Check to see if we have a modifier. If so eat it.
Jordan Rosea7d03842013-02-08 22:30:41 +0000672 if (!isDigit(DiagStr[0])) {
Chris Lattner2b786902008-11-21 07:50:02 +0000673 Modifier = DiagStr;
674 while (DiagStr[0] == '-' ||
675 (DiagStr[0] >= 'a' && DiagStr[0] <= 'z'))
676 ++DiagStr;
677 ModifierLen = DiagStr-Modifier;
Chris Lattner23be0672008-11-19 06:51:40 +0000678
Chris Lattner2b786902008-11-21 07:50:02 +0000679 // If we have an argument, get it next.
680 if (DiagStr[0] == '{') {
681 ++DiagStr; // Skip {.
682 Argument = DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000683
John McCall8cb7a8a32010-01-14 20:11:39 +0000684 DiagStr = ScanFormat(DiagStr, DiagEnd, '}');
685 assert(DiagStr != DiagEnd && "Mismatched {}'s in diagnostic string!");
Chris Lattner2b786902008-11-21 07:50:02 +0000686 ArgumentLen = DiagStr-Argument;
687 ++DiagStr; // Skip }.
Chris Lattner23be0672008-11-19 06:51:40 +0000688 }
Chris Lattner2b786902008-11-21 07:50:02 +0000689 }
Mike Stump11289f42009-09-09 15:08:12 +0000690
Jordan Rosea7d03842013-02-08 22:30:41 +0000691 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic");
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000692 unsigned ArgNo = *DiagStr++ - '0';
Chris Lattner2b786902008-11-21 07:50:02 +0000693
Richard Trieu91844232012-06-26 18:18:47 +0000694 // Only used for type diffing.
695 unsigned ArgNo2 = ArgNo;
696
David Blaikie9c902b52011-09-25 23:23:43 +0000697 DiagnosticsEngine::ArgumentKind Kind = getArgKind(ArgNo);
Richard Trieu90c31f52013-01-30 20:04:31 +0000698 if (ModifierIs(Modifier, ModifierLen, "diff")) {
Jordan Rosea7d03842013-02-08 22:30:41 +0000699 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) &&
Richard Trieu91844232012-06-26 18:18:47 +0000700 "Invalid format for diff modifier");
701 ++DiagStr; // Comma.
702 ArgNo2 = *DiagStr++ - '0';
Richard Trieu90c31f52013-01-30 20:04:31 +0000703 DiagnosticsEngine::ArgumentKind Kind2 = getArgKind(ArgNo2);
704 if (Kind == DiagnosticsEngine::ak_qualtype &&
705 Kind2 == DiagnosticsEngine::ak_qualtype)
706 Kind = DiagnosticsEngine::ak_qualtype_pair;
707 else {
708 // %diff only supports QualTypes. For other kinds of arguments,
709 // use the default printing. For example, if the modifier is:
710 // "%diff{compare $ to $|other text}1,2"
711 // treat it as:
712 // "compare %1 to %2"
713 const char *Pipe = ScanFormat(Argument, Argument + ArgumentLen, '|');
714 const char *FirstDollar = ScanFormat(Argument, Pipe, '$');
715 const char *SecondDollar = ScanFormat(FirstDollar + 1, Pipe, '$');
Filipe Cabecinhased4a00c2013-01-30 22:03:24 +0000716 const char ArgStr1[] = { '%', static_cast<char>('0' + ArgNo) };
717 const char ArgStr2[] = { '%', static_cast<char>('0' + ArgNo2) };
Richard Trieu90c31f52013-01-30 20:04:31 +0000718 FormatDiagnostic(Argument, FirstDollar, OutStr);
719 FormatDiagnostic(ArgStr1, ArgStr1 + 2, OutStr);
720 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
721 FormatDiagnostic(ArgStr2, ArgStr2 + 2, OutStr);
722 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
723 continue;
724 }
Richard Trieu91844232012-06-26 18:18:47 +0000725 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000726
727 switch (Kind) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000728 // ---- STRINGS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000729 case DiagnosticsEngine::ak_std_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000730 const std::string &S = getArgStdStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000731 assert(ModifierLen == 0 && "No modifiers for strings yet");
732 OutStr.append(S.begin(), S.end());
733 break;
734 }
David Blaikie9c902b52011-09-25 23:23:43 +0000735 case DiagnosticsEngine::ak_c_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000736 const char *S = getArgCStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000737 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000738
739 // Don't crash if get passed a null pointer by accident.
740 if (!S)
741 S = "(null)";
Mike Stump11289f42009-09-09 15:08:12 +0000742
Chris Lattner2b786902008-11-21 07:50:02 +0000743 OutStr.append(S, S + strlen(S));
744 break;
745 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000746 // ---- INTEGERS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000747 case DiagnosticsEngine::ak_sint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000748 int Val = getArgSInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000749
Chris Lattner2b786902008-11-21 07:50:02 +0000750 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCall43b61682010-10-14 01:55:31 +0000751 HandleSelectModifier(*this, (unsigned)Val, Argument, ArgumentLen,
752 OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000753 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
754 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000755 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000756 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
757 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000758 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
759 HandleOrdinalModifier((unsigned)Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000760 } else {
761 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000762 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000763 }
Chris Lattner2b786902008-11-21 07:50:02 +0000764 break;
765 }
David Blaikie9c902b52011-09-25 23:23:43 +0000766 case DiagnosticsEngine::ak_uint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000767 unsigned Val = getArgUInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000768
Chris Lattner2b786902008-11-21 07:50:02 +0000769 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCalle4d54322010-01-13 23:58:20 +0000770 HandleSelectModifier(*this, Val, Argument, ArgumentLen, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000771 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
772 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000773 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000774 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
775 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000776 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
777 HandleOrdinalModifier(Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000778 } else {
779 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000780 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000781 }
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000782 break;
Chris Lattner2b786902008-11-21 07:50:02 +0000783 }
Alp Tokerec543272013-12-24 09:48:30 +0000784 // ---- TOKEN SPELLINGS ----
785 case DiagnosticsEngine::ak_tokenkind: {
786 tok::TokenKind Kind = static_cast<tok::TokenKind>(getRawArg(ArgNo));
787 assert(ModifierLen == 0 && "No modifiers for token kinds yet");
788
789 llvm::raw_svector_ostream Out(OutStr);
Alp Tokera231ad22014-01-06 12:54:18 +0000790 if (const char *S = tok::getPunctuatorSpelling(Kind))
791 // Quoted token spelling for punctuators.
792 Out << '\'' << S << '\'';
793 else if (const char *S = tok::getKeywordSpelling(Kind))
794 // Unquoted token spelling for keywords.
795 Out << S;
796 else if (const char *S = getTokenDescForDiagnostic(Kind))
Alp Tokerec543272013-12-24 09:48:30 +0000797 // Unquoted translatable token name.
798 Out << S;
Alp Tokerec543272013-12-24 09:48:30 +0000799 else if (const char *S = tok::getTokenName(Kind))
800 // Debug name, shouldn't appear in user-facing diagnostics.
801 Out << '<' << S << '>';
802 else
803 Out << "(null)";
804 break;
805 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000806 // ---- NAMES and TYPES ----
David Blaikie9c902b52011-09-25 23:23:43 +0000807 case DiagnosticsEngine::ak_identifierinfo: {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000808 const IdentifierInfo *II = getArgIdentifier(ArgNo);
809 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000810
811 // Don't crash if get passed a null pointer by accident.
812 if (!II) {
813 const char *S = "(null)";
814 OutStr.append(S, S + strlen(S));
815 continue;
816 }
817
Daniel Dunbar07d07852009-10-18 21:17:35 +0000818 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\'';
Chris Lattnere3d20d92008-11-23 21:45:46 +0000819 break;
820 }
David Blaikie9c902b52011-09-25 23:23:43 +0000821 case DiagnosticsEngine::ak_qualtype:
822 case DiagnosticsEngine::ak_declarationname:
823 case DiagnosticsEngine::ak_nameddecl:
824 case DiagnosticsEngine::ak_nestednamespec:
825 case DiagnosticsEngine::ak_declcontext:
Aaron Ballman3e424b52013-12-26 18:30:57 +0000826 case DiagnosticsEngine::ak_attr:
Chris Lattnerc243f292009-10-20 05:25:22 +0000827 getDiags()->ConvertArgToString(Kind, getRawArg(ArgNo),
Craig Topper3aa4fb32014-06-12 05:32:35 +0000828 StringRef(Modifier, ModifierLen),
829 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000830 FormattedArgs,
Chandler Carruthd5173952011-07-11 17:49:21 +0000831 OutStr, QualTypeVals);
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000832 break;
Richard Trieu91844232012-06-26 18:18:47 +0000833 case DiagnosticsEngine::ak_qualtype_pair:
834 // Create a struct with all the info needed for printing.
835 TemplateDiffTypes TDT;
836 TDT.FromType = getRawArg(ArgNo);
837 TDT.ToType = getRawArg(ArgNo2);
838 TDT.ElideType = getDiags()->ElideType;
839 TDT.ShowColors = getDiags()->ShowColors;
Richard Trieu50f5f462012-07-10 01:46:04 +0000840 TDT.TemplateDiffUsed = false;
Richard Trieu91844232012-06-26 18:18:47 +0000841 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
842
Richard Trieuc6058442012-06-29 21:12:16 +0000843 const char *ArgumentEnd = Argument + ArgumentLen;
844 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|');
845
Richard Trieua4056002012-07-13 21:18:32 +0000846 // Print the tree. If this diagnostic already has a tree, skip the
847 // second tree.
848 if (getDiags()->PrintTemplateTree && Tree.empty()) {
Richard Trieu91844232012-06-26 18:18:47 +0000849 TDT.PrintFromType = true;
850 TDT.PrintTree = true;
851 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000852 StringRef(Modifier, ModifierLen),
853 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000854 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000855 Tree, QualTypeVals);
856 // If there is no tree information, fall back to regular printing.
Richard Trieuc6058442012-06-29 21:12:16 +0000857 if (!Tree.empty()) {
858 FormatDiagnostic(Pipe + 1, ArgumentEnd, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000859 break;
Richard Trieuc6058442012-06-29 21:12:16 +0000860 }
Richard Trieu91844232012-06-26 18:18:47 +0000861 }
862
863 // Non-tree printing, also the fall-back when tree printing fails.
864 // The fall-back is triggered when the types compared are not templates.
Richard Trieuc6058442012-06-29 21:12:16 +0000865 const char *FirstDollar = ScanFormat(Argument, ArgumentEnd, '$');
866 const char *SecondDollar = ScanFormat(FirstDollar + 1, ArgumentEnd, '$');
Richard Trieu91844232012-06-26 18:18:47 +0000867
868 // Append before text
Richard Trieuc6058442012-06-29 21:12:16 +0000869 FormatDiagnostic(Argument, FirstDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000870
871 // Append first type
872 TDT.PrintTree = false;
873 TDT.PrintFromType = true;
874 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000875 StringRef(Modifier, ModifierLen),
876 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000877 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000878 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000879 if (!TDT.TemplateDiffUsed)
880 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
881 TDT.FromType));
882
Richard Trieu91844232012-06-26 18:18:47 +0000883 // Append middle text
Richard Trieuc6058442012-06-29 21:12:16 +0000884 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000885
886 // Append second type
887 TDT.PrintFromType = false;
888 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000889 StringRef(Modifier, ModifierLen),
890 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000891 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000892 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000893 if (!TDT.TemplateDiffUsed)
894 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
895 TDT.ToType));
896
Richard Trieu91844232012-06-26 18:18:47 +0000897 // Append end text
Richard Trieuc6058442012-06-29 21:12:16 +0000898 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000899 break;
Nico Weber4c311642008-08-10 19:59:06 +0000900 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000901
902 // Remember this argument info for subsequent formatting operations. Turn
903 // std::strings into a null terminated string to make it be the same case as
904 // all the other ones.
Richard Trieu91844232012-06-26 18:18:47 +0000905 if (Kind == DiagnosticsEngine::ak_qualtype_pair)
906 continue;
907 else if (Kind != DiagnosticsEngine::ak_std_string)
Chris Lattnerc243f292009-10-20 05:25:22 +0000908 FormattedArgs.push_back(std::make_pair(Kind, getRawArg(ArgNo)));
909 else
David Blaikie9c902b52011-09-25 23:23:43 +0000910 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_c_string,
Chris Lattnerc243f292009-10-20 05:25:22 +0000911 (intptr_t)getArgStdStr(ArgNo).c_str()));
912
Nico Weber4c311642008-08-10 19:59:06 +0000913 }
Richard Trieu91844232012-06-26 18:18:47 +0000914
915 // Append the type tree to the end of the diagnostics.
916 OutStr.append(Tree.begin(), Tree.end());
Nico Weber4c311642008-08-10 19:59:06 +0000917}
Ted Kremenekea06ec12009-01-23 20:28:53 +0000918
Douglas Gregor33cdd812010-02-18 18:08:43 +0000919StoredDiagnostic::StoredDiagnostic() { }
920
David Blaikie9c902b52011-09-25 23:23:43 +0000921StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000922 StringRef Message)
Benjamin Kramer929bd682010-11-19 17:36:51 +0000923 : ID(ID), Level(Level), Loc(), Message(Message) { }
Douglas Gregor33cdd812010-02-18 18:08:43 +0000924
David Blaikie9c902b52011-09-25 23:23:43 +0000925StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level,
David Blaikieb5784322011-09-26 01:18:08 +0000926 const Diagnostic &Info)
Douglas Gregora750e8e2010-11-19 16:18:16 +0000927 : ID(Info.getID()), Level(Level)
928{
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000929 assert((Info.getLocation().isInvalid() || Info.hasSourceManager()) &&
930 "Valid source location without setting a source manager for diagnostic");
931 if (Info.getLocation().isValid())
932 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000933 SmallString<64> Message;
Douglas Gregor33cdd812010-02-18 18:08:43 +0000934 Info.FormatDiagnostic(Message);
935 this->Message.assign(Message.begin(), Message.end());
936
937 Ranges.reserve(Info.getNumRanges());
938 for (unsigned I = 0, N = Info.getNumRanges(); I != N; ++I)
939 Ranges.push_back(Info.getRange(I));
940
Douglas Gregora771f462010-03-31 17:46:05 +0000941 FixIts.reserve(Info.getNumFixItHints());
942 for (unsigned I = 0, N = Info.getNumFixItHints(); I != N; ++I)
943 FixIts.push_back(Info.getFixItHint(I));
Douglas Gregor33cdd812010-02-18 18:08:43 +0000944}
945
David Blaikie9c902b52011-09-25 23:23:43 +0000946StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000947 StringRef Message, FullSourceLoc Loc,
Chris Lattner54b16772011-07-23 17:14:25 +0000948 ArrayRef<CharSourceRange> Ranges,
Aaron Ballman234ebd72013-02-24 19:08:10 +0000949 ArrayRef<FixItHint> FixIts)
950 : ID(ID), Level(Level), Loc(Loc), Message(Message),
951 Ranges(Ranges.begin(), Ranges.end()), FixIts(FixIts.begin(), FixIts.end())
Douglas Gregor925296b2011-07-19 16:10:42 +0000952{
Douglas Gregor925296b2011-07-19 16:10:42 +0000953}
954
Douglas Gregor33cdd812010-02-18 18:08:43 +0000955StoredDiagnostic::~StoredDiagnostic() { }
956
Ted Kremenekea06ec12009-01-23 20:28:53 +0000957/// IncludeInDiagnosticCounts - This method (whose default implementation
958/// returns true) indicates whether the diagnostics handled by this
David Blaikiee2eefae2011-09-25 23:39:51 +0000959/// DiagnosticConsumer should be included in the number of diagnostics
David Blaikie9c902b52011-09-25 23:23:43 +0000960/// reported by DiagnosticsEngine.
David Blaikiee2eefae2011-09-25 23:39:51 +0000961bool DiagnosticConsumer::IncludeInDiagnosticCounts() const { return true; }
Douglas Gregor89336232010-03-29 23:34:08 +0000962
David Blaikie68e081d2011-12-20 02:48:34 +0000963void IgnoringDiagConsumer::anchor() { }
964
Douglas Gregor6b930962013-05-03 22:58:43 +0000965ForwardingDiagnosticConsumer::~ForwardingDiagnosticConsumer() {}
966
967void ForwardingDiagnosticConsumer::HandleDiagnostic(
968 DiagnosticsEngine::Level DiagLevel,
969 const Diagnostic &Info) {
970 Target.HandleDiagnostic(DiagLevel, Info);
971}
972
973void ForwardingDiagnosticConsumer::clear() {
974 DiagnosticConsumer::clear();
975 Target.clear();
976}
977
978bool ForwardingDiagnosticConsumer::IncludeInDiagnosticCounts() const {
979 return Target.IncludeInDiagnosticCounts();
980}
981
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000982PartialDiagnostic::StorageAllocator::StorageAllocator() {
Douglas Gregor89336232010-03-29 23:34:08 +0000983 for (unsigned I = 0; I != NumCached; ++I)
984 FreeList[I] = Cached + I;
985 NumFreeListEntries = NumCached;
986}
987
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000988PartialDiagnostic::StorageAllocator::~StorageAllocator() {
Chad Rosier849a67b2012-02-07 23:24:49 +0000989 // Don't assert if we are in a CrashRecovery context, as this invariant may
990 // be invalidated during a crash.
991 assert((NumFreeListEntries == NumCached ||
992 llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
993 "A partial is on the lamb");
Douglas Gregor89336232010-03-29 23:34:08 +0000994}