blob: 517f366a88fad0f19df527dec30df7ad1260d3a3 [file] [log] [blame]
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001//===--- DiagnosticIDs.cpp - Diagnostic IDs Handling ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Diagnostic IDs-related interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000014#include "clang/Basic/DiagnosticIDs.h"
David Blaikie6c448862012-02-15 21:58:34 +000015#include "clang/Basic/AllDiagnostics.h"
John McCall923cd572011-06-15 21:46:43 +000016#include "clang/Basic/DiagnosticCategories.h"
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000017#include "clang/Basic/SourceManager.h"
Daniel Dunbar3f839462011-09-29 01:47:16 +000018#include "llvm/ADT/SmallVector.h"
David Majnemercfaa5522013-07-20 07:15:15 +000019#include "llvm/ADT/STLExtras.h"
David Blaikie9fe8c742011-09-23 05:35:21 +000020#include "llvm/Support/ErrorHandling.h"
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000021#include <map>
22using namespace clang;
23
24//===----------------------------------------------------------------------===//
25// Builtin Diagnostic information
26//===----------------------------------------------------------------------===//
27
28namespace {
29
30// Diagnostic classes.
31enum {
32 CLASS_NOTE = 0x01,
33 CLASS_WARNING = 0x02,
34 CLASS_EXTENSION = 0x03,
35 CLASS_ERROR = 0x04
36};
37
38struct StaticDiagInfoRec {
Craig Topper8bfffa52013-07-21 21:56:18 +000039 uint16_t DiagID;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000040 unsigned Mapping : 3;
41 unsigned Class : 3;
Richard Smith3347b492013-11-12 02:41:45 +000042 unsigned SFINAE : 2;
Daniel Dunbar4213df32011-09-29 00:34:06 +000043 unsigned WarnNoWerror : 1;
44 unsigned WarnShowInSystemHeader : 1;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000045 unsigned Category : 5;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000046
Benjamin Kramerd49cb202012-02-15 20:57:03 +000047 uint16_t OptionGroupIndex;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000048
49 uint16_t DescriptionLen;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000050 const char *DescriptionStr;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000051
Benjamin Kramerd49cb202012-02-15 20:57:03 +000052 unsigned getOptionGroupIndex() const {
53 return OptionGroupIndex;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000054 }
55
Chris Lattner5f9e2722011-07-23 10:55:15 +000056 StringRef getDescription() const {
57 return StringRef(DescriptionStr, DescriptionLen);
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000058 }
Douglas Gregor7d2b8c12011-04-15 22:04:17 +000059
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000060 bool operator<(const StaticDiagInfoRec &RHS) const {
61 return DiagID < RHS.DiagID;
62 }
63};
64
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000065} // namespace anonymous
66
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000067static const StaticDiagInfoRec StaticDiagInfo[] = {
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +000068#define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
Richard Smith3347b492013-11-12 02:41:45 +000069 SFINAE,NOWERROR,SHOWINSYSHEADER,CATEGORY) \
70 { diag::ENUM, DEFAULT_MAPPING, CLASS, \
71 DiagnosticIDs::SFINAEResponse::SFINAE, \
Benjamin Kramerd49cb202012-02-15 20:57:03 +000072 NOWERROR, SHOWINSYSHEADER, CATEGORY, GROUP, \
73 STR_SIZE(DESC, uint16_t), DESC },
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000074#include "clang/Basic/DiagnosticCommonKinds.inc"
75#include "clang/Basic/DiagnosticDriverKinds.inc"
76#include "clang/Basic/DiagnosticFrontendKinds.inc"
Chandler Carrutha2398d72011-12-09 00:02:23 +000077#include "clang/Basic/DiagnosticSerializationKinds.inc"
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000078#include "clang/Basic/DiagnosticLexKinds.inc"
79#include "clang/Basic/DiagnosticParseKinds.inc"
80#include "clang/Basic/DiagnosticASTKinds.inc"
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000081#include "clang/Basic/DiagnosticCommentKinds.inc"
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000082#include "clang/Basic/DiagnosticSemaKinds.inc"
83#include "clang/Basic/DiagnosticAnalysisKinds.inc"
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000084#undef DIAG
Douglas Gregor7d2b8c12011-04-15 22:04:17 +000085};
86
David Majnemercfaa5522013-07-20 07:15:15 +000087static const unsigned StaticDiagInfoSize = llvm::array_lengthof(StaticDiagInfo);
Douglas Gregor7d2b8c12011-04-15 22:04:17 +000088
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000089/// GetDiagInfo - Return the StaticDiagInfoRec entry for the specified DiagID,
90/// or null if the ID is invalid.
91static const StaticDiagInfoRec *GetDiagInfo(unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000092 // If assertions are enabled, verify that the StaticDiagInfo array is sorted.
93#ifndef NDEBUG
Craig Toppercbfb8d72013-07-21 18:58:40 +000094 static bool IsFirst = true; // So the check is only performed on first call.
95 if (IsFirst) {
96 for (unsigned i = 1; i != StaticDiagInfoSize; ++i) {
97 assert(StaticDiagInfo[i-1].DiagID != StaticDiagInfo[i].DiagID &&
98 "Diag ID conflict, the enums at the start of clang::diag (in "
99 "DiagnosticIDs.h) probably need to be increased");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000100
Craig Toppercbfb8d72013-07-21 18:58:40 +0000101 assert(StaticDiagInfo[i-1] < StaticDiagInfo[i] &&
102 "Improperly sorted diag info");
103 }
104 IsFirst = false;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000105 }
106#endif
107
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000108 // Out of bounds diag. Can't be in the table.
109 using namespace diag;
David Majnemercfaa5522013-07-20 07:15:15 +0000110 if (DiagID >= DIAG_UPPER_LIMIT || DiagID <= DIAG_START_COMMON)
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000111 return 0;
112
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000113 // Compute the index of the requested diagnostic in the static table.
114 // 1. Add the number of diagnostics in each category preceeding the
115 // diagnostic and of the category the diagnostic is in. This gives us
116 // the offset of the category in the table.
117 // 2. Subtract the number of IDs in each category from our ID. This gives us
118 // the offset of the diagnostic in the category.
119 // This is cheaper than a binary search on the table as it doesn't touch
120 // memory at all.
121 unsigned Offset = 0;
David Majnemercfaa5522013-07-20 07:15:15 +0000122 unsigned ID = DiagID - DIAG_START_COMMON - 1;
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000123#define CATEGORY(NAME, PREV) \
124 if (DiagID > DIAG_START_##NAME) { \
Argyrios Kyrtzidis35abfcd2013-01-02 22:26:07 +0000125 Offset += NUM_BUILTIN_##PREV##_DIAGNOSTICS - DIAG_START_##PREV - 1; \
126 ID -= DIAG_START_##NAME - DIAG_START_##PREV; \
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000127 }
128CATEGORY(DRIVER, COMMON)
129CATEGORY(FRONTEND, DRIVER)
130CATEGORY(SERIALIZATION, FRONTEND)
131CATEGORY(LEX, SERIALIZATION)
132CATEGORY(PARSE, LEX)
133CATEGORY(AST, PARSE)
134CATEGORY(COMMENT, AST)
135CATEGORY(SEMA, COMMENT)
136CATEGORY(ANALYSIS, SEMA)
137#undef CATEGORY
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000138
139 // Avoid out of bounds reads.
140 if (ID + Offset >= StaticDiagInfoSize)
141 return 0;
142
Argyrios Kyrtzidis35abfcd2013-01-02 22:26:07 +0000143 assert(ID < StaticDiagInfoSize && Offset < StaticDiagInfoSize);
144
Benjamin Kramera07b59e2012-12-11 18:00:22 +0000145 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset];
146 // If the diag id doesn't match we found a different diag, abort. This can
147 // happen when this function is called with an ID that points into a hole in
148 // the diagID space.
149 if (Found->DiagID != DiagID)
150 return 0;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000151 return Found;
152}
153
Daniel Dunbara5e41332011-09-29 01:52:06 +0000154static DiagnosticMappingInfo GetDefaultDiagMappingInfo(unsigned DiagID) {
Daniel Dunbaraeacae52011-09-29 02:03:01 +0000155 DiagnosticMappingInfo Info = DiagnosticMappingInfo::Make(
Daniel Dunbara5e41332011-09-29 01:52:06 +0000156 diag::MAP_FATAL, /*IsUser=*/false, /*IsPragma=*/false);
Daniel Dunbar4213df32011-09-29 00:34:06 +0000157
Daniel Dunbara5e41332011-09-29 01:52:06 +0000158 if (const StaticDiagInfoRec *StaticInfo = GetDiagInfo(DiagID)) {
159 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
160
161 if (StaticInfo->WarnNoWerror) {
162 assert(Info.getMapping() == diag::MAP_WARNING &&
Daniel Dunbar4213df32011-09-29 00:34:06 +0000163 "Unexpected mapping with no-Werror bit!");
Daniel Dunbara5e41332011-09-29 01:52:06 +0000164 Info.setNoWarningAsError(true);
Daniel Dunbar4213df32011-09-29 00:34:06 +0000165 }
166
Daniel Dunbara5e41332011-09-29 01:52:06 +0000167 if (StaticInfo->WarnShowInSystemHeader) {
168 assert(Info.getMapping() == diag::MAP_WARNING &&
Daniel Dunbar4213df32011-09-29 00:34:06 +0000169 "Unexpected mapping with show-in-system-header bit!");
Daniel Dunbara5e41332011-09-29 01:52:06 +0000170 Info.setShowInSystemHeader(true);
Daniel Dunbar4213df32011-09-29 00:34:06 +0000171 }
Daniel Dunbar4213df32011-09-29 00:34:06 +0000172 }
Daniel Dunbara5e41332011-09-29 01:52:06 +0000173
174 return Info;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000175}
176
Douglas Gregor7d2b8c12011-04-15 22:04:17 +0000177/// getCategoryNumberForDiag - Return the category number that a specified
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000178/// DiagID belongs to, or 0 if no category.
179unsigned DiagnosticIDs::getCategoryNumberForDiag(unsigned DiagID) {
180 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
181 return Info->Category;
182 return 0;
183}
184
Benjamin Kramerdbda5132011-06-13 18:38:45 +0000185namespace {
186 // The diagnostic category names.
187 struct StaticDiagCategoryRec {
188 const char *NameStr;
189 uint8_t NameLen;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000190
Chris Lattner5f9e2722011-07-23 10:55:15 +0000191 StringRef getName() const {
192 return StringRef(NameStr, NameLen);
Benjamin Kramerdbda5132011-06-13 18:38:45 +0000193 }
194 };
195}
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000196
Daniel Dunbarba494c62011-09-29 01:42:25 +0000197// Unfortunately, the split between DiagnosticIDs and Diagnostic is not
198// particularly clean, but for now we just implement this method here so we can
199// access GetDefaultDiagMapping.
200DiagnosticMappingInfo &DiagnosticsEngine::DiagState::getOrAddMappingInfo(
201 diag::kind Diag)
202{
203 std::pair<iterator, bool> Result = DiagMap.insert(
Daniel Dunbaraeacae52011-09-29 02:03:01 +0000204 std::make_pair(Diag, DiagnosticMappingInfo()));
Daniel Dunbarba494c62011-09-29 01:42:25 +0000205
206 // Initialize the entry if we added it.
Daniel Dunbaraeacae52011-09-29 02:03:01 +0000207 if (Result.second)
Daniel Dunbara5e41332011-09-29 01:52:06 +0000208 Result.first->second = GetDefaultDiagMappingInfo(Diag);
Daniel Dunbarba494c62011-09-29 01:42:25 +0000209
210 return Result.first->second;
211}
212
Benjamin Kramerdbda5132011-06-13 18:38:45 +0000213static const StaticDiagCategoryRec CategoryNameTable[] = {
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000214#define GET_CATEGORY_TABLE
John McCall923cd572011-06-15 21:46:43 +0000215#define CATEGORY(X, ENUM) { X, STR_SIZE(X, uint8_t) },
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000216#include "clang/Basic/DiagnosticGroups.inc"
217#undef GET_CATEGORY_TABLE
218 { 0, 0 }
219};
220
221/// getNumberOfCategories - Return the number of categories
222unsigned DiagnosticIDs::getNumberOfCategories() {
Craig Topperb9602322013-07-15 03:38:40 +0000223 return llvm::array_lengthof(CategoryNameTable) - 1;
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000224}
225
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000226/// getCategoryNameFromID - Given a category ID, return the name of the
227/// category, an empty string if CategoryID is zero, or null if CategoryID is
228/// invalid.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000229StringRef DiagnosticIDs::getCategoryNameFromID(unsigned CategoryID) {
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000230 if (CategoryID >= getNumberOfCategories())
Chris Lattner5f9e2722011-07-23 10:55:15 +0000231 return StringRef();
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000232 return CategoryNameTable[CategoryID].getName();
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000233}
234
235
236
Richard Smith3347b492013-11-12 02:41:45 +0000237DiagnosticIDs::SFINAEResponse
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000238DiagnosticIDs::getDiagnosticSFINAEResponse(unsigned DiagID) {
Richard Smith3347b492013-11-12 02:41:45 +0000239 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
240 return static_cast<DiagnosticIDs::SFINAEResponse>(Info->SFINAE);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000241 return SFINAE_Report;
242}
243
Douglas Gregor7d2b8c12011-04-15 22:04:17 +0000244/// getBuiltinDiagClass - Return the class field of the diagnostic.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000245///
246static unsigned getBuiltinDiagClass(unsigned DiagID) {
247 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
248 return Info->Class;
249 return ~0U;
250}
251
252//===----------------------------------------------------------------------===//
253// Custom Diagnostic information
254//===----------------------------------------------------------------------===//
255
256namespace clang {
257 namespace diag {
258 class CustomDiagInfo {
259 typedef std::pair<DiagnosticIDs::Level, std::string> DiagDesc;
260 std::vector<DiagDesc> DiagInfo;
261 std::map<DiagDesc, unsigned> DiagIDs;
262 public:
263
264 /// getDescription - Return the description of the specified custom
265 /// diagnostic.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000266 StringRef getDescription(unsigned DiagID) const {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000267 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
Stefanus Du Toitfc093362013-03-01 21:41:22 +0000268 "Invalid diagnostic ID");
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000269 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].second;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000270 }
271
272 /// getLevel - Return the level of the specified custom diagnostic.
273 DiagnosticIDs::Level getLevel(unsigned DiagID) const {
274 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
Stefanus Du Toitfc093362013-03-01 21:41:22 +0000275 "Invalid diagnostic ID");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000276 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].first;
277 }
278
Chris Lattner5f9e2722011-07-23 10:55:15 +0000279 unsigned getOrCreateDiagID(DiagnosticIDs::Level L, StringRef Message,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000280 DiagnosticIDs &Diags) {
281 DiagDesc D(L, Message);
282 // Check to see if it already exists.
283 std::map<DiagDesc, unsigned>::iterator I = DiagIDs.lower_bound(D);
284 if (I != DiagIDs.end() && I->first == D)
285 return I->second;
286
287 // If not, assign a new ID.
288 unsigned ID = DiagInfo.size()+DIAG_UPPER_LIMIT;
289 DiagIDs.insert(std::make_pair(D, ID));
290 DiagInfo.push_back(D);
291 return ID;
292 }
293 };
294
295 } // end diag namespace
296} // end clang namespace
297
298
299//===----------------------------------------------------------------------===//
300// Common Diagnostic implementation
301//===----------------------------------------------------------------------===//
302
303DiagnosticIDs::DiagnosticIDs() {
304 CustomDiagInfo = 0;
305}
306
307DiagnosticIDs::~DiagnosticIDs() {
308 delete CustomDiagInfo;
309}
310
311/// getCustomDiagID - Return an ID for a diagnostic with the specified message
Stefanus Du Toitfc093362013-03-01 21:41:22 +0000312/// and level. If this is the first request for this diagnostic, it is
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000313/// registered and created, otherwise the existing ID is returned.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000314unsigned DiagnosticIDs::getCustomDiagID(Level L, StringRef Message) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000315 if (CustomDiagInfo == 0)
316 CustomDiagInfo = new diag::CustomDiagInfo();
317 return CustomDiagInfo->getOrCreateDiagID(L, Message, *this);
318}
319
320
321/// isBuiltinWarningOrExtension - Return true if the unmapped diagnostic
322/// level of the specified diagnostic ID is a Warning or Extension.
323/// This only works on builtin diagnostics, not custom ones, and is not legal to
324/// call on NOTEs.
325bool DiagnosticIDs::isBuiltinWarningOrExtension(unsigned DiagID) {
326 return DiagID < diag::DIAG_UPPER_LIMIT &&
327 getBuiltinDiagClass(DiagID) != CLASS_ERROR;
328}
329
330/// \brief Determine whether the given built-in diagnostic ID is a
331/// Note.
332bool DiagnosticIDs::isBuiltinNote(unsigned DiagID) {
333 return DiagID < diag::DIAG_UPPER_LIMIT &&
334 getBuiltinDiagClass(DiagID) == CLASS_NOTE;
335}
336
337/// isBuiltinExtensionDiag - Determine whether the given built-in diagnostic
338/// ID is for an extension of some sort. This also returns EnabledByDefault,
339/// which is set to indicate whether the diagnostic is ignored by default (in
340/// which case -pedantic enables it) or treated as a warning/error by default.
341///
342bool DiagnosticIDs::isBuiltinExtensionDiag(unsigned DiagID,
343 bool &EnabledByDefault) {
344 if (DiagID >= diag::DIAG_UPPER_LIMIT ||
345 getBuiltinDiagClass(DiagID) != CLASS_EXTENSION)
346 return false;
347
Daniel Dunbara5e41332011-09-29 01:52:06 +0000348 EnabledByDefault =
349 GetDefaultDiagMappingInfo(DiagID).getMapping() != diag::MAP_IGNORE;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000350 return true;
351}
352
Daniel Dunbar76101cf2011-09-29 01:01:08 +0000353bool DiagnosticIDs::isDefaultMappingAsError(unsigned DiagID) {
354 if (DiagID >= diag::DIAG_UPPER_LIMIT)
355 return false;
356
Daniel Dunbara5e41332011-09-29 01:52:06 +0000357 return GetDefaultDiagMappingInfo(DiagID).getMapping() == diag::MAP_ERROR;
Daniel Dunbar76101cf2011-09-29 01:01:08 +0000358}
359
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000360/// getDescription - Given a diagnostic ID, return a description of the
361/// issue.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000362StringRef DiagnosticIDs::getDescription(unsigned DiagID) const {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000363 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000364 return Info->getDescription();
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000365 return CustomDiagInfo->getDescription(DiagID);
366}
367
David Blaikied6471f72011-09-25 23:23:43 +0000368/// getDiagnosticLevel - Based on the way the client configured the
369/// DiagnosticsEngine object, classify the specified diagnostic ID into a Level,
370/// by consumable the DiagnosticClient.
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000371DiagnosticIDs::Level
372DiagnosticIDs::getDiagnosticLevel(unsigned DiagID, SourceLocation Loc,
Daniel Dunbar1656aae2011-09-29 01:20:28 +0000373 const DiagnosticsEngine &Diag) const {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000374 // Handle custom diagnostics, which cannot be mapped.
375 if (DiagID >= diag::DIAG_UPPER_LIMIT)
376 return CustomDiagInfo->getLevel(DiagID);
377
378 unsigned DiagClass = getBuiltinDiagClass(DiagID);
Jordan Rosec6d64a22012-07-11 16:50:36 +0000379 if (DiagClass == CLASS_NOTE) return DiagnosticIDs::Note;
Daniel Dunbar1656aae2011-09-29 01:20:28 +0000380 return getDiagnosticLevel(DiagID, DiagClass, Loc, Diag);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000381}
382
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000383/// \brief Based on the way the client configured the Diagnostic
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000384/// object, classify the specified diagnostic ID into a Level, consumable by
385/// the DiagnosticClient.
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000386///
387/// \param Loc The source location we are interested in finding out the
388/// diagnostic state. Can be null in order to query the latest state.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000389DiagnosticIDs::Level
390DiagnosticIDs::getDiagnosticLevel(unsigned DiagID, unsigned DiagClass,
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000391 SourceLocation Loc,
Daniel Dunbar1656aae2011-09-29 01:20:28 +0000392 const DiagnosticsEngine &Diag) const {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000393 // Specific non-error diagnostics may be mapped to various levels from ignored
394 // to error. Errors can only be mapped to fatal.
395 DiagnosticIDs::Level Result = DiagnosticIDs::Fatal;
396
David Blaikied6471f72011-09-25 23:23:43 +0000397 DiagnosticsEngine::DiagStatePointsTy::iterator
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000398 Pos = Diag.GetDiagStatePointForLoc(Loc);
David Blaikied6471f72011-09-25 23:23:43 +0000399 DiagnosticsEngine::DiagState *State = Pos->State;
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000400
Daniel Dunbarba494c62011-09-29 01:42:25 +0000401 // Get the mapping information, or compute it lazily.
402 DiagnosticMappingInfo &MappingInfo = State->getOrAddMappingInfo(
403 (diag::kind)DiagID);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000404
Daniel Dunbarb1c99c62011-09-29 01:30:00 +0000405 switch (MappingInfo.getMapping()) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000406 case diag::MAP_IGNORE:
Daniel Dunbarbe1aa412011-09-29 01:58:05 +0000407 Result = DiagnosticIDs::Ignored;
408 break;
409 case diag::MAP_WARNING:
410 Result = DiagnosticIDs::Warning;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000411 break;
412 case diag::MAP_ERROR:
413 Result = DiagnosticIDs::Error;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000414 break;
415 case diag::MAP_FATAL:
416 Result = DiagnosticIDs::Fatal;
417 break;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000418 }
419
Daniel Dunbarbe1aa412011-09-29 01:58:05 +0000420 // Upgrade ignored diagnostics if -Weverything is enabled.
421 if (Diag.EnableAllWarnings && Result == DiagnosticIDs::Ignored &&
422 !MappingInfo.isUser())
423 Result = DiagnosticIDs::Warning;
424
Bob Wilson18c407f2011-10-12 19:55:31 +0000425 // Ignore -pedantic diagnostics inside __extension__ blocks.
426 // (The diagnostics controlled by -pedantic are the extension diagnostics
427 // that are not enabled by default.)
Daniel Dunbarf3dee202011-11-28 22:19:36 +0000428 bool EnabledByDefault = false;
Bob Wilson18c407f2011-10-12 19:55:31 +0000429 bool IsExtensionDiag = isBuiltinExtensionDiag(DiagID, EnabledByDefault);
430 if (Diag.AllExtensionsSilenced && IsExtensionDiag && !EnabledByDefault)
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000431 return DiagnosticIDs::Ignored;
432
Daniel Dunbarbe1aa412011-09-29 01:58:05 +0000433 // For extension diagnostics that haven't been explicitly mapped, check if we
434 // should upgrade the diagnostic.
435 if (IsExtensionDiag && !MappingInfo.isUser()) {
436 switch (Diag.ExtBehavior) {
437 case DiagnosticsEngine::Ext_Ignore:
438 break;
439 case DiagnosticsEngine::Ext_Warn:
440 // Upgrade ignored diagnostics to warnings.
441 if (Result == DiagnosticIDs::Ignored)
442 Result = DiagnosticIDs::Warning;
443 break;
444 case DiagnosticsEngine::Ext_Error:
445 // Upgrade ignored or warning diagnostics to errors.
446 if (Result == DiagnosticIDs::Ignored || Result == DiagnosticIDs::Warning)
447 Result = DiagnosticIDs::Error;
448 break;
449 }
450 }
451
452 // At this point, ignored errors can no longer be upgraded.
453 if (Result == DiagnosticIDs::Ignored)
454 return Result;
455
456 // Honor -w, which is lower in priority than pedantic-errors, but higher than
457 // -Werror.
458 if (Result == DiagnosticIDs::Warning && Diag.IgnoreAllWarnings)
459 return DiagnosticIDs::Ignored;
460
461 // If -Werror is enabled, map warnings to errors unless explicitly disabled.
462 if (Result == DiagnosticIDs::Warning) {
463 if (Diag.WarningsAsErrors && !MappingInfo.hasNoWarningAsError())
464 Result = DiagnosticIDs::Error;
465 }
466
467 // If -Wfatal-errors is enabled, map errors to fatal unless explicity
468 // disabled.
469 if (Result == DiagnosticIDs::Error) {
470 if (Diag.ErrorsAsFatal && !MappingInfo.hasNoErrorAsFatal())
471 Result = DiagnosticIDs::Fatal;
472 }
473
Daniel Dunbaraeacae52011-09-29 02:03:01 +0000474 // If we are in a system header, we ignore it. We look at the diagnostic class
475 // because we also want to ignore extensions and warnings in -Werror and
Argyrios Kyrtzidiscfdadfe2011-04-21 23:08:18 +0000476 // -pedantic-errors modes, which *map* warnings/extensions to errors.
477 if (Result >= DiagnosticIDs::Warning &&
478 DiagClass != CLASS_ERROR &&
479 // Custom diagnostics always are emitted in system headers.
480 DiagID < diag::DIAG_UPPER_LIMIT &&
Daniel Dunbarbe1aa412011-09-29 01:58:05 +0000481 !MappingInfo.hasShowInSystemHeader() &&
Argyrios Kyrtzidiscfdadfe2011-04-21 23:08:18 +0000482 Diag.SuppressSystemWarnings &&
483 Loc.isValid() &&
484 Diag.getSourceManager().isInSystemHeader(
Chandler Carruth40278532011-07-25 16:49:02 +0000485 Diag.getSourceManager().getExpansionLoc(Loc)))
Argyrios Kyrtzidiscfdadfe2011-04-21 23:08:18 +0000486 return DiagnosticIDs::Ignored;
487
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000488 return Result;
489}
490
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000491#define GET_DIAG_ARRAYS
492#include "clang/Basic/DiagnosticGroups.inc"
493#undef GET_DIAG_ARRAYS
494
Craig Topper46c8fca2013-08-29 06:06:18 +0000495namespace {
496 struct WarningOption {
497 uint16_t NameOffset;
498 uint16_t Members;
499 uint16_t SubGroups;
Craig Topper354f20a2013-08-29 05:18:04 +0000500
Craig Topper46c8fca2013-08-29 06:06:18 +0000501 // String is stored with a pascal-style length byte.
502 StringRef getName() const {
503 return StringRef(DiagGroupNames + NameOffset + 1,
504 DiagGroupNames[NameOffset]);
505 }
506 };
507}
Craig Topper354f20a2013-08-29 05:18:04 +0000508
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000509// Second the table of options, sorted by name for fast binary lookup.
510static const WarningOption OptionTable[] = {
511#define GET_DIAG_TABLE
512#include "clang/Basic/DiagnosticGroups.inc"
513#undef GET_DIAG_TABLE
514};
Craig Topperb9602322013-07-15 03:38:40 +0000515static const size_t OptionTableSize = llvm::array_lengthof(OptionTable);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000516
Craig Topper354f20a2013-08-29 05:18:04 +0000517static bool WarningOptionCompare(const WarningOption &LHS, StringRef RHS) {
518 return LHS.getName() < RHS;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000519}
520
Benjamin Kramerd49cb202012-02-15 20:57:03 +0000521/// getWarningOptionForDiag - Return the lowest-level warning option that
522/// enables the specified diagnostic. If there is no -Wfoo flag that controls
523/// the diagnostic, this returns null.
524StringRef DiagnosticIDs::getWarningOptionForDiag(unsigned DiagID) {
525 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
526 return OptionTable[Info->getOptionGroupIndex()].getName();
527 return StringRef();
528}
529
Craig Topper46c8fca2013-08-29 06:06:18 +0000530static void getDiagnosticsInGroup(const WarningOption *Group,
531 SmallVectorImpl<diag::kind> &Diags) {
Daniel Dunbar3f839462011-09-29 01:47:16 +0000532 // Add the members of the option diagnostic set.
Craig Topperb1aa16a2013-08-28 04:02:50 +0000533 const int16_t *Member = DiagArrays + Group->Members;
534 for (; *Member != -1; ++Member)
535 Diags.push_back(*Member);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000536
Daniel Dunbar3f839462011-09-29 01:47:16 +0000537 // Add the members of the subgroups.
Craig Topperb1aa16a2013-08-28 04:02:50 +0000538 const int16_t *SubGroups = DiagSubGroups + Group->SubGroups;
539 for (; *SubGroups != (int16_t)-1; ++SubGroups)
540 getDiagnosticsInGroup(&OptionTable[(short)*SubGroups], Diags);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000541}
542
Daniel Dunbar3f839462011-09-29 01:47:16 +0000543bool DiagnosticIDs::getDiagnosticsInGroup(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000544 StringRef Group,
545 SmallVectorImpl<diag::kind> &Diags) const {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000546 const WarningOption *Found =
Craig Topper354f20a2013-08-29 05:18:04 +0000547 std::lower_bound(OptionTable, OptionTable + OptionTableSize, Group,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000548 WarningOptionCompare);
549 if (Found == OptionTable + OptionTableSize ||
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000550 Found->getName() != Group)
Daniel Dunbar3f839462011-09-29 01:47:16 +0000551 return true; // Option not found.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000552
Craig Topper46c8fca2013-08-29 06:06:18 +0000553 ::getDiagnosticsInGroup(Found, Diags);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000554 return false;
555}
556
Argyrios Kyrtzidis11583c72012-01-27 06:15:43 +0000557void DiagnosticIDs::getAllDiagnostics(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000558 SmallVectorImpl<diag::kind> &Diags) const {
Argyrios Kyrtzidis11583c72012-01-27 06:15:43 +0000559 for (unsigned i = 0; i != StaticDiagInfoSize; ++i)
560 Diags.push_back(StaticDiagInfo[i].DiagID);
561}
562
Benjamin Kramera70cb9d2011-11-14 23:30:34 +0000563StringRef DiagnosticIDs::getNearestWarningOption(StringRef Group) {
564 StringRef Best;
Benjamin Kramerdce63272011-11-15 12:26:39 +0000565 unsigned BestDistance = Group.size() + 1; // Sanity threshold.
Benjamin Kramera70cb9d2011-11-14 23:30:34 +0000566 for (const WarningOption *i = OptionTable, *e = OptionTable + OptionTableSize;
567 i != e; ++i) {
568 // Don't suggest ignored warning flags.
569 if (!i->Members && !i->SubGroups)
570 continue;
571
572 unsigned Distance = i->getName().edit_distance(Group, true, BestDistance);
Benjamin Kramerdce63272011-11-15 12:26:39 +0000573 if (Distance == BestDistance) {
574 // Two matches with the same distance, don't prefer one over the other.
575 Best = "";
576 } else if (Distance < BestDistance) {
577 // This is a better match.
Benjamin Kramera70cb9d2011-11-14 23:30:34 +0000578 Best = i->getName();
579 BestDistance = Distance;
580 }
581 }
582
583 return Best;
584}
585
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000586/// ProcessDiag - This is the method used to report a diagnostic that is
587/// finally fully formed.
David Blaikied6471f72011-09-25 23:23:43 +0000588bool DiagnosticIDs::ProcessDiag(DiagnosticsEngine &Diag) const {
David Blaikie40847cf2011-09-26 01:18:08 +0000589 Diagnostic Info(&Diag);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000590
591 if (Diag.SuppressAllDiagnostics)
592 return false;
593
594 assert(Diag.getClient() && "DiagnosticClient not set!");
595
596 // Figure out the diagnostic level of this message.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000597 unsigned DiagID = Info.getID();
Jordan Rosec6d64a22012-07-11 16:50:36 +0000598 DiagnosticIDs::Level DiagLevel
599 = getDiagnosticLevel(DiagID, Info.getLocation(), Diag);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000600
601 if (DiagLevel != DiagnosticIDs::Note) {
602 // Record that a fatal error occurred only when we see a second
603 // non-note diagnostic. This allows notes to be attached to the
604 // fatal error, but suppresses any diagnostics that follow those
605 // notes.
606 if (Diag.LastDiagLevel == DiagnosticIDs::Fatal)
607 Diag.FatalErrorOccurred = true;
608
609 Diag.LastDiagLevel = DiagLevel;
610 }
611
Argyrios Kyrtzidisc0a575f2011-07-29 01:25:44 +0000612 // Update counts for DiagnosticErrorTrap even if a fatal error occurred.
613 if (DiagLevel >= DiagnosticIDs::Error) {
614 ++Diag.TrapNumErrorsOccurred;
615 if (isUnrecoverable(DiagID))
616 ++Diag.TrapNumUnrecoverableErrorsOccurred;
617 }
618
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000619 // If a fatal error has already been emitted, silence all subsequent
620 // diagnostics.
621 if (Diag.FatalErrorOccurred) {
622 if (DiagLevel >= DiagnosticIDs::Error &&
623 Diag.Client->IncludeInDiagnosticCounts()) {
624 ++Diag.NumErrors;
625 ++Diag.NumErrorsSuppressed;
626 }
627
628 return false;
629 }
630
631 // If the client doesn't care about this message, don't issue it. If this is
632 // a note and the last real diagnostic was ignored, ignore it too.
633 if (DiagLevel == DiagnosticIDs::Ignored ||
634 (DiagLevel == DiagnosticIDs::Note &&
635 Diag.LastDiagLevel == DiagnosticIDs::Ignored))
636 return false;
637
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000638 if (DiagLevel >= DiagnosticIDs::Error) {
Argyrios Kyrtzidisc0a575f2011-07-29 01:25:44 +0000639 if (isUnrecoverable(DiagID))
Douglas Gregor85bea972011-07-06 17:40:26 +0000640 Diag.UnrecoverableErrorOccurred = true;
Daniel Jasper1c84c682012-09-28 15:45:07 +0000641
DeLesley Hutchins12f37e42012-12-07 22:53:48 +0000642 // Warnings which have been upgraded to errors do not prevent compilation.
643 if (isDefaultMappingAsError(DiagID))
644 Diag.UncompilableErrorOccurred = true;
645
Daniel Jasper1c84c682012-09-28 15:45:07 +0000646 Diag.ErrorOccurred = true;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000647 if (Diag.Client->IncludeInDiagnosticCounts()) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000648 ++Diag.NumErrors;
649 }
650
Douglas Gregorf1d59482011-08-17 19:13:00 +0000651 // If we've emitted a lot of errors, emit a fatal error instead of it to
652 // stop a flood of bogus errors.
653 if (Diag.ErrorLimit && Diag.NumErrors > Diag.ErrorLimit &&
654 DiagLevel == DiagnosticIDs::Error) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000655 Diag.SetDelayedDiagnostic(diag::fatal_too_many_errors);
Douglas Gregorf1d59482011-08-17 19:13:00 +0000656 return false;
657 }
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000658 }
659
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000660 // Finally, report it.
Jordan Rosec6d64a22012-07-11 16:50:36 +0000661 EmitDiag(Diag, DiagLevel);
662 return true;
663}
664
665void DiagnosticIDs::EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const {
666 Diagnostic Info(&Diag);
667 assert(DiagLevel != DiagnosticIDs::Ignored && "Cannot emit ignored diagnostics!");
668
David Blaikied6471f72011-09-25 23:23:43 +0000669 Diag.Client->HandleDiagnostic((DiagnosticsEngine::Level)DiagLevel, Info);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000670 if (Diag.Client->IncludeInDiagnosticCounts()) {
671 if (DiagLevel == DiagnosticIDs::Warning)
672 ++Diag.NumWarnings;
673 }
674
675 Diag.CurDiagID = ~0U;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000676}
John McCall923cd572011-06-15 21:46:43 +0000677
678bool DiagnosticIDs::isUnrecoverable(unsigned DiagID) const {
679 if (DiagID >= diag::DIAG_UPPER_LIMIT) {
680 // Custom diagnostics.
681 return CustomDiagInfo->getLevel(DiagID) >= DiagnosticIDs::Error;
682 }
683
684 // Only errors may be unrecoverable.
Douglas Gregor85bea972011-07-06 17:40:26 +0000685 if (getBuiltinDiagClass(DiagID) < CLASS_ERROR)
John McCall923cd572011-06-15 21:46:43 +0000686 return false;
687
688 if (DiagID == diag::err_unavailable ||
689 DiagID == diag::err_unavailable_message)
690 return false;
691
John McCallf85e1932011-06-15 23:02:42 +0000692 // Currently we consider all ARC errors as recoverable.
Ted Kremenekafdc21a2011-10-20 05:07:47 +0000693 if (isARCDiagnostic(DiagID))
John McCallf85e1932011-06-15 23:02:42 +0000694 return false;
695
John McCall923cd572011-06-15 21:46:43 +0000696 return true;
697}
Ted Kremenekafdc21a2011-10-20 05:07:47 +0000698
699bool DiagnosticIDs::isARCDiagnostic(unsigned DiagID) {
700 unsigned cat = getCategoryNumberForDiag(DiagID);
701 return DiagnosticIDs::getCategoryNameFromID(cat).startswith("ARC ");
702}