Diagnostic.h revision 40847cfb58acc3cac7d68727df9455ac45f2e118
1//===--- Diagnostic.h - C Language Family Diagnostic Handling ---*- C++ -*-===//
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 defines the Diagnostic-related interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_DIAGNOSTIC_H
15#define LLVM_CLANG_DIAGNOSTIC_H
16
17#include "clang/Basic/DiagnosticIDs.h"
18#include "clang/Basic/SourceLocation.h"
19#include "llvm/ADT/ArrayRef.h"
20#include "llvm/ADT/DenseMap.h"
21#include "llvm/ADT/IntrusiveRefCntPtr.h"
22#include "llvm/ADT/OwningPtr.h"
23#include "llvm/Support/type_traits.h"
24
25#include <vector>
26#include <list>
27
28namespace clang {
29  class DiagnosticConsumer;
30  class DiagnosticBuilder;
31  class IdentifierInfo;
32  class DeclContext;
33  class LangOptions;
34  class Preprocessor;
35  class DiagnosticErrorTrap;
36  class StoredDiagnostic;
37
38/// \brief Annotates a diagnostic with some code that should be
39/// inserted, removed, or replaced to fix the problem.
40///
41/// This kind of hint should be used when we are certain that the
42/// introduction, removal, or modification of a particular (small!)
43/// amount of code will correct a compilation error. The compiler
44/// should also provide full recovery from such errors, such that
45/// suppressing the diagnostic output can still result in successful
46/// compilation.
47class FixItHint {
48public:
49  /// \brief Code that should be replaced to correct the error. Empty for an
50  /// insertion hint.
51  CharSourceRange RemoveRange;
52
53  /// \brief The actual code to insert at the insertion location, as a
54  /// string.
55  std::string CodeToInsert;
56
57  /// \brief Empty code modification hint, indicating that no code
58  /// modification is known.
59  FixItHint() : RemoveRange() { }
60
61  bool isNull() const {
62    return !RemoveRange.isValid();
63  }
64
65  /// \brief Create a code modification hint that inserts the given
66  /// code string at a specific location.
67  static FixItHint CreateInsertion(SourceLocation InsertionLoc,
68                                   StringRef Code) {
69    FixItHint Hint;
70    Hint.RemoveRange =
71      CharSourceRange(SourceRange(InsertionLoc, InsertionLoc), false);
72    Hint.CodeToInsert = Code;
73    return Hint;
74  }
75
76  /// \brief Create a code modification hint that removes the given
77  /// source range.
78  static FixItHint CreateRemoval(CharSourceRange RemoveRange) {
79    FixItHint Hint;
80    Hint.RemoveRange = RemoveRange;
81    return Hint;
82  }
83  static FixItHint CreateRemoval(SourceRange RemoveRange) {
84    return CreateRemoval(CharSourceRange::getTokenRange(RemoveRange));
85  }
86
87  /// \brief Create a code modification hint that replaces the given
88  /// source range with the given code string.
89  static FixItHint CreateReplacement(CharSourceRange RemoveRange,
90                                     StringRef Code) {
91    FixItHint Hint;
92    Hint.RemoveRange = RemoveRange;
93    Hint.CodeToInsert = Code;
94    return Hint;
95  }
96
97  static FixItHint CreateReplacement(SourceRange RemoveRange,
98                                     StringRef Code) {
99    return CreateReplacement(CharSourceRange::getTokenRange(RemoveRange), Code);
100  }
101};
102
103/// DiagnosticsEngine - This concrete class is used by the front-end to report
104/// problems and issues.  It massages the diagnostics (e.g. handling things like
105/// "report warnings as errors" and passes them off to the DiagnosticConsumer
106/// for reporting to the user. DiagnosticsEngine is tied to one translation unit
107/// and one SourceManager.
108class DiagnosticsEngine : public llvm::RefCountedBase<DiagnosticsEngine> {
109public:
110  /// Level - The level of the diagnostic, after it has been through mapping.
111  enum Level {
112    Ignored = DiagnosticIDs::Ignored,
113    Note = DiagnosticIDs::Note,
114    Warning = DiagnosticIDs::Warning,
115    Error = DiagnosticIDs::Error,
116    Fatal = DiagnosticIDs::Fatal
117  };
118
119  /// ExtensionHandling - How do we handle otherwise-unmapped extension?  This
120  /// is controlled by -pedantic and -pedantic-errors.
121  enum ExtensionHandling {
122    Ext_Ignore, Ext_Warn, Ext_Error
123  };
124
125  enum ArgumentKind {
126    ak_std_string,      // std::string
127    ak_c_string,        // const char *
128    ak_sint,            // int
129    ak_uint,            // unsigned
130    ak_identifierinfo,  // IdentifierInfo
131    ak_qualtype,        // QualType
132    ak_declarationname, // DeclarationName
133    ak_nameddecl,       // NamedDecl *
134    ak_nestednamespec,  // NestedNameSpecifier *
135    ak_declcontext      // DeclContext *
136  };
137
138  /// Specifies which overload candidates to display when overload resolution
139  /// fails.
140  enum OverloadsShown {
141    Ovl_All,  ///< Show all overloads.
142    Ovl_Best  ///< Show just the "best" overload candidates.
143  };
144
145  /// ArgumentValue - This typedef represents on argument value, which is a
146  /// union discriminated by ArgumentKind, with a value.
147  typedef std::pair<ArgumentKind, intptr_t> ArgumentValue;
148
149private:
150  unsigned char AllExtensionsSilenced; // Used by __extension__
151  bool IgnoreAllWarnings;        // Ignore all warnings: -w
152  bool WarningsAsErrors;         // Treat warnings like errors.
153  bool EnableAllWarnings;        // Enable all warnings.
154  bool ErrorsAsFatal;            // Treat errors like fatal errors.
155  bool SuppressSystemWarnings;   // Suppress warnings in system headers.
156  bool SuppressAllDiagnostics;   // Suppress all diagnostics.
157  OverloadsShown ShowOverloads;  // Which overload candidates to show.
158  unsigned ErrorLimit;           // Cap of # errors emitted, 0 -> no limit.
159  unsigned TemplateBacktraceLimit; // Cap on depth of template backtrace stack,
160                                   // 0 -> no limit.
161  ExtensionHandling ExtBehavior; // Map extensions onto warnings or errors?
162  llvm::IntrusiveRefCntPtr<DiagnosticIDs> Diags;
163  DiagnosticConsumer *Client;
164  bool OwnsDiagClient;
165  SourceManager *SourceMgr;
166
167  /// \brief Mapping information for diagnostics.  Mapping info is
168  /// packed into four bits per diagnostic.  The low three bits are the mapping
169  /// (an instance of diag::Mapping), or zero if unset.  The high bit is set
170  /// when the mapping was established as a user mapping.  If the high bit is
171  /// clear, then the low bits are set to the default value, and should be
172  /// mapped with -pedantic, -Werror, etc.
173  ///
174  /// A new DiagState is created and kept around when diagnostic pragmas modify
175  /// the state so that we know what is the diagnostic state at any given
176  /// source location.
177  class DiagState {
178    llvm::DenseMap<unsigned, unsigned> DiagMap;
179
180  public:
181    typedef llvm::DenseMap<unsigned, unsigned>::const_iterator iterator;
182
183    void setMapping(diag::kind Diag, unsigned Map) { DiagMap[Diag] = Map; }
184
185    diag::Mapping getMapping(diag::kind Diag) const {
186      iterator I = DiagMap.find(Diag);
187      if (I != DiagMap.end())
188        return (diag::Mapping)I->second;
189      return diag::Mapping();
190    }
191
192    iterator begin() const { return DiagMap.begin(); }
193    iterator end() const { return DiagMap.end(); }
194  };
195
196  /// \brief Keeps and automatically disposes all DiagStates that we create.
197  std::list<DiagState> DiagStates;
198
199  /// \brief Represents a point in source where the diagnostic state was
200  /// modified because of a pragma. 'Loc' can be null if the point represents
201  /// the diagnostic state modifications done through the command-line.
202  struct DiagStatePoint {
203    DiagState *State;
204    FullSourceLoc Loc;
205    DiagStatePoint(DiagState *State, FullSourceLoc Loc)
206      : State(State), Loc(Loc) { }
207
208    bool operator<(const DiagStatePoint &RHS) const {
209      // If Loc is invalid it means it came from <command-line>, in which case
210      // we regard it as coming before any valid source location.
211      if (RHS.Loc.isInvalid())
212        return false;
213      if (Loc.isInvalid())
214        return true;
215      return Loc.isBeforeInTranslationUnitThan(RHS.Loc);
216    }
217  };
218
219  /// \brief A vector of all DiagStatePoints representing changes in diagnostic
220  /// state due to diagnostic pragmas. The vector is always sorted according to
221  /// the SourceLocation of the DiagStatePoint.
222  typedef std::vector<DiagStatePoint> DiagStatePointsTy;
223  mutable DiagStatePointsTy DiagStatePoints;
224
225  /// \brief Keeps the DiagState that was active during each diagnostic 'push'
226  /// so we can get back at it when we 'pop'.
227  std::vector<DiagState *> DiagStateOnPushStack;
228
229  DiagState *GetCurDiagState() const {
230    assert(!DiagStatePoints.empty());
231    return DiagStatePoints.back().State;
232  }
233
234  void PushDiagStatePoint(DiagState *State, SourceLocation L) {
235    FullSourceLoc Loc(L, *SourceMgr);
236    // Make sure that DiagStatePoints is always sorted according to Loc.
237    assert((Loc.isValid() || DiagStatePoints.empty()) &&
238           "Adding invalid loc point after another point");
239    assert((Loc.isInvalid() || DiagStatePoints.empty() ||
240            DiagStatePoints.back().Loc.isInvalid() ||
241            DiagStatePoints.back().Loc.isBeforeInTranslationUnitThan(Loc)) &&
242           "Previous point loc comes after or is the same as new one");
243    DiagStatePoints.push_back(DiagStatePoint(State,
244                                             FullSourceLoc(Loc, *SourceMgr)));
245  }
246
247  /// \brief Finds the DiagStatePoint that contains the diagnostic state of
248  /// the given source location.
249  DiagStatePointsTy::iterator GetDiagStatePointForLoc(SourceLocation Loc) const;
250
251  /// ErrorOccurred / FatalErrorOccurred - This is set to true when an error or
252  /// fatal error is emitted, and is sticky.
253  bool ErrorOccurred;
254  bool FatalErrorOccurred;
255
256  /// \brief Indicates that an unrecoverable error has occurred.
257  bool UnrecoverableErrorOccurred;
258
259  /// \brief Counts for DiagnosticErrorTrap to check whether an error occurred
260  /// during a parsing section, e.g. during parsing a function.
261  unsigned TrapNumErrorsOccurred;
262  unsigned TrapNumUnrecoverableErrorsOccurred;
263
264  /// LastDiagLevel - This is the level of the last diagnostic emitted.  This is
265  /// used to emit continuation diagnostics with the same level as the
266  /// diagnostic that they follow.
267  DiagnosticIDs::Level LastDiagLevel;
268
269  unsigned NumWarnings;       // Number of warnings reported
270  unsigned NumErrors;         // Number of errors reported
271  unsigned NumErrorsSuppressed; // Number of errors suppressed
272
273  /// ArgToStringFn - A function pointer that converts an opaque diagnostic
274  /// argument to a strings.  This takes the modifiers and argument that was
275  /// present in the diagnostic.
276  ///
277  /// The PrevArgs array (whose length is NumPrevArgs) indicates the previous
278  /// arguments formatted for this diagnostic.  Implementations of this function
279  /// can use this information to avoid redundancy across arguments.
280  ///
281  /// This is a hack to avoid a layering violation between libbasic and libsema.
282  typedef void (*ArgToStringFnTy)(
283      ArgumentKind Kind, intptr_t Val,
284      const char *Modifier, unsigned ModifierLen,
285      const char *Argument, unsigned ArgumentLen,
286      const ArgumentValue *PrevArgs,
287      unsigned NumPrevArgs,
288      SmallVectorImpl<char> &Output,
289      void *Cookie,
290      SmallVectorImpl<intptr_t> &QualTypeVals);
291  void *ArgToStringCookie;
292  ArgToStringFnTy ArgToStringFn;
293
294  /// \brief ID of the "delayed" diagnostic, which is a (typically
295  /// fatal) diagnostic that had to be delayed because it was found
296  /// while emitting another diagnostic.
297  unsigned DelayedDiagID;
298
299  /// \brief First string argument for the delayed diagnostic.
300  std::string DelayedDiagArg1;
301
302  /// \brief Second string argument for the delayed diagnostic.
303  std::string DelayedDiagArg2;
304
305public:
306  explicit DiagnosticsEngine(
307                      const llvm::IntrusiveRefCntPtr<DiagnosticIDs> &Diags,
308                      DiagnosticConsumer *client = 0,
309                      bool ShouldOwnClient = true);
310  ~DiagnosticsEngine();
311
312  const llvm::IntrusiveRefCntPtr<DiagnosticIDs> &getDiagnosticIDs() const {
313    return Diags;
314  }
315
316  DiagnosticConsumer *getClient() { return Client; }
317  const DiagnosticConsumer *getClient() const { return Client; }
318
319  /// \brief Determine whether this \c DiagnosticsEngine object own its client.
320  bool ownsClient() const { return OwnsDiagClient; }
321
322  /// \brief Return the current diagnostic client along with ownership of that
323  /// client.
324  DiagnosticConsumer *takeClient() {
325    OwnsDiagClient = false;
326    return Client;
327  }
328
329  bool hasSourceManager() const { return SourceMgr != 0; }
330  SourceManager &getSourceManager() const {
331    assert(SourceMgr && "SourceManager not set!");
332    return *SourceMgr;
333  }
334  void setSourceManager(SourceManager *SrcMgr) { SourceMgr = SrcMgr; }
335
336  //===--------------------------------------------------------------------===//
337  //  DiagnosticsEngine characterization methods, used by a client to customize
338  //  how diagnostics are emitted.
339  //
340
341  /// pushMappings - Copies the current DiagMappings and pushes the new copy
342  /// onto the top of the stack.
343  void pushMappings(SourceLocation Loc);
344
345  /// popMappings - Pops the current DiagMappings off the top of the stack
346  /// causing the new top of the stack to be the active mappings. Returns
347  /// true if the pop happens, false if there is only one DiagMapping on the
348  /// stack.
349  bool popMappings(SourceLocation Loc);
350
351  /// \brief Set the diagnostic client associated with this diagnostic object.
352  ///
353  /// \param ShouldOwnClient true if the diagnostic object should take
354  /// ownership of \c client.
355  void setClient(DiagnosticConsumer *client, bool ShouldOwnClient = true);
356
357  /// setErrorLimit - Specify a limit for the number of errors we should
358  /// emit before giving up.  Zero disables the limit.
359  void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; }
360
361  /// \brief Specify the maximum number of template instantiation
362  /// notes to emit along with a given diagnostic.
363  void setTemplateBacktraceLimit(unsigned Limit) {
364    TemplateBacktraceLimit = Limit;
365  }
366
367  /// \brief Retrieve the maximum number of template instantiation
368  /// nodes to emit along with a given diagnostic.
369  unsigned getTemplateBacktraceLimit() const {
370    return TemplateBacktraceLimit;
371  }
372
373  /// setIgnoreAllWarnings - When set to true, any unmapped warnings are
374  /// ignored.  If this and WarningsAsErrors are both set, then this one wins.
375  void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; }
376  bool getIgnoreAllWarnings() const { return IgnoreAllWarnings; }
377
378  /// setEnableAllWarnings - When set to true, any unmapped ignored warnings
379  /// are no longer ignored.  If this and IgnoreAllWarnings are both set,
380  /// then that one wins.
381  void setEnableAllWarnings(bool Val) { EnableAllWarnings = Val; }
382  bool getEnableAllWarnngs() const { return EnableAllWarnings; }
383
384  /// setWarningsAsErrors - When set to true, any warnings reported are issued
385  /// as errors.
386  void setWarningsAsErrors(bool Val) { WarningsAsErrors = Val; }
387  bool getWarningsAsErrors() const { return WarningsAsErrors; }
388
389  /// setErrorsAsFatal - When set to true, any error reported is made a
390  /// fatal error.
391  void setErrorsAsFatal(bool Val) { ErrorsAsFatal = Val; }
392  bool getErrorsAsFatal() const { return ErrorsAsFatal; }
393
394  /// setSuppressSystemWarnings - When set to true mask warnings that
395  /// come from system headers.
396  void setSuppressSystemWarnings(bool Val) { SuppressSystemWarnings = Val; }
397  bool getSuppressSystemWarnings() const { return SuppressSystemWarnings; }
398
399  /// \brief Suppress all diagnostics, to silence the front end when we
400  /// know that we don't want any more diagnostics to be passed along to the
401  /// client
402  void setSuppressAllDiagnostics(bool Val = true) {
403    SuppressAllDiagnostics = Val;
404  }
405  bool getSuppressAllDiagnostics() const { return SuppressAllDiagnostics; }
406
407  /// \brief Specify which overload candidates to show when overload resolution
408  /// fails.  By default, we show all candidates.
409  void setShowOverloads(OverloadsShown Val) {
410    ShowOverloads = Val;
411  }
412  OverloadsShown getShowOverloads() const { return ShowOverloads; }
413
414  /// \brief Pretend that the last diagnostic issued was ignored. This can
415  /// be used by clients who suppress diagnostics themselves.
416  void setLastDiagnosticIgnored() {
417    LastDiagLevel = DiagnosticIDs::Ignored;
418  }
419
420  /// setExtensionHandlingBehavior - This controls whether otherwise-unmapped
421  /// extension diagnostics are mapped onto ignore/warning/error.  This
422  /// corresponds to the GCC -pedantic and -pedantic-errors option.
423  void setExtensionHandlingBehavior(ExtensionHandling H) {
424    ExtBehavior = H;
425  }
426  ExtensionHandling getExtensionHandlingBehavior() const { return ExtBehavior; }
427
428  /// AllExtensionsSilenced - This is a counter bumped when an __extension__
429  /// block is encountered.  When non-zero, all extension diagnostics are
430  /// entirely silenced, no matter how they are mapped.
431  void IncrementAllExtensionsSilenced() { ++AllExtensionsSilenced; }
432  void DecrementAllExtensionsSilenced() { --AllExtensionsSilenced; }
433  bool hasAllExtensionsSilenced() { return AllExtensionsSilenced != 0; }
434
435  /// \brief This allows the client to specify that certain
436  /// warnings are ignored.  Notes can never be mapped, errors can only be
437  /// mapped to fatal, and WARNINGs and EXTENSIONs can be mapped arbitrarily.
438  ///
439  /// \param Loc The source location that this change of diagnostic state should
440  /// take affect. It can be null if we are setting the latest state.
441  void setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
442                            SourceLocation Loc);
443
444  /// setDiagnosticGroupMapping - Change an entire diagnostic group (e.g.
445  /// "unknown-pragmas" to have the specified mapping.  This returns true and
446  /// ignores the request if "Group" was unknown, false otherwise.
447  ///
448  /// 'Loc' is the source location that this change of diagnostic state should
449  /// take affect. It can be null if we are setting the state from command-line.
450  bool setDiagnosticGroupMapping(StringRef Group, diag::Mapping Map,
451                                 SourceLocation Loc = SourceLocation()) {
452    return Diags->setDiagnosticGroupMapping(Group, Map, Loc, *this);
453  }
454
455  bool hasErrorOccurred() const { return ErrorOccurred; }
456  bool hasFatalErrorOccurred() const { return FatalErrorOccurred; }
457
458  /// \brief Determine whether any kind of unrecoverable error has occurred.
459  bool hasUnrecoverableErrorOccurred() const {
460    return FatalErrorOccurred || UnrecoverableErrorOccurred;
461  }
462
463  unsigned getNumWarnings() const { return NumWarnings; }
464
465  void setNumWarnings(unsigned NumWarnings) {
466    this->NumWarnings = NumWarnings;
467  }
468
469  /// getCustomDiagID - Return an ID for a diagnostic with the specified message
470  /// and level.  If this is the first request for this diagnosic, it is
471  /// registered and created, otherwise the existing ID is returned.
472  unsigned getCustomDiagID(Level L, StringRef Message) {
473    return Diags->getCustomDiagID((DiagnosticIDs::Level)L, Message);
474  }
475
476  /// ConvertArgToString - This method converts a diagnostic argument (as an
477  /// intptr_t) into the string that represents it.
478  void ConvertArgToString(ArgumentKind Kind, intptr_t Val,
479                          const char *Modifier, unsigned ModLen,
480                          const char *Argument, unsigned ArgLen,
481                          const ArgumentValue *PrevArgs, unsigned NumPrevArgs,
482                          SmallVectorImpl<char> &Output,
483                          SmallVectorImpl<intptr_t> &QualTypeVals) const {
484    ArgToStringFn(Kind, Val, Modifier, ModLen, Argument, ArgLen,
485                  PrevArgs, NumPrevArgs, Output, ArgToStringCookie,
486                  QualTypeVals);
487  }
488
489  void SetArgToStringFn(ArgToStringFnTy Fn, void *Cookie) {
490    ArgToStringFn = Fn;
491    ArgToStringCookie = Cookie;
492  }
493
494  /// \brief Reset the state of the diagnostic object to its initial
495  /// configuration.
496  void Reset();
497
498  //===--------------------------------------------------------------------===//
499  // DiagnosticsEngine classification and reporting interfaces.
500  //
501
502  /// \brief Based on the way the client configured the DiagnosticsEngine
503  /// object, classify the specified diagnostic ID into a Level, consumable by
504  /// the DiagnosticConsumer.
505  ///
506  /// \param Loc The source location we are interested in finding out the
507  /// diagnostic state. Can be null in order to query the latest state.
508  Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc,
509                           diag::Mapping *mapping = 0) const {
510    return (Level)Diags->getDiagnosticLevel(DiagID, Loc, *this, mapping);
511  }
512
513  /// Report - Issue the message to the client.  @c DiagID is a member of the
514  /// @c diag::kind enum.  This actually returns aninstance of DiagnosticBuilder
515  /// which emits the diagnostics (through @c ProcessDiag) when it is destroyed.
516  /// @c Pos represents the source location associated with the diagnostic,
517  /// which can be an invalid location if no position information is available.
518  inline DiagnosticBuilder Report(SourceLocation Pos, unsigned DiagID);
519  inline DiagnosticBuilder Report(unsigned DiagID);
520
521  void Report(const StoredDiagnostic &storedDiag);
522
523  /// \brief Determine whethere there is already a diagnostic in flight.
524  bool isDiagnosticInFlight() const { return CurDiagID != ~0U; }
525
526  /// \brief Set the "delayed" diagnostic that will be emitted once
527  /// the current diagnostic completes.
528  ///
529  ///  If a diagnostic is already in-flight but the front end must
530  ///  report a problem (e.g., with an inconsistent file system
531  ///  state), this routine sets a "delayed" diagnostic that will be
532  ///  emitted after the current diagnostic completes. This should
533  ///  only be used for fatal errors detected at inconvenient
534  ///  times. If emitting a delayed diagnostic causes a second delayed
535  ///  diagnostic to be introduced, that second delayed diagnostic
536  ///  will be ignored.
537  ///
538  /// \param DiagID The ID of the diagnostic being delayed.
539  ///
540  /// \param Arg1 A string argument that will be provided to the
541  /// diagnostic. A copy of this string will be stored in the
542  /// DiagnosticsEngine object itself.
543  ///
544  /// \param Arg2 A string argument that will be provided to the
545  /// diagnostic. A copy of this string will be stored in the
546  /// DiagnosticsEngine object itself.
547  void SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1 = "",
548                            StringRef Arg2 = "");
549
550  /// \brief Clear out the current diagnostic.
551  void Clear() { CurDiagID = ~0U; }
552
553private:
554  /// \brief Report the delayed diagnostic.
555  void ReportDelayed();
556
557
558  /// getDiagnosticMappingInfo - Return the mapping info currently set for the
559  /// specified builtin diagnostic.  This returns the high bit encoding, or zero
560  /// if the field is completely uninitialized.
561  diag::Mapping getDiagnosticMappingInfo(diag::kind Diag,
562                                         DiagState *State) const {
563    return State->getMapping(Diag);
564  }
565
566  void setDiagnosticMappingInternal(unsigned DiagId, unsigned Map,
567                                    DiagState *State,
568                                    bool isUser, bool isPragma) const {
569    if (isUser) Map |= 8;  // Set the high bit for user mappings.
570    if (isPragma) Map |= 0x10;  // Set the bit for diagnostic pragma mappings.
571    State->setMapping((diag::kind)DiagId, Map);
572  }
573
574  // This is private state used by DiagnosticBuilder.  We put it here instead of
575  // in DiagnosticBuilder in order to keep DiagnosticBuilder a small lightweight
576  // object.  This implementation choice means that we can only have one
577  // diagnostic "in flight" at a time, but this seems to be a reasonable
578  // tradeoff to keep these objects small.  Assertions verify that only one
579  // diagnostic is in flight at a time.
580  friend class DiagnosticIDs;
581  friend class DiagnosticBuilder;
582  friend class Diagnostic;
583  friend class PartialDiagnostic;
584  friend class DiagnosticErrorTrap;
585
586  /// CurDiagLoc - This is the location of the current diagnostic that is in
587  /// flight.
588  SourceLocation CurDiagLoc;
589
590  /// CurDiagID - This is the ID of the current diagnostic that is in flight.
591  /// This is set to ~0U when there is no diagnostic in flight.
592  unsigned CurDiagID;
593
594  enum {
595    /// MaxArguments - The maximum number of arguments we can hold. We currently
596    /// only support up to 10 arguments (%0-%9).  A single diagnostic with more
597    /// than that almost certainly has to be simplified anyway.
598    MaxArguments = 10
599  };
600
601  /// NumDiagArgs - This contains the number of entries in Arguments.
602  signed char NumDiagArgs;
603  /// NumRanges - This is the number of ranges in the DiagRanges array.
604  unsigned char NumDiagRanges;
605  /// \brief The number of code modifications hints in the
606  /// FixItHints array.
607  unsigned char NumFixItHints;
608
609  /// DiagArgumentsKind - This is an array of ArgumentKind::ArgumentKind enum
610  /// values, with one for each argument.  This specifies whether the argument
611  /// is in DiagArgumentsStr or in DiagArguments.
612  unsigned char DiagArgumentsKind[MaxArguments];
613
614  /// DiagArgumentsStr - This holds the values of each string argument for the
615  /// current diagnostic.  This value is only used when the corresponding
616  /// ArgumentKind is ak_std_string.
617  std::string DiagArgumentsStr[MaxArguments];
618
619  /// DiagArgumentsVal - The values for the various substitution positions. This
620  /// is used when the argument is not an std::string.  The specific value is
621  /// mangled into an intptr_t and the interpretation depends on exactly what
622  /// sort of argument kind it is.
623  intptr_t DiagArgumentsVal[MaxArguments];
624
625  /// DiagRanges - The list of ranges added to this diagnostic.  It currently
626  /// only support 10 ranges, could easily be extended if needed.
627  CharSourceRange DiagRanges[10];
628
629  enum { MaxFixItHints = 6 };
630
631  /// FixItHints - If valid, provides a hint with some code
632  /// to insert, remove, or modify at a particular position.
633  FixItHint FixItHints[MaxFixItHints];
634
635  /// ProcessDiag - This is the method used to report a diagnostic that is
636  /// finally fully formed.
637  ///
638  /// \returns true if the diagnostic was emitted, false if it was
639  /// suppressed.
640  bool ProcessDiag() {
641    return Diags->ProcessDiag(*this);
642  }
643
644  friend class ASTReader;
645  friend class ASTWriter;
646};
647
648/// \brief RAII class that determines when any errors have occurred
649/// between the time the instance was created and the time it was
650/// queried.
651class DiagnosticErrorTrap {
652  DiagnosticsEngine &Diag;
653  unsigned NumErrors;
654  unsigned NumUnrecoverableErrors;
655
656public:
657  explicit DiagnosticErrorTrap(DiagnosticsEngine &Diag)
658    : Diag(Diag) { reset(); }
659
660  /// \brief Determine whether any errors have occurred since this
661  /// object instance was created.
662  bool hasErrorOccurred() const {
663    return Diag.TrapNumErrorsOccurred > NumErrors;
664  }
665
666  /// \brief Determine whether any unrecoverable errors have occurred since this
667  /// object instance was created.
668  bool hasUnrecoverableErrorOccurred() const {
669    return Diag.TrapNumUnrecoverableErrorsOccurred > NumUnrecoverableErrors;
670  }
671
672  // Set to initial state of "no errors occurred".
673  void reset() {
674    NumErrors = Diag.TrapNumErrorsOccurred;
675    NumUnrecoverableErrors = Diag.TrapNumUnrecoverableErrorsOccurred;
676  }
677};
678
679//===----------------------------------------------------------------------===//
680// DiagnosticBuilder
681//===----------------------------------------------------------------------===//
682
683/// DiagnosticBuilder - This is a little helper class used to produce
684/// diagnostics.  This is constructed by the DiagnosticsEngine::Report method,
685/// and allows insertion of extra information (arguments and source ranges) into
686/// the currently "in flight" diagnostic.  When the temporary for the builder is
687/// destroyed, the diagnostic is issued.
688///
689/// Note that many of these will be created as temporary objects (many call
690/// sites), so we want them to be small and we never want their address taken.
691/// This ensures that compilers with somewhat reasonable optimizers will promote
692/// the common fields to registers, eliminating increments of the NumArgs field,
693/// for example.
694class DiagnosticBuilder {
695  mutable DiagnosticsEngine *DiagObj;
696  mutable unsigned NumArgs, NumRanges, NumFixItHints;
697
698  void operator=(const DiagnosticBuilder&); // DO NOT IMPLEMENT
699  friend class DiagnosticsEngine;
700  explicit DiagnosticBuilder(DiagnosticsEngine *diagObj)
701    : DiagObj(diagObj), NumArgs(0), NumRanges(0), NumFixItHints(0) {}
702
703  friend class PartialDiagnostic;
704
705protected:
706  void FlushCounts();
707
708public:
709  /// Copy constructor.  When copied, this "takes" the diagnostic info from the
710  /// input and neuters it.
711  DiagnosticBuilder(const DiagnosticBuilder &D) {
712    DiagObj = D.DiagObj;
713    D.DiagObj = 0;
714    NumArgs = D.NumArgs;
715    NumRanges = D.NumRanges;
716    NumFixItHints = D.NumFixItHints;
717  }
718
719  /// \brief Simple enumeration value used to give a name to the
720  /// suppress-diagnostic constructor.
721  enum SuppressKind { Suppress };
722
723  /// \brief Create an empty DiagnosticBuilder object that represents
724  /// no actual diagnostic.
725  explicit DiagnosticBuilder(SuppressKind)
726    : DiagObj(0), NumArgs(0), NumRanges(0), NumFixItHints(0) { }
727
728  /// \brief Force the diagnostic builder to emit the diagnostic now.
729  ///
730  /// Once this function has been called, the DiagnosticBuilder object
731  /// should not be used again before it is destroyed.
732  ///
733  /// \returns true if a diagnostic was emitted, false if the
734  /// diagnostic was suppressed.
735  bool Emit();
736
737  /// Destructor - The dtor emits the diagnostic if it hasn't already
738  /// been emitted.
739  ~DiagnosticBuilder() { Emit(); }
740
741  /// isActive - Determine whether this diagnostic is still active.
742  bool isActive() const { return DiagObj != 0; }
743
744  /// \brief Retrieve the active diagnostic ID.
745  ///
746  /// \pre \c isActive()
747  unsigned getDiagID() const {
748    assert(isActive() && "DiagnosticsEngine is inactive");
749    return DiagObj->CurDiagID;
750  }
751
752  /// \brief Clear out the current diagnostic.
753  void Clear() { DiagObj = 0; }
754
755  /// Operator bool: conversion of DiagnosticBuilder to bool always returns
756  /// true.  This allows is to be used in boolean error contexts like:
757  /// return Diag(...);
758  operator bool() const { return true; }
759
760  void AddString(StringRef S) const {
761    assert(NumArgs < DiagnosticsEngine::MaxArguments &&
762           "Too many arguments to diagnostic!");
763    if (DiagObj) {
764      DiagObj->DiagArgumentsKind[NumArgs] = DiagnosticsEngine::ak_std_string;
765      DiagObj->DiagArgumentsStr[NumArgs++] = S;
766    }
767  }
768
769  void AddTaggedVal(intptr_t V, DiagnosticsEngine::ArgumentKind Kind) const {
770    assert(NumArgs < DiagnosticsEngine::MaxArguments &&
771           "Too many arguments to diagnostic!");
772    if (DiagObj) {
773      DiagObj->DiagArgumentsKind[NumArgs] = Kind;
774      DiagObj->DiagArgumentsVal[NumArgs++] = V;
775    }
776  }
777
778  void AddSourceRange(const CharSourceRange &R) const {
779    assert(NumRanges <
780           sizeof(DiagObj->DiagRanges)/sizeof(DiagObj->DiagRanges[0]) &&
781           "Too many arguments to diagnostic!");
782    if (DiagObj)
783      DiagObj->DiagRanges[NumRanges++] = R;
784  }
785
786  void AddFixItHint(const FixItHint &Hint) const {
787    assert(NumFixItHints < DiagnosticsEngine::MaxFixItHints &&
788           "Too many fix-it hints!");
789    if (DiagObj)
790      DiagObj->FixItHints[NumFixItHints++] = Hint;
791  }
792};
793
794inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
795                                           StringRef S) {
796  DB.AddString(S);
797  return DB;
798}
799
800inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
801                                           const char *Str) {
802  DB.AddTaggedVal(reinterpret_cast<intptr_t>(Str),
803                  DiagnosticsEngine::ak_c_string);
804  return DB;
805}
806
807inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, int I) {
808  DB.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
809  return DB;
810}
811
812inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,bool I) {
813  DB.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
814  return DB;
815}
816
817inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
818                                           unsigned I) {
819  DB.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
820  return DB;
821}
822
823inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
824                                           const IdentifierInfo *II) {
825  DB.AddTaggedVal(reinterpret_cast<intptr_t>(II),
826                  DiagnosticsEngine::ak_identifierinfo);
827  return DB;
828}
829
830// Adds a DeclContext to the diagnostic. The enable_if template magic is here
831// so that we only match those arguments that are (statically) DeclContexts;
832// other arguments that derive from DeclContext (e.g., RecordDecls) will not
833// match.
834template<typename T>
835inline
836typename llvm::enable_if<llvm::is_same<T, DeclContext>,
837                         const DiagnosticBuilder &>::type
838operator<<(const DiagnosticBuilder &DB, T *DC) {
839  DB.AddTaggedVal(reinterpret_cast<intptr_t>(DC),
840                  DiagnosticsEngine::ak_declcontext);
841  return DB;
842}
843
844inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
845                                           const SourceRange &R) {
846  DB.AddSourceRange(CharSourceRange::getTokenRange(R));
847  return DB;
848}
849
850inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
851                                           const CharSourceRange &R) {
852  DB.AddSourceRange(R);
853  return DB;
854}
855
856inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
857                                           const FixItHint &Hint) {
858  DB.AddFixItHint(Hint);
859  return DB;
860}
861
862/// Report - Issue the message to the client.  DiagID is a member of the
863/// diag::kind enum.  This actually returns a new instance of DiagnosticBuilder
864/// which emits the diagnostics (through ProcessDiag) when it is destroyed.
865inline DiagnosticBuilder DiagnosticsEngine::Report(SourceLocation Loc,
866                                            unsigned DiagID){
867  assert(CurDiagID == ~0U && "Multiple diagnostics in flight at once!");
868  CurDiagLoc = Loc;
869  CurDiagID = DiagID;
870  return DiagnosticBuilder(this);
871}
872inline DiagnosticBuilder DiagnosticsEngine::Report(unsigned DiagID) {
873  return Report(SourceLocation(), DiagID);
874}
875
876//===----------------------------------------------------------------------===//
877// Diagnostic
878//===----------------------------------------------------------------------===//
879
880/// Diagnostic - This is a little helper class (which is basically a smart
881/// pointer that forward info from DiagnosticsEngine) that allows clients to
882/// enquire about the currently in-flight diagnostic.
883class Diagnostic {
884  const DiagnosticsEngine *DiagObj;
885  StringRef StoredDiagMessage;
886public:
887  explicit Diagnostic(const DiagnosticsEngine *DO) : DiagObj(DO) {}
888  Diagnostic(const DiagnosticsEngine *DO, StringRef storedDiagMessage)
889    : DiagObj(DO), StoredDiagMessage(storedDiagMessage) {}
890
891  const DiagnosticsEngine *getDiags() const { return DiagObj; }
892  unsigned getID() const { return DiagObj->CurDiagID; }
893  const SourceLocation &getLocation() const { return DiagObj->CurDiagLoc; }
894  bool hasSourceManager() const { return DiagObj->hasSourceManager(); }
895  SourceManager &getSourceManager() const { return DiagObj->getSourceManager();}
896
897  unsigned getNumArgs() const { return DiagObj->NumDiagArgs; }
898
899  /// getArgKind - Return the kind of the specified index.  Based on the kind
900  /// of argument, the accessors below can be used to get the value.
901  DiagnosticsEngine::ArgumentKind getArgKind(unsigned Idx) const {
902    assert(Idx < getNumArgs() && "Argument index out of range!");
903    return (DiagnosticsEngine::ArgumentKind)DiagObj->DiagArgumentsKind[Idx];
904  }
905
906  /// getArgStdStr - Return the provided argument string specified by Idx.
907  const std::string &getArgStdStr(unsigned Idx) const {
908    assert(getArgKind(Idx) == DiagnosticsEngine::ak_std_string &&
909           "invalid argument accessor!");
910    return DiagObj->DiagArgumentsStr[Idx];
911  }
912
913  /// getArgCStr - Return the specified C string argument.
914  const char *getArgCStr(unsigned Idx) const {
915    assert(getArgKind(Idx) == DiagnosticsEngine::ak_c_string &&
916           "invalid argument accessor!");
917    return reinterpret_cast<const char*>(DiagObj->DiagArgumentsVal[Idx]);
918  }
919
920  /// getArgSInt - Return the specified signed integer argument.
921  int getArgSInt(unsigned Idx) const {
922    assert(getArgKind(Idx) == DiagnosticsEngine::ak_sint &&
923           "invalid argument accessor!");
924    return (int)DiagObj->DiagArgumentsVal[Idx];
925  }
926
927  /// getArgUInt - Return the specified unsigned integer argument.
928  unsigned getArgUInt(unsigned Idx) const {
929    assert(getArgKind(Idx) == DiagnosticsEngine::ak_uint &&
930           "invalid argument accessor!");
931    return (unsigned)DiagObj->DiagArgumentsVal[Idx];
932  }
933
934  /// getArgIdentifier - Return the specified IdentifierInfo argument.
935  const IdentifierInfo *getArgIdentifier(unsigned Idx) const {
936    assert(getArgKind(Idx) == DiagnosticsEngine::ak_identifierinfo &&
937           "invalid argument accessor!");
938    return reinterpret_cast<IdentifierInfo*>(DiagObj->DiagArgumentsVal[Idx]);
939  }
940
941  /// getRawArg - Return the specified non-string argument in an opaque form.
942  intptr_t getRawArg(unsigned Idx) const {
943    assert(getArgKind(Idx) != DiagnosticsEngine::ak_std_string &&
944           "invalid argument accessor!");
945    return DiagObj->DiagArgumentsVal[Idx];
946  }
947
948
949  /// getNumRanges - Return the number of source ranges associated with this
950  /// diagnostic.
951  unsigned getNumRanges() const {
952    return DiagObj->NumDiagRanges;
953  }
954
955  const CharSourceRange &getRange(unsigned Idx) const {
956    assert(Idx < DiagObj->NumDiagRanges && "Invalid diagnostic range index!");
957    return DiagObj->DiagRanges[Idx];
958  }
959
960  unsigned getNumFixItHints() const {
961    return DiagObj->NumFixItHints;
962  }
963
964  const FixItHint &getFixItHint(unsigned Idx) const {
965    return DiagObj->FixItHints[Idx];
966  }
967
968  const FixItHint *getFixItHints() const {
969    return DiagObj->NumFixItHints?
970             &DiagObj->FixItHints[0] : 0;
971  }
972
973  /// FormatDiagnostic - Format this diagnostic into a string, substituting the
974  /// formal arguments into the %0 slots.  The result is appended onto the Str
975  /// array.
976  void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const;
977
978  /// FormatDiagnostic - Format the given format-string into the
979  /// output buffer using the arguments stored in this diagnostic.
980  void FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
981                        SmallVectorImpl<char> &OutStr) const;
982};
983
984/**
985 * \brief Represents a diagnostic in a form that can be retained until its
986 * corresponding source manager is destroyed.
987 */
988class StoredDiagnostic {
989  unsigned ID;
990  DiagnosticsEngine::Level Level;
991  FullSourceLoc Loc;
992  std::string Message;
993  std::vector<CharSourceRange> Ranges;
994  std::vector<FixItHint> FixIts;
995
996public:
997  StoredDiagnostic();
998  StoredDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
999  StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1000                   StringRef Message);
1001  StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1002                   StringRef Message, FullSourceLoc Loc,
1003                   ArrayRef<CharSourceRange> Ranges,
1004                   ArrayRef<FixItHint> Fixits);
1005  ~StoredDiagnostic();
1006
1007  /// \brief Evaluates true when this object stores a diagnostic.
1008  operator bool() const { return Message.size() > 0; }
1009
1010  unsigned getID() const { return ID; }
1011  DiagnosticsEngine::Level getLevel() const { return Level; }
1012  const FullSourceLoc &getLocation() const { return Loc; }
1013  StringRef getMessage() const { return Message; }
1014
1015  void setLocation(FullSourceLoc Loc) { this->Loc = Loc; }
1016
1017  typedef std::vector<CharSourceRange>::const_iterator range_iterator;
1018  range_iterator range_begin() const { return Ranges.begin(); }
1019  range_iterator range_end() const { return Ranges.end(); }
1020  unsigned range_size() const { return Ranges.size(); }
1021
1022  typedef std::vector<FixItHint>::const_iterator fixit_iterator;
1023  fixit_iterator fixit_begin() const { return FixIts.begin(); }
1024  fixit_iterator fixit_end() const { return FixIts.end(); }
1025  unsigned fixit_size() const { return FixIts.size(); }
1026};
1027
1028/// DiagnosticConsumer - This is an abstract interface implemented by clients of
1029/// the front-end, which formats and prints fully processed diagnostics.
1030class DiagnosticConsumer {
1031protected:
1032  unsigned NumWarnings;       // Number of warnings reported
1033  unsigned NumErrors;         // Number of errors reported
1034
1035public:
1036  DiagnosticConsumer() : NumWarnings(0), NumErrors(0) { }
1037
1038  unsigned getNumErrors() const { return NumErrors; }
1039  unsigned getNumWarnings() const { return NumWarnings; }
1040
1041  virtual ~DiagnosticConsumer();
1042
1043  /// BeginSourceFile - Callback to inform the diagnostic client that processing
1044  /// of a source file is beginning.
1045  ///
1046  /// Note that diagnostics may be emitted outside the processing of a source
1047  /// file, for example during the parsing of command line options. However,
1048  /// diagnostics with source range information are required to only be emitted
1049  /// in between BeginSourceFile() and EndSourceFile().
1050  ///
1051  /// \arg LO - The language options for the source file being processed.
1052  /// \arg PP - The preprocessor object being used for the source; this optional
1053  /// and may not be present, for example when processing AST source files.
1054  virtual void BeginSourceFile(const LangOptions &LangOpts,
1055                               const Preprocessor *PP = 0) {}
1056
1057  /// EndSourceFile - Callback to inform the diagnostic client that processing
1058  /// of a source file has ended. The diagnostic client should assume that any
1059  /// objects made available via \see BeginSourceFile() are inaccessible.
1060  virtual void EndSourceFile() {}
1061
1062  /// IncludeInDiagnosticCounts - This method (whose default implementation
1063  /// returns true) indicates whether the diagnostics handled by this
1064  /// DiagnosticConsumer should be included in the number of diagnostics
1065  /// reported by DiagnosticsEngine.
1066  virtual bool IncludeInDiagnosticCounts() const;
1067
1068  /// HandleDiagnostic - Handle this diagnostic, reporting it to the user or
1069  /// capturing it to a log as needed.
1070  ///
1071  /// Default implementation just keeps track of the total number of warnings
1072  /// and errors.
1073  virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
1074                                const Diagnostic &Info);
1075};
1076
1077}  // end namespace clang
1078
1079#endif
1080