blob: b26d08544f3a442569440b96980aefc51092b77d [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Diagnostic.cpp - C Language Family Diagnostic Handling -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Diagnostic-related interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Basic/Diagnostic.h"
Chris Lattner27ceb9d2009-04-15 07:01:18 +000015
16#include "clang/Lex/LexDiagnostic.h"
17#include "clang/Parse/ParseDiagnostic.h"
18#include "clang/AST/ASTDiagnostic.h"
19#include "clang/Sema/SemaDiagnostic.h"
20#include "clang/Frontend/FrontendDiagnostic.h"
21#include "clang/Analysis/AnalysisDiagnostic.h"
22#include "clang/Driver/DriverDiagnostic.h"
23
Chris Lattner43b628c2008-11-19 07:32:16 +000024#include "clang/Basic/IdentifierTable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "clang/Basic/SourceLocation.h"
Chris Lattnerf4c83962008-11-19 06:51:40 +000026#include "llvm/ADT/SmallVector.h"
Chris Lattner30bc9652008-11-19 07:22:31 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner182745a2007-12-02 01:09:57 +000028#include <vector>
29#include <map>
Chris Lattner87cf5ac2008-03-10 17:04:53 +000030#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
Chris Lattner182745a2007-12-02 01:09:57 +000033//===----------------------------------------------------------------------===//
34// Builtin Diagnostic information
35//===----------------------------------------------------------------------===//
36
Chris Lattner27ceb9d2009-04-15 07:01:18 +000037// DefaultDiagnosticMappings - This specifies the default mapping for each diag,
38// based on its kind. Yay for macros?
39
40struct DefaultMappingInfo {
41 unsigned DiagID : 14;
42 unsigned Mapping : 2;
43};
44
Chris Lattner27ceb9d2009-04-15 07:01:18 +000045static const DefaultMappingInfo DefaultMappings[] = {
Chris Lattner19cbb442009-04-16 05:52:14 +000046#define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP) \
47 { diag::ENUM, DEFAULT_MAPPING-1 },
Chris Lattner27ceb9d2009-04-15 07:01:18 +000048#include "clang/Basic/DiagnosticCommonKinds.inc"
49#include "clang/Basic/DiagnosticDriverKinds.inc"
50#include "clang/Basic/DiagnosticFrontendKinds.inc"
51#include "clang/Basic/DiagnosticLexKinds.inc"
52#include "clang/Basic/DiagnosticParseKinds.inc"
53#include "clang/Basic/DiagnosticASTKinds.inc"
54#include "clang/Basic/DiagnosticSemaKinds.inc"
55#include "clang/Basic/DiagnosticAnalysisKinds.inc"
56{ 0, 0 }
57};
Chris Lattner8a941e02009-04-15 16:56:26 +000058#undef DIAG
Chris Lattner27ceb9d2009-04-15 07:01:18 +000059
Chris Lattner691f1ae2009-04-16 04:12:40 +000060static unsigned GetDefaultDiagMapping(unsigned DiagID) {
61 // FIXME: Binary search.
62 for (unsigned i = 0, e = sizeof(DefaultMappings)/sizeof(DefaultMappings[0]);
63 i != e; ++i)
64 if (DefaultMappings[i].DiagID == DiagID)
65 return DefaultMappings[i].Mapping+1;
66 return diag::MAP_FATAL;
67}
68
Chris Lattnerd51d74a2009-04-16 05:44:38 +000069/// getWarningOptionForDiag - Return the lowest-level warning option that
70/// enables the specified diagnostic. If there is no -Wfoo flag that controls
71/// the diagnostic, this returns null.
72const char *Diagnostic::getWarningOptionForDiag(unsigned DiagID) {
73 return 0; //"Wfoo";
74}
75
Chris Lattner691f1ae2009-04-16 04:12:40 +000076
Chris Lattner27ceb9d2009-04-15 07:01:18 +000077// Diagnostic classes.
Reid Spencer5f016e22007-07-11 17:01:13 +000078enum {
Chris Lattner8a941e02009-04-15 16:56:26 +000079 CLASS_NOTE = 0x01,
80 CLASS_WARNING = 0x02,
81 CLASS_EXTENSION = 0x03,
82 CLASS_ERROR = 0x04
Reid Spencer5f016e22007-07-11 17:01:13 +000083};
84
Chris Lattner27ceb9d2009-04-15 07:01:18 +000085/// DiagnosticClasses - The class for each diagnostic.
Chris Lattner19cbb442009-04-16 05:52:14 +000086#define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP) CLASS,
Chris Lattner27ceb9d2009-04-15 07:01:18 +000087static unsigned char DiagnosticClassesCommon[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +000088#include "clang/Basic/DiagnosticCommonKinds.inc"
Reid Spencer5f016e22007-07-11 17:01:13 +000089 0
90};
Chris Lattner27ceb9d2009-04-15 07:01:18 +000091static unsigned char DiagnosticClassesDriver[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +000092#include "clang/Basic/DiagnosticDriverKinds.inc"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000093 0
94};
Chris Lattner27ceb9d2009-04-15 07:01:18 +000095static unsigned char DiagnosticClassesFrontend[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +000096#include "clang/Basic/DiagnosticFrontendKinds.inc"
Daniel Dunbar50f4f462009-03-12 10:14:16 +000097 0
98};
Chris Lattner27ceb9d2009-04-15 07:01:18 +000099static unsigned char DiagnosticClassesLex[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000100#include "clang/Basic/DiagnosticLexKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000101 0
102};
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000103static unsigned char DiagnosticClassesParse[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000104#include "clang/Basic/DiagnosticParseKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000105 0
106};
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000107static unsigned char DiagnosticClassesAST[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000108#include "clang/Basic/DiagnosticASTKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000109 0
110};
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000111static unsigned char DiagnosticClassesSema[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000112#include "clang/Basic/DiagnosticSemaKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000113 0
114};
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000115static unsigned char DiagnosticClassesAnalysis[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000116#include "clang/Basic/DiagnosticAnalysisKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000117 0
118};
119#undef DIAG
Reid Spencer5f016e22007-07-11 17:01:13 +0000120
121/// getDiagClass - Return the class field of the diagnostic.
122///
Chris Lattner07506182007-11-30 22:53:43 +0000123static unsigned getBuiltinDiagClass(unsigned DiagID) {
Chris Lattner19e8e2c2009-01-29 17:46:13 +0000124 assert(DiagID < diag::DIAG_UPPER_LIMIT &&
Chris Lattner07506182007-11-30 22:53:43 +0000125 "Diagnostic ID out of range!");
Chris Lattnerfe526d22009-04-15 18:48:23 +0000126 unsigned char *Arr;
127 unsigned ArrSize;
128 if (DiagID <= diag::DIAG_START_DRIVER) {
129 DiagID -= 0;
130 Arr = DiagnosticClassesCommon;
131 ArrSize = sizeof(DiagnosticClassesCommon);
132 } else if (DiagID <= diag::DIAG_START_FRONTEND) {
133 DiagID -= diag::DIAG_START_DRIVER + 1;
134 Arr = DiagnosticClassesDriver;
135 ArrSize = sizeof(DiagnosticClassesDriver);
136 } else if (DiagID <= diag::DIAG_START_LEX) {
137 DiagID -= diag::DIAG_START_FRONTEND + 1;
138 Arr = DiagnosticClassesFrontend;
139 ArrSize = sizeof(DiagnosticClassesFrontend);
140 } else if (DiagID <= diag::DIAG_START_PARSE) {
141 DiagID -= diag::DIAG_START_LEX + 1;
142 Arr = DiagnosticClassesLex;
143 ArrSize = sizeof(DiagnosticClassesLex);
144 } else if (DiagID <= diag::DIAG_START_AST) {
145 DiagID -= diag::DIAG_START_PARSE + 1;
146 Arr = DiagnosticClassesParse;
147 ArrSize = sizeof(DiagnosticClassesParse);
148 } else if (DiagID <= diag::DIAG_START_SEMA) {
149 DiagID -= diag::DIAG_START_AST + 1;
150 Arr = DiagnosticClassesAST;
151 ArrSize = sizeof(DiagnosticClassesAST);
152
153 } else if (DiagID <= diag::DIAG_START_ANALYSIS) {
154 DiagID -= diag::DIAG_START_SEMA + 1;
155 Arr = DiagnosticClassesSema;
156 ArrSize = sizeof(DiagnosticClassesSema);
157 } else {
158 DiagID -= diag::DIAG_START_ANALYSIS + 1;
159 Arr = DiagnosticClassesAnalysis;
160 ArrSize = sizeof(DiagnosticClassesAnalysis);
161 }
162 return DiagID < ArrSize ? Arr[DiagID] : ~0U;
Reid Spencer5f016e22007-07-11 17:01:13 +0000163}
164
165/// DiagnosticText - An english message to print for the diagnostic. These
166/// should be localized.
Chris Lattner19cbb442009-04-16 05:52:14 +0000167#define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP) DESC,
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000168static const char * const DiagnosticTextCommon[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000169#include "clang/Basic/DiagnosticCommonKinds.inc"
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 0
171};
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +0000172static const char * const DiagnosticTextDriver[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000173#include "clang/Basic/DiagnosticDriverKinds.inc"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +0000174 0
175};
Daniel Dunbar50f4f462009-03-12 10:14:16 +0000176static const char * const DiagnosticTextFrontend[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000177#include "clang/Basic/DiagnosticFrontendKinds.inc"
Daniel Dunbar50f4f462009-03-12 10:14:16 +0000178 0
179};
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000180static const char * const DiagnosticTextLex[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000181#include "clang/Basic/DiagnosticLexKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000182 0
183};
184static const char * const DiagnosticTextParse[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000185#include "clang/Basic/DiagnosticParseKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000186 0
187};
188static const char * const DiagnosticTextAST[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000189#include "clang/Basic/DiagnosticASTKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000190 0
191};
192static const char * const DiagnosticTextSema[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000193#include "clang/Basic/DiagnosticSemaKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000194 0
195};
196static const char * const DiagnosticTextAnalysis[] = {
Sebastian Redl4d7a0892009-03-19 23:18:26 +0000197#include "clang/Basic/DiagnosticAnalysisKinds.inc"
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000198 0
199};
200#undef DIAG
Reid Spencer5f016e22007-07-11 17:01:13 +0000201
Chris Lattner182745a2007-12-02 01:09:57 +0000202//===----------------------------------------------------------------------===//
203// Custom Diagnostic information
204//===----------------------------------------------------------------------===//
205
206namespace clang {
207 namespace diag {
208 class CustomDiagInfo {
209 typedef std::pair<Diagnostic::Level, std::string> DiagDesc;
210 std::vector<DiagDesc> DiagInfo;
211 std::map<DiagDesc, unsigned> DiagIDs;
212 public:
213
214 /// getDescription - Return the description of the specified custom
215 /// diagnostic.
216 const char *getDescription(unsigned DiagID) const {
Chris Lattner88eccaf2009-01-29 06:55:46 +0000217 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
Chris Lattner182745a2007-12-02 01:09:57 +0000218 "Invalid diagnosic ID");
Chris Lattner88eccaf2009-01-29 06:55:46 +0000219 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].second.c_str();
Chris Lattner182745a2007-12-02 01:09:57 +0000220 }
221
222 /// getLevel - Return the level of the specified custom diagnostic.
223 Diagnostic::Level getLevel(unsigned DiagID) const {
Chris Lattner88eccaf2009-01-29 06:55:46 +0000224 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
Chris Lattner182745a2007-12-02 01:09:57 +0000225 "Invalid diagnosic ID");
Chris Lattner88eccaf2009-01-29 06:55:46 +0000226 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].first;
Chris Lattner182745a2007-12-02 01:09:57 +0000227 }
228
Chris Lattnera1f23cc2008-10-17 21:24:47 +0000229 unsigned getOrCreateDiagID(Diagnostic::Level L, const char *Message,
230 Diagnostic &Diags) {
Chris Lattner182745a2007-12-02 01:09:57 +0000231 DiagDesc D(L, Message);
232 // Check to see if it already exists.
233 std::map<DiagDesc, unsigned>::iterator I = DiagIDs.lower_bound(D);
234 if (I != DiagIDs.end() && I->first == D)
235 return I->second;
236
237 // If not, assign a new ID.
Chris Lattner88eccaf2009-01-29 06:55:46 +0000238 unsigned ID = DiagInfo.size()+DIAG_UPPER_LIMIT;
Chris Lattner182745a2007-12-02 01:09:57 +0000239 DiagIDs.insert(std::make_pair(D, ID));
240 DiagInfo.push_back(D);
Chris Lattnera1f23cc2008-10-17 21:24:47 +0000241
242 // If this is a warning, and all warnings are supposed to map to errors,
243 // insert the mapping now.
244 if (L == Diagnostic::Warning && Diags.getWarningsAsErrors())
245 Diags.setDiagnosticMapping((diag::kind)ID, diag::MAP_ERROR);
Chris Lattner182745a2007-12-02 01:09:57 +0000246 return ID;
247 }
248 };
249
250 } // end diag namespace
251} // end clang namespace
252
253
254//===----------------------------------------------------------------------===//
255// Common Diagnostic implementation
256//===----------------------------------------------------------------------===//
257
Chris Lattner3fdf4b02008-11-23 09:21:17 +0000258static void DummyArgToStringFn(Diagnostic::ArgumentKind AK, intptr_t QT,
259 const char *Modifier, unsigned ML,
260 const char *Argument, unsigned ArgLen,
Chris Lattner92dd3862009-02-19 23:53:20 +0000261 llvm::SmallVectorImpl<char> &Output,
262 void *Cookie) {
Chris Lattner3fdf4b02008-11-23 09:21:17 +0000263 const char *Str = "<can't format argument>";
Chris Lattner22caddc2008-11-23 09:13:29 +0000264 Output.append(Str, Str+strlen(Str));
265}
266
267
Ted Kremenekb4398aa2008-08-07 17:49:57 +0000268Diagnostic::Diagnostic(DiagnosticClient *client) : Client(client) {
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000269 AllExtensionsSilenced = 0;
Chris Lattner5b4681c2008-05-29 15:36:45 +0000270 IgnoreAllWarnings = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 WarningsAsErrors = false;
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000272 SuppressSystemWarnings = false;
Chris Lattnerb54b2762009-04-16 05:04:32 +0000273 ExtBehavior = Ext_Ignore;
Reid Spencer5f016e22007-07-11 17:01:13 +0000274
275 ErrorOccurred = false;
Chris Lattner15221422009-02-06 04:16:02 +0000276 FatalErrorOccurred = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 NumDiagnostics = 0;
278 NumErrors = 0;
Chris Lattner182745a2007-12-02 01:09:57 +0000279 CustomDiagInfo = 0;
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000280 CurDiagID = ~0U;
Douglas Gregor525c4b02009-03-19 18:55:06 +0000281 LastDiagLevel = Ignored;
Chris Lattner22caddc2008-11-23 09:13:29 +0000282
Chris Lattner3fdf4b02008-11-23 09:21:17 +0000283 ArgToStringFn = DummyArgToStringFn;
Chris Lattner92dd3862009-02-19 23:53:20 +0000284 ArgToStringCookie = 0;
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000285
Chris Lattner691f1ae2009-04-16 04:12:40 +0000286 // Set all mappings to 'unset'.
287 memset(DiagMappings, 0, sizeof(DiagMappings));
Reid Spencer5f016e22007-07-11 17:01:13 +0000288}
289
Chris Lattner182745a2007-12-02 01:09:57 +0000290Diagnostic::~Diagnostic() {
291 delete CustomDiagInfo;
292}
293
294/// getCustomDiagID - Return an ID for a diagnostic with the specified message
295/// and level. If this is the first request for this diagnosic, it is
296/// registered and created, otherwise the existing ID is returned.
297unsigned Diagnostic::getCustomDiagID(Level L, const char *Message) {
298 if (CustomDiagInfo == 0)
299 CustomDiagInfo = new diag::CustomDiagInfo();
Chris Lattnera1f23cc2008-10-17 21:24:47 +0000300 return CustomDiagInfo->getOrCreateDiagID(L, Message, *this);
Chris Lattner182745a2007-12-02 01:09:57 +0000301}
302
303
Chris Lattnerf5d23282009-02-17 06:49:55 +0000304/// isBuiltinWarningOrExtension - Return true if the unmapped diagnostic
305/// level of the specified diagnostic ID is a Warning or Extension.
306/// This only works on builtin diagnostics, not custom ones, and is not legal to
307/// call on NOTEs.
308bool Diagnostic::isBuiltinWarningOrExtension(unsigned DiagID) {
Chris Lattner8a941e02009-04-15 16:56:26 +0000309 return DiagID < diag::DIAG_UPPER_LIMIT &&
310 getBuiltinDiagClass(DiagID) != CLASS_ERROR;
Reid Spencer5f016e22007-07-11 17:01:13 +0000311}
312
Douglas Gregoree1828a2009-03-10 18:03:33 +0000313/// \brief Determine whether the given built-in diagnostic ID is a
314/// Note.
315bool Diagnostic::isBuiltinNote(unsigned DiagID) {
Chris Lattner8a941e02009-04-15 16:56:26 +0000316 return DiagID < diag::DIAG_UPPER_LIMIT &&
317 getBuiltinDiagClass(DiagID) == CLASS_NOTE;
Douglas Gregoree1828a2009-03-10 18:03:33 +0000318}
319
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000320/// isBuiltinExtensionDiag - Determine whether the given built-in diagnostic
321/// ID is for an extension of some sort.
322///
323bool Diagnostic::isBuiltinExtensionDiag(unsigned DiagID) {
Chris Lattner8a941e02009-04-15 16:56:26 +0000324 return DiagID < diag::DIAG_UPPER_LIMIT &&
325 getBuiltinDiagClass(DiagID) == CLASS_EXTENSION;
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000326}
327
Reid Spencer5f016e22007-07-11 17:01:13 +0000328
329/// getDescription - Given a diagnostic ID, return a description of the
330/// issue.
Chris Lattner0a14eee2008-11-18 07:04:44 +0000331const char *Diagnostic::getDescription(unsigned DiagID) const {
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +0000332 if (DiagID < diag::DIAG_START_DRIVER)
Chris Lattnerf5d23282009-02-17 06:49:55 +0000333 return DiagnosticTextCommon[DiagID];
Daniel Dunbar50f4f462009-03-12 10:14:16 +0000334 else if (DiagID < diag::DIAG_START_FRONTEND)
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +0000335 return DiagnosticTextDriver[DiagID - diag::DIAG_START_DRIVER - 1];
Daniel Dunbar50f4f462009-03-12 10:14:16 +0000336 else if (DiagID < diag::DIAG_START_LEX)
337 return DiagnosticTextFrontend[DiagID - diag::DIAG_START_FRONTEND - 1];
Chris Lattnerf5d23282009-02-17 06:49:55 +0000338 else if (DiagID < diag::DIAG_START_PARSE)
339 return DiagnosticTextLex[DiagID - diag::DIAG_START_LEX - 1];
340 else if (DiagID < diag::DIAG_START_AST)
341 return DiagnosticTextParse[DiagID - diag::DIAG_START_PARSE - 1];
342 else if (DiagID < diag::DIAG_START_SEMA)
343 return DiagnosticTextAST[DiagID - diag::DIAG_START_AST - 1];
344 else if (DiagID < diag::DIAG_START_ANALYSIS)
345 return DiagnosticTextSema[DiagID - diag::DIAG_START_SEMA - 1];
346 else if (DiagID < diag::DIAG_UPPER_LIMIT)
347 return DiagnosticTextAnalysis[DiagID - diag::DIAG_START_ANALYSIS - 1];
Chris Lattner20c6b3b2009-01-27 18:30:58 +0000348 return CustomDiagInfo->getDescription(DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000349}
350
351/// getDiagnosticLevel - Based on the way the client configured the Diagnostic
352/// object, classify the specified diagnostic ID into a Level, consumable by
353/// the DiagnosticClient.
354Diagnostic::Level Diagnostic::getDiagnosticLevel(unsigned DiagID) const {
Chris Lattner182745a2007-12-02 01:09:57 +0000355 // Handle custom diagnostics, which cannot be mapped.
Chris Lattner19e8e2c2009-01-29 17:46:13 +0000356 if (DiagID >= diag::DIAG_UPPER_LIMIT)
Chris Lattner182745a2007-12-02 01:09:57 +0000357 return CustomDiagInfo->getLevel(DiagID);
Chris Lattner07506182007-11-30 22:53:43 +0000358
359 unsigned DiagClass = getBuiltinDiagClass(DiagID);
Chris Lattner8a941e02009-04-15 16:56:26 +0000360 assert(DiagClass != CLASS_NOTE && "Cannot get diagnostic level of a note!");
Chris Lattnerf5d23282009-02-17 06:49:55 +0000361 return getDiagnosticLevel(DiagID, DiagClass);
362}
363
364/// getDiagnosticLevel - Based on the way the client configured the Diagnostic
365/// object, classify the specified diagnostic ID into a Level, consumable by
366/// the DiagnosticClient.
367Diagnostic::Level
368Diagnostic::getDiagnosticLevel(unsigned DiagID, unsigned DiagClass) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000369 // Specific non-error diagnostics may be mapped to various levels from ignored
Chris Lattnerf5d23282009-02-17 06:49:55 +0000370 // to error. Errors can only be mapped to fatal.
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000371 Diagnostic::Level Result = Diagnostic::Fatal;
Chris Lattner691f1ae2009-04-16 04:12:40 +0000372
373 // Get the mapping information, if unset, compute it lazily.
374 unsigned MappingInfo = getDiagnosticMappingInfo((diag::kind)DiagID);
375 if (MappingInfo == 0) {
376 MappingInfo = GetDefaultDiagMapping(DiagID);
377 setDiagnosticMappingInternal(DiagID, MappingInfo, false);
378 }
379
380 switch (MappingInfo & 7) {
381 default: assert(0 && "Unknown mapping!");
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000382 case diag::MAP_IGNORE:
Chris Lattnerb54b2762009-04-16 05:04:32 +0000383 // Ignore this, unless this is an extension diagnostic and we're mapping
384 // them onto warnings or errors.
385 if (!isBuiltinExtensionDiag(DiagID) || // Not an extension
386 ExtBehavior == Ext_Ignore || // Extensions ignored anyway
387 (MappingInfo & 8) != 0) // User explicitly mapped it.
388 return Diagnostic::Ignored;
389 Result = Diagnostic::Warning;
390 if (ExtBehavior == Ext_Error) Result = Diagnostic::Error;
391 break;
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000392 case diag::MAP_ERROR:
393 Result = Diagnostic::Error;
394 break;
395 case diag::MAP_FATAL:
396 Result = Diagnostic::Fatal;
397 break;
398 case diag::MAP_WARNING:
399 // If warnings are globally mapped to ignore or error, do it.
Chris Lattner5b4681c2008-05-29 15:36:45 +0000400 if (IgnoreAllWarnings)
401 return Diagnostic::Ignored;
Chris Lattner2b07d8f2009-04-16 04:32:54 +0000402
403 Result = Diagnostic::Warning;
Chris Lattnerb54b2762009-04-16 05:04:32 +0000404
405 // If this is an extension diagnostic and we're in -pedantic-error mode, and
406 // if the user didn't explicitly map it, upgrade to an error.
407 if (ExtBehavior == Ext_Error &&
408 (MappingInfo & 8) == 0 &&
409 isBuiltinExtensionDiag(DiagID))
410 Result = Diagnostic::Error;
411
Chris Lattner2b07d8f2009-04-16 04:32:54 +0000412 if (WarningsAsErrors)
413 Result = Diagnostic::Error;
414 break;
Chris Lattnerb54b2762009-04-16 05:04:32 +0000415
Chris Lattner2b07d8f2009-04-16 04:32:54 +0000416 case diag::MAP_WARNING_NO_WERROR:
417 // Diagnostics specified with -Wno-error=foo should be set to warnings, but
418 // not be adjusted by -Werror or -pedantic-errors.
419 Result = Diagnostic::Warning;
420
421 // If warnings are globally mapped to ignore or error, do it.
422 if (IgnoreAllWarnings)
423 return Diagnostic::Ignored;
424
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000425 break;
Chris Lattner5b4681c2008-05-29 15:36:45 +0000426 }
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000427
428 // Okay, we're about to return this as a "diagnostic to emit" one last check:
429 // if this is any sort of extension warning, and if we're in an __extension__
430 // block, silence it.
431 if (AllExtensionsSilenced && isBuiltinExtensionDiag(DiagID))
432 return Diagnostic::Ignored;
Reid Spencer5f016e22007-07-11 17:01:13 +0000433
Chris Lattner27ceb9d2009-04-15 07:01:18 +0000434 return Result;
Reid Spencer5f016e22007-07-11 17:01:13 +0000435}
436
Chris Lattner0a14eee2008-11-18 07:04:44 +0000437/// ProcessDiag - This is the method used to report a diagnostic that is
438/// finally fully formed.
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000439void Diagnostic::ProcessDiag() {
440 DiagnosticInfo Info(this);
Douglas Gregor525c4b02009-03-19 18:55:06 +0000441
Reid Spencer5f016e22007-07-11 17:01:13 +0000442 // Figure out the diagnostic level of this message.
Chris Lattnerf5d23282009-02-17 06:49:55 +0000443 Diagnostic::Level DiagLevel;
444 unsigned DiagID = Info.getID();
Reid Spencer5f016e22007-07-11 17:01:13 +0000445
Chris Lattnerf5d23282009-02-17 06:49:55 +0000446 // ShouldEmitInSystemHeader - True if this diagnostic should be produced even
447 // in a system header.
448 bool ShouldEmitInSystemHeader;
449
450 if (DiagID >= diag::DIAG_UPPER_LIMIT) {
451 // Handle custom diagnostics, which cannot be mapped.
452 DiagLevel = CustomDiagInfo->getLevel(DiagID);
453
454 // Custom diagnostics always are emitted in system headers.
455 ShouldEmitInSystemHeader = true;
456 } else {
457 // Get the class of the diagnostic. If this is a NOTE, map it onto whatever
458 // the diagnostic level was for the previous diagnostic so that it is
459 // filtered the same as the previous diagnostic.
460 unsigned DiagClass = getBuiltinDiagClass(DiagID);
Chris Lattner8a941e02009-04-15 16:56:26 +0000461 if (DiagClass == CLASS_NOTE) {
Chris Lattnerf5d23282009-02-17 06:49:55 +0000462 DiagLevel = Diagnostic::Note;
463 ShouldEmitInSystemHeader = false; // extra consideration is needed
464 } else {
465 // If this is not an error and we are in a system header, we ignore it.
466 // Check the original Diag ID here, because we also want to ignore
467 // extensions and warnings in -Werror and -pedantic-errors modes, which
468 // *map* warnings/extensions to errors.
Chris Lattner8a941e02009-04-15 16:56:26 +0000469 ShouldEmitInSystemHeader = DiagClass == CLASS_ERROR;
Chris Lattnerf5d23282009-02-17 06:49:55 +0000470
471 DiagLevel = getDiagnosticLevel(DiagID, DiagClass);
472 }
473 }
474
Douglas Gregor525c4b02009-03-19 18:55:06 +0000475 if (DiagLevel != Diagnostic::Note) {
476 // Record that a fatal error occurred only when we see a second
477 // non-note diagnostic. This allows notes to be attached to the
478 // fatal error, but suppresses any diagnostics that follow those
479 // notes.
480 if (LastDiagLevel == Diagnostic::Fatal)
481 FatalErrorOccurred = true;
482
Chris Lattnerf5d23282009-02-17 06:49:55 +0000483 LastDiagLevel = DiagLevel;
Douglas Gregor525c4b02009-03-19 18:55:06 +0000484 }
485
486 // If a fatal error has already been emitted, silence all subsequent
487 // diagnostics.
488 if (FatalErrorOccurred)
489 return;
490
Chris Lattnerf5d23282009-02-17 06:49:55 +0000491 // If the client doesn't care about this message, don't issue it. If this is
492 // a note and the last real diagnostic was ignored, ignore it too.
493 if (DiagLevel == Diagnostic::Ignored ||
494 (DiagLevel == Diagnostic::Note && LastDiagLevel == Diagnostic::Ignored))
Reid Spencer5f016e22007-07-11 17:01:13 +0000495 return;
Nico Weber7bfaaae2008-08-10 19:59:06 +0000496
Chris Lattnerf5d23282009-02-17 06:49:55 +0000497 // If this diagnostic is in a system header and is not a clang error, suppress
498 // it.
499 if (SuppressSystemWarnings && !ShouldEmitInSystemHeader &&
Chris Lattner0a14eee2008-11-18 07:04:44 +0000500 Info.getLocation().isValid() &&
Chris Lattnerf5d23282009-02-17 06:49:55 +0000501 Info.getLocation().getSpellingLoc().isInSystemHeader() &&
Chris Lattner336f26b2009-02-17 06:52:20 +0000502 (DiagLevel != Diagnostic::Note || LastDiagLevel == Diagnostic::Ignored)) {
503 LastDiagLevel = Diagnostic::Ignored;
Chris Lattner7097d912008-02-03 09:00:04 +0000504 return;
Chris Lattner336f26b2009-02-17 06:52:20 +0000505 }
Chris Lattnerf5d23282009-02-17 06:49:55 +0000506
Reid Spencer5f016e22007-07-11 17:01:13 +0000507 if (DiagLevel >= Diagnostic::Error) {
508 ErrorOccurred = true;
Chris Lattner0a14eee2008-11-18 07:04:44 +0000509 ++NumErrors;
Reid Spencer5f016e22007-07-11 17:01:13 +0000510 }
Chris Lattnerf5d23282009-02-17 06:49:55 +0000511
Reid Spencer5f016e22007-07-11 17:01:13 +0000512 // Finally, report it.
Chris Lattner0a14eee2008-11-18 07:04:44 +0000513 Client->HandleDiagnostic(DiagLevel, Info);
Ted Kremenekcabe6682009-01-23 20:28:53 +0000514 if (Client->IncludeInDiagnosticCounts()) ++NumDiagnostics;
Douglas Gregoree1828a2009-03-10 18:03:33 +0000515
Douglas Gregoree1828a2009-03-10 18:03:33 +0000516 CurDiagID = ~0U;
Reid Spencer5f016e22007-07-11 17:01:13 +0000517}
518
Nico Weber7bfaaae2008-08-10 19:59:06 +0000519
Reid Spencer5f016e22007-07-11 17:01:13 +0000520DiagnosticClient::~DiagnosticClient() {}
Nico Weber7bfaaae2008-08-10 19:59:06 +0000521
Chris Lattnerf4c83962008-11-19 06:51:40 +0000522
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000523/// ModifierIs - Return true if the specified modifier matches specified string.
524template <std::size_t StrLen>
525static bool ModifierIs(const char *Modifier, unsigned ModifierLen,
526 const char (&Str)[StrLen]) {
527 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
528}
529
530/// HandleSelectModifier - Handle the integer 'select' modifier. This is used
531/// like this: %select{foo|bar|baz}2. This means that the integer argument
532/// "%2" has a value from 0-2. If the value is 0, the diagnostic prints 'foo'.
533/// If the value is 1, it prints 'bar'. If it has the value 2, it prints 'baz'.
534/// This is very useful for certain classes of variant diagnostics.
535static void HandleSelectModifier(unsigned ValNo,
536 const char *Argument, unsigned ArgumentLen,
537 llvm::SmallVectorImpl<char> &OutStr) {
538 const char *ArgumentEnd = Argument+ArgumentLen;
539
540 // Skip over 'ValNo' |'s.
541 while (ValNo) {
542 const char *NextVal = std::find(Argument, ArgumentEnd, '|');
543 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
544 " larger than the number of options in the diagnostic string!");
545 Argument = NextVal+1; // Skip this string.
546 --ValNo;
547 }
548
549 // Get the end of the value. This is either the } or the |.
550 const char *EndPtr = std::find(Argument, ArgumentEnd, '|');
551 // Add the value to the output string.
552 OutStr.append(Argument, EndPtr);
553}
554
555/// HandleIntegerSModifier - Handle the integer 's' modifier. This adds the
556/// letter 's' to the string if the value is not 1. This is used in cases like
557/// this: "you idiot, you have %4 parameter%s4!".
558static void HandleIntegerSModifier(unsigned ValNo,
559 llvm::SmallVectorImpl<char> &OutStr) {
560 if (ValNo != 1)
561 OutStr.push_back('s');
562}
563
564
Sebastian Redle4c452c2008-11-22 13:44:36 +0000565/// PluralNumber - Parse an unsigned integer and advance Start.
Chris Lattnerd2aa7c92009-04-15 17:13:42 +0000566static unsigned PluralNumber(const char *&Start, const char *End) {
Sebastian Redle4c452c2008-11-22 13:44:36 +0000567 // Programming 101: Parse a decimal number :-)
568 unsigned Val = 0;
569 while (Start != End && *Start >= '0' && *Start <= '9') {
570 Val *= 10;
571 Val += *Start - '0';
572 ++Start;
573 }
574 return Val;
575}
576
577/// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
Chris Lattnerd2aa7c92009-04-15 17:13:42 +0000578static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
Sebastian Redle4c452c2008-11-22 13:44:36 +0000579 if (*Start != '[') {
580 unsigned Ref = PluralNumber(Start, End);
581 return Ref == Val;
582 }
583
584 ++Start;
585 unsigned Low = PluralNumber(Start, End);
586 assert(*Start == ',' && "Bad plural expression syntax: expected ,");
587 ++Start;
588 unsigned High = PluralNumber(Start, End);
589 assert(*Start == ']' && "Bad plural expression syntax: expected )");
590 ++Start;
591 return Low <= Val && Val <= High;
592}
593
594/// EvalPluralExpr - Actual expression evaluator for HandlePluralModifier.
Chris Lattnerd2aa7c92009-04-15 17:13:42 +0000595static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) {
Sebastian Redle4c452c2008-11-22 13:44:36 +0000596 // Empty condition?
597 if (*Start == ':')
598 return true;
599
600 while (1) {
601 char C = *Start;
602 if (C == '%') {
603 // Modulo expression
604 ++Start;
605 unsigned Arg = PluralNumber(Start, End);
606 assert(*Start == '=' && "Bad plural expression syntax: expected =");
607 ++Start;
608 unsigned ValMod = ValNo % Arg;
609 if (TestPluralRange(ValMod, Start, End))
610 return true;
611 } else {
Sebastian Redle2065322008-11-27 07:28:14 +0000612 assert((C == '[' || (C >= '0' && C <= '9')) &&
Sebastian Redle4c452c2008-11-22 13:44:36 +0000613 "Bad plural expression syntax: unexpected character");
614 // Range expression
615 if (TestPluralRange(ValNo, Start, End))
616 return true;
617 }
618
619 // Scan for next or-expr part.
620 Start = std::find(Start, End, ',');
621 if(Start == End)
622 break;
623 ++Start;
624 }
625 return false;
626}
627
628/// HandlePluralModifier - Handle the integer 'plural' modifier. This is used
629/// for complex plural forms, or in languages where all plurals are complex.
630/// The syntax is: %plural{cond1:form1|cond2:form2|:form3}, where condn are
631/// conditions that are tested in order, the form corresponding to the first
632/// that applies being emitted. The empty condition is always true, making the
633/// last form a default case.
634/// Conditions are simple boolean expressions, where n is the number argument.
635/// Here are the rules.
636/// condition := expression | empty
637/// empty := -> always true
638/// expression := numeric [',' expression] -> logical or
639/// numeric := range -> true if n in range
640/// | '%' number '=' range -> true if n % number in range
641/// range := number
642/// | '[' number ',' number ']' -> ranges are inclusive both ends
643///
644/// Here are some examples from the GNU gettext manual written in this form:
645/// English:
646/// {1:form0|:form1}
647/// Latvian:
648/// {0:form2|%100=11,%10=0,%10=[2,9]:form1|:form0}
649/// Gaeilge:
650/// {1:form0|2:form1|:form2}
651/// Romanian:
652/// {1:form0|0,%100=[1,19]:form1|:form2}
653/// Lithuanian:
654/// {%10=0,%100=[10,19]:form2|%10=1:form0|:form1}
655/// Russian (requires repeated form):
656/// {%100=[11,14]:form2|%10=1:form0|%10=[2,4]:form1|:form2}
657/// Slovak
658/// {1:form0|[2,4]:form1|:form2}
659/// Polish (requires repeated form):
660/// {1:form0|%100=[10,20]:form2|%10=[2,4]:form1|:form2}
661static void HandlePluralModifier(unsigned ValNo,
662 const char *Argument, unsigned ArgumentLen,
Chris Lattnerb54b2762009-04-16 05:04:32 +0000663 llvm::SmallVectorImpl<char> &OutStr) {
Sebastian Redle4c452c2008-11-22 13:44:36 +0000664 const char *ArgumentEnd = Argument + ArgumentLen;
665 while (1) {
666 assert(Argument < ArgumentEnd && "Plural expression didn't match.");
667 const char *ExprEnd = Argument;
668 while (*ExprEnd != ':') {
669 assert(ExprEnd != ArgumentEnd && "Plural missing expression end");
670 ++ExprEnd;
671 }
672 if (EvalPluralExpr(ValNo, Argument, ExprEnd)) {
673 Argument = ExprEnd + 1;
674 ExprEnd = std::find(Argument, ArgumentEnd, '|');
675 OutStr.append(Argument, ExprEnd);
676 return;
677 }
678 Argument = std::find(Argument, ArgumentEnd - 1, '|') + 1;
679 }
680}
681
682
Chris Lattnerf4c83962008-11-19 06:51:40 +0000683/// FormatDiagnostic - Format this diagnostic into a string, substituting the
684/// formal arguments into the %0 slots. The result is appended onto the Str
685/// array.
686void DiagnosticInfo::
687FormatDiagnostic(llvm::SmallVectorImpl<char> &OutStr) const {
688 const char *DiagStr = getDiags()->getDescription(getID());
689 const char *DiagEnd = DiagStr+strlen(DiagStr);
Nico Weber7bfaaae2008-08-10 19:59:06 +0000690
Chris Lattnerf4c83962008-11-19 06:51:40 +0000691 while (DiagStr != DiagEnd) {
692 if (DiagStr[0] != '%') {
693 // Append non-%0 substrings to Str if we have one.
694 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
695 OutStr.append(DiagStr, StrEnd);
696 DiagStr = StrEnd;
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000697 continue;
Chris Lattnerf4c83962008-11-19 06:51:40 +0000698 } else if (DiagStr[1] == '%') {
699 OutStr.push_back('%'); // %% -> %.
700 DiagStr += 2;
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000701 continue;
702 }
703
704 // Skip the %.
705 ++DiagStr;
706
707 // This must be a placeholder for a diagnostic argument. The format for a
708 // placeholder is one of "%0", "%modifier0", or "%modifier{arguments}0".
709 // The digit is a number from 0-9 indicating which argument this comes from.
710 // The modifier is a string of digits from the set [-a-z]+, arguments is a
711 // brace enclosed string.
712 const char *Modifier = 0, *Argument = 0;
713 unsigned ModifierLen = 0, ArgumentLen = 0;
714
715 // Check to see if we have a modifier. If so eat it.
716 if (!isdigit(DiagStr[0])) {
717 Modifier = DiagStr;
718 while (DiagStr[0] == '-' ||
719 (DiagStr[0] >= 'a' && DiagStr[0] <= 'z'))
720 ++DiagStr;
721 ModifierLen = DiagStr-Modifier;
Chris Lattnerf4c83962008-11-19 06:51:40 +0000722
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000723 // If we have an argument, get it next.
724 if (DiagStr[0] == '{') {
725 ++DiagStr; // Skip {.
726 Argument = DiagStr;
727
728 for (; DiagStr[0] != '}'; ++DiagStr)
729 assert(DiagStr[0] && "Mismatched {}'s in diagnostic string!");
730 ArgumentLen = DiagStr-Argument;
731 ++DiagStr; // Skip }.
Chris Lattnerf4c83962008-11-19 06:51:40 +0000732 }
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000733 }
734
735 assert(isdigit(*DiagStr) && "Invalid format for argument in diagnostic");
Chris Lattner22caddc2008-11-23 09:13:29 +0000736 unsigned ArgNo = *DiagStr++ - '0';
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000737
Chris Lattner22caddc2008-11-23 09:13:29 +0000738 switch (getArgKind(ArgNo)) {
Chris Lattner08631c52008-11-23 21:45:46 +0000739 // ---- STRINGS ----
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000740 case Diagnostic::ak_std_string: {
Chris Lattner22caddc2008-11-23 09:13:29 +0000741 const std::string &S = getArgStdStr(ArgNo);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000742 assert(ModifierLen == 0 && "No modifiers for strings yet");
743 OutStr.append(S.begin(), S.end());
744 break;
745 }
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000746 case Diagnostic::ak_c_string: {
Chris Lattner22caddc2008-11-23 09:13:29 +0000747 const char *S = getArgCStr(ArgNo);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000748 assert(ModifierLen == 0 && "No modifiers for strings yet");
749 OutStr.append(S, S + strlen(S));
750 break;
751 }
Chris Lattner08631c52008-11-23 21:45:46 +0000752 // ---- INTEGERS ----
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000753 case Diagnostic::ak_sint: {
Chris Lattner22caddc2008-11-23 09:13:29 +0000754 int Val = getArgSInt(ArgNo);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000755
756 if (ModifierIs(Modifier, ModifierLen, "select")) {
757 HandleSelectModifier((unsigned)Val, Argument, ArgumentLen, OutStr);
758 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
759 HandleIntegerSModifier(Val, OutStr);
Sebastian Redle4c452c2008-11-22 13:44:36 +0000760 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
761 HandlePluralModifier((unsigned)Val, Argument, ArgumentLen, OutStr);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000762 } else {
763 assert(ModifierLen == 0 && "Unknown integer modifier");
Chris Lattner30bc9652008-11-19 07:22:31 +0000764 // FIXME: Optimize
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000765 std::string S = llvm::itostr(Val);
Chris Lattner30bc9652008-11-19 07:22:31 +0000766 OutStr.append(S.begin(), S.end());
Chris Lattner30bc9652008-11-19 07:22:31 +0000767 }
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000768 break;
769 }
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000770 case Diagnostic::ak_uint: {
Chris Lattner22caddc2008-11-23 09:13:29 +0000771 unsigned Val = getArgUInt(ArgNo);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000772
773 if (ModifierIs(Modifier, ModifierLen, "select")) {
774 HandleSelectModifier(Val, Argument, ArgumentLen, OutStr);
775 } else if (ModifierIs(Modifier, ModifierLen, "s")) {
776 HandleIntegerSModifier(Val, OutStr);
Sebastian Redle4c452c2008-11-22 13:44:36 +0000777 } else if (ModifierIs(Modifier, ModifierLen, "plural")) {
778 HandlePluralModifier((unsigned)Val, Argument, ArgumentLen, OutStr);
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000779 } else {
780 assert(ModifierLen == 0 && "Unknown integer modifier");
781
Chris Lattner30bc9652008-11-19 07:22:31 +0000782 // FIXME: Optimize
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000783 std::string S = llvm::utostr_32(Val);
Chris Lattner30bc9652008-11-19 07:22:31 +0000784 OutStr.append(S.begin(), S.end());
Chris Lattner30bc9652008-11-19 07:22:31 +0000785 }
Chris Lattner22caddc2008-11-23 09:13:29 +0000786 break;
Chris Lattneraf7ae4e2008-11-21 07:50:02 +0000787 }
Chris Lattner08631c52008-11-23 21:45:46 +0000788 // ---- NAMES and TYPES ----
789 case Diagnostic::ak_identifierinfo: {
Chris Lattner08631c52008-11-23 21:45:46 +0000790 const IdentifierInfo *II = getArgIdentifier(ArgNo);
791 assert(ModifierLen == 0 && "No modifiers for strings yet");
Chris Lattnerd0344a42009-02-19 23:45:49 +0000792 OutStr.push_back('\'');
Chris Lattner08631c52008-11-23 21:45:46 +0000793 OutStr.append(II->getName(), II->getName() + II->getLength());
794 OutStr.push_back('\'');
795 break;
796 }
Chris Lattner22caddc2008-11-23 09:13:29 +0000797 case Diagnostic::ak_qualtype:
Chris Lattner011bb4e2008-11-23 20:28:15 +0000798 case Diagnostic::ak_declarationname:
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000799 case Diagnostic::ak_nameddecl:
Chris Lattner3fdf4b02008-11-23 09:21:17 +0000800 getDiags()->ConvertArgToString(getArgKind(ArgNo), getRawArg(ArgNo),
801 Modifier, ModifierLen,
802 Argument, ArgumentLen, OutStr);
Chris Lattner22caddc2008-11-23 09:13:29 +0000803 break;
Nico Weber7bfaaae2008-08-10 19:59:06 +0000804 }
805 }
Nico Weber7bfaaae2008-08-10 19:59:06 +0000806}
Ted Kremenekcabe6682009-01-23 20:28:53 +0000807
808/// IncludeInDiagnosticCounts - This method (whose default implementation
809/// returns true) indicates whether the diagnostics handled by this
810/// DiagnosticClient should be included in the number of diagnostics
811/// reported by Diagnostic.
812bool DiagnosticClient::IncludeInDiagnosticCounts() const { return true; }