blob: 97299611f0de883d697fc126f99a91c9fe0df9a1 [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
36
David Blaikie9c902b52011-09-25 23:23:43 +000037DiagnosticsEngine::DiagnosticsEngine(
Dylan Noblesmithc95d8192012-02-20 14:00:23 +000038 const IntrusiveRefCntPtr<DiagnosticIDs> &diags,
Douglas Gregor811db4e2012-10-23 22:26:28 +000039 DiagnosticOptions *DiagOpts,
David Blaikiee2eefae2011-09-25 23:39:51 +000040 DiagnosticConsumer *client, bool ShouldOwnClient)
Douglas Gregor811db4e2012-10-23 22:26:28 +000041 : Diags(diags), DiagOpts(DiagOpts), Client(client),
Craig Topperf1186c52014-05-08 06:41:40 +000042 OwnsDiagClient(ShouldOwnClient), SourceMgr(nullptr) {
Chris Lattner63ecc502008-11-23 09:21:17 +000043 ArgToStringFn = DummyArgToStringFn;
Craig Topperf1186c52014-05-08 06:41:40 +000044 ArgToStringCookie = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +000045
Douglas Gregor0e119552010-07-31 00:40:00 +000046 AllExtensionsSilenced = 0;
47 IgnoreAllWarnings = false;
48 WarningsAsErrors = false;
Ted Kremenekfbbdced2011-08-18 01:12:56 +000049 EnableAllWarnings = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000050 ErrorsAsFatal = false;
51 SuppressSystemWarnings = false;
52 SuppressAllDiagnostics = false;
Richard Trieu91844232012-06-26 18:18:47 +000053 ElideType = true;
54 PrintTemplateTree = false;
55 ShowColors = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000056 ShowOverloads = Ovl_All;
57 ExtBehavior = Ext_Ignore;
58
59 ErrorLimit = 0;
60 TemplateBacktraceLimit = 0;
Richard Smithf6f003a2011-12-16 19:06:07 +000061 ConstexprBacktraceLimit = 0;
Douglas Gregor0e119552010-07-31 00:40:00 +000062
Douglas Gregoraa21cc42010-07-19 21:46:24 +000063 Reset();
Chris Lattnerae411572006-07-05 00:55:08 +000064}
65
David Blaikie9c902b52011-09-25 23:23:43 +000066DiagnosticsEngine::~DiagnosticsEngine() {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +000067 if (OwnsDiagClient)
68 delete Client;
Chris Lattnere6535cf2007-12-02 01:09:57 +000069}
70
David Blaikiee2eefae2011-09-25 23:39:51 +000071void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
David Blaikie9c902b52011-09-25 23:23:43 +000072 bool ShouldOwnClient) {
Douglas Gregor7a964ad2011-01-31 22:04:05 +000073 if (OwnsDiagClient && Client)
74 delete Client;
75
76 Client = client;
77 OwnsDiagClient = ShouldOwnClient;
78}
Chris Lattnerfb42a182009-07-12 21:18:45 +000079
David Blaikie9c902b52011-09-25 23:23:43 +000080void DiagnosticsEngine::pushMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000081 DiagStateOnPushStack.push_back(GetCurDiagState());
Chris Lattnerfb42a182009-07-12 21:18:45 +000082}
83
David Blaikie9c902b52011-09-25 23:23:43 +000084bool DiagnosticsEngine::popMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000085 if (DiagStateOnPushStack.empty())
Chris Lattnerfb42a182009-07-12 21:18:45 +000086 return false;
87
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000088 if (DiagStateOnPushStack.back() != GetCurDiagState()) {
89 // State changed at some point between push/pop.
90 PushDiagStatePoint(DiagStateOnPushStack.back(), Loc);
91 }
92 DiagStateOnPushStack.pop_back();
Chris Lattnerfb42a182009-07-12 21:18:45 +000093 return true;
94}
95
David Blaikie9c902b52011-09-25 23:23:43 +000096void DiagnosticsEngine::Reset() {
Douglas Gregoraa21cc42010-07-19 21:46:24 +000097 ErrorOccurred = false;
DeLesley Hutchins8ecd4912012-12-07 22:53:48 +000098 UncompilableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +000099 FatalErrorOccurred = false;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +0000100 UnrecoverableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000101
102 NumWarnings = 0;
103 NumErrors = 0;
104 NumErrorsSuppressed = 0;
Argyrios Kyrtzidis1fa8b4b2011-07-29 01:25:44 +0000105 TrapNumErrorsOccurred = 0;
106 TrapNumUnrecoverableErrorsOccurred = 0;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +0000107
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000108 CurDiagID = ~0U;
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000109 LastDiagLevel = DiagnosticIDs::Ignored;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000110 DelayedDiagID = 0;
Argyrios Kyrtzidisbbbeea12011-03-26 18:58:17 +0000111
112 // Clear state related to #pragma diagnostic.
113 DiagStates.clear();
114 DiagStatePoints.clear();
115 DiagStateOnPushStack.clear();
116
117 // Create a DiagState and DiagStatePoint representing diagnostic changes
118 // through command-line.
119 DiagStates.push_back(DiagState());
Richard Smithf995f2c2012-08-14 04:19:29 +0000120 DiagStatePoints.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000121}
Chris Lattner22eb9722006-06-18 05:43:12 +0000122
David Blaikie9c902b52011-09-25 23:23:43 +0000123void DiagnosticsEngine::SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1,
Chad Rosier849a67b2012-02-07 23:24:49 +0000124 StringRef Arg2) {
Douglas Gregor85795312010-03-22 15:10:57 +0000125 if (DelayedDiagID)
126 return;
127
128 DelayedDiagID = DiagID;
Douglas Gregor96380982010-03-22 15:47:45 +0000129 DelayedDiagArg1 = Arg1.str();
130 DelayedDiagArg2 = Arg2.str();
Douglas Gregor85795312010-03-22 15:10:57 +0000131}
132
David Blaikie9c902b52011-09-25 23:23:43 +0000133void DiagnosticsEngine::ReportDelayed() {
Douglas Gregor85795312010-03-22 15:10:57 +0000134 Report(DelayedDiagID) << DelayedDiagArg1 << DelayedDiagArg2;
135 DelayedDiagID = 0;
136 DelayedDiagArg1.clear();
137 DelayedDiagArg2.clear();
138}
139
David Blaikie9c902b52011-09-25 23:23:43 +0000140DiagnosticsEngine::DiagStatePointsTy::iterator
141DiagnosticsEngine::GetDiagStatePointForLoc(SourceLocation L) const {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000142 assert(!DiagStatePoints.empty());
143 assert(DiagStatePoints.front().Loc.isInvalid() &&
144 "Should have created a DiagStatePoint for command-line");
145
Richard Smith99eff012012-08-17 00:55:32 +0000146 if (!SourceMgr)
147 return DiagStatePoints.end() - 1;
148
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000149 FullSourceLoc Loc(L, *SourceMgr);
150 if (Loc.isInvalid())
151 return DiagStatePoints.end() - 1;
152
153 DiagStatePointsTy::iterator Pos = DiagStatePoints.end();
154 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
155 if (LastStateChangePos.isValid() &&
156 Loc.isBeforeInTranslationUnitThan(LastStateChangePos))
157 Pos = std::upper_bound(DiagStatePoints.begin(), DiagStatePoints.end(),
Craig Topperf1186c52014-05-08 06:41:40 +0000158 DiagStatePoint(nullptr, Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000159 --Pos;
160 return Pos;
161}
162
Alp Tokerc726c362014-06-10 09:31:37 +0000163void DiagnosticsEngine::setDiagnosticMapping(diag::kind Diag,
164 diag::Severity Map,
Chad Rosier849a67b2012-02-07 23:24:49 +0000165 SourceLocation L) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000166 assert(Diag < diag::DIAG_UPPER_LIMIT &&
167 "Can only map builtin diagnostics");
168 assert((Diags->isBuiltinWarningOrExtension(Diag) ||
169 (Map == diag::MAP_FATAL || Map == diag::MAP_ERROR)) &&
170 "Cannot map errors into warnings!");
171 assert(!DiagStatePoints.empty());
Richard Smith8a0527d2012-08-14 22:37:22 +0000172 assert((L.isInvalid() || SourceMgr) && "No SourceMgr for valid location");
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000173
Richard Smith8a0527d2012-08-14 22:37:22 +0000174 FullSourceLoc Loc = SourceMgr? FullSourceLoc(L, *SourceMgr) : FullSourceLoc();
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000175 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
Chad Rosierd1956e42012-02-03 01:49:51 +0000176 // Don't allow a mapping to a warning override an error/fatal mapping.
177 if (Map == diag::MAP_WARNING) {
Alp Tokerc726c362014-06-10 09:31:37 +0000178 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
179 if (Info.getSeverity() == diag::MAP_ERROR ||
180 Info.getSeverity() == diag::MAP_FATAL)
181 Map = Info.getSeverity();
Chad Rosierd1956e42012-02-03 01:49:51 +0000182 }
Alp Tokerc726c362014-06-10 09:31:37 +0000183 DiagnosticMapping Mapping = makeUserMapping(Map, L);
Daniel Dunbar2fba0972011-10-04 21:17:24 +0000184
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000185 // Common case; setting all the diagnostics of a group in one place.
186 if (Loc.isInvalid() || Loc == LastStateChangePos) {
Alp Tokerc726c362014-06-10 09:31:37 +0000187 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000188 return;
189 }
190
191 // Another common case; modifying diagnostic state in a source location
192 // after the previous one.
193 if ((Loc.isValid() && LastStateChangePos.isInvalid()) ||
194 LastStateChangePos.isBeforeInTranslationUnitThan(Loc)) {
Chris Lattner57540c52011-04-15 05:22:18 +0000195 // A diagnostic pragma occurred, create a new DiagState initialized with
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000196 // the current one and a new DiagStatePoint to record at which location
197 // the new state became active.
198 DiagStates.push_back(*GetCurDiagState());
199 PushDiagStatePoint(&DiagStates.back(), Loc);
Alp Tokerc726c362014-06-10 09:31:37 +0000200 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000201 return;
202 }
203
204 // We allow setting the diagnostic state in random source order for
205 // completeness but it should not be actually happening in normal practice.
206
207 DiagStatePointsTy::iterator Pos = GetDiagStatePointForLoc(Loc);
208 assert(Pos != DiagStatePoints.end());
209
210 // Update all diagnostic states that are active after the given location.
211 for (DiagStatePointsTy::iterator
212 I = Pos+1, E = DiagStatePoints.end(); I != E; ++I) {
Alp Tokerc726c362014-06-10 09:31:37 +0000213 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000214 }
215
216 // If the location corresponds to an existing point, just update its state.
217 if (Pos->Loc == Loc) {
Alp Tokerc726c362014-06-10 09:31:37 +0000218 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000219 return;
220 }
221
222 // Create a new state/point and fit it into the vector of DiagStatePoints
223 // so that the vector is always ordered according to location.
Alp Toker14c8aff2014-01-26 08:12:32 +0000224 assert(Pos->Loc.isBeforeInTranslationUnitThan(Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000225 DiagStates.push_back(*Pos->State);
226 DiagState *NewState = &DiagStates.back();
Alp Tokerc726c362014-06-10 09:31:37 +0000227 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000228 DiagStatePoints.insert(Pos+1, DiagStatePoint(NewState,
229 FullSourceLoc(Loc, *SourceMgr)));
230}
231
Alp Tokerc726c362014-06-10 09:31:37 +0000232bool DiagnosticsEngine::setDiagnosticGroupMapping(StringRef Group,
233 diag::Severity Map,
234 SourceLocation Loc) {
Daniel Dunbard908c122011-09-29 01:47:16 +0000235 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000236 SmallVector<diag::kind, 8> GroupDiags;
Daniel Dunbard908c122011-09-29 01:47:16 +0000237 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
238 return true;
239
240 // Set the mapping.
241 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i)
242 setDiagnosticMapping(GroupDiags[i], Map, Loc);
243
244 return false;
245}
246
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000247bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group,
248 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000249 // If we are enabling this feature, just set the diagnostic mappings to map to
250 // errors.
251 if (Enabled)
252 return setDiagnosticGroupMapping(Group, diag::MAP_ERROR);
253
254 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
255 // potentially downgrade anything already mapped to be a warning.
256
257 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000258 SmallVector<diag::kind, 8> GroupDiags;
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000259 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
260 return true;
261
262 // Perform the mapping change.
263 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000264 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000265
Alp Tokerc726c362014-06-10 09:31:37 +0000266 if (Info.getSeverity() == diag::MAP_ERROR ||
267 Info.getSeverity() == diag::MAP_FATAL)
268 Info.setSeverity(diag::MAP_WARNING);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000269
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000270 Info.setNoWarningAsError(true);
271 }
272
273 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000274}
275
276bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group,
277 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000278 // If we are enabling this feature, just set the diagnostic mappings to map to
279 // fatal errors.
280 if (Enabled)
281 return setDiagnosticGroupMapping(Group, diag::MAP_FATAL);
282
283 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
284 // potentially downgrade anything already mapped to be an error.
285
286 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000287 SmallVector<diag::kind, 8> GroupDiags;
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000288 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
289 return true;
290
291 // Perform the mapping change.
292 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000293 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000294
Alp Tokerc726c362014-06-10 09:31:37 +0000295 if (Info.getSeverity() == diag::MAP_FATAL)
296 Info.setSeverity(diag::MAP_ERROR);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000297
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000298 Info.setNoErrorAsFatal(true);
299 }
300
301 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000302}
303
Alp Tokerc726c362014-06-10 09:31:37 +0000304void DiagnosticsEngine::setMappingForAllDiagnostics(diag::Severity Map,
305 SourceLocation Loc) {
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000306 // Get all the diagnostics.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000307 SmallVector<diag::kind, 64> AllDiags;
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000308 Diags->getAllDiagnostics(AllDiags);
309
310 // Set the mapping.
311 for (unsigned i = 0, e = AllDiags.size(); i != e; ++i)
312 if (Diags->isBuiltinWarningOrExtension(AllDiags[i]))
313 setDiagnosticMapping(AllDiags[i], Map, Loc);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000314}
315
David Blaikie9c902b52011-09-25 23:23:43 +0000316void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000317 assert(CurDiagID == ~0U && "Multiple diagnostics in flight at once!");
318
319 CurDiagLoc = storedDiag.getLocation();
320 CurDiagID = storedDiag.getID();
321 NumDiagArgs = 0;
322
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000323 DiagRanges.clear();
324 DiagRanges.reserve(storedDiag.range_size());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000325 for (StoredDiagnostic::range_iterator
326 RI = storedDiag.range_begin(),
327 RE = storedDiag.range_end(); RI != RE; ++RI)
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000328 DiagRanges.push_back(*RI);
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000329
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000330 DiagFixItHints.clear();
331 DiagFixItHints.reserve(storedDiag.fixit_size());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000332 for (StoredDiagnostic::fixit_iterator
333 FI = storedDiag.fixit_begin(),
334 FE = storedDiag.fixit_end(); FI != FE; ++FI)
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000335 DiagFixItHints.push_back(*FI);
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000336
David Blaikiee2eefae2011-09-25 23:39:51 +0000337 assert(Client && "DiagnosticConsumer not set!");
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000338 Level DiagLevel = storedDiag.getLevel();
David Blaikieb5784322011-09-26 01:18:08 +0000339 Diagnostic Info(this, storedDiag.getMessage());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000340 Client->HandleDiagnostic(DiagLevel, Info);
341 if (Client->IncludeInDiagnosticCounts()) {
David Blaikie9c902b52011-09-25 23:23:43 +0000342 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000343 ++NumWarnings;
344 }
345
346 CurDiagID = ~0U;
347}
348
Jordan Rose6f524ac2012-07-11 16:50:36 +0000349bool DiagnosticsEngine::EmitCurrentDiagnostic(bool Force) {
350 assert(getClient() && "DiagnosticClient not set!");
351
352 bool Emitted;
353 if (Force) {
354 Diagnostic Info(this);
355
356 // Figure out the diagnostic level of this message.
357 DiagnosticIDs::Level DiagLevel
358 = Diags->getDiagnosticLevel(Info.getID(), Info.getLocation(), *this);
359
360 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
361 if (Emitted) {
362 // Emit the diagnostic regardless of suppression level.
363 Diags->EmitDiag(*this, DiagLevel);
364 }
365 } else {
366 // Process the diagnostic, sending the accumulated information to the
367 // DiagnosticConsumer.
368 Emitted = ProcessDiag();
369 }
Douglas Gregor85795312010-03-22 15:10:57 +0000370
371 // Clear out the current diagnostic object.
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000372 unsigned DiagID = CurDiagID;
373 Clear();
Douglas Gregor85795312010-03-22 15:10:57 +0000374
375 // If there was a delayed diagnostic, emit it now.
Jordan Rose6f524ac2012-07-11 16:50:36 +0000376 if (!Force && DelayedDiagID && DelayedDiagID != DiagID)
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000377 ReportDelayed();
Douglas Gregor85795312010-03-22 15:10:57 +0000378
379 return Emitted;
380}
381
Nico Weber4c311642008-08-10 19:59:06 +0000382
David Blaikiee2eefae2011-09-25 23:39:51 +0000383DiagnosticConsumer::~DiagnosticConsumer() {}
Nico Weber4c311642008-08-10 19:59:06 +0000384
David Blaikiee2eefae2011-09-25 23:39:51 +0000385void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
David Blaikieb5784322011-09-26 01:18:08 +0000386 const Diagnostic &Info) {
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000387 if (!IncludeInDiagnosticCounts())
388 return;
389
David Blaikie9c902b52011-09-25 23:23:43 +0000390 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000391 ++NumWarnings;
David Blaikie9c902b52011-09-25 23:23:43 +0000392 else if (DiagLevel >= DiagnosticsEngine::Error)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000393 ++NumErrors;
394}
Chris Lattner23be0672008-11-19 06:51:40 +0000395
Chris Lattner2b786902008-11-21 07:50:02 +0000396/// ModifierIs - Return true if the specified modifier matches specified string.
397template <std::size_t StrLen>
398static bool ModifierIs(const char *Modifier, unsigned ModifierLen,
399 const char (&Str)[StrLen]) {
400 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
401}
402
John McCall8cb7a8a32010-01-14 20:11:39 +0000403/// ScanForward - Scans forward, looking for the given character, skipping
404/// nested clauses and escaped characters.
405static const char *ScanFormat(const char *I, const char *E, char Target) {
406 unsigned Depth = 0;
407
408 for ( ; I != E; ++I) {
409 if (Depth == 0 && *I == Target) return I;
410 if (Depth != 0 && *I == '}') Depth--;
411
412 if (*I == '%') {
413 I++;
414 if (I == E) break;
415
416 // Escaped characters get implicitly skipped here.
417
418 // Format specifier.
Jordan Rosea7d03842013-02-08 22:30:41 +0000419 if (!isDigit(*I) && !isPunctuation(*I)) {
420 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ;
John McCall8cb7a8a32010-01-14 20:11:39 +0000421 if (I == E) break;
422 if (*I == '{')
423 Depth++;
424 }
425 }
426 }
427 return E;
428}
429
Chris Lattner2b786902008-11-21 07:50:02 +0000430/// HandleSelectModifier - Handle the integer 'select' modifier. This is used
431/// like this: %select{foo|bar|baz}2. This means that the integer argument
432/// "%2" has a value from 0-2. If the value is 0, the diagnostic prints 'foo'.
433/// If the value is 1, it prints 'bar'. If it has the value 2, it prints 'baz'.
434/// This is very useful for certain classes of variant diagnostics.
David Blaikieb5784322011-09-26 01:18:08 +0000435static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo,
Chris Lattner2b786902008-11-21 07:50:02 +0000436 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000437 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000438 const char *ArgumentEnd = Argument+ArgumentLen;
Mike Stump11289f42009-09-09 15:08:12 +0000439
Chris Lattner2b786902008-11-21 07:50:02 +0000440 // Skip over 'ValNo' |'s.
441 while (ValNo) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000442 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
Chris Lattner2b786902008-11-21 07:50:02 +0000443 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
444 " larger than the number of options in the diagnostic string!");
445 Argument = NextVal+1; // Skip this string.
446 --ValNo;
447 }
Mike Stump11289f42009-09-09 15:08:12 +0000448
Chris Lattner2b786902008-11-21 07:50:02 +0000449 // Get the end of the value. This is either the } or the |.
John McCall8cb7a8a32010-01-14 20:11:39 +0000450 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
John McCalle4d54322010-01-13 23:58:20 +0000451
452 // Recursively format the result of the select clause into the output string.
453 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000454}
455
456/// HandleIntegerSModifier - Handle the integer 's' modifier. This adds the
457/// letter 's' to the string if the value is not 1. This is used in cases like
458/// this: "you idiot, you have %4 parameter%s4!".
459static void HandleIntegerSModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000460 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000461 if (ValNo != 1)
462 OutStr.push_back('s');
463}
464
John McCall9015cde2010-01-14 00:50:32 +0000465/// HandleOrdinalModifier - Handle the integer 'ord' modifier. This
466/// prints the ordinal form of the given integer, with 1 corresponding
467/// to the first ordinal. Currently this is hard-coded to use the
468/// English form.
469static void HandleOrdinalModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000470 SmallVectorImpl<char> &OutStr) {
John McCall9015cde2010-01-14 00:50:32 +0000471 assert(ValNo != 0 && "ValNo must be strictly positive!");
472
473 llvm::raw_svector_ostream Out(OutStr);
474
475 // We could use text forms for the first N ordinals, but the numeric
476 // forms are actually nicer in diagnostics because they stand out.
Jordan Rosec102b352012-09-22 01:24:42 +0000477 Out << ValNo << llvm::getOrdinalSuffix(ValNo);
John McCall9015cde2010-01-14 00:50:32 +0000478}
479
Chris Lattner2b786902008-11-21 07:50:02 +0000480
Sebastian Redl15b02d22008-11-22 13:44:36 +0000481/// PluralNumber - Parse an unsigned integer and advance Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000482static unsigned PluralNumber(const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000483 // Programming 101: Parse a decimal number :-)
484 unsigned Val = 0;
485 while (Start != End && *Start >= '0' && *Start <= '9') {
486 Val *= 10;
487 Val += *Start - '0';
488 ++Start;
489 }
490 return Val;
491}
492
493/// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000494static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000495 if (*Start != '[') {
496 unsigned Ref = PluralNumber(Start, End);
497 return Ref == Val;
498 }
499
500 ++Start;
501 unsigned Low = PluralNumber(Start, End);
502 assert(*Start == ',' && "Bad plural expression syntax: expected ,");
503 ++Start;
504 unsigned High = PluralNumber(Start, End);
505 assert(*Start == ']' && "Bad plural expression syntax: expected )");
506 ++Start;
507 return Low <= Val && Val <= High;
508}
509
510/// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
Chris Lattner2fe29202009-04-15 17:13:42 +0000511static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000512 // Empty condition?
513 if (*Start == ':')
514 return true;
515
516 while (1) {
517 char C = *Start;
518 if (C == '%') {
519 // Modulo expression
520 ++Start;
521 unsigned Arg = PluralNumber(Start, End);
522 assert(*Start == '=' && "Bad plural expression syntax: expected =");
523 ++Start;
524 unsigned ValMod = ValNo % Arg;
525 if (TestPluralRange(ValMod, Start, End))
526 return true;
527 } else {
Sebastian Redl3ceaf622008-11-27 07:28:14 +0000528 assert((C == '[' || (C >= '0' && C <= '9')) &&
Sebastian Redl15b02d22008-11-22 13:44:36 +0000529 "Bad plural expression syntax: unexpected character");
530 // Range expression
531 if (TestPluralRange(ValNo, Start, End))
532 return true;
533 }
534
535 // Scan for next or-expr part.
536 Start = std::find(Start, End, ',');
Mike Stump11289f42009-09-09 15:08:12 +0000537 if (Start == End)
Sebastian Redl15b02d22008-11-22 13:44:36 +0000538 break;
539 ++Start;
540 }
541 return false;
542}
543
544/// HandlePluralModifier - Handle the integer 'plural' modifier. This is used
545/// for complex plural forms, or in languages where all plurals are complex.
546/// The syntax is: %plural{cond1:form1|cond2:form2|:form3}, where condn are
547/// conditions that are tested in order, the form corresponding to the first
548/// that applies being emitted. The empty condition is always true, making the
549/// last form a default case.
550/// Conditions are simple boolean expressions, where n is the number argument.
551/// Here are the rules.
552/// condition := expression | empty
553/// empty := -> always true
554/// expression := numeric [',' expression] -> logical or
555/// numeric := range -> true if n in range
556/// | '%' number '=' range -> true if n % number in range
557/// range := number
558/// | '[' number ',' number ']' -> ranges are inclusive both ends
559///
560/// Here are some examples from the GNU gettext manual written in this form:
561/// English:
562/// {1:form0|:form1}
563/// Latvian:
564/// {0:form2|%100=11,%10=0,%10=[2,9]:form1|:form0}
565/// Gaeilge:
566/// {1:form0|2:form1|:form2}
567/// Romanian:
568/// {1:form0|0,%100=[1,19]:form1|:form2}
569/// Lithuanian:
570/// {%10=0,%100=[10,19]:form2|%10=1:form0|:form1}
571/// Russian (requires repeated form):
572/// {%100=[11,14]:form2|%10=1:form0|%10=[2,4]:form1|:form2}
573/// Slovak
574/// {1:form0|[2,4]:form1|:form2}
575/// Polish (requires repeated form):
576/// {1:form0|%100=[10,20]:form2|%10=[2,4]:form1|:form2}
David Blaikieb5784322011-09-26 01:18:08 +0000577static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo,
Sebastian Redl15b02d22008-11-22 13:44:36 +0000578 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000579 SmallVectorImpl<char> &OutStr) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000580 const char *ArgumentEnd = Argument + ArgumentLen;
581 while (1) {
582 assert(Argument < ArgumentEnd && "Plural expression didn't match.");
583 const char *ExprEnd = Argument;
584 while (*ExprEnd != ':') {
585 assert(ExprEnd != ArgumentEnd && "Plural missing expression end");
586 ++ExprEnd;
587 }
588 if (EvalPluralExpr(ValNo, Argument, ExprEnd)) {
589 Argument = ExprEnd + 1;
John McCall8cb7a8a32010-01-14 20:11:39 +0000590 ExprEnd = ScanFormat(Argument, ArgumentEnd, '|');
John McCall43b61682010-10-14 01:55:31 +0000591
592 // Recursively format the result of the plural clause into the
593 // output string.
594 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000595 return;
596 }
John McCall8cb7a8a32010-01-14 20:11:39 +0000597 Argument = ScanFormat(Argument, ArgumentEnd - 1, '|') + 1;
Sebastian Redl15b02d22008-11-22 13:44:36 +0000598 }
599}
600
Alp Tokera231ad22014-01-06 12:54:18 +0000601/// \brief Returns the friendly description for a token kind that will appear
602/// without quotes in diagnostic messages. These strings may be translatable in
603/// future.
604static const char *getTokenDescForDiagnostic(tok::TokenKind Kind) {
Alp Tokerec543272013-12-24 09:48:30 +0000605 switch (Kind) {
606 case tok::identifier:
607 return "identifier";
608 default:
Craig Topperf1186c52014-05-08 06:41:40 +0000609 return nullptr;
Alp Tokerec543272013-12-24 09:48:30 +0000610 }
611}
Sebastian Redl15b02d22008-11-22 13:44:36 +0000612
Chris Lattner23be0672008-11-19 06:51:40 +0000613/// FormatDiagnostic - Format this diagnostic into a string, substituting the
614/// formal arguments into the %0 slots. The result is appended onto the Str
615/// array.
David Blaikieb5784322011-09-26 01:18:08 +0000616void Diagnostic::
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000617FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000618 if (!StoredDiagMessage.empty()) {
619 OutStr.append(StoredDiagMessage.begin(), StoredDiagMessage.end());
620 return;
621 }
622
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000623 StringRef Diag =
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000624 getDiags()->getDiagnosticIDs()->getDescription(getID());
Mike Stump11289f42009-09-09 15:08:12 +0000625
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000626 FormatDiagnostic(Diag.begin(), Diag.end(), OutStr);
John McCalle4d54322010-01-13 23:58:20 +0000627}
628
David Blaikieb5784322011-09-26 01:18:08 +0000629void Diagnostic::
John McCalle4d54322010-01-13 23:58:20 +0000630FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000631 SmallVectorImpl<char> &OutStr) const {
John McCalle4d54322010-01-13 23:58:20 +0000632
Chris Lattnerc243f292009-10-20 05:25:22 +0000633 /// FormattedArgs - Keep track of all of the arguments formatted by
634 /// ConvertArgToString and pass them into subsequent calls to
635 /// ConvertArgToString, allowing the implementation to avoid redundancies in
636 /// obvious cases.
David Blaikie9c902b52011-09-25 23:23:43 +0000637 SmallVector<DiagnosticsEngine::ArgumentValue, 8> FormattedArgs;
Chandler Carruthd5173952011-07-11 17:49:21 +0000638
639 /// QualTypeVals - Pass a vector of arrays so that QualType names can be
640 /// compared to see if more information is needed to be printed.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000641 SmallVector<intptr_t, 2> QualTypeVals;
Richard Trieu91844232012-06-26 18:18:47 +0000642 SmallVector<char, 64> Tree;
643
Chandler Carruthd5173952011-07-11 17:49:21 +0000644 for (unsigned i = 0, e = getNumArgs(); i < e; ++i)
David Blaikie9c902b52011-09-25 23:23:43 +0000645 if (getArgKind(i) == DiagnosticsEngine::ak_qualtype)
Chandler Carruthd5173952011-07-11 17:49:21 +0000646 QualTypeVals.push_back(getRawArg(i));
647
Chris Lattner23be0672008-11-19 06:51:40 +0000648 while (DiagStr != DiagEnd) {
649 if (DiagStr[0] != '%') {
650 // Append non-%0 substrings to Str if we have one.
651 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
652 OutStr.append(DiagStr, StrEnd);
653 DiagStr = StrEnd;
Chris Lattner2b786902008-11-21 07:50:02 +0000654 continue;
Jordan Rosea7d03842013-02-08 22:30:41 +0000655 } else if (isPunctuation(DiagStr[1])) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000656 OutStr.push_back(DiagStr[1]); // %% -> %.
Chris Lattner23be0672008-11-19 06:51:40 +0000657 DiagStr += 2;
Chris Lattner2b786902008-11-21 07:50:02 +0000658 continue;
659 }
Mike Stump11289f42009-09-09 15:08:12 +0000660
Chris Lattner2b786902008-11-21 07:50:02 +0000661 // Skip the %.
662 ++DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000663
Chris Lattner2b786902008-11-21 07:50:02 +0000664 // This must be a placeholder for a diagnostic argument. The format for a
665 // placeholder is one of "%0", "%modifier0", or "%modifier{arguments}0".
666 // The digit is a number from 0-9 indicating which argument this comes from.
667 // The modifier is a string of digits from the set [-a-z]+, arguments is a
668 // brace enclosed string.
Craig Topperf1186c52014-05-08 06:41:40 +0000669 const char *Modifier = nullptr, *Argument = nullptr;
Chris Lattner2b786902008-11-21 07:50:02 +0000670 unsigned ModifierLen = 0, ArgumentLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000671
Chris Lattner2b786902008-11-21 07:50:02 +0000672 // Check to see if we have a modifier. If so eat it.
Jordan Rosea7d03842013-02-08 22:30:41 +0000673 if (!isDigit(DiagStr[0])) {
Chris Lattner2b786902008-11-21 07:50:02 +0000674 Modifier = DiagStr;
675 while (DiagStr[0] == '-' ||
676 (DiagStr[0] >= 'a' && DiagStr[0] <= 'z'))
677 ++DiagStr;
678 ModifierLen = DiagStr-Modifier;
Chris Lattner23be0672008-11-19 06:51:40 +0000679
Chris Lattner2b786902008-11-21 07:50:02 +0000680 // If we have an argument, get it next.
681 if (DiagStr[0] == '{') {
682 ++DiagStr; // Skip {.
683 Argument = DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000684
John McCall8cb7a8a32010-01-14 20:11:39 +0000685 DiagStr = ScanFormat(DiagStr, DiagEnd, '}');
686 assert(DiagStr != DiagEnd && "Mismatched {}'s in diagnostic string!");
Chris Lattner2b786902008-11-21 07:50:02 +0000687 ArgumentLen = DiagStr-Argument;
688 ++DiagStr; // Skip }.
Chris Lattner23be0672008-11-19 06:51:40 +0000689 }
Chris Lattner2b786902008-11-21 07:50:02 +0000690 }
Mike Stump11289f42009-09-09 15:08:12 +0000691
Jordan Rosea7d03842013-02-08 22:30:41 +0000692 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic");
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000693 unsigned ArgNo = *DiagStr++ - '0';
Chris Lattner2b786902008-11-21 07:50:02 +0000694
Richard Trieu91844232012-06-26 18:18:47 +0000695 // Only used for type diffing.
696 unsigned ArgNo2 = ArgNo;
697
David Blaikie9c902b52011-09-25 23:23:43 +0000698 DiagnosticsEngine::ArgumentKind Kind = getArgKind(ArgNo);
Richard Trieu90c31f52013-01-30 20:04:31 +0000699 if (ModifierIs(Modifier, ModifierLen, "diff")) {
Jordan Rosea7d03842013-02-08 22:30:41 +0000700 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) &&
Richard Trieu91844232012-06-26 18:18:47 +0000701 "Invalid format for diff modifier");
702 ++DiagStr; // Comma.
703 ArgNo2 = *DiagStr++ - '0';
Richard Trieu90c31f52013-01-30 20:04:31 +0000704 DiagnosticsEngine::ArgumentKind Kind2 = getArgKind(ArgNo2);
705 if (Kind == DiagnosticsEngine::ak_qualtype &&
706 Kind2 == DiagnosticsEngine::ak_qualtype)
707 Kind = DiagnosticsEngine::ak_qualtype_pair;
708 else {
709 // %diff only supports QualTypes. For other kinds of arguments,
710 // use the default printing. For example, if the modifier is:
711 // "%diff{compare $ to $|other text}1,2"
712 // treat it as:
713 // "compare %1 to %2"
714 const char *Pipe = ScanFormat(Argument, Argument + ArgumentLen, '|');
715 const char *FirstDollar = ScanFormat(Argument, Pipe, '$');
716 const char *SecondDollar = ScanFormat(FirstDollar + 1, Pipe, '$');
Filipe Cabecinhased4a00c2013-01-30 22:03:24 +0000717 const char ArgStr1[] = { '%', static_cast<char>('0' + ArgNo) };
718 const char ArgStr2[] = { '%', static_cast<char>('0' + ArgNo2) };
Richard Trieu90c31f52013-01-30 20:04:31 +0000719 FormatDiagnostic(Argument, FirstDollar, OutStr);
720 FormatDiagnostic(ArgStr1, ArgStr1 + 2, OutStr);
721 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
722 FormatDiagnostic(ArgStr2, ArgStr2 + 2, OutStr);
723 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
724 continue;
725 }
Richard Trieu91844232012-06-26 18:18:47 +0000726 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000727
728 switch (Kind) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000729 // ---- STRINGS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000730 case DiagnosticsEngine::ak_std_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000731 const std::string &S = getArgStdStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000732 assert(ModifierLen == 0 && "No modifiers for strings yet");
733 OutStr.append(S.begin(), S.end());
734 break;
735 }
David Blaikie9c902b52011-09-25 23:23:43 +0000736 case DiagnosticsEngine::ak_c_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000737 const char *S = getArgCStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000738 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000739
740 // Don't crash if get passed a null pointer by accident.
741 if (!S)
742 S = "(null)";
Mike Stump11289f42009-09-09 15:08:12 +0000743
Chris Lattner2b786902008-11-21 07:50:02 +0000744 OutStr.append(S, S + strlen(S));
745 break;
746 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000747 // ---- INTEGERS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000748 case DiagnosticsEngine::ak_sint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000749 int Val = getArgSInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000750
Chris Lattner2b786902008-11-21 07:50:02 +0000751 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCall43b61682010-10-14 01:55:31 +0000752 HandleSelectModifier(*this, (unsigned)Val, Argument, ArgumentLen,
753 OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000754 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
755 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000756 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000757 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
758 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000759 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
760 HandleOrdinalModifier((unsigned)Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000761 } else {
762 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000763 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000764 }
Chris Lattner2b786902008-11-21 07:50:02 +0000765 break;
766 }
David Blaikie9c902b52011-09-25 23:23:43 +0000767 case DiagnosticsEngine::ak_uint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000768 unsigned Val = getArgUInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000769
Chris Lattner2b786902008-11-21 07:50:02 +0000770 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCalle4d54322010-01-13 23:58:20 +0000771 HandleSelectModifier(*this, Val, Argument, ArgumentLen, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000772 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
773 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000774 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000775 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
776 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000777 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
778 HandleOrdinalModifier(Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000779 } else {
780 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000781 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000782 }
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000783 break;
Chris Lattner2b786902008-11-21 07:50:02 +0000784 }
Alp Tokerec543272013-12-24 09:48:30 +0000785 // ---- TOKEN SPELLINGS ----
786 case DiagnosticsEngine::ak_tokenkind: {
787 tok::TokenKind Kind = static_cast<tok::TokenKind>(getRawArg(ArgNo));
788 assert(ModifierLen == 0 && "No modifiers for token kinds yet");
789
790 llvm::raw_svector_ostream Out(OutStr);
Alp Tokera231ad22014-01-06 12:54:18 +0000791 if (const char *S = tok::getPunctuatorSpelling(Kind))
792 // Quoted token spelling for punctuators.
793 Out << '\'' << S << '\'';
794 else if (const char *S = tok::getKeywordSpelling(Kind))
795 // Unquoted token spelling for keywords.
796 Out << S;
797 else if (const char *S = getTokenDescForDiagnostic(Kind))
Alp Tokerec543272013-12-24 09:48:30 +0000798 // Unquoted translatable token name.
799 Out << S;
Alp Tokerec543272013-12-24 09:48:30 +0000800 else if (const char *S = tok::getTokenName(Kind))
801 // Debug name, shouldn't appear in user-facing diagnostics.
802 Out << '<' << S << '>';
803 else
804 Out << "(null)";
805 break;
806 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000807 // ---- NAMES and TYPES ----
David Blaikie9c902b52011-09-25 23:23:43 +0000808 case DiagnosticsEngine::ak_identifierinfo: {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000809 const IdentifierInfo *II = getArgIdentifier(ArgNo);
810 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000811
812 // Don't crash if get passed a null pointer by accident.
813 if (!II) {
814 const char *S = "(null)";
815 OutStr.append(S, S + strlen(S));
816 continue;
817 }
818
Daniel Dunbar07d07852009-10-18 21:17:35 +0000819 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\'';
Chris Lattnere3d20d92008-11-23 21:45:46 +0000820 break;
821 }
David Blaikie9c902b52011-09-25 23:23:43 +0000822 case DiagnosticsEngine::ak_qualtype:
823 case DiagnosticsEngine::ak_declarationname:
824 case DiagnosticsEngine::ak_nameddecl:
825 case DiagnosticsEngine::ak_nestednamespec:
826 case DiagnosticsEngine::ak_declcontext:
Aaron Ballman3e424b52013-12-26 18:30:57 +0000827 case DiagnosticsEngine::ak_attr:
Chris Lattnerc243f292009-10-20 05:25:22 +0000828 getDiags()->ConvertArgToString(Kind, getRawArg(ArgNo),
Craig Topper3aa4fb32014-06-12 05:32:35 +0000829 StringRef(Modifier, ModifierLen),
830 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000831 FormattedArgs,
Chandler Carruthd5173952011-07-11 17:49:21 +0000832 OutStr, QualTypeVals);
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000833 break;
Richard Trieu91844232012-06-26 18:18:47 +0000834 case DiagnosticsEngine::ak_qualtype_pair:
835 // Create a struct with all the info needed for printing.
836 TemplateDiffTypes TDT;
837 TDT.FromType = getRawArg(ArgNo);
838 TDT.ToType = getRawArg(ArgNo2);
839 TDT.ElideType = getDiags()->ElideType;
840 TDT.ShowColors = getDiags()->ShowColors;
Richard Trieu50f5f462012-07-10 01:46:04 +0000841 TDT.TemplateDiffUsed = false;
Richard Trieu91844232012-06-26 18:18:47 +0000842 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
843
Richard Trieuc6058442012-06-29 21:12:16 +0000844 const char *ArgumentEnd = Argument + ArgumentLen;
845 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|');
846
Richard Trieua4056002012-07-13 21:18:32 +0000847 // Print the tree. If this diagnostic already has a tree, skip the
848 // second tree.
849 if (getDiags()->PrintTemplateTree && Tree.empty()) {
Richard Trieu91844232012-06-26 18:18:47 +0000850 TDT.PrintFromType = true;
851 TDT.PrintTree = true;
852 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000853 StringRef(Modifier, ModifierLen),
854 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000855 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000856 Tree, QualTypeVals);
857 // If there is no tree information, fall back to regular printing.
Richard Trieuc6058442012-06-29 21:12:16 +0000858 if (!Tree.empty()) {
859 FormatDiagnostic(Pipe + 1, ArgumentEnd, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000860 break;
Richard Trieuc6058442012-06-29 21:12:16 +0000861 }
Richard Trieu91844232012-06-26 18:18:47 +0000862 }
863
864 // Non-tree printing, also the fall-back when tree printing fails.
865 // The fall-back is triggered when the types compared are not templates.
Richard Trieuc6058442012-06-29 21:12:16 +0000866 const char *FirstDollar = ScanFormat(Argument, ArgumentEnd, '$');
867 const char *SecondDollar = ScanFormat(FirstDollar + 1, ArgumentEnd, '$');
Richard Trieu91844232012-06-26 18:18:47 +0000868
869 // Append before text
Richard Trieuc6058442012-06-29 21:12:16 +0000870 FormatDiagnostic(Argument, FirstDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000871
872 // Append first type
873 TDT.PrintTree = false;
874 TDT.PrintFromType = true;
875 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000876 StringRef(Modifier, ModifierLen),
877 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000878 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000879 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000880 if (!TDT.TemplateDiffUsed)
881 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
882 TDT.FromType));
883
Richard Trieu91844232012-06-26 18:18:47 +0000884 // Append middle text
Richard Trieuc6058442012-06-29 21:12:16 +0000885 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000886
887 // Append second type
888 TDT.PrintFromType = false;
889 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000890 StringRef(Modifier, ModifierLen),
891 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000892 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000893 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000894 if (!TDT.TemplateDiffUsed)
895 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
896 TDT.ToType));
897
Richard Trieu91844232012-06-26 18:18:47 +0000898 // Append end text
Richard Trieuc6058442012-06-29 21:12:16 +0000899 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000900 break;
Nico Weber4c311642008-08-10 19:59:06 +0000901 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000902
903 // Remember this argument info for subsequent formatting operations. Turn
904 // std::strings into a null terminated string to make it be the same case as
905 // all the other ones.
Richard Trieu91844232012-06-26 18:18:47 +0000906 if (Kind == DiagnosticsEngine::ak_qualtype_pair)
907 continue;
908 else if (Kind != DiagnosticsEngine::ak_std_string)
Chris Lattnerc243f292009-10-20 05:25:22 +0000909 FormattedArgs.push_back(std::make_pair(Kind, getRawArg(ArgNo)));
910 else
David Blaikie9c902b52011-09-25 23:23:43 +0000911 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_c_string,
Chris Lattnerc243f292009-10-20 05:25:22 +0000912 (intptr_t)getArgStdStr(ArgNo).c_str()));
913
Nico Weber4c311642008-08-10 19:59:06 +0000914 }
Richard Trieu91844232012-06-26 18:18:47 +0000915
916 // Append the type tree to the end of the diagnostics.
917 OutStr.append(Tree.begin(), Tree.end());
Nico Weber4c311642008-08-10 19:59:06 +0000918}
Ted Kremenekea06ec12009-01-23 20:28:53 +0000919
Douglas Gregor33cdd812010-02-18 18:08:43 +0000920StoredDiagnostic::StoredDiagnostic() { }
921
David Blaikie9c902b52011-09-25 23:23:43 +0000922StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000923 StringRef Message)
Benjamin Kramer929bd682010-11-19 17:36:51 +0000924 : ID(ID), Level(Level), Loc(), Message(Message) { }
Douglas Gregor33cdd812010-02-18 18:08:43 +0000925
David Blaikie9c902b52011-09-25 23:23:43 +0000926StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level,
David Blaikieb5784322011-09-26 01:18:08 +0000927 const Diagnostic &Info)
Douglas Gregora750e8e2010-11-19 16:18:16 +0000928 : ID(Info.getID()), Level(Level)
929{
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000930 assert((Info.getLocation().isInvalid() || Info.hasSourceManager()) &&
931 "Valid source location without setting a source manager for diagnostic");
932 if (Info.getLocation().isValid())
933 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000934 SmallString<64> Message;
Douglas Gregor33cdd812010-02-18 18:08:43 +0000935 Info.FormatDiagnostic(Message);
936 this->Message.assign(Message.begin(), Message.end());
937
938 Ranges.reserve(Info.getNumRanges());
939 for (unsigned I = 0, N = Info.getNumRanges(); I != N; ++I)
940 Ranges.push_back(Info.getRange(I));
941
Douglas Gregora771f462010-03-31 17:46:05 +0000942 FixIts.reserve(Info.getNumFixItHints());
943 for (unsigned I = 0, N = Info.getNumFixItHints(); I != N; ++I)
944 FixIts.push_back(Info.getFixItHint(I));
Douglas Gregor33cdd812010-02-18 18:08:43 +0000945}
946
David Blaikie9c902b52011-09-25 23:23:43 +0000947StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000948 StringRef Message, FullSourceLoc Loc,
Chris Lattner54b16772011-07-23 17:14:25 +0000949 ArrayRef<CharSourceRange> Ranges,
Aaron Ballman234ebd72013-02-24 19:08:10 +0000950 ArrayRef<FixItHint> FixIts)
951 : ID(ID), Level(Level), Loc(Loc), Message(Message),
952 Ranges(Ranges.begin(), Ranges.end()), FixIts(FixIts.begin(), FixIts.end())
Douglas Gregor925296b2011-07-19 16:10:42 +0000953{
Douglas Gregor925296b2011-07-19 16:10:42 +0000954}
955
Douglas Gregor33cdd812010-02-18 18:08:43 +0000956StoredDiagnostic::~StoredDiagnostic() { }
957
Ted Kremenekea06ec12009-01-23 20:28:53 +0000958/// IncludeInDiagnosticCounts - This method (whose default implementation
959/// returns true) indicates whether the diagnostics handled by this
David Blaikiee2eefae2011-09-25 23:39:51 +0000960/// DiagnosticConsumer should be included in the number of diagnostics
David Blaikie9c902b52011-09-25 23:23:43 +0000961/// reported by DiagnosticsEngine.
David Blaikiee2eefae2011-09-25 23:39:51 +0000962bool DiagnosticConsumer::IncludeInDiagnosticCounts() const { return true; }
Douglas Gregor89336232010-03-29 23:34:08 +0000963
David Blaikie68e081d2011-12-20 02:48:34 +0000964void IgnoringDiagConsumer::anchor() { }
965
Douglas Gregor6b930962013-05-03 22:58:43 +0000966ForwardingDiagnosticConsumer::~ForwardingDiagnosticConsumer() {}
967
968void ForwardingDiagnosticConsumer::HandleDiagnostic(
969 DiagnosticsEngine::Level DiagLevel,
970 const Diagnostic &Info) {
971 Target.HandleDiagnostic(DiagLevel, Info);
972}
973
974void ForwardingDiagnosticConsumer::clear() {
975 DiagnosticConsumer::clear();
976 Target.clear();
977}
978
979bool ForwardingDiagnosticConsumer::IncludeInDiagnosticCounts() const {
980 return Target.IncludeInDiagnosticCounts();
981}
982
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000983PartialDiagnostic::StorageAllocator::StorageAllocator() {
Douglas Gregor89336232010-03-29 23:34:08 +0000984 for (unsigned I = 0; I != NumCached; ++I)
985 FreeList[I] = Cached + I;
986 NumFreeListEntries = NumCached;
987}
988
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000989PartialDiagnostic::StorageAllocator::~StorageAllocator() {
Chad Rosier849a67b2012-02-07 23:24:49 +0000990 // Don't assert if we are in a CrashRecovery context, as this invariant may
991 // be invalidated during a crash.
992 assert((NumFreeListEntries == NumCached ||
993 llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
994 "A partial is on the lamb");
Douglas Gregor89336232010-03-29 23:34:08 +0000995}