blob: 7f5a15dab6b2982ebfed3548ba300c1cf31fa915 [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"
Richard Trieub3b8bb02015-01-08 01:27:03 +000022#include "llvm/Support/Locale.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000023#include "llvm/Support/raw_ostream.h"
Ted Kremenek84de4a12011-03-21 18:40:07 +000024
Chris Lattner22eb9722006-06-18 05:43:12 +000025using namespace clang;
26
David Blaikie9c902b52011-09-25 23:23:43 +000027static void DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT,
Craig Topper3aa4fb32014-06-12 05:32:35 +000028 StringRef Modifier, StringRef Argument,
Craig Toppere4753502014-06-12 05:32:27 +000029 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
30 SmallVectorImpl<char> &Output,
31 void *Cookie,
32 ArrayRef<intptr_t> QualTypeVals) {
33 StringRef Str = "<can't format argument>";
34 Output.append(Str.begin(), Str.end());
Chris Lattner6a2ed6f2008-11-23 09:13:29 +000035}
36
David Blaikie9c902b52011-09-25 23:23:43 +000037DiagnosticsEngine::DiagnosticsEngine(
Alexander Kornienko41c247a2014-11-17 23:46:02 +000038 const IntrusiveRefCntPtr<DiagnosticIDs> &diags, DiagnosticOptions *DiagOpts,
39 DiagnosticConsumer *client, bool ShouldOwnClient)
40 : Diags(diags), DiagOpts(DiagOpts), Client(nullptr), SourceMgr(nullptr) {
41 setClient(client, ShouldOwnClient);
Chris Lattner63ecc502008-11-23 09:21:17 +000042 ArgToStringFn = DummyArgToStringFn;
Craig Topperf1186c52014-05-08 06:41:40 +000043 ArgToStringCookie = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +000044
Douglas Gregor0e119552010-07-31 00:40:00 +000045 AllExtensionsSilenced = 0;
46 IgnoreAllWarnings = false;
47 WarningsAsErrors = false;
Ted Kremenekfbbdced2011-08-18 01:12:56 +000048 EnableAllWarnings = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000049 ErrorsAsFatal = false;
50 SuppressSystemWarnings = false;
51 SuppressAllDiagnostics = false;
Richard Trieu91844232012-06-26 18:18:47 +000052 ElideType = true;
53 PrintTemplateTree = false;
54 ShowColors = false;
Douglas Gregor0e119552010-07-31 00:40:00 +000055 ShowOverloads = Ovl_All;
Alp Tokerac4e8e52014-06-22 21:58:33 +000056 ExtBehavior = diag::Severity::Ignored;
Douglas Gregor0e119552010-07-31 00:40:00 +000057
58 ErrorLimit = 0;
59 TemplateBacktraceLimit = 0;
Richard Smithf6f003a2011-12-16 19:06:07 +000060 ConstexprBacktraceLimit = 0;
Douglas Gregor0e119552010-07-31 00:40:00 +000061
Douglas Gregoraa21cc42010-07-19 21:46:24 +000062 Reset();
Chris Lattnerae411572006-07-05 00:55:08 +000063}
64
Reid Klecknerdccbabf2014-12-17 20:23:11 +000065DiagnosticsEngine::~DiagnosticsEngine() {
66 // If we own the diagnostic client, destroy it first so that it can access the
67 // engine from its destructor.
68 setClient(nullptr);
69}
70
David Blaikiee2eefae2011-09-25 23:39:51 +000071void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
David Blaikie9c902b52011-09-25 23:23:43 +000072 bool ShouldOwnClient) {
Alexander Kornienko41c247a2014-11-17 23:46:02 +000073 Owner.reset(ShouldOwnClient ? client : nullptr);
Douglas Gregor7a964ad2011-01-31 22:04:05 +000074 Client = client;
Douglas Gregor7a964ad2011-01-31 22:04:05 +000075}
Chris Lattnerfb42a182009-07-12 21:18:45 +000076
David Blaikie9c902b52011-09-25 23:23:43 +000077void DiagnosticsEngine::pushMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000078 DiagStateOnPushStack.push_back(GetCurDiagState());
Chris Lattnerfb42a182009-07-12 21:18:45 +000079}
80
David Blaikie9c902b52011-09-25 23:23:43 +000081bool DiagnosticsEngine::popMappings(SourceLocation Loc) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000082 if (DiagStateOnPushStack.empty())
Chris Lattnerfb42a182009-07-12 21:18:45 +000083 return false;
84
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +000085 if (DiagStateOnPushStack.back() != GetCurDiagState()) {
86 // State changed at some point between push/pop.
87 PushDiagStatePoint(DiagStateOnPushStack.back(), Loc);
88 }
89 DiagStateOnPushStack.pop_back();
Chris Lattnerfb42a182009-07-12 21:18:45 +000090 return true;
91}
92
David Blaikie9c902b52011-09-25 23:23:43 +000093void DiagnosticsEngine::Reset() {
Douglas Gregoraa21cc42010-07-19 21:46:24 +000094 ErrorOccurred = false;
DeLesley Hutchins8ecd4912012-12-07 22:53:48 +000095 UncompilableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +000096 FatalErrorOccurred = false;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +000097 UnrecoverableErrorOccurred = false;
Douglas Gregoraa21cc42010-07-19 21:46:24 +000098
99 NumWarnings = 0;
100 NumErrors = 0;
Argyrios Kyrtzidis1fa8b4b2011-07-29 01:25:44 +0000101 TrapNumErrorsOccurred = 0;
102 TrapNumUnrecoverableErrorsOccurred = 0;
Douglas Gregor8a60bbe2011-07-06 17:40:26 +0000103
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000104 CurDiagID = ~0U;
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000105 LastDiagLevel = DiagnosticIDs::Ignored;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000106 DelayedDiagID = 0;
Argyrios Kyrtzidisbbbeea12011-03-26 18:58:17 +0000107
108 // Clear state related to #pragma diagnostic.
109 DiagStates.clear();
110 DiagStatePoints.clear();
111 DiagStateOnPushStack.clear();
112
113 // Create a DiagState and DiagStatePoint representing diagnostic changes
114 // through command-line.
Benjamin Kramer3204b152015-05-29 19:42:19 +0000115 DiagStates.emplace_back();
Richard Smithf995f2c2012-08-14 04:19:29 +0000116 DiagStatePoints.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000117}
Chris Lattner22eb9722006-06-18 05:43:12 +0000118
David Blaikie9c902b52011-09-25 23:23:43 +0000119void DiagnosticsEngine::SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1,
Chad Rosier849a67b2012-02-07 23:24:49 +0000120 StringRef Arg2) {
Douglas Gregor85795312010-03-22 15:10:57 +0000121 if (DelayedDiagID)
122 return;
123
124 DelayedDiagID = DiagID;
Douglas Gregor96380982010-03-22 15:47:45 +0000125 DelayedDiagArg1 = Arg1.str();
126 DelayedDiagArg2 = Arg2.str();
Douglas Gregor85795312010-03-22 15:10:57 +0000127}
128
David Blaikie9c902b52011-09-25 23:23:43 +0000129void DiagnosticsEngine::ReportDelayed() {
Douglas Gregor85795312010-03-22 15:10:57 +0000130 Report(DelayedDiagID) << DelayedDiagArg1 << DelayedDiagArg2;
131 DelayedDiagID = 0;
132 DelayedDiagArg1.clear();
133 DelayedDiagArg2.clear();
134}
135
David Blaikie9c902b52011-09-25 23:23:43 +0000136DiagnosticsEngine::DiagStatePointsTy::iterator
137DiagnosticsEngine::GetDiagStatePointForLoc(SourceLocation L) const {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000138 assert(!DiagStatePoints.empty());
139 assert(DiagStatePoints.front().Loc.isInvalid() &&
140 "Should have created a DiagStatePoint for command-line");
141
Richard Smith99eff012012-08-17 00:55:32 +0000142 if (!SourceMgr)
143 return DiagStatePoints.end() - 1;
144
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000145 FullSourceLoc Loc(L, *SourceMgr);
146 if (Loc.isInvalid())
147 return DiagStatePoints.end() - 1;
148
149 DiagStatePointsTy::iterator Pos = DiagStatePoints.end();
150 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
151 if (LastStateChangePos.isValid() &&
152 Loc.isBeforeInTranslationUnitThan(LastStateChangePos))
153 Pos = std::upper_bound(DiagStatePoints.begin(), DiagStatePoints.end(),
Craig Topperf1186c52014-05-08 06:41:40 +0000154 DiagStatePoint(nullptr, Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000155 --Pos;
156 return Pos;
157}
158
Alp Tokerd576e002014-06-12 11:13:52 +0000159void DiagnosticsEngine::setSeverity(diag::kind Diag, diag::Severity Map,
160 SourceLocation L) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000161 assert(Diag < diag::DIAG_UPPER_LIMIT &&
162 "Can only map builtin diagnostics");
163 assert((Diags->isBuiltinWarningOrExtension(Diag) ||
Alp Toker46df1c02014-06-12 10:15:20 +0000164 (Map == diag::Severity::Fatal || Map == diag::Severity::Error)) &&
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000165 "Cannot map errors into warnings!");
166 assert(!DiagStatePoints.empty());
Richard Smith8a0527d2012-08-14 22:37:22 +0000167 assert((L.isInvalid() || SourceMgr) && "No SourceMgr for valid location");
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000168
Richard Smith8a0527d2012-08-14 22:37:22 +0000169 FullSourceLoc Loc = SourceMgr? FullSourceLoc(L, *SourceMgr) : FullSourceLoc();
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000170 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
Chad Rosierd1956e42012-02-03 01:49:51 +0000171 // Don't allow a mapping to a warning override an error/fatal mapping.
Alp Toker46df1c02014-06-12 10:15:20 +0000172 if (Map == diag::Severity::Warning) {
Alp Tokerc726c362014-06-10 09:31:37 +0000173 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
Alp Toker46df1c02014-06-12 10:15:20 +0000174 if (Info.getSeverity() == diag::Severity::Error ||
175 Info.getSeverity() == diag::Severity::Fatal)
Alp Tokerc726c362014-06-10 09:31:37 +0000176 Map = Info.getSeverity();
Chad Rosierd1956e42012-02-03 01:49:51 +0000177 }
Alp Tokerc726c362014-06-10 09:31:37 +0000178 DiagnosticMapping Mapping = makeUserMapping(Map, L);
Daniel Dunbar2fba0972011-10-04 21:17:24 +0000179
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000180 // Common case; setting all the diagnostics of a group in one place.
181 if (Loc.isInvalid() || Loc == LastStateChangePos) {
Alp Tokerc726c362014-06-10 09:31:37 +0000182 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000183 return;
184 }
185
186 // Another common case; modifying diagnostic state in a source location
187 // after the previous one.
188 if ((Loc.isValid() && LastStateChangePos.isInvalid()) ||
189 LastStateChangePos.isBeforeInTranslationUnitThan(Loc)) {
Chris Lattner57540c52011-04-15 05:22:18 +0000190 // A diagnostic pragma occurred, create a new DiagState initialized with
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000191 // the current one and a new DiagStatePoint to record at which location
192 // the new state became active.
193 DiagStates.push_back(*GetCurDiagState());
194 PushDiagStatePoint(&DiagStates.back(), Loc);
Alp Tokerc726c362014-06-10 09:31:37 +0000195 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000196 return;
197 }
198
199 // We allow setting the diagnostic state in random source order for
200 // completeness but it should not be actually happening in normal practice.
201
202 DiagStatePointsTy::iterator Pos = GetDiagStatePointForLoc(Loc);
203 assert(Pos != DiagStatePoints.end());
204
205 // Update all diagnostic states that are active after the given location.
206 for (DiagStatePointsTy::iterator
207 I = Pos+1, E = DiagStatePoints.end(); I != E; ++I) {
Alp Tokerc726c362014-06-10 09:31:37 +0000208 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000209 }
210
211 // If the location corresponds to an existing point, just update its state.
212 if (Pos->Loc == Loc) {
Alp Tokerc726c362014-06-10 09:31:37 +0000213 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000214 return;
215 }
216
217 // Create a new state/point and fit it into the vector of DiagStatePoints
218 // so that the vector is always ordered according to location.
Alp Toker14c8aff2014-01-26 08:12:32 +0000219 assert(Pos->Loc.isBeforeInTranslationUnitThan(Loc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000220 DiagStates.push_back(*Pos->State);
221 DiagState *NewState = &DiagStates.back();
Alp Tokerc726c362014-06-10 09:31:37 +0000222 GetCurDiagState()->setMapping(Diag, Mapping);
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000223 DiagStatePoints.insert(Pos+1, DiagStatePoint(NewState,
224 FullSourceLoc(Loc, *SourceMgr)));
225}
226
Richard Smith3be1cb22014-08-07 00:24:21 +0000227bool DiagnosticsEngine::setSeverityForGroup(diag::Flavor Flavor,
228 StringRef Group, diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000229 SourceLocation Loc) {
Daniel Dunbard908c122011-09-29 01:47:16 +0000230 // Get the diagnostics in this group.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000231 SmallVector<diag::kind, 256> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000232 if (Diags->getDiagnosticsInGroup(Flavor, Group, GroupDiags))
Daniel Dunbard908c122011-09-29 01:47:16 +0000233 return true;
234
235 // Set the mapping.
Hans Wennborgeb7cd662014-08-11 16:05:54 +0000236 for (diag::kind Diag : GroupDiags)
237 setSeverity(Diag, Map, Loc);
Daniel Dunbard908c122011-09-29 01:47:16 +0000238
239 return false;
240}
241
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000242bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group,
243 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000244 // If we are enabling this feature, just set the diagnostic mappings to map to
245 // errors.
246 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000247 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
248 diag::Severity::Error);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000249
250 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
251 // potentially downgrade anything already mapped to be a warning.
252
253 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000254 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000255 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
256 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000257 return true;
258
259 // Perform the mapping change.
260 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000261 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000262
Alp Toker46df1c02014-06-12 10:15:20 +0000263 if (Info.getSeverity() == diag::Severity::Error ||
264 Info.getSeverity() == diag::Severity::Fatal)
265 Info.setSeverity(diag::Severity::Warning);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000266
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000267 Info.setNoWarningAsError(true);
268 }
269
270 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000271}
272
273bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group,
274 bool Enabled) {
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000275 // If we are enabling this feature, just set the diagnostic mappings to map to
276 // fatal errors.
277 if (Enabled)
Richard Smith3be1cb22014-08-07 00:24:21 +0000278 return setSeverityForGroup(diag::Flavor::WarningOrError, Group,
279 diag::Severity::Fatal);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000280
281 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
282 // potentially downgrade anything already mapped to be an error.
283
284 // Get the diagnostics in this group.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000285 SmallVector<diag::kind, 8> GroupDiags;
Richard Smith3be1cb22014-08-07 00:24:21 +0000286 if (Diags->getDiagnosticsInGroup(diag::Flavor::WarningOrError, Group,
287 GroupDiags))
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000288 return true;
289
290 // Perform the mapping change.
291 for (unsigned i = 0, e = GroupDiags.size(); i != e; ++i) {
Alp Tokerc726c362014-06-10 09:31:37 +0000292 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000293
Alp Toker46df1c02014-06-12 10:15:20 +0000294 if (Info.getSeverity() == diag::Severity::Fatal)
295 Info.setSeverity(diag::Severity::Error);
Daniel Dunbar58d0af62011-09-29 01:58:05 +0000296
Daniel Dunbarfffcf212011-09-29 01:52:06 +0000297 Info.setNoErrorAsFatal(true);
298 }
299
300 return false;
Daniel Dunbarc2e5ca62011-09-29 00:53:47 +0000301}
302
Richard Smith3be1cb22014-08-07 00:24:21 +0000303void DiagnosticsEngine::setSeverityForAll(diag::Flavor Flavor,
304 diag::Severity Map,
Alp Tokerd576e002014-06-12 11:13:52 +0000305 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;
Richard Smith3be1cb22014-08-07 00:24:21 +0000308 Diags->getAllDiagnostics(Flavor, AllDiags);
Argyrios Kyrtzidis9ffada92012-01-27 06:15:43 +0000309
310 // Set the mapping.
311 for (unsigned i = 0, e = AllDiags.size(); i != e; ++i)
312 if (Diags->isBuiltinWarningOrExtension(AllDiags[i]))
Alp Tokerd576e002014-06-12 11:13:52 +0000313 setSeverity(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();
Benjamin Kramerf367dd92015-06-12 15:31:50 +0000324 DiagRanges.append(storedDiag.range_begin(), storedDiag.range_end());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000325
Alexander Kornienkod3b4e082014-05-22 19:56:11 +0000326 DiagFixItHints.clear();
Benjamin Kramerf367dd92015-06-12 15:31:50 +0000327 DiagFixItHints.append(storedDiag.fixit_begin(), storedDiag.fixit_end());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000328
David Blaikiee2eefae2011-09-25 23:39:51 +0000329 assert(Client && "DiagnosticConsumer not set!");
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000330 Level DiagLevel = storedDiag.getLevel();
David Blaikieb5784322011-09-26 01:18:08 +0000331 Diagnostic Info(this, storedDiag.getMessage());
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000332 Client->HandleDiagnostic(DiagLevel, Info);
333 if (Client->IncludeInDiagnosticCounts()) {
David Blaikie9c902b52011-09-25 23:23:43 +0000334 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000335 ++NumWarnings;
336 }
337
338 CurDiagID = ~0U;
339}
340
Jordan Rose6f524ac2012-07-11 16:50:36 +0000341bool DiagnosticsEngine::EmitCurrentDiagnostic(bool Force) {
342 assert(getClient() && "DiagnosticClient not set!");
343
344 bool Emitted;
345 if (Force) {
346 Diagnostic Info(this);
347
348 // Figure out the diagnostic level of this message.
349 DiagnosticIDs::Level DiagLevel
350 = Diags->getDiagnosticLevel(Info.getID(), Info.getLocation(), *this);
351
352 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
353 if (Emitted) {
354 // Emit the diagnostic regardless of suppression level.
355 Diags->EmitDiag(*this, DiagLevel);
356 }
357 } else {
358 // Process the diagnostic, sending the accumulated information to the
359 // DiagnosticConsumer.
360 Emitted = ProcessDiag();
361 }
Douglas Gregor85795312010-03-22 15:10:57 +0000362
363 // Clear out the current diagnostic object.
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000364 unsigned DiagID = CurDiagID;
365 Clear();
Douglas Gregor85795312010-03-22 15:10:57 +0000366
367 // If there was a delayed diagnostic, emit it now.
Jordan Rose6f524ac2012-07-11 16:50:36 +0000368 if (!Force && DelayedDiagID && DelayedDiagID != DiagID)
Daniel Dunbarc7c00892012-03-13 21:02:14 +0000369 ReportDelayed();
Douglas Gregor85795312010-03-22 15:10:57 +0000370
371 return Emitted;
372}
373
Nico Weber4c311642008-08-10 19:59:06 +0000374
David Blaikiee2eefae2011-09-25 23:39:51 +0000375DiagnosticConsumer::~DiagnosticConsumer() {}
Nico Weber4c311642008-08-10 19:59:06 +0000376
David Blaikiee2eefae2011-09-25 23:39:51 +0000377void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
David Blaikieb5784322011-09-26 01:18:08 +0000378 const Diagnostic &Info) {
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000379 if (!IncludeInDiagnosticCounts())
380 return;
381
David Blaikie9c902b52011-09-25 23:23:43 +0000382 if (DiagLevel == DiagnosticsEngine::Warning)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000383 ++NumWarnings;
David Blaikie9c902b52011-09-25 23:23:43 +0000384 else if (DiagLevel >= DiagnosticsEngine::Error)
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000385 ++NumErrors;
386}
Chris Lattner23be0672008-11-19 06:51:40 +0000387
Chris Lattner2b786902008-11-21 07:50:02 +0000388/// ModifierIs - Return true if the specified modifier matches specified string.
389template <std::size_t StrLen>
390static bool ModifierIs(const char *Modifier, unsigned ModifierLen,
391 const char (&Str)[StrLen]) {
392 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
393}
394
John McCall8cb7a8a32010-01-14 20:11:39 +0000395/// ScanForward - Scans forward, looking for the given character, skipping
396/// nested clauses and escaped characters.
397static const char *ScanFormat(const char *I, const char *E, char Target) {
398 unsigned Depth = 0;
399
400 for ( ; I != E; ++I) {
401 if (Depth == 0 && *I == Target) return I;
402 if (Depth != 0 && *I == '}') Depth--;
403
404 if (*I == '%') {
405 I++;
406 if (I == E) break;
407
408 // Escaped characters get implicitly skipped here.
409
410 // Format specifier.
Jordan Rosea7d03842013-02-08 22:30:41 +0000411 if (!isDigit(*I) && !isPunctuation(*I)) {
412 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ;
John McCall8cb7a8a32010-01-14 20:11:39 +0000413 if (I == E) break;
414 if (*I == '{')
415 Depth++;
416 }
417 }
418 }
419 return E;
420}
421
Chris Lattner2b786902008-11-21 07:50:02 +0000422/// HandleSelectModifier - Handle the integer 'select' modifier. This is used
423/// like this: %select{foo|bar|baz}2. This means that the integer argument
424/// "%2" has a value from 0-2. If the value is 0, the diagnostic prints 'foo'.
425/// If the value is 1, it prints 'bar'. If it has the value 2, it prints 'baz'.
426/// This is very useful for certain classes of variant diagnostics.
David Blaikieb5784322011-09-26 01:18:08 +0000427static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo,
Chris Lattner2b786902008-11-21 07:50:02 +0000428 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000429 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000430 const char *ArgumentEnd = Argument+ArgumentLen;
Mike Stump11289f42009-09-09 15:08:12 +0000431
Chris Lattner2b786902008-11-21 07:50:02 +0000432 // Skip over 'ValNo' |'s.
433 while (ValNo) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000434 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
Chris Lattner2b786902008-11-21 07:50:02 +0000435 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
436 " larger than the number of options in the diagnostic string!");
437 Argument = NextVal+1; // Skip this string.
438 --ValNo;
439 }
Mike Stump11289f42009-09-09 15:08:12 +0000440
Chris Lattner2b786902008-11-21 07:50:02 +0000441 // Get the end of the value. This is either the } or the |.
John McCall8cb7a8a32010-01-14 20:11:39 +0000442 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
John McCalle4d54322010-01-13 23:58:20 +0000443
444 // Recursively format the result of the select clause into the output string.
445 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000446}
447
448/// HandleIntegerSModifier - Handle the integer 's' modifier. This adds the
449/// letter 's' to the string if the value is not 1. This is used in cases like
450/// this: "you idiot, you have %4 parameter%s4!".
451static void HandleIntegerSModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000452 SmallVectorImpl<char> &OutStr) {
Chris Lattner2b786902008-11-21 07:50:02 +0000453 if (ValNo != 1)
454 OutStr.push_back('s');
455}
456
John McCall9015cde2010-01-14 00:50:32 +0000457/// HandleOrdinalModifier - Handle the integer 'ord' modifier. This
458/// prints the ordinal form of the given integer, with 1 corresponding
459/// to the first ordinal. Currently this is hard-coded to use the
460/// English form.
461static void HandleOrdinalModifier(unsigned ValNo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000462 SmallVectorImpl<char> &OutStr) {
John McCall9015cde2010-01-14 00:50:32 +0000463 assert(ValNo != 0 && "ValNo must be strictly positive!");
464
465 llvm::raw_svector_ostream Out(OutStr);
466
467 // We could use text forms for the first N ordinals, but the numeric
468 // forms are actually nicer in diagnostics because they stand out.
Jordan Rosec102b352012-09-22 01:24:42 +0000469 Out << ValNo << llvm::getOrdinalSuffix(ValNo);
John McCall9015cde2010-01-14 00:50:32 +0000470}
471
Chris Lattner2b786902008-11-21 07:50:02 +0000472
Sebastian Redl15b02d22008-11-22 13:44:36 +0000473/// PluralNumber - Parse an unsigned integer and advance Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000474static unsigned PluralNumber(const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000475 // Programming 101: Parse a decimal number :-)
476 unsigned Val = 0;
477 while (Start != End && *Start >= '0' && *Start <= '9') {
478 Val *= 10;
479 Val += *Start - '0';
480 ++Start;
481 }
482 return Val;
483}
484
485/// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
Chris Lattner2fe29202009-04-15 17:13:42 +0000486static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000487 if (*Start != '[') {
488 unsigned Ref = PluralNumber(Start, End);
489 return Ref == Val;
490 }
491
492 ++Start;
493 unsigned Low = PluralNumber(Start, End);
494 assert(*Start == ',' && "Bad plural expression syntax: expected ,");
495 ++Start;
496 unsigned High = PluralNumber(Start, End);
497 assert(*Start == ']' && "Bad plural expression syntax: expected )");
498 ++Start;
499 return Low <= Val && Val <= High;
500}
501
502/// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
Chris Lattner2fe29202009-04-15 17:13:42 +0000503static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000504 // Empty condition?
505 if (*Start == ':')
506 return true;
507
508 while (1) {
509 char C = *Start;
510 if (C == '%') {
511 // Modulo expression
512 ++Start;
513 unsigned Arg = PluralNumber(Start, End);
514 assert(*Start == '=' && "Bad plural expression syntax: expected =");
515 ++Start;
516 unsigned ValMod = ValNo % Arg;
517 if (TestPluralRange(ValMod, Start, End))
518 return true;
519 } else {
Sebastian Redl3ceaf622008-11-27 07:28:14 +0000520 assert((C == '[' || (C >= '0' && C <= '9')) &&
Sebastian Redl15b02d22008-11-22 13:44:36 +0000521 "Bad plural expression syntax: unexpected character");
522 // Range expression
523 if (TestPluralRange(ValNo, Start, End))
524 return true;
525 }
526
527 // Scan for next or-expr part.
528 Start = std::find(Start, End, ',');
Mike Stump11289f42009-09-09 15:08:12 +0000529 if (Start == End)
Sebastian Redl15b02d22008-11-22 13:44:36 +0000530 break;
531 ++Start;
532 }
533 return false;
534}
535
536/// HandlePluralModifier - Handle the integer 'plural' modifier. This is used
537/// for complex plural forms, or in languages where all plurals are complex.
538/// The syntax is: %plural{cond1:form1|cond2:form2|:form3}, where condn are
539/// conditions that are tested in order, the form corresponding to the first
540/// that applies being emitted. The empty condition is always true, making the
541/// last form a default case.
542/// Conditions are simple boolean expressions, where n is the number argument.
543/// Here are the rules.
544/// condition := expression | empty
545/// empty := -> always true
546/// expression := numeric [',' expression] -> logical or
547/// numeric := range -> true if n in range
548/// | '%' number '=' range -> true if n % number in range
549/// range := number
550/// | '[' number ',' number ']' -> ranges are inclusive both ends
551///
552/// Here are some examples from the GNU gettext manual written in this form:
553/// English:
554/// {1:form0|:form1}
555/// Latvian:
556/// {0:form2|%100=11,%10=0,%10=[2,9]:form1|:form0}
557/// Gaeilge:
558/// {1:form0|2:form1|:form2}
559/// Romanian:
560/// {1:form0|0,%100=[1,19]:form1|:form2}
561/// Lithuanian:
562/// {%10=0,%100=[10,19]:form2|%10=1:form0|:form1}
563/// Russian (requires repeated form):
564/// {%100=[11,14]:form2|%10=1:form0|%10=[2,4]:form1|:form2}
565/// Slovak
566/// {1:form0|[2,4]:form1|:form2}
567/// Polish (requires repeated form):
568/// {1:form0|%100=[10,20]:form2|%10=[2,4]:form1|:form2}
David Blaikieb5784322011-09-26 01:18:08 +0000569static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo,
Sebastian Redl15b02d22008-11-22 13:44:36 +0000570 const char *Argument, unsigned ArgumentLen,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000571 SmallVectorImpl<char> &OutStr) {
Sebastian Redl15b02d22008-11-22 13:44:36 +0000572 const char *ArgumentEnd = Argument + ArgumentLen;
573 while (1) {
574 assert(Argument < ArgumentEnd && "Plural expression didn't match.");
575 const char *ExprEnd = Argument;
576 while (*ExprEnd != ':') {
577 assert(ExprEnd != ArgumentEnd && "Plural missing expression end");
578 ++ExprEnd;
579 }
580 if (EvalPluralExpr(ValNo, Argument, ExprEnd)) {
581 Argument = ExprEnd + 1;
John McCall8cb7a8a32010-01-14 20:11:39 +0000582 ExprEnd = ScanFormat(Argument, ArgumentEnd, '|');
John McCall43b61682010-10-14 01:55:31 +0000583
584 // Recursively format the result of the plural clause into the
585 // output string.
586 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000587 return;
588 }
John McCall8cb7a8a32010-01-14 20:11:39 +0000589 Argument = ScanFormat(Argument, ArgumentEnd - 1, '|') + 1;
Sebastian Redl15b02d22008-11-22 13:44:36 +0000590 }
591}
592
Alp Tokera231ad22014-01-06 12:54:18 +0000593/// \brief Returns the friendly description for a token kind that will appear
594/// without quotes in diagnostic messages. These strings may be translatable in
595/// future.
596static const char *getTokenDescForDiagnostic(tok::TokenKind Kind) {
Alp Tokerec543272013-12-24 09:48:30 +0000597 switch (Kind) {
598 case tok::identifier:
599 return "identifier";
600 default:
Craig Topperf1186c52014-05-08 06:41:40 +0000601 return nullptr;
Alp Tokerec543272013-12-24 09:48:30 +0000602 }
603}
Sebastian Redl15b02d22008-11-22 13:44:36 +0000604
Chris Lattner23be0672008-11-19 06:51:40 +0000605/// FormatDiagnostic - Format this diagnostic into a string, substituting the
606/// formal arguments into the %0 slots. The result is appended onto the Str
607/// array.
David Blaikieb5784322011-09-26 01:18:08 +0000608void Diagnostic::
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000609FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
Argyrios Kyrtzidise9af37d2011-05-05 07:54:59 +0000610 if (!StoredDiagMessage.empty()) {
611 OutStr.append(StoredDiagMessage.begin(), StoredDiagMessage.end());
612 return;
613 }
614
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000615 StringRef Diag =
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000616 getDiags()->getDiagnosticIDs()->getDescription(getID());
Mike Stump11289f42009-09-09 15:08:12 +0000617
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +0000618 FormatDiagnostic(Diag.begin(), Diag.end(), OutStr);
John McCalle4d54322010-01-13 23:58:20 +0000619}
620
David Blaikieb5784322011-09-26 01:18:08 +0000621void Diagnostic::
John McCalle4d54322010-01-13 23:58:20 +0000622FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000623 SmallVectorImpl<char> &OutStr) const {
John McCalle4d54322010-01-13 23:58:20 +0000624
Richard Trieub3b8bb02015-01-08 01:27:03 +0000625 // When the diagnostic string is only "%0", the entire string is being given
626 // by an outside source. Remove unprintable characters from this string
627 // and skip all the other string processing.
Richard Trieudcd7bb02015-01-17 00:56:10 +0000628 if (DiagEnd - DiagStr == 2 &&
629 StringRef(DiagStr, DiagEnd - DiagStr).equals("%0") &&
Richard Trieub3b8bb02015-01-08 01:27:03 +0000630 getArgKind(0) == DiagnosticsEngine::ak_std_string) {
631 const std::string &S = getArgStdStr(0);
632 for (char c : S) {
633 if (llvm::sys::locale::isPrint(c) || c == '\t') {
634 OutStr.push_back(c);
635 }
636 }
637 return;
638 }
639
Chris Lattnerc243f292009-10-20 05:25:22 +0000640 /// FormattedArgs - Keep track of all of the arguments formatted by
641 /// ConvertArgToString and pass them into subsequent calls to
642 /// ConvertArgToString, allowing the implementation to avoid redundancies in
643 /// obvious cases.
David Blaikie9c902b52011-09-25 23:23:43 +0000644 SmallVector<DiagnosticsEngine::ArgumentValue, 8> FormattedArgs;
Chandler Carruthd5173952011-07-11 17:49:21 +0000645
646 /// QualTypeVals - Pass a vector of arrays so that QualType names can be
647 /// compared to see if more information is needed to be printed.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000648 SmallVector<intptr_t, 2> QualTypeVals;
Richard Trieu91844232012-06-26 18:18:47 +0000649 SmallVector<char, 64> Tree;
650
Chandler Carruthd5173952011-07-11 17:49:21 +0000651 for (unsigned i = 0, e = getNumArgs(); i < e; ++i)
David Blaikie9c902b52011-09-25 23:23:43 +0000652 if (getArgKind(i) == DiagnosticsEngine::ak_qualtype)
Chandler Carruthd5173952011-07-11 17:49:21 +0000653 QualTypeVals.push_back(getRawArg(i));
654
Chris Lattner23be0672008-11-19 06:51:40 +0000655 while (DiagStr != DiagEnd) {
656 if (DiagStr[0] != '%') {
657 // Append non-%0 substrings to Str if we have one.
658 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
659 OutStr.append(DiagStr, StrEnd);
660 DiagStr = StrEnd;
Chris Lattner2b786902008-11-21 07:50:02 +0000661 continue;
Jordan Rosea7d03842013-02-08 22:30:41 +0000662 } else if (isPunctuation(DiagStr[1])) {
John McCall8cb7a8a32010-01-14 20:11:39 +0000663 OutStr.push_back(DiagStr[1]); // %% -> %.
Chris Lattner23be0672008-11-19 06:51:40 +0000664 DiagStr += 2;
Chris Lattner2b786902008-11-21 07:50:02 +0000665 continue;
666 }
Mike Stump11289f42009-09-09 15:08:12 +0000667
Chris Lattner2b786902008-11-21 07:50:02 +0000668 // Skip the %.
669 ++DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000670
Chris Lattner2b786902008-11-21 07:50:02 +0000671 // This must be a placeholder for a diagnostic argument. The format for a
672 // placeholder is one of "%0", "%modifier0", or "%modifier{arguments}0".
673 // The digit is a number from 0-9 indicating which argument this comes from.
674 // The modifier is a string of digits from the set [-a-z]+, arguments is a
675 // brace enclosed string.
Craig Topperf1186c52014-05-08 06:41:40 +0000676 const char *Modifier = nullptr, *Argument = nullptr;
Chris Lattner2b786902008-11-21 07:50:02 +0000677 unsigned ModifierLen = 0, ArgumentLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000678
Chris Lattner2b786902008-11-21 07:50:02 +0000679 // Check to see if we have a modifier. If so eat it.
Jordan Rosea7d03842013-02-08 22:30:41 +0000680 if (!isDigit(DiagStr[0])) {
Chris Lattner2b786902008-11-21 07:50:02 +0000681 Modifier = DiagStr;
682 while (DiagStr[0] == '-' ||
683 (DiagStr[0] >= 'a' && DiagStr[0] <= 'z'))
684 ++DiagStr;
685 ModifierLen = DiagStr-Modifier;
Chris Lattner23be0672008-11-19 06:51:40 +0000686
Chris Lattner2b786902008-11-21 07:50:02 +0000687 // If we have an argument, get it next.
688 if (DiagStr[0] == '{') {
689 ++DiagStr; // Skip {.
690 Argument = DiagStr;
Mike Stump11289f42009-09-09 15:08:12 +0000691
John McCall8cb7a8a32010-01-14 20:11:39 +0000692 DiagStr = ScanFormat(DiagStr, DiagEnd, '}');
693 assert(DiagStr != DiagEnd && "Mismatched {}'s in diagnostic string!");
Chris Lattner2b786902008-11-21 07:50:02 +0000694 ArgumentLen = DiagStr-Argument;
695 ++DiagStr; // Skip }.
Chris Lattner23be0672008-11-19 06:51:40 +0000696 }
Chris Lattner2b786902008-11-21 07:50:02 +0000697 }
Mike Stump11289f42009-09-09 15:08:12 +0000698
Jordan Rosea7d03842013-02-08 22:30:41 +0000699 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic");
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000700 unsigned ArgNo = *DiagStr++ - '0';
Chris Lattner2b786902008-11-21 07:50:02 +0000701
Richard Trieu91844232012-06-26 18:18:47 +0000702 // Only used for type diffing.
703 unsigned ArgNo2 = ArgNo;
704
David Blaikie9c902b52011-09-25 23:23:43 +0000705 DiagnosticsEngine::ArgumentKind Kind = getArgKind(ArgNo);
Richard Trieu90c31f52013-01-30 20:04:31 +0000706 if (ModifierIs(Modifier, ModifierLen, "diff")) {
Jordan Rosea7d03842013-02-08 22:30:41 +0000707 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) &&
Richard Trieu91844232012-06-26 18:18:47 +0000708 "Invalid format for diff modifier");
709 ++DiagStr; // Comma.
710 ArgNo2 = *DiagStr++ - '0';
Richard Trieu90c31f52013-01-30 20:04:31 +0000711 DiagnosticsEngine::ArgumentKind Kind2 = getArgKind(ArgNo2);
712 if (Kind == DiagnosticsEngine::ak_qualtype &&
713 Kind2 == DiagnosticsEngine::ak_qualtype)
714 Kind = DiagnosticsEngine::ak_qualtype_pair;
715 else {
716 // %diff only supports QualTypes. For other kinds of arguments,
717 // use the default printing. For example, if the modifier is:
718 // "%diff{compare $ to $|other text}1,2"
719 // treat it as:
720 // "compare %1 to %2"
721 const char *Pipe = ScanFormat(Argument, Argument + ArgumentLen, '|');
722 const char *FirstDollar = ScanFormat(Argument, Pipe, '$');
723 const char *SecondDollar = ScanFormat(FirstDollar + 1, Pipe, '$');
Filipe Cabecinhased4a00c2013-01-30 22:03:24 +0000724 const char ArgStr1[] = { '%', static_cast<char>('0' + ArgNo) };
725 const char ArgStr2[] = { '%', static_cast<char>('0' + ArgNo2) };
Richard Trieu90c31f52013-01-30 20:04:31 +0000726 FormatDiagnostic(Argument, FirstDollar, OutStr);
727 FormatDiagnostic(ArgStr1, ArgStr1 + 2, OutStr);
728 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
729 FormatDiagnostic(ArgStr2, ArgStr2 + 2, OutStr);
730 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
731 continue;
732 }
Richard Trieu91844232012-06-26 18:18:47 +0000733 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000734
735 switch (Kind) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000736 // ---- STRINGS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000737 case DiagnosticsEngine::ak_std_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000738 const std::string &S = getArgStdStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000739 assert(ModifierLen == 0 && "No modifiers for strings yet");
740 OutStr.append(S.begin(), S.end());
741 break;
742 }
David Blaikie9c902b52011-09-25 23:23:43 +0000743 case DiagnosticsEngine::ak_c_string: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000744 const char *S = getArgCStr(ArgNo);
Chris Lattner2b786902008-11-21 07:50:02 +0000745 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000746
747 // Don't crash if get passed a null pointer by accident.
748 if (!S)
749 S = "(null)";
Mike Stump11289f42009-09-09 15:08:12 +0000750
Chris Lattner2b786902008-11-21 07:50:02 +0000751 OutStr.append(S, S + strlen(S));
752 break;
753 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000754 // ---- INTEGERS ----
David Blaikie9c902b52011-09-25 23:23:43 +0000755 case DiagnosticsEngine::ak_sint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000756 int Val = getArgSInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000757
Chris Lattner2b786902008-11-21 07:50:02 +0000758 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCall43b61682010-10-14 01:55:31 +0000759 HandleSelectModifier(*this, (unsigned)Val, Argument, ArgumentLen,
760 OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000761 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
762 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000763 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000764 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
765 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000766 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
767 HandleOrdinalModifier((unsigned)Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000768 } else {
769 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000770 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000771 }
Chris Lattner2b786902008-11-21 07:50:02 +0000772 break;
773 }
David Blaikie9c902b52011-09-25 23:23:43 +0000774 case DiagnosticsEngine::ak_uint: {
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000775 unsigned Val = getArgUInt(ArgNo);
Mike Stump11289f42009-09-09 15:08:12 +0000776
Chris Lattner2b786902008-11-21 07:50:02 +0000777 if (ModifierIs(Modifier, ModifierLen, "select")) {
John McCalle4d54322010-01-13 23:58:20 +0000778 HandleSelectModifier(*this, Val, Argument, ArgumentLen, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000779 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
780 HandleIntegerSModifier(Val, OutStr);
Sebastian Redl15b02d22008-11-22 13:44:36 +0000781 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
John McCall43b61682010-10-14 01:55:31 +0000782 HandlePluralModifier(*this, (unsigned)Val, Argument, ArgumentLen,
783 OutStr);
John McCall9015cde2010-01-14 00:50:32 +0000784 } else if (ModifierIs(Modifier, ModifierLen, "ordinal")) {
785 HandleOrdinalModifier(Val, OutStr);
Chris Lattner2b786902008-11-21 07:50:02 +0000786 } else {
787 assert(ModifierLen == 0 && "Unknown integer modifier");
Daniel Dunbare3633792009-10-17 18:12:14 +0000788 llvm::raw_svector_ostream(OutStr) << Val;
Chris Lattner91aea712008-11-19 07:22:31 +0000789 }
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000790 break;
Chris Lattner2b786902008-11-21 07:50:02 +0000791 }
Alp Tokerec543272013-12-24 09:48:30 +0000792 // ---- TOKEN SPELLINGS ----
793 case DiagnosticsEngine::ak_tokenkind: {
794 tok::TokenKind Kind = static_cast<tok::TokenKind>(getRawArg(ArgNo));
795 assert(ModifierLen == 0 && "No modifiers for token kinds yet");
796
797 llvm::raw_svector_ostream Out(OutStr);
Alp Tokera231ad22014-01-06 12:54:18 +0000798 if (const char *S = tok::getPunctuatorSpelling(Kind))
799 // Quoted token spelling for punctuators.
800 Out << '\'' << S << '\'';
801 else if (const char *S = tok::getKeywordSpelling(Kind))
802 // Unquoted token spelling for keywords.
803 Out << S;
804 else if (const char *S = getTokenDescForDiagnostic(Kind))
Alp Tokerec543272013-12-24 09:48:30 +0000805 // Unquoted translatable token name.
806 Out << S;
Alp Tokerec543272013-12-24 09:48:30 +0000807 else if (const char *S = tok::getTokenName(Kind))
808 // Debug name, shouldn't appear in user-facing diagnostics.
809 Out << '<' << S << '>';
810 else
811 Out << "(null)";
812 break;
813 }
Chris Lattnere3d20d92008-11-23 21:45:46 +0000814 // ---- NAMES and TYPES ----
David Blaikie9c902b52011-09-25 23:23:43 +0000815 case DiagnosticsEngine::ak_identifierinfo: {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000816 const IdentifierInfo *II = getArgIdentifier(ArgNo);
817 assert(ModifierLen == 0 && "No modifiers for strings yet");
Daniel Dunbar69a79b12009-04-20 06:13:16 +0000818
819 // Don't crash if get passed a null pointer by accident.
820 if (!II) {
821 const char *S = "(null)";
822 OutStr.append(S, S + strlen(S));
823 continue;
824 }
825
Daniel Dunbar07d07852009-10-18 21:17:35 +0000826 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\'';
Chris Lattnere3d20d92008-11-23 21:45:46 +0000827 break;
828 }
David Blaikie9c902b52011-09-25 23:23:43 +0000829 case DiagnosticsEngine::ak_qualtype:
830 case DiagnosticsEngine::ak_declarationname:
831 case DiagnosticsEngine::ak_nameddecl:
832 case DiagnosticsEngine::ak_nestednamespec:
833 case DiagnosticsEngine::ak_declcontext:
Aaron Ballman3e424b52013-12-26 18:30:57 +0000834 case DiagnosticsEngine::ak_attr:
Chris Lattnerc243f292009-10-20 05:25:22 +0000835 getDiags()->ConvertArgToString(Kind, getRawArg(ArgNo),
Craig Topper3aa4fb32014-06-12 05:32:35 +0000836 StringRef(Modifier, ModifierLen),
837 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000838 FormattedArgs,
Chandler Carruthd5173952011-07-11 17:49:21 +0000839 OutStr, QualTypeVals);
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000840 break;
Richard Trieu91844232012-06-26 18:18:47 +0000841 case DiagnosticsEngine::ak_qualtype_pair:
842 // Create a struct with all the info needed for printing.
843 TemplateDiffTypes TDT;
844 TDT.FromType = getRawArg(ArgNo);
845 TDT.ToType = getRawArg(ArgNo2);
846 TDT.ElideType = getDiags()->ElideType;
847 TDT.ShowColors = getDiags()->ShowColors;
Richard Trieu50f5f462012-07-10 01:46:04 +0000848 TDT.TemplateDiffUsed = false;
Richard Trieu91844232012-06-26 18:18:47 +0000849 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
850
Richard Trieuc6058442012-06-29 21:12:16 +0000851 const char *ArgumentEnd = Argument + ArgumentLen;
852 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|');
853
Richard Trieua4056002012-07-13 21:18:32 +0000854 // Print the tree. If this diagnostic already has a tree, skip the
855 // second tree.
856 if (getDiags()->PrintTemplateTree && Tree.empty()) {
Richard Trieu91844232012-06-26 18:18:47 +0000857 TDT.PrintFromType = true;
858 TDT.PrintTree = true;
859 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000860 StringRef(Modifier, ModifierLen),
861 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000862 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000863 Tree, QualTypeVals);
864 // If there is no tree information, fall back to regular printing.
Richard Trieuc6058442012-06-29 21:12:16 +0000865 if (!Tree.empty()) {
866 FormatDiagnostic(Pipe + 1, ArgumentEnd, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000867 break;
Richard Trieuc6058442012-06-29 21:12:16 +0000868 }
Richard Trieu91844232012-06-26 18:18:47 +0000869 }
870
871 // Non-tree printing, also the fall-back when tree printing fails.
872 // The fall-back is triggered when the types compared are not templates.
Richard Trieuc6058442012-06-29 21:12:16 +0000873 const char *FirstDollar = ScanFormat(Argument, ArgumentEnd, '$');
874 const char *SecondDollar = ScanFormat(FirstDollar + 1, ArgumentEnd, '$');
Richard Trieu91844232012-06-26 18:18:47 +0000875
876 // Append before text
Richard Trieuc6058442012-06-29 21:12:16 +0000877 FormatDiagnostic(Argument, FirstDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000878
879 // Append first type
880 TDT.PrintTree = false;
881 TDT.PrintFromType = true;
882 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000883 StringRef(Modifier, ModifierLen),
884 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000885 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000886 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000887 if (!TDT.TemplateDiffUsed)
888 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
889 TDT.FromType));
890
Richard Trieu91844232012-06-26 18:18:47 +0000891 // Append middle text
Richard Trieuc6058442012-06-29 21:12:16 +0000892 FormatDiagnostic(FirstDollar + 1, SecondDollar, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000893
894 // Append second type
895 TDT.PrintFromType = false;
896 getDiags()->ConvertArgToString(Kind, val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000897 StringRef(Modifier, ModifierLen),
898 StringRef(Argument, ArgumentLen),
Craig Toppere4753502014-06-12 05:32:27 +0000899 FormattedArgs,
Richard Trieu91844232012-06-26 18:18:47 +0000900 OutStr, QualTypeVals);
Richard Trieu50f5f462012-07-10 01:46:04 +0000901 if (!TDT.TemplateDiffUsed)
902 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_qualtype,
903 TDT.ToType));
904
Richard Trieu91844232012-06-26 18:18:47 +0000905 // Append end text
Richard Trieuc6058442012-06-29 21:12:16 +0000906 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr);
Richard Trieu91844232012-06-26 18:18:47 +0000907 break;
Nico Weber4c311642008-08-10 19:59:06 +0000908 }
Chris Lattnerc243f292009-10-20 05:25:22 +0000909
910 // Remember this argument info for subsequent formatting operations. Turn
911 // std::strings into a null terminated string to make it be the same case as
912 // all the other ones.
Richard Trieu91844232012-06-26 18:18:47 +0000913 if (Kind == DiagnosticsEngine::ak_qualtype_pair)
914 continue;
915 else if (Kind != DiagnosticsEngine::ak_std_string)
Chris Lattnerc243f292009-10-20 05:25:22 +0000916 FormattedArgs.push_back(std::make_pair(Kind, getRawArg(ArgNo)));
917 else
David Blaikie9c902b52011-09-25 23:23:43 +0000918 FormattedArgs.push_back(std::make_pair(DiagnosticsEngine::ak_c_string,
Chris Lattnerc243f292009-10-20 05:25:22 +0000919 (intptr_t)getArgStdStr(ArgNo).c_str()));
920
Nico Weber4c311642008-08-10 19:59:06 +0000921 }
Richard Trieu91844232012-06-26 18:18:47 +0000922
923 // Append the type tree to the end of the diagnostics.
924 OutStr.append(Tree.begin(), Tree.end());
Nico Weber4c311642008-08-10 19:59:06 +0000925}
Ted Kremenekea06ec12009-01-23 20:28:53 +0000926
Douglas Gregor33cdd812010-02-18 18:08:43 +0000927StoredDiagnostic::StoredDiagnostic() { }
928
David Blaikie9c902b52011-09-25 23:23:43 +0000929StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000930 StringRef Message)
Benjamin Kramer929bd682010-11-19 17:36:51 +0000931 : ID(ID), Level(Level), Loc(), Message(Message) { }
Douglas Gregor33cdd812010-02-18 18:08:43 +0000932
David Blaikie9c902b52011-09-25 23:23:43 +0000933StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level,
David Blaikieb5784322011-09-26 01:18:08 +0000934 const Diagnostic &Info)
Douglas Gregora750e8e2010-11-19 16:18:16 +0000935 : ID(Info.getID()), Level(Level)
936{
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000937 assert((Info.getLocation().isInvalid() || Info.hasSourceManager()) &&
938 "Valid source location without setting a source manager for diagnostic");
939 if (Info.getLocation().isValid())
940 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000941 SmallString<64> Message;
Douglas Gregor33cdd812010-02-18 18:08:43 +0000942 Info.FormatDiagnostic(Message);
943 this->Message.assign(Message.begin(), Message.end());
Benjamin Kramerf9890422015-02-17 16:48:30 +0000944 this->Ranges.assign(Info.getRanges().begin(), Info.getRanges().end());
945 this->FixIts.assign(Info.getFixItHints().begin(), Info.getFixItHints().end());
Douglas Gregor33cdd812010-02-18 18:08:43 +0000946}
947
David Blaikie9c902b52011-09-25 23:23:43 +0000948StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000949 StringRef Message, FullSourceLoc Loc,
Chris Lattner54b16772011-07-23 17:14:25 +0000950 ArrayRef<CharSourceRange> Ranges,
Aaron Ballman234ebd72013-02-24 19:08:10 +0000951 ArrayRef<FixItHint> FixIts)
952 : ID(ID), Level(Level), Loc(Loc), Message(Message),
953 Ranges(Ranges.begin(), Ranges.end()), FixIts(FixIts.begin(), FixIts.end())
Douglas Gregor925296b2011-07-19 16:10:42 +0000954{
Douglas Gregor925296b2011-07-19 16:10:42 +0000955}
956
Douglas Gregor33cdd812010-02-18 18:08:43 +0000957StoredDiagnostic::~StoredDiagnostic() { }
958
Ted Kremenekea06ec12009-01-23 20:28:53 +0000959/// IncludeInDiagnosticCounts - This method (whose default implementation
960/// returns true) indicates whether the diagnostics handled by this
David Blaikiee2eefae2011-09-25 23:39:51 +0000961/// DiagnosticConsumer should be included in the number of diagnostics
David Blaikie9c902b52011-09-25 23:23:43 +0000962/// reported by DiagnosticsEngine.
David Blaikiee2eefae2011-09-25 23:39:51 +0000963bool DiagnosticConsumer::IncludeInDiagnosticCounts() const { return true; }
Douglas Gregor89336232010-03-29 23:34:08 +0000964
David Blaikie68e081d2011-12-20 02:48:34 +0000965void IgnoringDiagConsumer::anchor() { }
966
Douglas Gregor6b930962013-05-03 22:58:43 +0000967ForwardingDiagnosticConsumer::~ForwardingDiagnosticConsumer() {}
968
969void ForwardingDiagnosticConsumer::HandleDiagnostic(
970 DiagnosticsEngine::Level DiagLevel,
971 const Diagnostic &Info) {
972 Target.HandleDiagnostic(DiagLevel, Info);
973}
974
975void ForwardingDiagnosticConsumer::clear() {
976 DiagnosticConsumer::clear();
977 Target.clear();
978}
979
980bool ForwardingDiagnosticConsumer::IncludeInDiagnosticCounts() const {
981 return Target.IncludeInDiagnosticCounts();
982}
983
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000984PartialDiagnostic::StorageAllocator::StorageAllocator() {
Douglas Gregor89336232010-03-29 23:34:08 +0000985 for (unsigned I = 0; I != NumCached; ++I)
986 FreeList[I] = Cached + I;
987 NumFreeListEntries = NumCached;
988}
989
Benjamin Kramer7ec12c92012-02-07 22:29:24 +0000990PartialDiagnostic::StorageAllocator::~StorageAllocator() {
Chad Rosier849a67b2012-02-07 23:24:49 +0000991 // Don't assert if we are in a CrashRecovery context, as this invariant may
992 // be invalidated during a crash.
993 assert((NumFreeListEntries == NumCached ||
994 llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
995 "A partial is on the lamb");
Douglas Gregor89336232010-03-29 23:34:08 +0000996}