Diagnostic.h revision b1c99c679adb53be8f478d08be83af6c9c22ae4b
15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- Diagnostic.h - C Language Family Diagnostic Handling ---*- C++ -*-===//
25f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
35f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//                     The LLVM Compiler Infrastructure
45f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
75f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
85f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
95f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//  This file defines the Diagnostic-related interfaces.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#ifndef LLVM_CLANG_DIAGNOSTIC_H
155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#define LLVM_CLANG_DIAGNOSTIC_H
165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis#include "clang/Basic/DiagnosticIDs.h"
182eefd8657c233bc7c9330acfe475fc270bbe7cabTed Kremenek#include "clang/Basic/SourceLocation.h"
19f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor#include "llvm/ADT/ArrayRef.h"
200827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis#include "llvm/ADT/DenseMap.h"
2128019772db70d4547be05a042eb950bc910f134fDouglas Gregor#include "llvm/ADT/IntrusiveRefCntPtr.h"
22bdbb004f38978da0c4a75af3294d1c7b5ff84af1Douglas Gregor#include "llvm/ADT/OwningPtr.h"
233f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor#include "llvm/Support/type_traits.h"
245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
2533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis#include <vector>
260827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis#include <list>
27f4c839657742b823cea1a95b18422f1ba74d3dddChris Lattner
285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencernamespace clang {
2978ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  class DiagnosticConsumer;
3033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  class DiagnosticBuilder;
31d42ffbd22fc7eb61321f6a88173ee424991f01c6Ted Kremenek  class IdentifierInfo;
3233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  class DeclContext;
3340469651a3f8379dc0f32df69e9bade06a2aad36Chris Lattner  class LangOptions;
347d90199f109290e9d587479a481a2850d390b552Daniel Dunbar  class Preprocessor;
359c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  class DiagnosticErrorTrap;
36e59abb56ce0e1c206fb80bd945a0c358b0abe1efArgyrios Kyrtzidis  class StoredDiagnostic;
371eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
384b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// \brief Annotates a diagnostic with some code that should be
394b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// inserted, removed, or replaced to fix the problem.
404b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor///
414b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// This kind of hint should be used when we are certain that the
424b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// introduction, removal, or modification of a particular (small!)
434b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// amount of code will correct a compilation error. The compiler
444b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// should also provide full recovery from such errors, such that
45b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor/// suppressing the diagnostic output can still result in successful
464b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor/// compilation.
47849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregorclass FixItHint {
484b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregorpublic:
49783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor  /// \brief Code that should be replaced to correct the error. Empty for an
50783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor  /// insertion hint.
510a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  CharSourceRange RemoveRange;
524b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
534b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief The actual code to insert at the insertion location, as a
544b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// string.
554b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  std::string CodeToInsert;
564b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
574b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief Empty code modification hint, indicating that no code
584b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// modification is known.
59783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor  FixItHint() : RemoveRange() { }
604b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
612f019aadc96f8fa3185c684c7150bd596d045064Anders Carlsson  bool isNull() const {
62783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor    return !RemoveRange.isValid();
632f019aadc96f8fa3185c684c7150bd596d045064Anders Carlsson  }
642f019aadc96f8fa3185c684c7150bd596d045064Anders Carlsson
654b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief Create a code modification hint that inserts the given
664b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// code string at a specific location.
67849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  static FixItHint CreateInsertion(SourceLocation InsertionLoc,
68686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                                   StringRef Code) {
69849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    FixItHint Hint;
70783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor    Hint.RemoveRange =
71783c56f47745f719590b17afd7ed937bf2407b53Douglas Gregor      CharSourceRange(SourceRange(InsertionLoc, InsertionLoc), false);
72b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    Hint.CodeToInsert = Code;
73b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    return Hint;
74b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor  }
754b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
764b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief Create a code modification hint that removes the given
774b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// source range.
780a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static FixItHint CreateRemoval(CharSourceRange RemoveRange) {
79849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    FixItHint Hint;
80b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    Hint.RemoveRange = RemoveRange;
81b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    return Hint;
82b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor  }
830a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static FixItHint CreateRemoval(SourceRange RemoveRange) {
840a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return CreateRemoval(CharSourceRange::getTokenRange(RemoveRange));
850a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
860a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
874b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief Create a code modification hint that replaces the given
884b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// source range with the given code string.
890a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static FixItHint CreateReplacement(CharSourceRange RemoveRange,
90686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                                     StringRef Code) {
91849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    FixItHint Hint;
92b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    Hint.RemoveRange = RemoveRange;
93b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    Hint.CodeToInsert = Code;
94b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor    return Hint;
95b2fb6de9070fea9abc56c8e8d5469066e964cefeDouglas Gregor  }
960a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
970a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static FixItHint CreateReplacement(SourceRange RemoveRange,
98686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                                     StringRef Code) {
990a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return CreateReplacement(CharSourceRange::getTokenRange(RemoveRange), Code);
1000a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
1014b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor};
1024b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
103d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// DiagnosticsEngine - This concrete class is used by the front-end to report
1045f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// problems and issues.  It massages the diagnostics (e.g. handling things like
10578ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie/// "report warnings as errors" and passes them off to the DiagnosticConsumer
10678ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie/// for reporting to the user. DiagnosticsEngine is tied to one translation unit
10778ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie/// and one SourceManager.
108d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikieclass DiagnosticsEngine : public llvm::RefCountedBase<DiagnosticsEngine> {
109182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattnerpublic:
110182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  /// Level - The level of the diagnostic, after it has been through mapping.
111182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  enum Level {
11233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    Ignored = DiagnosticIDs::Ignored,
11333e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    Note = DiagnosticIDs::Note,
11433e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    Warning = DiagnosticIDs::Warning,
11533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    Error = DiagnosticIDs::Error,
11633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    Fatal = DiagnosticIDs::Fatal
117182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  };
1181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
119b54b276a920246c595a0498da281821eb9d22996Chris Lattner  /// ExtensionHandling - How do we handle otherwise-unmapped extension?  This
120b54b276a920246c595a0498da281821eb9d22996Chris Lattner  /// is controlled by -pedantic and -pedantic-errors.
121b54b276a920246c595a0498da281821eb9d22996Chris Lattner  enum ExtensionHandling {
122b54b276a920246c595a0498da281821eb9d22996Chris Lattner    Ext_Ignore, Ext_Warn, Ext_Error
123b54b276a920246c595a0498da281821eb9d22996Chris Lattner  };
1241eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1253fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  enum ArgumentKind {
12647b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_std_string,      // std::string
12747b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_c_string,        // const char *
12847b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_sint,            // int
12947b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_uint,            // unsigned
13047b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_identifierinfo,  // IdentifierInfo
13147b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_qualtype,        // QualType
13247b9a1ca55e61e37f5a368740e29de190345acc6Douglas Gregor    ak_declarationname, // DeclarationName
133dacd434c49658286c380c7b4c357d76d53cb4aa1Douglas Gregor    ak_nameddecl,       // NamedDecl *
1343f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor    ak_nestednamespec,  // NestedNameSpecifier *
1353f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor    ak_declcontext      // DeclContext *
1363fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  };
1375edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin
1385edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  /// Specifies which overload candidates to display when overload resolution
1395edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  /// fails.
1405edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  enum OverloadsShown {
1415edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin    Ovl_All,  ///< Show all overloads.
1425edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin    Ovl_Best  ///< Show just the "best" overload candidates.
1435edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  };
1445edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin
145b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  /// ArgumentValue - This typedef represents on argument value, which is a
146b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  /// union discriminated by ArgumentKind, with a value.
147b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  typedef std::pair<ArgumentKind, intptr_t> ArgumentValue;
148ee1828a6b5ae1bc4ea300e48f3840ac1ec5be295Douglas Gregor
1491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stumpprivate:
15027ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  unsigned char AllExtensionsSilenced; // Used by __extension__
151b54b276a920246c595a0498da281821eb9d22996Chris Lattner  bool IgnoreAllWarnings;        // Ignore all warnings: -w
1521e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  bool WarningsAsErrors;         // Treat warnings like errors.
1531e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  bool EnableAllWarnings;        // Enable all warnings.
154e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner  bool ErrorsAsFatal;            // Treat errors like fatal errors.
155b54b276a920246c595a0498da281821eb9d22996Chris Lattner  bool SuppressSystemWarnings;   // Suppress warnings in system headers.
15681b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  bool SuppressAllDiagnostics;   // Suppress all diagnostics.
1575edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  OverloadsShown ShowOverloads;  // Which overload candidates to show.
158c100214fdc41a7ea215f75d433eb1cb829fd4330Chris Lattner  unsigned ErrorLimit;           // Cap of # errors emitted, 0 -> no limit.
159575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  unsigned TemplateBacktraceLimit; // Cap on depth of template backtrace stack,
160575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor                                   // 0 -> no limit.
161b54b276a920246c595a0498da281821eb9d22996Chris Lattner  ExtensionHandling ExtBehavior; // Map extensions onto warnings or errors?
16233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  llvm::IntrusiveRefCntPtr<DiagnosticIDs> Diags;
16378ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  DiagnosticConsumer *Client;
16433e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  bool OwnsDiagClient;
16533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  SourceManager *SourceMgr;
1660827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
1670827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Mapping information for diagnostics.  Mapping info is
168691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// packed into four bits per diagnostic.  The low three bits are the mapping
169691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// (an instance of diag::Mapping), or zero if unset.  The high bit is set
170691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// when the mapping was established as a user mapping.  If the high bit is
171691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// clear, then the low bits are set to the default value, and should be
172691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// mapped with -pedantic, -Werror, etc.
1730827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
1743efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis  /// A new DiagState is created and kept around when diagnostic pragmas modify
1753efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis  /// the state so that we know what is the diagnostic state at any given
1763efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis  /// source location.
1770827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  class DiagState {
178b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    llvm::DenseMap<unsigned, DiagnosticMappingInfo> DiagMap;
1793c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer
1803c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer  public:
181b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    typedef llvm::DenseMap<unsigned, DiagnosticMappingInfo>::const_iterator
182b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar      iterator;
1833efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis
184b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    void setMappingInfo(diag::kind Diag, DiagnosticMappingInfo Info) {
185b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar      DiagMap[Diag] = Info;
186b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    }
1873c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer
188b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    DiagnosticMappingInfo getMappingInfo(diag::kind Diag) const {
1893efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis      iterator I = DiagMap.find(Diag);
1903efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis      if (I != DiagMap.end())
191b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar        return I->second;
192b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar      return DiagnosticMappingInfo::MakeUnset();
1933c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer    }
1943efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis
1953efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis    iterator begin() const { return DiagMap.begin(); }
1963efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis    iterator end() const { return DiagMap.end(); }
1970827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  };
1983c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer
1990827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Keeps and automatically disposes all DiagStates that we create.
2000827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  std::list<DiagState> DiagStates;
2010827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2020827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Represents a point in source where the diagnostic state was
2030827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// modified because of a pragma. 'Loc' can be null if the point represents
2040827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// the diagnostic state modifications done through the command-line.
2050827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  struct DiagStatePoint {
2060827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    DiagState *State;
2070827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    FullSourceLoc Loc;
2080827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    DiagStatePoint(DiagState *State, FullSourceLoc Loc)
2090827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      : State(State), Loc(Loc) { }
2100827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2110827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    bool operator<(const DiagStatePoint &RHS) const {
2120827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      // If Loc is invalid it means it came from <command-line>, in which case
2130827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      // we regard it as coming before any valid source location.
2140827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      if (RHS.Loc.isInvalid())
2150827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis        return false;
2160827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      if (Loc.isInvalid())
2170827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis        return true;
2180827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      return Loc.isBeforeInTranslationUnitThan(RHS.Loc);
2193c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer    }
2203c2d3016adec79c81c4efff64e208fd3ecdd92aeBenjamin Kramer  };
22104ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner
2220827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief A vector of all DiagStatePoints representing changes in diagnostic
2230827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// state due to diagnostic pragmas. The vector is always sorted according to
2240827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// the SourceLocation of the DiagStatePoint.
2250827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  typedef std::vector<DiagStatePoint> DiagStatePointsTy;
2260827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  mutable DiagStatePointsTy DiagStatePoints;
2270827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2280827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Keeps the DiagState that was active during each diagnostic 'push'
2290827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// so we can get back at it when we 'pop'.
2300827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  std::vector<DiagState *> DiagStateOnPushStack;
2310827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2320827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  DiagState *GetCurDiagState() const {
2330827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    assert(!DiagStatePoints.empty());
2340827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    return DiagStatePoints.back().State;
2350827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  }
2360827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2370827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  void PushDiagStatePoint(DiagState *State, SourceLocation L) {
2380827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    FullSourceLoc Loc(L, *SourceMgr);
2390827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    // Make sure that DiagStatePoints is always sorted according to Loc.
2400827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    assert((Loc.isValid() || DiagStatePoints.empty()) &&
2410827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis           "Adding invalid loc point after another point");
2420827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    assert((Loc.isInvalid() || DiagStatePoints.empty() ||
2430827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis            DiagStatePoints.back().Loc.isInvalid() ||
2440827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis            DiagStatePoints.back().Loc.isBeforeInTranslationUnitThan(Loc)) &&
2450827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis           "Previous point loc comes after or is the same as new one");
2460827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    DiagStatePoints.push_back(DiagStatePoint(State,
2470827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis                                             FullSourceLoc(Loc, *SourceMgr)));
2480827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  }
2490827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2500827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Finds the DiagStatePoint that contains the diagnostic state of
2510827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// the given source location.
2520827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  DiagStatePointsTy::iterator GetDiagStatePointForLoc(SourceLocation Loc) const;
25304ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner
25415221422eda7bac679e38b07512feda49715ef66Chris Lattner  /// ErrorOccurred / FatalErrorOccurred - This is set to true when an error or
25515221422eda7bac679e38b07512feda49715ef66Chris Lattner  /// fatal error is emitted, and is sticky.
2565f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  bool ErrorOccurred;
25715221422eda7bac679e38b07512feda49715ef66Chris Lattner  bool FatalErrorOccurred;
2581eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
25985bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor  /// \brief Indicates that an unrecoverable error has occurred.
26085bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor  bool UnrecoverableErrorOccurred;
26185bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor
262c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis  /// \brief Counts for DiagnosticErrorTrap to check whether an error occurred
263add80bb3957dba1d9389304453c0a4c975768bd7John McCall  /// during a parsing section, e.g. during parsing a function.
264c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis  unsigned TrapNumErrorsOccurred;
265c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis  unsigned TrapNumUnrecoverableErrorsOccurred;
266add80bb3957dba1d9389304453c0a4c975768bd7John McCall
267f5d2328fc849288c3a62e43d065685f516d57091Chris Lattner  /// LastDiagLevel - This is the level of the last diagnostic emitted.  This is
268f5d2328fc849288c3a62e43d065685f516d57091Chris Lattner  /// used to emit continuation diagnostics with the same level as the
269f5d2328fc849288c3a62e43d065685f516d57091Chris Lattner  /// diagnostic that they follow.
27033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  DiagnosticIDs::Level LastDiagLevel;
2715f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
27253eee7ba970d21ff15bbd4334164037a3b4cc4b8Chris Lattner  unsigned NumWarnings;       // Number of warnings reported
27353eee7ba970d21ff15bbd4334164037a3b4cc4b8Chris Lattner  unsigned NumErrors;         // Number of errors reported
2741864f2eb59471d07db51adfc3e5b1a229eed631aDouglas Gregor  unsigned NumErrorsSuppressed; // Number of errors suppressed
2757bfaaaecb3113f955db31e8d8a51acffd1bc0c27Nico Weber
2763fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  /// ArgToStringFn - A function pointer that converts an opaque diagnostic
2773fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  /// argument to a strings.  This takes the modifiers and argument that was
2783fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  /// present in the diagnostic.
279b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  ///
280b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  /// The PrevArgs array (whose length is NumPrevArgs) indicates the previous
281b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  /// arguments formatted for this diagnostic.  Implementations of this function
282b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  /// can use this information to avoid redundancy across arguments.
283b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner  ///
28422caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  /// This is a hack to avoid a layering violation between libbasic and libsema.
2850673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth  typedef void (*ArgToStringFnTy)(
2860673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      ArgumentKind Kind, intptr_t Val,
2870673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      const char *Modifier, unsigned ModifierLen,
2880673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      const char *Argument, unsigned ArgumentLen,
2890673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      const ArgumentValue *PrevArgs,
2900673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      unsigned NumPrevArgs,
291686775deca8b8685eb90801495880e3abdd844c2Chris Lattner      SmallVectorImpl<char> &Output,
2920673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth      void *Cookie,
293686775deca8b8685eb90801495880e3abdd844c2Chris Lattner      SmallVectorImpl<intptr_t> &QualTypeVals);
29492dd386e3f05d176b45a638199d51f536bd9d1c4Chris Lattner  void *ArgToStringCookie;
2953fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  ArgToStringFnTy ArgToStringFn;
29693ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
29793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief ID of the "delayed" diagnostic, which is a (typically
29893ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// fatal) diagnostic that had to be delayed because it was found
29993ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// while emitting another diagnostic.
30093ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  unsigned DelayedDiagID;
30193ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
30293ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief First string argument for the delayed diagnostic.
30393ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  std::string DelayedDiagArg1;
30493ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
30593ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief Second string argument for the delayed diagnostic.
30693ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  std::string DelayedDiagArg2;
30793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
3085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
309d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  explicit DiagnosticsEngine(
310d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie                      const llvm::IntrusiveRefCntPtr<DiagnosticIDs> &Diags,
31178ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie                      DiagnosticConsumer *client = 0,
31233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis                      bool ShouldOwnClient = true);
313d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  ~DiagnosticsEngine();
3141eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
31533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  const llvm::IntrusiveRefCntPtr<DiagnosticIDs> &getDiagnosticIDs() const {
31633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    return Diags;
31733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
31833e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis
31978ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  DiagnosticConsumer *getClient() { return Client; }
32078ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  const DiagnosticConsumer *getClient() const { return Client; }
3211eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
322d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  /// \brief Determine whether this \c DiagnosticsEngine object own its client.
32378243658c533168d51fd076fba328437932ba6f1Douglas Gregor  bool ownsClient() const { return OwnsDiagClient; }
32478243658c533168d51fd076fba328437932ba6f1Douglas Gregor
325bdbb004f38978da0c4a75af3294d1c7b5ff84af1Douglas Gregor  /// \brief Return the current diagnostic client along with ownership of that
326bdbb004f38978da0c4a75af3294d1c7b5ff84af1Douglas Gregor  /// client.
32778ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  DiagnosticConsumer *takeClient() {
32833e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    OwnsDiagClient = false;
32933e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    return Client;
33033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
33133e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis
33233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  bool hasSourceManager() const { return SourceMgr != 0; }
33333e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  SourceManager &getSourceManager() const {
33433e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    assert(SourceMgr && "SourceManager not set!");
33533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    return *SourceMgr;
33633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
33733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  void setSourceManager(SourceManager *SrcMgr) { SourceMgr = SrcMgr; }
33833e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis
33933e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  //===--------------------------------------------------------------------===//
340d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  //  DiagnosticsEngine characterization methods, used by a client to customize
341d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  //  how diagnostics are emitted.
34233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  //
34304ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner
3441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  /// pushMappings - Copies the current DiagMappings and pushes the new copy
34504ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner  /// onto the top of the stack.
3460827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  void pushMappings(SourceLocation Loc);
34704ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner
34804ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner  /// popMappings - Pops the current DiagMappings off the top of the stack
34904ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner  /// causing the new top of the stack to be the active mappings. Returns
35004ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner  /// true if the pop happens, false if there is only one DiagMapping on the
35104ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner  /// stack.
3520827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  bool popMappings(SourceLocation Loc);
35304ae2df026b275aae5dddfc0db5ca55ff4e62179Chris Lattner
354bdbb004f38978da0c4a75af3294d1c7b5ff84af1Douglas Gregor  /// \brief Set the diagnostic client associated with this diagnostic object.
355bdbb004f38978da0c4a75af3294d1c7b5ff84af1Douglas Gregor  ///
35633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  /// \param ShouldOwnClient true if the diagnostic object should take
35733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  /// ownership of \c client.
35878ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  void setClient(DiagnosticConsumer *client, bool ShouldOwnClient = true);
3595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
360c100214fdc41a7ea215f75d433eb1cb829fd4330Chris Lattner  /// setErrorLimit - Specify a limit for the number of errors we should
361b205ac9fcd22b87b41697172d1983c5ae9dabaafChris Lattner  /// emit before giving up.  Zero disables the limit.
362c100214fdc41a7ea215f75d433eb1cb829fd4330Chris Lattner  void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; }
363b205ac9fcd22b87b41697172d1983c5ae9dabaafChris Lattner
364575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  /// \brief Specify the maximum number of template instantiation
365575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  /// notes to emit along with a given diagnostic.
366575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  void setTemplateBacktraceLimit(unsigned Limit) {
367575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor    TemplateBacktraceLimit = Limit;
368575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  }
3696c1cb9916e9988dcdd65b9266dbe24afd173427aDouglas Gregor
370575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  /// \brief Retrieve the maximum number of template instantiation
371575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  /// nodes to emit along with a given diagnostic.
372575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  unsigned getTemplateBacktraceLimit() const {
373575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor    return TemplateBacktraceLimit;
374575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  }
3756c1cb9916e9988dcdd65b9266dbe24afd173427aDouglas Gregor
3765b4681c8ef65808ec4d72ab6081efd24d53d4969Chris Lattner  /// setIgnoreAllWarnings - When set to true, any unmapped warnings are
3775b4681c8ef65808ec4d72ab6081efd24d53d4969Chris Lattner  /// ignored.  If this and WarningsAsErrors are both set, then this one wins.
3785b4681c8ef65808ec4d72ab6081efd24d53d4969Chris Lattner  void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; }
3795b4681c8ef65808ec4d72ab6081efd24d53d4969Chris Lattner  bool getIgnoreAllWarnings() const { return IgnoreAllWarnings; }
3801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3811e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  /// setEnableAllWarnings - When set to true, any unmapped ignored warnings
3821e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  /// are no longer ignored.  If this and IgnoreAllWarnings are both set,
3831e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  /// then that one wins.
3841e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  void setEnableAllWarnings(bool Val) { EnableAllWarnings = Val; }
3851e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek  bool getEnableAllWarnngs() const { return EnableAllWarnings; }
3861e473ccb0e0f6fd1954bef330f7193c1a3fb3ba1Ted Kremenek
3875f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// setWarningsAsErrors - When set to true, any warnings reported are issued
3885f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// as errors.
3895f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  void setWarningsAsErrors(bool Val) { WarningsAsErrors = Val; }
3905f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  bool getWarningsAsErrors() const { return WarningsAsErrors; }
3911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
392e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner  /// setErrorsAsFatal - When set to true, any error reported is made a
393e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner  /// fatal error.
394e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner  void setErrorsAsFatal(bool Val) { ErrorsAsFatal = Val; }
395e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner  bool getErrorsAsFatal() const { return ErrorsAsFatal; }
396e663c720063fc9ff9f75bcbe38cd070c73c78b0eChris Lattner
3972fe0997427d92388e66e7573f4b043e7ba285ef0Daniel Dunbar  /// setSuppressSystemWarnings - When set to true mask warnings that
3982fe0997427d92388e66e7573f4b043e7ba285ef0Daniel Dunbar  /// come from system headers.
3992fe0997427d92388e66e7573f4b043e7ba285ef0Daniel Dunbar  void setSuppressSystemWarnings(bool Val) { SuppressSystemWarnings = Val; }
4002fe0997427d92388e66e7573f4b043e7ba285ef0Daniel Dunbar  bool getSuppressSystemWarnings() const { return SuppressSystemWarnings; }
4012fe0997427d92388e66e7573f4b043e7ba285ef0Daniel Dunbar
40281b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  /// \brief Suppress all diagnostics, to silence the front end when we
40381b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  /// know that we don't want any more diagnostics to be passed along to the
40481b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  /// client
40581b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  void setSuppressAllDiagnostics(bool Val = true) {
40681b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor    SuppressAllDiagnostics = Val;
40781b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  }
40881b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor  bool getSuppressAllDiagnostics() const { return SuppressAllDiagnostics; }
40981b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor
4105edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  /// \brief Specify which overload candidates to show when overload resolution
4115edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  /// fails.  By default, we show all candidates.
4125edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  void setShowOverloads(OverloadsShown Val) {
4135edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin    ShowOverloads = Val;
4145edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  }
4155edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  OverloadsShown getShowOverloads() const { return ShowOverloads; }
4165edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin
4170b60d9e0097e2d6a1a5e62396967e207c4a772f2Douglas Gregor  /// \brief Pretend that the last diagnostic issued was ignored. This can
4180b60d9e0097e2d6a1a5e62396967e207c4a772f2Douglas Gregor  /// be used by clients who suppress diagnostics themselves.
4190b60d9e0097e2d6a1a5e62396967e207c4a772f2Douglas Gregor  void setLastDiagnosticIgnored() {
42033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    LastDiagLevel = DiagnosticIDs::Ignored;
4210b60d9e0097e2d6a1a5e62396967e207c4a772f2Douglas Gregor  }
4220b60d9e0097e2d6a1a5e62396967e207c4a772f2Douglas Gregor
423b54b276a920246c595a0498da281821eb9d22996Chris Lattner  /// setExtensionHandlingBehavior - This controls whether otherwise-unmapped
424b54b276a920246c595a0498da281821eb9d22996Chris Lattner  /// extension diagnostics are mapped onto ignore/warning/error.  This
425b54b276a920246c595a0498da281821eb9d22996Chris Lattner  /// corresponds to the GCC -pedantic and -pedantic-errors option.
426b54b276a920246c595a0498da281821eb9d22996Chris Lattner  void setExtensionHandlingBehavior(ExtensionHandling H) {
427b54b276a920246c595a0498da281821eb9d22996Chris Lattner    ExtBehavior = H;
428b54b276a920246c595a0498da281821eb9d22996Chris Lattner  }
429c1b5fa41f09512c74030b9a2a0d1564535e22a76Peter Collingbourne  ExtensionHandling getExtensionHandlingBehavior() const { return ExtBehavior; }
4301eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
43127ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  /// AllExtensionsSilenced - This is a counter bumped when an __extension__
43227ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  /// block is encountered.  When non-zero, all extension diagnostics are
43327ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  /// entirely silenced, no matter how they are mapped.
43427ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  void IncrementAllExtensionsSilenced() { ++AllExtensionsSilenced; }
43527ceb9d77d929f02a8a811d189a96885629c7c0cChris Lattner  void DecrementAllExtensionsSilenced() { --AllExtensionsSilenced; }
43691a2886d558ea6ca7a0bed73ab5acea5ae78eac2Douglas Gregor  bool hasAllExtensionsSilenced() { return AllExtensionsSilenced != 0; }
4371eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4380827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief This allows the client to specify that certain
439691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// warnings are ignored.  Notes can never be mapped, errors can only be
440691f1ae7164ba78c3dd7ac20c487399935b9544bChris Lattner  /// mapped to fatal, and WARNINGs and EXTENSIONs can be mapped arbitrarily.
4410827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
4420827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \param Loc The source location that this change of diagnostic state should
4430827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// take affect. It can be null if we are setting the latest state.
4440827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  void setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
4450827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis                            SourceLocation Loc);
4461eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4473bc172bc6a787842db6fea351cf6929539fca70dChris Lattner  /// setDiagnosticGroupMapping - Change an entire diagnostic group (e.g.
4483bc172bc6a787842db6fea351cf6929539fca70dChris Lattner  /// "unknown-pragmas" to have the specified mapping.  This returns true and
4493bc172bc6a787842db6fea351cf6929539fca70dChris Lattner  /// ignores the request if "Group" was unknown, false otherwise.
4500827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
4510827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// 'Loc' is the source location that this change of diagnostic state should
4520827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// take affect. It can be null if we are setting the state from command-line.
453686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  bool setDiagnosticGroupMapping(StringRef Group, diag::Mapping Map,
4540827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis                                 SourceLocation Loc = SourceLocation()) {
4550827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    return Diags->setDiagnosticGroupMapping(Group, Map, Loc, *this);
45633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
4575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4584aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  /// \brief Set the warning-as-error flag for the given diagnostic group.
4594aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  ///
4604aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  /// \returns True if the given group is unknown, false otherwise.
4614aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  bool setDiagnosticGroupWarningAsError(StringRef Group, bool Enabled);
4624aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar
4634aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  /// \brief Set the error-as-fatal flag for the given diagnostic group.
4644aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  ///
4654aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  /// \returns True if the given group is unknown, false otherwise.
4664aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar  bool setDiagnosticGroupErrorAsFatal(StringRef Group, bool Enabled);
4674aa8f2bce0f498152d624f748712a991adc23fddDaniel Dunbar
4685f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  bool hasErrorOccurred() const { return ErrorOccurred; }
46915221422eda7bac679e38b07512feda49715ef66Chris Lattner  bool hasFatalErrorOccurred() const { return FatalErrorOccurred; }
47085bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor
47185bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor  /// \brief Determine whether any kind of unrecoverable error has occurred.
47285bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor  bool hasUnrecoverableErrorOccurred() const {
47385bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor    return FatalErrorOccurred || UnrecoverableErrorOccurred;
47485bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor  }
47585bea9777d444ccbcc086d98f075fe666c2e865dDouglas Gregor
47653eee7ba970d21ff15bbd4334164037a3b4cc4b8Chris Lattner  unsigned getNumWarnings() const { return NumWarnings; }
4771eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
478c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  void setNumWarnings(unsigned NumWarnings) {
479c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor    this->NumWarnings = NumWarnings;
480c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  }
481c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
482182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  /// getCustomDiagID - Return an ID for a diagnostic with the specified message
483182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  /// and level.  If this is the first request for this diagnosic, it is
484182745ae7892bca0842d9c023370ade5f8d1c6e8Chris Lattner  /// registered and created, otherwise the existing ID is returned.
485686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  unsigned getCustomDiagID(Level L, StringRef Message) {
48633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    return Diags->getCustomDiagID((DiagnosticIDs::Level)L, Message);
48733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
4881eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4893fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  /// ConvertArgToString - This method converts a diagnostic argument (as an
4903fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  /// intptr_t) into the string that represents it.
4913fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner  void ConvertArgToString(ArgumentKind Kind, intptr_t Val,
4923fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner                          const char *Modifier, unsigned ModLen,
4933fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner                          const char *Argument, unsigned ArgLen,
494b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner                          const ArgumentValue *PrevArgs, unsigned NumPrevArgs,
495686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                          SmallVectorImpl<char> &Output,
496686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                          SmallVectorImpl<intptr_t> &QualTypeVals) const {
497b54d8af9a66cc20a6a9a9219c7eaea8df7ee7fd4Chris Lattner    ArgToStringFn(Kind, Val, Modifier, ModLen, Argument, ArgLen,
4980673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth                  PrevArgs, NumPrevArgs, Output, ArgToStringCookie,
4990673cb30340aadaede7b795c763b00f6b64e611cChandler Carruth                  QualTypeVals);
50022caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  }
5011eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
50292dd386e3f05d176b45a638199d51f536bd9d1c4Chris Lattner  void SetArgToStringFn(ArgToStringFnTy Fn, void *Cookie) {
5033fdf4b071dc79fae778fb5f376485480756c76a3Chris Lattner    ArgToStringFn = Fn;
50492dd386e3f05d176b45a638199d51f536bd9d1c4Chris Lattner    ArgToStringCookie = Cookie;
50522caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  }
5061eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
507abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// \brief Reset the state of the diagnostic object to its initial
508abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// configuration.
509abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  void Reset();
510abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor
5115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  //===--------------------------------------------------------------------===//
512d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  // DiagnosticsEngine classification and reporting interfaces.
5135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  //
5145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
515d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  /// \brief Based on the way the client configured the DiagnosticsEngine
5165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// object, classify the specified diagnostic ID into a Level, consumable by
51778ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  /// the DiagnosticConsumer.
5180827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
5190827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \param Loc The source location we are interested in finding out the
5200827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// diagnostic state. Can be null in order to query the latest state.
5211656aaec223949245fdbebf306b719cba0b687caDaniel Dunbar  Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc) const {
5221656aaec223949245fdbebf306b719cba0b687caDaniel Dunbar    return (Level)Diags->getDiagnosticLevel(DiagID, Loc, *this);
52333e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
5241eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
525509355e982d15da4f8f3939493516379665f6275Ted Kremenek  /// Report - Issue the message to the client.  @c DiagID is a member of the
526509355e982d15da4f8f3939493516379665f6275Ted Kremenek  /// @c diag::kind enum.  This actually returns aninstance of DiagnosticBuilder
527509355e982d15da4f8f3939493516379665f6275Ted Kremenek  /// which emits the diagnostics (through @c ProcessDiag) when it is destroyed.
528509355e982d15da4f8f3939493516379665f6275Ted Kremenek  /// @c Pos represents the source location associated with the diagnostic,
529509355e982d15da4f8f3939493516379665f6275Ted Kremenek  /// which can be an invalid location if no position information is available.
53033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  inline DiagnosticBuilder Report(SourceLocation Pos, unsigned DiagID);
5310f9fed70cea107b3f79df554e38bd8e98d48fe47Daniel Dunbar  inline DiagnosticBuilder Report(unsigned DiagID);
532de4bf6a63219c5b9d3bce1fed3dfe075568098a0Douglas Gregor
533e59abb56ce0e1c206fb80bd945a0c358b0abe1efArgyrios Kyrtzidis  void Report(const StoredDiagnostic &storedDiag);
534e59abb56ce0e1c206fb80bd945a0c358b0abe1efArgyrios Kyrtzidis
53593ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief Determine whethere there is already a diagnostic in flight.
5365800f7ea9cf5621280089d690f677bd28064d6b5Ted Kremenek  bool isDiagnosticInFlight() const { return CurDiagID != ~0U; }
53793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
53893ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief Set the "delayed" diagnostic that will be emitted once
53993ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// the current diagnostic completes.
54093ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///
54193ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  If a diagnostic is already in-flight but the front end must
54293ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  report a problem (e.g., with an inconsistent file system
54393ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  state), this routine sets a "delayed" diagnostic that will be
54493ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  emitted after the current diagnostic completes. This should
54593ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  only be used for fatal errors detected at inconvenient
54693ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  times. If emitting a delayed diagnostic causes a second delayed
54793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  diagnostic to be introduced, that second delayed diagnostic
54893ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///  will be ignored.
54993ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///
55093ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \param DiagID The ID of the diagnostic being delayed.
55193ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///
55293ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \param Arg1 A string argument that will be provided to the
55393ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// diagnostic. A copy of this string will be stored in the
554d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  /// DiagnosticsEngine object itself.
55593ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  ///
55693ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \param Arg2 A string argument that will be provided to the
55793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// diagnostic. A copy of this string will be stored in the
558d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  /// DiagnosticsEngine object itself.
559686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  void SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1 = "",
560686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                            StringRef Arg2 = "");
56193ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
562de4bf6a63219c5b9d3bce1fed3dfe075568098a0Douglas Gregor  /// \brief Clear out the current diagnostic.
563de4bf6a63219c5b9d3bce1fed3dfe075568098a0Douglas Gregor  void Clear() { CurDiagID = ~0U; }
5641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5650a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattnerprivate:
56693ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  /// \brief Report the delayed diagnostic.
56793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  void ReportDelayed();
56893ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor
569b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar  void setDiagnosticMappingInternal(unsigned DiagId, diag::Mapping Map,
5703efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis                                    DiagState *State,
5713efd52cf8f4e57c5571bd8cc3168264c3bc46a1eArgyrios Kyrtzidis                                    bool isUser, bool isPragma) const {
572b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar    State->setMappingInfo((diag::kind)DiagId, DiagnosticMappingInfo::MakeInfo(
573b1c99c679adb53be8f478d08be83af6c9c22ae4bDaniel Dunbar                            Map, isUser, isPragma));
5749faf50e62ddcd2535b472abc8daafd7042120caaChris Lattner  }
5751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5763cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  // This is private state used by DiagnosticBuilder.  We put it here instead of
5773cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  // in DiagnosticBuilder in order to keep DiagnosticBuilder a small lightweight
5780a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  // object.  This implementation choice means that we can only have one
5790a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  // diagnostic "in flight" at a time, but this seems to be a reasonable
5800a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  // tradeoff to keep these objects small.  Assertions verify that only one
5810a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  // diagnostic is in flight at a time.
58233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  friend class DiagnosticIDs;
5833cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  friend class DiagnosticBuilder;
58440847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie  friend class Diagnostic;
5859b623639378d53a675921ddfa7316034d571881eDouglas Gregor  friend class PartialDiagnostic;
5869c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  friend class DiagnosticErrorTrap;
5879b623639378d53a675921ddfa7316034d571881eDouglas Gregor
588b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner  /// CurDiagLoc - This is the location of the current diagnostic that is in
589b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner  /// flight.
59033e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  SourceLocation CurDiagLoc;
5911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
592b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner  /// CurDiagID - This is the ID of the current diagnostic that is in flight.
5933cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  /// This is set to ~0U when there is no diagnostic in flight.
594b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner  unsigned CurDiagID;
595b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner
59673d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  enum {
59773d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    /// MaxArguments - The maximum number of arguments we can hold. We currently
59873d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    /// only support up to 10 arguments (%0-%9).  A single diagnostic with more
59973d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    /// than that almost certainly has to be simplified anyway.
60073d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    MaxArguments = 10
60173d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  };
6021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6033cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  /// NumDiagArgs - This contains the number of entries in Arguments.
604730e0fdbbf9b315ef834074054ac55af3a4fcc0cChris Lattner  signed char NumDiagArgs;
605730e0fdbbf9b315ef834074054ac55af3a4fcc0cChris Lattner  /// NumRanges - This is the number of ranges in the DiagRanges array.
606730e0fdbbf9b315ef834074054ac55af3a4fcc0cChris Lattner  unsigned char NumDiagRanges;
6074b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// \brief The number of code modifications hints in the
608849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  /// FixItHints array.
609849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  unsigned char NumFixItHints;
610ee1828a6b5ae1bc4ea300e48f3840ac1ec5be295Douglas Gregor
61173d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// DiagArgumentsKind - This is an array of ArgumentKind::ArgumentKind enum
61273d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// values, with one for each argument.  This specifies whether the argument
61373d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// is in DiagArgumentsStr or in DiagArguments.
61473d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  unsigned char DiagArgumentsKind[MaxArguments];
6151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
61673d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// DiagArgumentsStr - This holds the values of each string argument for the
61773d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// current diagnostic.  This value is only used when the corresponding
61873d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// ArgumentKind is ak_std_string.
61973d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  std::string DiagArgumentsStr[MaxArguments];
62073d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner
62173d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// DiagArgumentsVal - The values for the various substitution positions. This
62273d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// is used when the argument is not an std::string.  The specific value is
623fc8f0e14ad142ed811e90fbd9a30e419e301c717Chris Lattner  /// mangled into an intptr_t and the interpretation depends on exactly what
62473d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// sort of argument kind it is.
62573d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  intptr_t DiagArgumentsVal[MaxArguments];
6261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6270a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// DiagRanges - The list of ranges added to this diagnostic.  It currently
6280a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// only support 10 ranges, could easily be extended if needed.
6290a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  CharSourceRange DiagRanges[10];
6301eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
631b89fe6b04c5b8a2d080c1c5605b72f809fc9ee68Anna Zaks  enum { MaxFixItHints = 6 };
6324b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
633849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  /// FixItHints - If valid, provides a hint with some code
6344b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  /// to insert, remove, or modify at a particular position.
635849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  FixItHint FixItHints[MaxFixItHints];
6364b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
6370a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// ProcessDiag - This is the method used to report a diagnostic that is
6380a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// finally fully formed.
6395e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  ///
6405e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// \returns true if the diagnostic was emitted, false if it was
6415e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// suppressed.
64233e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  bool ProcessDiag() {
64333e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis    return Diags->ProcessDiag(*this);
64433e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  }
645f41d3be39980d40849850d3fb90403623cc8459eArgyrios Kyrtzidis
646f41d3be39980d40849850d3fb90403623cc8459eArgyrios Kyrtzidis  friend class ASTReader;
647f41d3be39980d40849850d3fb90403623cc8459eArgyrios Kyrtzidis  friend class ASTWriter;
6483cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner};
6493cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
6509c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis/// \brief RAII class that determines when any errors have occurred
6519c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis/// between the time the instance was created and the time it was
6529c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis/// queried.
6539c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidisclass DiagnosticErrorTrap {
654d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine &Diag;
655c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis  unsigned NumErrors;
656c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis  unsigned NumUnrecoverableErrors;
6579c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis
6589c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidispublic:
659d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  explicit DiagnosticErrorTrap(DiagnosticsEngine &Diag)
660add80bb3957dba1d9389304453c0a4c975768bd7John McCall    : Diag(Diag) { reset(); }
6619c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis
6629c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  /// \brief Determine whether any errors have occurred since this
6639c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  /// object instance was created.
6649c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  bool hasErrorOccurred() const {
665c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis    return Diag.TrapNumErrorsOccurred > NumErrors;
666add80bb3957dba1d9389304453c0a4c975768bd7John McCall  }
667add80bb3957dba1d9389304453c0a4c975768bd7John McCall
668add80bb3957dba1d9389304453c0a4c975768bd7John McCall  /// \brief Determine whether any unrecoverable errors have occurred since this
669add80bb3957dba1d9389304453c0a4c975768bd7John McCall  /// object instance was created.
670add80bb3957dba1d9389304453c0a4c975768bd7John McCall  bool hasUnrecoverableErrorOccurred() const {
671c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis    return Diag.TrapNumUnrecoverableErrorsOccurred > NumUnrecoverableErrors;
6729c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  }
6739c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis
6749c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis  // Set to initial state of "no errors occurred".
675add80bb3957dba1d9389304453c0a4c975768bd7John McCall  void reset() {
676c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis    NumErrors = Diag.TrapNumErrorsOccurred;
677c0a575f9b791a25c94b1c3c832dd73ec564646bbArgyrios Kyrtzidis    NumUnrecoverableErrors = Diag.TrapNumUnrecoverableErrorsOccurred;
678add80bb3957dba1d9389304453c0a4c975768bd7John McCall  }
6799c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis};
6809c4eb1f3438370355f51dc8c62f2ca4803e3338dArgyrios Kyrtzidis
6813cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner//===----------------------------------------------------------------------===//
6823cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner// DiagnosticBuilder
6833cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner//===----------------------------------------------------------------------===//
6843cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
6853cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// DiagnosticBuilder - This is a little helper class used to produce
686d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// diagnostics.  This is constructed by the DiagnosticsEngine::Report method,
687d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// and allows insertion of extra information (arguments and source ranges) into
688d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// the currently "in flight" diagnostic.  When the temporary for the builder is
6893cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// destroyed, the diagnostic is issued.
6903cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner///
6913cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// Note that many of these will be created as temporary objects (many call
6923cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// sites), so we want them to be small and we never want their address taken.
6933cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// This ensures that compilers with somewhat reasonable optimizers will promote
6943cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// the common fields to registers, eliminating increments of the NumArgs field,
6953cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// for example.
6963cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerclass DiagnosticBuilder {
697d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  mutable DiagnosticsEngine *DiagObj;
698849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  mutable unsigned NumArgs, NumRanges, NumFixItHints;
6991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
7003cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  void operator=(const DiagnosticBuilder&); // DO NOT IMPLEMENT
701d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  friend class DiagnosticsEngine;
702d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  explicit DiagnosticBuilder(DiagnosticsEngine *diagObj)
703849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    : DiagObj(diagObj), NumArgs(0), NumRanges(0), NumFixItHints(0) {}
704ee1828a6b5ae1bc4ea300e48f3840ac1ec5be295Douglas Gregor
7059b623639378d53a675921ddfa7316034d571881eDouglas Gregor  friend class PartialDiagnostic;
706b535041ee33c5eff255832bc5541c8d52aae8254Douglas Gregor
707b535041ee33c5eff255832bc5541c8d52aae8254Douglas Gregorprotected:
708b535041ee33c5eff255832bc5541c8d52aae8254Douglas Gregor  void FlushCounts();
7099b623639378d53a675921ddfa7316034d571881eDouglas Gregor
7101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stumppublic:
7110a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// Copy constructor.  When copied, this "takes" the diagnostic info from the
7120a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// input and neuters it.
7133cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  DiagnosticBuilder(const DiagnosticBuilder &D) {
7140a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner    DiagObj = D.DiagObj;
7150a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner    D.DiagObj = 0;
71625a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor    NumArgs = D.NumArgs;
71725a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor    NumRanges = D.NumRanges;
718849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    NumFixItHints = D.NumFixItHints;
7190a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  }
72025a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor
7215e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// \brief Simple enumeration value used to give a name to the
7225e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// suppress-diagnostic constructor.
7235e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  enum SuppressKind { Suppress };
7245e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor
7255e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// \brief Create an empty DiagnosticBuilder object that represents
7265e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// no actual diagnostic.
7271eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  explicit DiagnosticBuilder(SuppressKind)
728849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    : DiagObj(0), NumArgs(0), NumRanges(0), NumFixItHints(0) { }
7295e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor
73025a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  /// \brief Force the diagnostic builder to emit the diagnostic now.
73125a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  ///
73225a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  /// Once this function has been called, the DiagnosticBuilder object
73325a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  /// should not be used again before it is destroyed.
7345e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  ///
7355e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// \returns true if a diagnostic was emitted, false if the
7365e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor  /// diagnostic was suppressed.
73793ea5cb0edf8e509c5113e70cb05ee247c9bdf6bDouglas Gregor  bool Emit();
73825a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor
73925a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  /// Destructor - The dtor emits the diagnostic if it hasn't already
74025a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  /// been emitted.
74125a88bbf042317976f0d9cbfa87dfe89426e8393Douglas Gregor  ~DiagnosticBuilder() { Emit(); }
7421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
743d93256e55673a17d18543397ec462416acb13792Douglas Gregor  /// isActive - Determine whether this diagnostic is still active.
744d93256e55673a17d18543397ec462416acb13792Douglas Gregor  bool isActive() const { return DiagObj != 0; }
745d93256e55673a17d18543397ec462416acb13792Douglas Gregor
7469b623639378d53a675921ddfa7316034d571881eDouglas Gregor  /// \brief Retrieve the active diagnostic ID.
7479b623639378d53a675921ddfa7316034d571881eDouglas Gregor  ///
7489b623639378d53a675921ddfa7316034d571881eDouglas Gregor  /// \pre \c isActive()
7499b623639378d53a675921ddfa7316034d571881eDouglas Gregor  unsigned getDiagID() const {
750d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(isActive() && "DiagnosticsEngine is inactive");
7519b623639378d53a675921ddfa7316034d571881eDouglas Gregor    return DiagObj->CurDiagID;
7529b623639378d53a675921ddfa7316034d571881eDouglas Gregor  }
7539b623639378d53a675921ddfa7316034d571881eDouglas Gregor
7549b623639378d53a675921ddfa7316034d571881eDouglas Gregor  /// \brief Clear out the current diagnostic.
7559b623639378d53a675921ddfa7316034d571881eDouglas Gregor  void Clear() { DiagObj = 0; }
7569b623639378d53a675921ddfa7316034d571881eDouglas Gregor
7573cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  /// Operator bool: conversion of DiagnosticBuilder to bool always returns
7583cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  /// true.  This allows is to be used in boolean error contexts like:
7593cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  /// return Diag(...);
7603cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  operator bool() const { return true; }
7613cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
762686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  void AddString(StringRef S) const {
763d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(NumArgs < DiagnosticsEngine::MaxArguments &&
7643cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "Too many arguments to diagnostic!");
7655e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    if (DiagObj) {
766d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie      DiagObj->DiagArgumentsKind[NumArgs] = DiagnosticsEngine::ak_std_string;
7675e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor      DiagObj->DiagArgumentsStr[NumArgs++] = S;
7685e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    }
7693cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  }
7701eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
771d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  void AddTaggedVal(intptr_t V, DiagnosticsEngine::ArgumentKind Kind) const {
772d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(NumArgs < DiagnosticsEngine::MaxArguments &&
7733cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "Too many arguments to diagnostic!");
7745e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    if (DiagObj) {
7755e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor      DiagObj->DiagArgumentsKind[NumArgs] = Kind;
7765e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor      DiagObj->DiagArgumentsVal[NumArgs++] = V;
7775e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    }
7780a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  }
7791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
7800a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  void AddSourceRange(const CharSourceRange &R) const {
7811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    assert(NumRanges <
7823cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           sizeof(DiagObj->DiagRanges)/sizeof(DiagObj->DiagRanges[0]) &&
7833cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "Too many arguments to diagnostic!");
7845e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    if (DiagObj)
78551c6d384551674facc19f745ecf6e289d28dc55fDouglas Gregor      DiagObj->DiagRanges[NumRanges++] = R;
7861eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
7874b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
788849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  void AddFixItHint(const FixItHint &Hint) const {
789d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(NumFixItHints < DiagnosticsEngine::MaxFixItHints &&
790849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor           "Too many fix-it hints!");
7915e9f35c7cb61aea46f56d46c77cbcf47c0cf28baDouglas Gregor    if (DiagObj)
792849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor      DiagObj->FixItHints[NumFixItHints++] = Hint;
7934b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  }
7943cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner};
7953cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
7963cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
797686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                                           StringRef S) {
7983cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  DB.AddString(S);
7993cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8003cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8013cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
8023cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
8033cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner                                           const char *Str) {
8043cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  DB.AddTaggedVal(reinterpret_cast<intptr_t>(Str),
805d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie                  DiagnosticsEngine::ak_c_string);
8063cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8073cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8083cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
8093cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, int I) {
810d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DB.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
8113cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8123cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8133cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
8143bf4a79712fb30dc27692ef2d4214ee7fa6681beArgyrios Kyrtzidisinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,bool I) {
815d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DB.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
8163bf4a79712fb30dc27692ef2d4214ee7fa6681beArgyrios Kyrtzidis  return DB;
8173bf4a79712fb30dc27692ef2d4214ee7fa6681beArgyrios Kyrtzidis}
8183bf4a79712fb30dc27692ef2d4214ee7fa6681beArgyrios Kyrtzidis
8193cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
8203cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner                                           unsigned I) {
821d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DB.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
8223cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8233cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8243cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
8253cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
8263cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner                                           const IdentifierInfo *II) {
8273cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  DB.AddTaggedVal(reinterpret_cast<intptr_t>(II),
828d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie                  DiagnosticsEngine::ak_identifierinfo);
8293cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8303cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8323f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor// Adds a DeclContext to the diagnostic. The enable_if template magic is here
8333f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor// so that we only match those arguments that are (statically) DeclContexts;
8343f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor// other arguments that derive from DeclContext (e.g., RecordDecls) will not
8353f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor// match.
8363f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregortemplate<typename T>
8373f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregorinline
8383f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregortypename llvm::enable_if<llvm::is_same<T, DeclContext>,
8393f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor                         const DiagnosticBuilder &>::type
8403f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregoroperator<<(const DiagnosticBuilder &DB, T *DC) {
8413f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor  DB.AddTaggedVal(reinterpret_cast<intptr_t>(DC),
842d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie                  DiagnosticsEngine::ak_declcontext);
8433f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor  return DB;
8443f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor}
8453f09327b26033d0a9676d52d80cf92c48f581affDouglas Gregor
8463cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
8473cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner                                           const SourceRange &R) {
8480a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  DB.AddSourceRange(CharSourceRange::getTokenRange(R));
8493cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DB;
8503cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
8514b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
8524b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregorinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
8530a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner                                           const CharSourceRange &R) {
8540a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  DB.AddSourceRange(R);
8550a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  return DB;
8560a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner}
8570a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
8580a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattnerinline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
859849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor                                           const FixItHint &Hint) {
860849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  DB.AddFixItHint(Hint);
8614b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  return DB;
8624b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor}
863ee1828a6b5ae1bc4ea300e48f3840ac1ec5be295Douglas Gregor
8643cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// Report - Issue the message to the client.  DiagID is a member of the
8653cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// diag::kind enum.  This actually returns a new instance of DiagnosticBuilder
8663cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner/// which emits the diagnostics (through ProcessDiag) when it is destroyed.
867d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikieinline DiagnosticBuilder DiagnosticsEngine::Report(SourceLocation Loc,
86833e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis                                            unsigned DiagID){
8693cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  assert(CurDiagID == ~0U && "Multiple diagnostics in flight at once!");
8703cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  CurDiagLoc = Loc;
8713cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  CurDiagID = DiagID;
8723cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner  return DiagnosticBuilder(this);
8733cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner}
874d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikieinline DiagnosticBuilder DiagnosticsEngine::Report(unsigned DiagID) {
87533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  return Report(SourceLocation(), DiagID);
8760f9fed70cea107b3f79df554e38bd8e98d48fe47Daniel Dunbar}
8773cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner
8783cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner//===----------------------------------------------------------------------===//
87940847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie// Diagnostic
8803cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner//===----------------------------------------------------------------------===//
8811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
88240847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie/// Diagnostic - This is a little helper class (which is basically a smart
883d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// pointer that forward info from DiagnosticsEngine) that allows clients to
884d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie/// enquire about the currently in-flight diagnostic.
88540847cfb58acc3cac7d68727df9455ac45f2e118David Blaikieclass Diagnostic {
886d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  const DiagnosticsEngine *DiagObj;
887686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  StringRef StoredDiagMessage;
8883cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattnerpublic:
88940847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie  explicit Diagnostic(const DiagnosticsEngine *DO) : DiagObj(DO) {}
89040847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie  Diagnostic(const DiagnosticsEngine *DO, StringRef storedDiagMessage)
891e59abb56ce0e1c206fb80bd945a0c358b0abe1efArgyrios Kyrtzidis    : DiagObj(DO), StoredDiagMessage(storedDiagMessage) {}
8921eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
893d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  const DiagnosticsEngine *getDiags() const { return DiagObj; }
894b7fc3b87d065041a10eaa0603d738df21ff7af3aChris Lattner  unsigned getID() const { return DiagObj->CurDiagID; }
89533e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  const SourceLocation &getLocation() const { return DiagObj->CurDiagLoc; }
89633e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  bool hasSourceManager() const { return DiagObj->hasSourceManager(); }
89733e4e70c8c0a17e0ccb7465d96556b077a68ecb1Argyrios Kyrtzidis  SourceManager &getSourceManager() const { return DiagObj->getSourceManager();}
8981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8990a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  unsigned getNumArgs() const { return DiagObj->NumDiagArgs; }
9001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
90173d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// getArgKind - Return the kind of the specified index.  Based on the kind
90273d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// of argument, the accessors below can be used to get the value.
903d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine::ArgumentKind getArgKind(unsigned Idx) const {
9043cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner    assert(Idx < getNumArgs() && "Argument index out of range!");
905d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    return (DiagnosticsEngine::ArgumentKind)DiagObj->DiagArgumentsKind[Idx];
90673d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  }
9071eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
90873d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// getArgStdStr - Return the provided argument string specified by Idx.
90973d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  const std::string &getArgStdStr(unsigned Idx) const {
910d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) == DiagnosticsEngine::ak_std_string &&
9113cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "invalid argument accessor!");
91273d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    return DiagObj->DiagArgumentsStr[Idx];
91373d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  }
9141eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
91573d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  /// getArgCStr - Return the specified C string argument.
91673d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner  const char *getArgCStr(unsigned Idx) const {
917d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) == DiagnosticsEngine::ak_c_string &&
9183cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "invalid argument accessor!");
91973d2a1b05bb04ab0136af374ddaa5d4602d4c939Chris Lattner    return reinterpret_cast<const char*>(DiagObj->DiagArgumentsVal[Idx]);
9200a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  }
9211eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
92230bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  /// getArgSInt - Return the specified signed integer argument.
92330bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  int getArgSInt(unsigned Idx) const {
924d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) == DiagnosticsEngine::ak_sint &&
9253cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "invalid argument accessor!");
92630bc96544346bea42921cf6837e66cef80d664b4Chris Lattner    return (int)DiagObj->DiagArgumentsVal[Idx];
92730bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  }
9281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
92930bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  /// getArgUInt - Return the specified unsigned integer argument.
93030bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  unsigned getArgUInt(unsigned Idx) const {
931d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) == DiagnosticsEngine::ak_uint &&
9323cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "invalid argument accessor!");
93330bc96544346bea42921cf6837e66cef80d664b4Chris Lattner    return (unsigned)DiagObj->DiagArgumentsVal[Idx];
93430bc96544346bea42921cf6837e66cef80d664b4Chris Lattner  }
9351eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
93643b628cd47ecdc3caf640d79b3ad7ecef0f2c285Chris Lattner  /// getArgIdentifier - Return the specified IdentifierInfo argument.
93743b628cd47ecdc3caf640d79b3ad7ecef0f2c285Chris Lattner  const IdentifierInfo *getArgIdentifier(unsigned Idx) const {
938d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) == DiagnosticsEngine::ak_identifierinfo &&
9393cbfe2c4159e0a219ae660d50625c013aa4afbd0Chris Lattner           "invalid argument accessor!");
9409634379265855f1628190e926d9aaf1fb4a5d90eChris Lattner    return reinterpret_cast<IdentifierInfo*>(DiagObj->DiagArgumentsVal[Idx]);
94143b628cd47ecdc3caf640d79b3ad7ecef0f2c285Chris Lattner  }
9421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
94322caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  /// getRawArg - Return the specified non-string argument in an opaque form.
94422caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  intptr_t getRawArg(unsigned Idx) const {
945d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    assert(getArgKind(Idx) != DiagnosticsEngine::ak_std_string &&
94622caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner           "invalid argument accessor!");
94722caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner    return DiagObj->DiagArgumentsVal[Idx];
94822caddc91d2f6186739c6b20ec58ed38cd68e595Chris Lattner  }
9491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9501eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9510a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// getNumRanges - Return the number of source ranges associated with this
9520a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  /// diagnostic.
9530a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  unsigned getNumRanges() const {
9540a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner    return DiagObj->NumDiagRanges;
9550a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  }
9561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9570a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  const CharSourceRange &getRange(unsigned Idx) const {
9580a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner    assert(Idx < DiagObj->NumDiagRanges && "Invalid diagnostic range index!");
95951c6d384551674facc19f745ecf6e289d28dc55fDouglas Gregor    return DiagObj->DiagRanges[Idx];
9600a14eee528a901c16f0e288fbc10a3abc1660d87Chris Lattner  }
9611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
962849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  unsigned getNumFixItHints() const {
963849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    return DiagObj->NumFixItHints;
9644b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  }
9654b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
966849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  const FixItHint &getFixItHint(unsigned Idx) const {
967849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    return DiagObj->FixItHints[Idx];
9684b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  }
9694b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
970849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  const FixItHint *getFixItHints() const {
971849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor    return DiagObj->NumFixItHints?
972849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor             &DiagObj->FixItHints[0] : 0;
9734b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor  }
9744b2d3f7bcc4df31157df443af1b80bcaa9b58bbaDouglas Gregor
975f4c839657742b823cea1a95b18422f1ba74d3dddChris Lattner  /// FormatDiagnostic - Format this diagnostic into a string, substituting the
976f4c839657742b823cea1a95b18422f1ba74d3dddChris Lattner  /// formal arguments into the %0 slots.  The result is appended onto the Str
977f4c839657742b823cea1a95b18422f1ba74d3dddChris Lattner  /// array.
978686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const;
9799f28614bf1a8387000d8df57a713fcf69e198145John McCall
9809f28614bf1a8387000d8df57a713fcf69e198145John McCall  /// FormatDiagnostic - Format the given format-string into the
9819f28614bf1a8387000d8df57a713fcf69e198145John McCall  /// output buffer using the arguments stored in this diagnostic.
9829f28614bf1a8387000d8df57a713fcf69e198145John McCall  void FormatDiagnostic(const char *DiagStr, const char *DiagEnd,
983686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                        SmallVectorImpl<char> &OutStr) const;
984a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor};
985a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
986a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor/**
987d3ab63e0f66429abf2a3e4cde889e420e41e8790Douglas Gregor * \brief Represents a diagnostic in a form that can be retained until its
988d3ab63e0f66429abf2a3e4cde889e420e41e8790Douglas Gregor * corresponding source manager is destroyed.
989a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor */
990a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregorclass StoredDiagnostic {
991aa5f135f8db82b5e5fb1640fd51f8078e0b2d82dDouglas Gregor  unsigned ID;
992d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine::Level Level;
993a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  FullSourceLoc Loc;
994a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  std::string Message;
9950a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  std::vector<CharSourceRange> Ranges;
996849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  std::vector<FixItHint> FixIts;
997a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
998a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregorpublic:
999a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  StoredDiagnostic();
100040847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie  StoredDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
1001d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1002686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                   StringRef Message);
1003d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1004686775deca8b8685eb90801495880e3abdd844c2Chris Lattner                   StringRef Message, FullSourceLoc Loc,
10052d3ba4f5a923a90c3fc290ddfba5e36c2d0a9b46Chris Lattner                   ArrayRef<CharSourceRange> Ranges,
10062d3ba4f5a923a90c3fc290ddfba5e36c2d0a9b46Chris Lattner                   ArrayRef<FixItHint> Fixits);
1007a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  ~StoredDiagnostic();
1008a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
1009a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  /// \brief Evaluates true when this object stores a diagnostic.
1010a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  operator bool() const { return Message.size() > 0; }
1011a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
1012aa5f135f8db82b5e5fb1640fd51f8078e0b2d82dDouglas Gregor  unsigned getID() const { return ID; }
1013d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine::Level getLevel() const { return Level; }
1014a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  const FullSourceLoc &getLocation() const { return Loc; }
1015686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  StringRef getMessage() const { return Message; }
1016c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
1017c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  void setLocation(FullSourceLoc Loc) { this->Loc = Loc; }
1018c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
10190a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  typedef std::vector<CharSourceRange>::const_iterator range_iterator;
1020a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  range_iterator range_begin() const { return Ranges.begin(); }
1021a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  range_iterator range_end() const { return Ranges.end(); }
1022a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  unsigned range_size() const { return Ranges.size(); }
1023a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
1024849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor  typedef std::vector<FixItHint>::const_iterator fixit_iterator;
1025a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  fixit_iterator fixit_begin() const { return FixIts.begin(); }
1026a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  fixit_iterator fixit_end() const { return FixIts.end(); }
1027a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  unsigned fixit_size() const { return FixIts.size(); }
10285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
10291eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
103078ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie/// DiagnosticConsumer - This is an abstract interface implemented by clients of
10315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// the front-end, which formats and prints fully processed diagnostics.
103278ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikieclass DiagnosticConsumer {
1033ab41b97c3cddf1bcdd8bf82ab09ed3ceafcd05b1Argyrios Kyrtzidisprotected:
1034f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  unsigned NumWarnings;       // Number of warnings reported
1035f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  unsigned NumErrors;         // Number of errors reported
1036f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis
10375f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
103878ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  DiagnosticConsumer() : NumWarnings(0), NumErrors(0) { }
1039f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis
1040f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  unsigned getNumErrors() const { return NumErrors; }
1041f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  unsigned getNumWarnings() const { return NumWarnings; }
1042f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis
104378ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  virtual ~DiagnosticConsumer();
10441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1045efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// BeginSourceFile - Callback to inform the diagnostic client that processing
1046efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// of a source file is beginning.
1047efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  ///
1048efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// Note that diagnostics may be emitted outside the processing of a source
1049efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// file, for example during the parsing of command line options. However,
1050efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// diagnostics with source range information are required to only be emitted
1051efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// in between BeginSourceFile() and EndSourceFile().
1052efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  ///
1053efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// \arg LO - The language options for the source file being processed.
1054efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// \arg PP - The preprocessor object being used for the source; this optional
1055efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// and may not be present, for example when processing AST source files.
10567d90199f109290e9d587479a481a2850d390b552Daniel Dunbar  virtual void BeginSourceFile(const LangOptions &LangOpts,
10577d90199f109290e9d587479a481a2850d390b552Daniel Dunbar                               const Preprocessor *PP = 0) {}
1058efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar
1059efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// EndSourceFile - Callback to inform the diagnostic client that processing
1060efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// of a source file has ended. The diagnostic client should assume that any
1061efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// objects made available via \see BeginSourceFile() are inaccessible.
1062efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  virtual void EndSourceFile() {}
10631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1064cabe66811fe43835b8c5a0854552768fc53261e3Ted Kremenek  /// IncludeInDiagnosticCounts - This method (whose default implementation
1065efcbe9475348ecab6b85153baa21d0e894e39607Daniel Dunbar  /// returns true) indicates whether the diagnostics handled by this
106678ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  /// DiagnosticConsumer should be included in the number of diagnostics
106778ad0b98848c17a0a11847fa1d456e2dfec8aa2fDavid Blaikie  /// reported by DiagnosticsEngine.
1068cabe66811fe43835b8c5a0854552768fc53261e3Ted Kremenek  virtual bool IncludeInDiagnosticCounts() const;
10695f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
10705f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// HandleDiagnostic - Handle this diagnostic, reporting it to the user or
10715f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// capturing it to a log as needed.
1072f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  ///
1073f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  /// Default implementation just keeps track of the total number of warnings
1074f2224d89a6ae65a3839529e26d0f6d025d83d6bbArgyrios Kyrtzidis  /// and errors.
1075d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
107640847cfb58acc3cac7d68727df9455ac45f2e118David Blaikie                                const Diagnostic &Info);
1077aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor
1078aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  /// \brief Clone the diagnostic consumer, producing an equivalent consumer
1079aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  /// that can be used in a different context.
1080aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  virtual DiagnosticConsumer *clone(DiagnosticsEngine &Diags) const = 0;
1081aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor};
1082aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor
1083aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor/// IgnoringDiagConsumer - This is a diagnostic client that just ignores all
1084aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor/// diags.
1085aee526e77657afd1600276450e9c346953ad51d7Douglas Gregorclass IgnoringDiagConsumer : public DiagnosticConsumer {
1086aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
1087aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor                        const Diagnostic &Info) {
1088aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor    // Just ignore it.
1089aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  }
1090aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  DiagnosticConsumer *clone(DiagnosticsEngine &Diags) const {
1091aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor    return new IgnoringDiagConsumer();
1092aee526e77657afd1600276450e9c346953ad51d7Douglas Gregor  }
10935f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
10945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
10955f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}  // end namespace clang
10965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
10975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#endif
1098