Sema.h revision 625bb569df0c34feec0d52c0ec5215f21ef2e054
1//===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the Sema class, which performs semantic analysis and
11// builds ASTs.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_SEMA_SEMA_H
16#define LLVM_CLANG_SEMA_SEMA_H
17
18#include "clang/Sema/Ownership.h"
19#include "clang/Sema/AnalysisBasedWarnings.h"
20#include "clang/Sema/IdentifierResolver.h"
21#include "clang/Sema/ObjCMethodList.h"
22#include "clang/Sema/DeclSpec.h"
23#include "clang/Sema/ExternalSemaSource.h"
24#include "clang/Sema/LocInfoType.h"
25#include "clang/Sema/TypoCorrection.h"
26#include "clang/Sema/Weak.h"
27#include "clang/AST/Expr.h"
28#include "clang/AST/DeclarationName.h"
29#include "clang/AST/ExternalASTSource.h"
30#include "clang/AST/TypeLoc.h"
31#include "clang/Lex/ModuleLoader.h"
32#include "clang/Basic/Specifiers.h"
33#include "clang/Basic/TemplateKinds.h"
34#include "clang/Basic/TypeTraits.h"
35#include "clang/Basic/ExpressionTraits.h"
36#include "llvm/ADT/ArrayRef.h"
37#include "llvm/ADT/OwningPtr.h"
38#include "llvm/ADT/SmallPtrSet.h"
39#include "llvm/ADT/SmallVector.h"
40#include <deque>
41#include <string>
42
43namespace llvm {
44  class APSInt;
45  template <typename ValueT> struct DenseMapInfo;
46  template <typename ValueT, typename ValueInfoT> class DenseSet;
47  class SmallBitVector;
48}
49
50namespace clang {
51  class ADLResult;
52  class ASTConsumer;
53  class ASTContext;
54  class ASTMutationListener;
55  class ASTReader;
56  class ASTWriter;
57  class ArrayType;
58  class AttributeList;
59  class BlockDecl;
60  class CXXBasePath;
61  class CXXBasePaths;
62  typedef SmallVector<CXXBaseSpecifier*, 4> CXXCastPath;
63  class CXXConstructorDecl;
64  class CXXConversionDecl;
65  class CXXDestructorDecl;
66  class CXXFieldCollector;
67  class CXXMemberCallExpr;
68  class CXXMethodDecl;
69  class CXXScopeSpec;
70  class CXXTemporary;
71  class CXXTryStmt;
72  class CallExpr;
73  class ClassTemplateDecl;
74  class ClassTemplatePartialSpecializationDecl;
75  class ClassTemplateSpecializationDecl;
76  class CodeCompleteConsumer;
77  class CodeCompletionAllocator;
78  class CodeCompletionResult;
79  class Decl;
80  class DeclAccessPair;
81  class DeclContext;
82  class DeclRefExpr;
83  class DeclaratorDecl;
84  class DeducedTemplateArgument;
85  class DependentDiagnostic;
86  class DesignatedInitExpr;
87  class Designation;
88  class EnumConstantDecl;
89  class Expr;
90  class ExtVectorType;
91  class ExternalSemaSource;
92  class FormatAttr;
93  class FriendDecl;
94  class FunctionDecl;
95  class FunctionProtoType;
96  class FunctionTemplateDecl;
97  class ImplicitConversionSequence;
98  class InitListExpr;
99  class InitializationKind;
100  class InitializationSequence;
101  class InitializedEntity;
102  class IntegerLiteral;
103  class LabelStmt;
104  class LambdaExpr;
105  class LangOptions;
106  class LocalInstantiationScope;
107  class LookupResult;
108  class MacroInfo;
109  class MultiLevelTemplateArgumentList;
110  class NamedDecl;
111  class NonNullAttr;
112  class ObjCCategoryDecl;
113  class ObjCCategoryImplDecl;
114  class ObjCCompatibleAliasDecl;
115  class ObjCContainerDecl;
116  class ObjCImplDecl;
117  class ObjCImplementationDecl;
118  class ObjCInterfaceDecl;
119  class ObjCIvarDecl;
120  template <class T> class ObjCList;
121  class ObjCMessageExpr;
122  class ObjCMethodDecl;
123  class ObjCPropertyDecl;
124  class ObjCProtocolDecl;
125  class OverloadCandidateSet;
126  class OverloadExpr;
127  class ParenListExpr;
128  class ParmVarDecl;
129  class Preprocessor;
130  class PseudoDestructorTypeStorage;
131  class PseudoObjectExpr;
132  class QualType;
133  class StandardConversionSequence;
134  class Stmt;
135  class StringLiteral;
136  class SwitchStmt;
137  class TargetAttributesSema;
138  class TemplateArgument;
139  class TemplateArgumentList;
140  class TemplateArgumentLoc;
141  class TemplateDecl;
142  class TemplateParameterList;
143  class TemplatePartialOrderingContext;
144  class TemplateTemplateParmDecl;
145  class Token;
146  class TypeAliasDecl;
147  class TypedefDecl;
148  class TypedefNameDecl;
149  class TypeLoc;
150  class UnqualifiedId;
151  class UnresolvedLookupExpr;
152  class UnresolvedMemberExpr;
153  class UnresolvedSetImpl;
154  class UnresolvedSetIterator;
155  class UsingDecl;
156  class UsingShadowDecl;
157  class ValueDecl;
158  class VarDecl;
159  class VisibilityAttr;
160  class VisibleDeclConsumer;
161  class IndirectFieldDecl;
162
163namespace sema {
164  class AccessedEntity;
165  class BlockScopeInfo;
166  class CompoundScopeInfo;
167  class DelayedDiagnostic;
168  class FunctionScopeInfo;
169  class LambdaScopeInfo;
170  class PossiblyUnreachableDiag;
171  class TemplateDeductionInfo;
172}
173
174// FIXME: No way to easily map from TemplateTypeParmTypes to
175// TemplateTypeParmDecls, so we have this horrible PointerUnion.
176typedef std::pair<llvm::PointerUnion<const TemplateTypeParmType*, NamedDecl*>,
177                  SourceLocation> UnexpandedParameterPack;
178
179/// Sema - This implements semantic analysis and AST building for C.
180class Sema {
181  Sema(const Sema&);           // DO NOT IMPLEMENT
182  void operator=(const Sema&); // DO NOT IMPLEMENT
183  mutable const TargetAttributesSema* TheTargetAttributesSema;
184public:
185  typedef OpaquePtr<DeclGroupRef> DeclGroupPtrTy;
186  typedef OpaquePtr<TemplateName> TemplateTy;
187  typedef OpaquePtr<QualType> TypeTy;
188
189  OpenCLOptions OpenCLFeatures;
190  FPOptions FPFeatures;
191
192  const LangOptions &LangOpts;
193  Preprocessor &PP;
194  ASTContext &Context;
195  ASTConsumer &Consumer;
196  DiagnosticsEngine &Diags;
197  SourceManager &SourceMgr;
198
199  /// \brief Flag indicating whether or not to collect detailed statistics.
200  bool CollectStats;
201
202  /// \brief Source of additional semantic information.
203  ExternalSemaSource *ExternalSource;
204
205  /// \brief Code-completion consumer.
206  CodeCompleteConsumer *CodeCompleter;
207
208  /// CurContext - This is the current declaration context of parsing.
209  DeclContext *CurContext;
210
211  /// \brief Generally null except when we temporarily switch decl contexts,
212  /// like in \see ActOnObjCTemporaryExitContainerContext.
213  DeclContext *OriginalLexicalContext;
214
215  /// VAListTagName - The declaration name corresponding to __va_list_tag.
216  /// This is used as part of a hack to omit that class from ADL results.
217  DeclarationName VAListTagName;
218
219  /// PackContext - Manages the stack for #pragma pack. An alignment
220  /// of 0 indicates default alignment.
221  void *PackContext; // Really a "PragmaPackStack*"
222
223  bool MSStructPragmaOn; // True when #pragma ms_struct on
224
225  /// VisContext - Manages the stack for #pragma GCC visibility.
226  void *VisContext; // Really a "PragmaVisStack*"
227
228  /// ExprNeedsCleanups - True if the current evaluation context
229  /// requires cleanups to be run at its conclusion.
230  bool ExprNeedsCleanups;
231
232  /// ExprCleanupObjects - This is the stack of objects requiring
233  /// cleanup that are created by the current full expression.  The
234  /// element type here is ExprWithCleanups::Object.
235  SmallVector<BlockDecl*, 8> ExprCleanupObjects;
236
237  llvm::SmallPtrSet<Expr*, 8> MaybeODRUseExprs;
238
239  /// \brief Stack containing information about each of the nested
240  /// function, block, and method scopes that are currently active.
241  ///
242  /// This array is never empty.  Clients should ignore the first
243  /// element, which is used to cache a single FunctionScopeInfo
244  /// that's used to parse every top-level function.
245  SmallVector<sema::FunctionScopeInfo *, 4> FunctionScopes;
246
247  typedef LazyVector<TypedefNameDecl *, ExternalSemaSource,
248                     &ExternalSemaSource::ReadExtVectorDecls, 2, 2>
249    ExtVectorDeclsType;
250
251  /// ExtVectorDecls - This is a list all the extended vector types. This allows
252  /// us to associate a raw vector type with one of the ext_vector type names.
253  /// This is only necessary for issuing pretty diagnostics.
254  ExtVectorDeclsType ExtVectorDecls;
255
256  /// \brief The set of types for which we have already complained about the
257  /// definitions being hidden.
258  ///
259  /// This set is used to suppress redundant diagnostics.
260  llvm::SmallPtrSet<NamedDecl *, 4> HiddenDefinitions;
261
262  /// FieldCollector - Collects CXXFieldDecls during parsing of C++ classes.
263  OwningPtr<CXXFieldCollector> FieldCollector;
264
265  typedef llvm::SmallPtrSet<const CXXRecordDecl*, 8> RecordDeclSetTy;
266
267  /// PureVirtualClassDiagSet - a set of class declarations which we have
268  /// emitted a list of pure virtual functions. Used to prevent emitting the
269  /// same list more than once.
270  OwningPtr<RecordDeclSetTy> PureVirtualClassDiagSet;
271
272  /// ParsingInitForAutoVars - a set of declarations with auto types for which
273  /// we are currently parsing the initializer.
274  llvm::SmallPtrSet<const Decl*, 4> ParsingInitForAutoVars;
275
276  /// \brief A mapping from external names to the most recent
277  /// locally-scoped external declaration with that name.
278  ///
279  /// This map contains external declarations introduced in local
280  /// scoped, e.g.,
281  ///
282  /// \code
283  /// void f() {
284  ///   void foo(int, int);
285  /// }
286  /// \endcode
287  ///
288  /// Here, the name "foo" will be associated with the declaration on
289  /// "foo" within f. This name is not visible outside of
290  /// "f". However, we still find it in two cases:
291  ///
292  ///   - If we are declaring another external with the name "foo", we
293  ///     can find "foo" as a previous declaration, so that the types
294  ///     of this external declaration can be checked for
295  ///     compatibility.
296  ///
297  ///   - If we would implicitly declare "foo" (e.g., due to a call to
298  ///     "foo" in C when no prototype or definition is visible), then
299  ///     we find this declaration of "foo" and complain that it is
300  ///     not visible.
301  llvm::DenseMap<DeclarationName, NamedDecl *> LocallyScopedExternalDecls;
302
303  /// \brief Look for a locally scoped external declaration by the given name.
304  llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
305  findLocallyScopedExternalDecl(DeclarationName Name);
306
307  typedef LazyVector<VarDecl *, ExternalSemaSource,
308                     &ExternalSemaSource::ReadTentativeDefinitions, 2, 2>
309    TentativeDefinitionsType;
310
311  /// \brief All the tentative definitions encountered in the TU.
312  TentativeDefinitionsType TentativeDefinitions;
313
314  typedef LazyVector<const DeclaratorDecl *, ExternalSemaSource,
315                     &ExternalSemaSource::ReadUnusedFileScopedDecls, 2, 2>
316    UnusedFileScopedDeclsType;
317
318  /// \brief The set of file scoped decls seen so far that have not been used
319  /// and must warn if not used. Only contains the first declaration.
320  UnusedFileScopedDeclsType UnusedFileScopedDecls;
321
322  typedef LazyVector<CXXConstructorDecl *, ExternalSemaSource,
323                     &ExternalSemaSource::ReadDelegatingConstructors, 2, 2>
324    DelegatingCtorDeclsType;
325
326  /// \brief All the delegating constructors seen so far in the file, used for
327  /// cycle detection at the end of the TU.
328  DelegatingCtorDeclsType DelegatingCtorDecls;
329
330  /// \brief All the overriding destructors seen during a class definition
331  /// (there could be multiple due to nested classes) that had their exception
332  /// spec checks delayed, plus the overridden destructor.
333  SmallVector<std::pair<const CXXDestructorDecl*,
334                              const CXXDestructorDecl*>, 2>
335      DelayedDestructorExceptionSpecChecks;
336
337  /// \brief Callback to the parser to parse templated functions when needed.
338  typedef void LateTemplateParserCB(void *P, const FunctionDecl *FD);
339  LateTemplateParserCB *LateTemplateParser;
340  void *OpaqueParser;
341
342  void SetLateTemplateParser(LateTemplateParserCB *LTP, void *P) {
343    LateTemplateParser = LTP;
344    OpaqueParser = P;
345  }
346
347  class DelayedDiagnostics;
348
349  class ParsingDeclState {
350    unsigned SavedStackSize;
351    friend class Sema::DelayedDiagnostics;
352  };
353
354  class ProcessingContextState {
355    unsigned SavedParsingDepth;
356    unsigned SavedActiveStackBase;
357    friend class Sema::DelayedDiagnostics;
358  };
359
360  /// A class which encapsulates the logic for delaying diagnostics
361  /// during parsing and other processing.
362  class DelayedDiagnostics {
363    /// \brief The stack of diagnostics that were delayed due to being
364    /// produced during the parsing of a declaration.
365    sema::DelayedDiagnostic *Stack;
366
367    /// \brief The number of objects on the delayed-diagnostics stack.
368    unsigned StackSize;
369
370    /// \brief The current capacity of the delayed-diagnostics stack.
371    unsigned StackCapacity;
372
373    /// \brief The index of the first "active" delayed diagnostic in
374    /// the stack.  When parsing class definitions, we ignore active
375    /// delayed diagnostics from the surrounding context.
376    unsigned ActiveStackBase;
377
378    /// \brief The depth of the declarations we're currently parsing.
379    /// This gets saved and reset whenever we enter a class definition.
380    unsigned ParsingDepth;
381
382  public:
383    DelayedDiagnostics() : Stack(0), StackSize(0), StackCapacity(0),
384      ActiveStackBase(0), ParsingDepth(0) {}
385
386    ~DelayedDiagnostics() {
387      delete[] reinterpret_cast<char*>(Stack);
388    }
389
390    /// Adds a delayed diagnostic.
391    void add(const sema::DelayedDiagnostic &diag);
392
393    /// Determines whether diagnostics should be delayed.
394    bool shouldDelayDiagnostics() { return ParsingDepth > 0; }
395
396    /// Observe that we've started parsing a declaration.  Access and
397    /// deprecation diagnostics will be delayed; when the declaration
398    /// is completed, all active delayed diagnostics will be evaluated
399    /// in its context, and then active diagnostics stack will be
400    /// popped down to the saved depth.
401    ParsingDeclState pushParsingDecl() {
402      ParsingDepth++;
403
404      ParsingDeclState state;
405      state.SavedStackSize = StackSize;
406      return state;
407    }
408
409    /// Observe that we're completed parsing a declaration.
410    static void popParsingDecl(Sema &S, ParsingDeclState state, Decl *decl);
411
412    /// Observe that we've started processing a different context, the
413    /// contents of which are semantically separate from the
414    /// declarations it may lexically appear in.  This sets aside the
415    /// current stack of active diagnostics and starts afresh.
416    ProcessingContextState pushContext() {
417      assert(StackSize >= ActiveStackBase);
418
419      ProcessingContextState state;
420      state.SavedParsingDepth = ParsingDepth;
421      state.SavedActiveStackBase = ActiveStackBase;
422
423      ActiveStackBase = StackSize;
424      ParsingDepth = 0;
425
426      return state;
427    }
428
429    /// Observe that we've stopped processing a context.  This
430    /// restores the previous stack of active diagnostics.
431    void popContext(ProcessingContextState state) {
432      assert(ActiveStackBase == StackSize);
433      assert(ParsingDepth == 0);
434      ActiveStackBase = state.SavedActiveStackBase;
435      ParsingDepth = state.SavedParsingDepth;
436    }
437  } DelayedDiagnostics;
438
439  /// A RAII object to temporarily push a declaration context.
440  class ContextRAII {
441  private:
442    Sema &S;
443    DeclContext *SavedContext;
444    ProcessingContextState SavedContextState;
445
446  public:
447    ContextRAII(Sema &S, DeclContext *ContextToPush)
448      : S(S), SavedContext(S.CurContext),
449        SavedContextState(S.DelayedDiagnostics.pushContext())
450    {
451      assert(ContextToPush && "pushing null context");
452      S.CurContext = ContextToPush;
453    }
454
455    void pop() {
456      if (!SavedContext) return;
457      S.CurContext = SavedContext;
458      S.DelayedDiagnostics.popContext(SavedContextState);
459      SavedContext = 0;
460    }
461
462    ~ContextRAII() {
463      pop();
464    }
465  };
466
467  /// WeakUndeclaredIdentifiers - Identifiers contained in
468  /// #pragma weak before declared. rare. may alias another
469  /// identifier, declared or undeclared
470  llvm::DenseMap<IdentifierInfo*,WeakInfo> WeakUndeclaredIdentifiers;
471
472  /// \brief Load weak undeclared identifiers from the external source.
473  void LoadExternalWeakUndeclaredIdentifiers();
474
475  /// WeakTopLevelDecl - Translation-unit scoped declarations generated by
476  /// #pragma weak during processing of other Decls.
477  /// I couldn't figure out a clean way to generate these in-line, so
478  /// we store them here and handle separately -- which is a hack.
479  /// It would be best to refactor this.
480  SmallVector<Decl*,2> WeakTopLevelDecl;
481
482  IdentifierResolver IdResolver;
483
484  /// Translation Unit Scope - useful to Objective-C actions that need
485  /// to lookup file scope declarations in the "ordinary" C decl namespace.
486  /// For example, user-defined classes, built-in "id" type, etc.
487  Scope *TUScope;
488
489  /// \brief The C++ "std" namespace, where the standard library resides.
490  LazyDeclPtr StdNamespace;
491
492  /// \brief The C++ "std::bad_alloc" class, which is defined by the C++
493  /// standard library.
494  LazyDeclPtr StdBadAlloc;
495
496  /// \brief The C++ "std::initializer_list" template, which is defined in
497  /// <initializer_list>.
498  ClassTemplateDecl *StdInitializerList;
499
500  /// \brief The C++ "type_info" declaration, which is defined in <typeinfo>.
501  RecordDecl *CXXTypeInfoDecl;
502
503  /// \brief The MSVC "_GUID" struct, which is defined in MSVC header files.
504  RecordDecl *MSVCGuidDecl;
505
506  /// A flag to remember whether the implicit forms of operator new and delete
507  /// have been declared.
508  bool GlobalNewDeleteDeclared;
509
510
511  /// A flag that is set when parsing a -dealloc method and no [super dealloc]
512  /// call was found yet.
513  bool ObjCShouldCallSuperDealloc;
514  /// A flag that is set when parsing a -finalize method and no [super finalize]
515  /// call was found yet.
516  bool ObjCShouldCallSuperFinalize;
517
518  /// \brief Describes how the expressions currently being parsed are
519  /// evaluated at run-time, if at all.
520  enum ExpressionEvaluationContext {
521    /// \brief The current expression and its subexpressions occur within an
522    /// unevaluated operand (C++11 [expr]p7), such as the subexpression of
523    /// \c sizeof, where the type of the expression may be significant but
524    /// no code will be generated to evaluate the value of the expression at
525    /// run time.
526    Unevaluated,
527
528    /// \brief The current context is "potentially evaluated" in C++11 terms,
529    /// but the expression is evaluated at compile-time (like the values of
530    /// cases in a switch statment).
531    ConstantEvaluated,
532
533    /// \brief The current expression is potentially evaluated at run time,
534    /// which means that code may be generated to evaluate the value of the
535    /// expression at run time.
536    PotentiallyEvaluated,
537
538    /// \brief The current expression is potentially evaluated, but any
539    /// declarations referenced inside that expression are only used if
540    /// in fact the current expression is used.
541    ///
542    /// This value is used when parsing default function arguments, for which
543    /// we would like to provide diagnostics (e.g., passing non-POD arguments
544    /// through varargs) but do not want to mark declarations as "referenced"
545    /// until the default argument is used.
546    PotentiallyEvaluatedIfUsed
547  };
548
549  /// \brief Data structure used to record current or nested
550  /// expression evaluation contexts.
551  struct ExpressionEvaluationContextRecord {
552    /// \brief The expression evaluation context.
553    ExpressionEvaluationContext Context;
554
555    /// \brief Whether the enclosing context needed a cleanup.
556    bool ParentNeedsCleanups;
557
558    /// \brief The number of active cleanup objects when we entered
559    /// this expression evaluation context.
560    unsigned NumCleanupObjects;
561
562    llvm::SmallPtrSet<Expr*, 8> SavedMaybeODRUseExprs;
563
564    /// \brief The lambdas that are present within this context, if it
565    /// is indeed an unevaluated context.
566    llvm::SmallVector<LambdaExpr *, 2> Lambdas;
567
568    ExpressionEvaluationContextRecord(ExpressionEvaluationContext Context,
569                                      unsigned NumCleanupObjects,
570                                      bool ParentNeedsCleanups)
571      : Context(Context), ParentNeedsCleanups(ParentNeedsCleanups),
572        NumCleanupObjects(NumCleanupObjects) { }
573  };
574
575  /// A stack of expression evaluation contexts.
576  SmallVector<ExpressionEvaluationContextRecord, 8> ExprEvalContexts;
577
578  /// SpecialMemberOverloadResult - The overloading result for a special member
579  /// function.
580  ///
581  /// This is basically a wrapper around PointerIntPair. The lowest bit of the
582  /// integer is used to determine whether we have a parameter qualification
583  /// match, the second-lowest is whether we had success in resolving the
584  /// overload to a unique non-deleted function.
585  ///
586  /// The ConstParamMatch bit represents whether, when looking up a copy
587  /// constructor or assignment operator, we found a potential copy
588  /// constructor/assignment operator whose first parameter is const-qualified.
589  /// This is used for determining parameter types of other objects and is
590  /// utterly meaningless on other types of special members.
591  class SpecialMemberOverloadResult : public llvm::FastFoldingSetNode {
592    llvm::PointerIntPair<CXXMethodDecl*, 2> Pair;
593  public:
594    SpecialMemberOverloadResult(const llvm::FoldingSetNodeID &ID)
595      : FastFoldingSetNode(ID)
596    {}
597
598    CXXMethodDecl *getMethod() const { return Pair.getPointer(); }
599    void setMethod(CXXMethodDecl *MD) { Pair.setPointer(MD); }
600
601    bool hasSuccess() const { return Pair.getInt() & 0x1; }
602    void setSuccess(bool B) {
603      Pair.setInt(unsigned(B) | hasConstParamMatch() << 1);
604    }
605
606    bool hasConstParamMatch() const { return Pair.getInt() & 0x2; }
607    void setConstParamMatch(bool B) {
608      Pair.setInt(B << 1 | unsigned(hasSuccess()));
609    }
610  };
611
612  /// \brief A cache of special member function overload resolution results
613  /// for C++ records.
614  llvm::FoldingSet<SpecialMemberOverloadResult> SpecialMemberCache;
615
616  /// \brief The kind of translation unit we are processing.
617  ///
618  /// When we're processing a complete translation unit, Sema will perform
619  /// end-of-translation-unit semantic tasks (such as creating
620  /// initializers for tentative definitions in C) once parsing has
621  /// completed. Modules and precompiled headers perform different kinds of
622  /// checks.
623  TranslationUnitKind TUKind;
624
625  llvm::BumpPtrAllocator BumpAlloc;
626
627  /// \brief The number of SFINAE diagnostics that have been trapped.
628  unsigned NumSFINAEErrors;
629
630  typedef llvm::DenseMap<ParmVarDecl *, SmallVector<ParmVarDecl *, 1> >
631    UnparsedDefaultArgInstantiationsMap;
632
633  /// \brief A mapping from parameters with unparsed default arguments to the
634  /// set of instantiations of each parameter.
635  ///
636  /// This mapping is a temporary data structure used when parsing
637  /// nested class templates or nested classes of class templates,
638  /// where we might end up instantiating an inner class before the
639  /// default arguments of its methods have been parsed.
640  UnparsedDefaultArgInstantiationsMap UnparsedDefaultArgInstantiations;
641
642  // Contains the locations of the beginning of unparsed default
643  // argument locations.
644  llvm::DenseMap<ParmVarDecl *,SourceLocation> UnparsedDefaultArgLocs;
645
646  /// UndefinedInternals - all the used, undefined objects with
647  /// internal linkage in this translation unit.
648  llvm::DenseMap<NamedDecl*, SourceLocation> UndefinedInternals;
649
650  typedef std::pair<ObjCMethodList, ObjCMethodList> GlobalMethods;
651  typedef llvm::DenseMap<Selector, GlobalMethods> GlobalMethodPool;
652
653  /// Method Pool - allows efficient lookup when typechecking messages to "id".
654  /// We need to maintain a list, since selectors can have differing signatures
655  /// across classes. In Cocoa, this happens to be extremely uncommon (only 1%
656  /// of selectors are "overloaded").
657  GlobalMethodPool MethodPool;
658
659  /// Method selectors used in a @selector expression. Used for implementation
660  /// of -Wselector.
661  llvm::DenseMap<Selector, SourceLocation> ReferencedSelectors;
662
663  void ReadMethodPool(Selector Sel);
664
665  /// Private Helper predicate to check for 'self'.
666  bool isSelfExpr(Expr *RExpr);
667public:
668  Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
669       TranslationUnitKind TUKind = TU_Complete,
670       CodeCompleteConsumer *CompletionConsumer = 0);
671  ~Sema();
672
673  /// \brief Perform initialization that occurs after the parser has been
674  /// initialized but before it parses anything.
675  void Initialize();
676
677  const LangOptions &getLangOptions() const { return LangOpts; }
678  OpenCLOptions &getOpenCLOptions() { return OpenCLFeatures; }
679  FPOptions     &getFPOptions() { return FPFeatures; }
680
681  DiagnosticsEngine &getDiagnostics() const { return Diags; }
682  SourceManager &getSourceManager() const { return SourceMgr; }
683  const TargetAttributesSema &getTargetAttributesSema() const;
684  Preprocessor &getPreprocessor() const { return PP; }
685  ASTContext &getASTContext() const { return Context; }
686  ASTConsumer &getASTConsumer() const { return Consumer; }
687  ASTMutationListener *getASTMutationListener() const;
688
689  void PrintStats() const;
690
691  /// \brief Helper class that creates diagnostics with optional
692  /// template instantiation stacks.
693  ///
694  /// This class provides a wrapper around the basic DiagnosticBuilder
695  /// class that emits diagnostics. SemaDiagnosticBuilder is
696  /// responsible for emitting the diagnostic (as DiagnosticBuilder
697  /// does) and, if the diagnostic comes from inside a template
698  /// instantiation, printing the template instantiation stack as
699  /// well.
700  class SemaDiagnosticBuilder : public DiagnosticBuilder {
701    Sema &SemaRef;
702    unsigned DiagID;
703
704  public:
705    SemaDiagnosticBuilder(DiagnosticBuilder &DB, Sema &SemaRef, unsigned DiagID)
706      : DiagnosticBuilder(DB), SemaRef(SemaRef), DiagID(DiagID) { }
707
708    explicit SemaDiagnosticBuilder(Sema &SemaRef)
709      : DiagnosticBuilder(DiagnosticBuilder::Suppress), SemaRef(SemaRef) { }
710
711    ~SemaDiagnosticBuilder();
712  };
713
714  /// \brief Emit a diagnostic.
715  SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID);
716
717  /// \brief Emit a partial diagnostic.
718  SemaDiagnosticBuilder Diag(SourceLocation Loc, const PartialDiagnostic& PD);
719
720  /// \brief Build a partial diagnostic.
721  PartialDiagnostic PDiag(unsigned DiagID = 0); // in SemaInternal.h
722
723  bool findMacroSpelling(SourceLocation &loc, StringRef name);
724
725  /// \brief Get a string to suggest for zero-initialization of a type.
726  const char *getFixItZeroInitializerForType(QualType T) const;
727
728  ExprResult Owned(Expr* E) { return E; }
729  ExprResult Owned(ExprResult R) { return R; }
730  StmtResult Owned(Stmt* S) { return S; }
731
732  void ActOnEndOfTranslationUnit();
733
734  void CheckDelegatingCtorCycles();
735
736  Scope *getScopeForContext(DeclContext *Ctx);
737
738  void PushFunctionScope();
739  void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
740  void PushLambdaScope(CXXRecordDecl *Lambda, CXXMethodDecl *CallOperator);
741  void PopFunctionScopeInfo(const sema::AnalysisBasedWarnings::Policy *WP =0,
742                            const Decl *D = 0, const BlockExpr *blkExpr = 0);
743
744  sema::FunctionScopeInfo *getCurFunction() const {
745    return FunctionScopes.back();
746  }
747
748  void PushCompoundScope();
749  void PopCompoundScope();
750
751  sema::CompoundScopeInfo &getCurCompoundScope() const;
752
753  bool hasAnyUnrecoverableErrorsInThisFunction() const;
754
755  /// \brief Retrieve the current block, if any.
756  sema::BlockScopeInfo *getCurBlock();
757
758  /// \brief Retrieve the current lambda expression, if any.
759  sema::LambdaScopeInfo *getCurLambda();
760
761  /// WeakTopLevelDeclDecls - access to #pragma weak-generated Decls
762  SmallVector<Decl*,2> &WeakTopLevelDecls() { return WeakTopLevelDecl; }
763
764  //===--------------------------------------------------------------------===//
765  // Type Analysis / Processing: SemaType.cpp.
766  //
767
768  QualType BuildQualifiedType(QualType T, SourceLocation Loc, Qualifiers Qs);
769  QualType BuildQualifiedType(QualType T, SourceLocation Loc, unsigned CVR) {
770    return BuildQualifiedType(T, Loc, Qualifiers::fromCVRMask(CVR));
771  }
772  QualType BuildPointerType(QualType T,
773                            SourceLocation Loc, DeclarationName Entity);
774  QualType BuildReferenceType(QualType T, bool LValueRef,
775                              SourceLocation Loc, DeclarationName Entity);
776  QualType BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
777                          Expr *ArraySize, unsigned Quals,
778                          SourceRange Brackets, DeclarationName Entity);
779  QualType BuildExtVectorType(QualType T, Expr *ArraySize,
780                              SourceLocation AttrLoc);
781  QualType BuildFunctionType(QualType T,
782                             QualType *ParamTypes, unsigned NumParamTypes,
783                             bool Variadic, bool HasTrailingReturn,
784                             unsigned Quals, RefQualifierKind RefQualifier,
785                             SourceLocation Loc, DeclarationName Entity,
786                             FunctionType::ExtInfo Info);
787  QualType BuildMemberPointerType(QualType T, QualType Class,
788                                  SourceLocation Loc,
789                                  DeclarationName Entity);
790  QualType BuildBlockPointerType(QualType T,
791                                 SourceLocation Loc, DeclarationName Entity);
792  QualType BuildParenType(QualType T);
793  QualType BuildAtomicType(QualType T, SourceLocation Loc);
794
795  TypeSourceInfo *GetTypeForDeclarator(Declarator &D, Scope *S);
796  TypeSourceInfo *GetTypeForDeclaratorCast(Declarator &D, QualType FromTy);
797  TypeSourceInfo *GetTypeSourceInfoForDeclarator(Declarator &D, QualType T,
798                                               TypeSourceInfo *ReturnTypeInfo);
799  /// \brief Package the given type and TSI into a ParsedType.
800  ParsedType CreateParsedType(QualType T, TypeSourceInfo *TInfo);
801  DeclarationNameInfo GetNameForDeclarator(Declarator &D);
802  DeclarationNameInfo GetNameFromUnqualifiedId(const UnqualifiedId &Name);
803  static QualType GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo = 0);
804  bool CheckSpecifiedExceptionType(QualType T, const SourceRange &Range);
805  bool CheckDistantExceptionSpec(QualType T);
806  bool CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New);
807  bool CheckEquivalentExceptionSpec(
808      const FunctionProtoType *Old, SourceLocation OldLoc,
809      const FunctionProtoType *New, SourceLocation NewLoc);
810  bool CheckEquivalentExceptionSpec(
811      const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID,
812      const FunctionProtoType *Old, SourceLocation OldLoc,
813      const FunctionProtoType *New, SourceLocation NewLoc,
814      bool *MissingExceptionSpecification = 0,
815      bool *MissingEmptyExceptionSpecification = 0,
816      bool AllowNoexceptAllMatchWithNoSpec = false,
817      bool IsOperatorNew = false);
818  bool CheckExceptionSpecSubset(
819      const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID,
820      const FunctionProtoType *Superset, SourceLocation SuperLoc,
821      const FunctionProtoType *Subset, SourceLocation SubLoc);
822  bool CheckParamExceptionSpec(const PartialDiagnostic & NoteID,
823      const FunctionProtoType *Target, SourceLocation TargetLoc,
824      const FunctionProtoType *Source, SourceLocation SourceLoc);
825
826  TypeResult ActOnTypeName(Scope *S, Declarator &D);
827
828  /// \brief The parser has parsed the context-sensitive type 'instancetype'
829  /// in an Objective-C message declaration. Return the appropriate type.
830  ParsedType ActOnObjCInstanceType(SourceLocation Loc);
831
832  bool RequireCompleteType(SourceLocation Loc, QualType T,
833                           const PartialDiagnostic &PD,
834                           std::pair<SourceLocation, PartialDiagnostic> Note);
835  bool RequireCompleteType(SourceLocation Loc, QualType T,
836                           const PartialDiagnostic &PD);
837  bool RequireCompleteType(SourceLocation Loc, QualType T,
838                           unsigned DiagID);
839  bool RequireCompleteExprType(Expr *E, const PartialDiagnostic &PD,
840                               std::pair<SourceLocation,
841                                         PartialDiagnostic> Note);
842
843  bool RequireLiteralType(SourceLocation Loc, QualType T,
844                          const PartialDiagnostic &PD);
845
846  QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
847                             const CXXScopeSpec &SS, QualType T);
848
849  QualType BuildTypeofExprType(Expr *E, SourceLocation Loc);
850  QualType BuildDecltypeType(Expr *E, SourceLocation Loc);
851  QualType BuildUnaryTransformType(QualType BaseType,
852                                   UnaryTransformType::UTTKind UKind,
853                                   SourceLocation Loc);
854
855  //===--------------------------------------------------------------------===//
856  // Symbol table / Decl tracking callbacks: SemaDecl.cpp.
857  //
858
859  DeclGroupPtrTy ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType = 0);
860
861  void DiagnoseUseOfUnimplementedSelectors();
862
863  ParsedType getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
864                         Scope *S, CXXScopeSpec *SS = 0,
865                         bool isClassName = false,
866                         bool HasTrailingDot = false,
867                         ParsedType ObjectType = ParsedType(),
868                         bool IsCtorOrDtorName = false,
869                         bool WantNontrivialTypeSourceInfo = false,
870                         IdentifierInfo **CorrectedII = 0);
871  TypeSpecifierType isTagName(IdentifierInfo &II, Scope *S);
872  bool isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S);
873  bool DiagnoseUnknownTypeName(const IdentifierInfo &II,
874                               SourceLocation IILoc,
875                               Scope *S,
876                               CXXScopeSpec *SS,
877                               ParsedType &SuggestedType);
878
879  /// \brief Describes the result of the name lookup and resolution performed
880  /// by \c ClassifyName().
881  enum NameClassificationKind {
882    NC_Unknown,
883    NC_Error,
884    NC_Keyword,
885    NC_Type,
886    NC_Expression,
887    NC_NestedNameSpecifier,
888    NC_TypeTemplate,
889    NC_FunctionTemplate
890  };
891
892  class NameClassification {
893    NameClassificationKind Kind;
894    ExprResult Expr;
895    TemplateName Template;
896    ParsedType Type;
897    const IdentifierInfo *Keyword;
898
899    explicit NameClassification(NameClassificationKind Kind) : Kind(Kind) {}
900
901  public:
902    NameClassification(ExprResult Expr) : Kind(NC_Expression), Expr(Expr) {}
903
904    NameClassification(ParsedType Type) : Kind(NC_Type), Type(Type) {}
905
906    NameClassification(const IdentifierInfo *Keyword)
907      : Kind(NC_Keyword), Keyword(Keyword) { }
908
909    static NameClassification Error() {
910      return NameClassification(NC_Error);
911    }
912
913    static NameClassification Unknown() {
914      return NameClassification(NC_Unknown);
915    }
916
917    static NameClassification NestedNameSpecifier() {
918      return NameClassification(NC_NestedNameSpecifier);
919    }
920
921    static NameClassification TypeTemplate(TemplateName Name) {
922      NameClassification Result(NC_TypeTemplate);
923      Result.Template = Name;
924      return Result;
925    }
926
927    static NameClassification FunctionTemplate(TemplateName Name) {
928      NameClassification Result(NC_FunctionTemplate);
929      Result.Template = Name;
930      return Result;
931    }
932
933    NameClassificationKind getKind() const { return Kind; }
934
935    ParsedType getType() const {
936      assert(Kind == NC_Type);
937      return Type;
938    }
939
940    ExprResult getExpression() const {
941      assert(Kind == NC_Expression);
942      return Expr;
943    }
944
945    TemplateName getTemplateName() const {
946      assert(Kind == NC_TypeTemplate || Kind == NC_FunctionTemplate);
947      return Template;
948    }
949
950    TemplateNameKind getTemplateNameKind() const {
951      assert(Kind == NC_TypeTemplate || Kind == NC_FunctionTemplate);
952      return Kind == NC_TypeTemplate? TNK_Type_template : TNK_Function_template;
953    }
954};
955
956  /// \brief Perform name lookup on the given name, classifying it based on
957  /// the results of name lookup and the following token.
958  ///
959  /// This routine is used by the parser to resolve identifiers and help direct
960  /// parsing. When the identifier cannot be found, this routine will attempt
961  /// to correct the typo and classify based on the resulting name.
962  ///
963  /// \param S The scope in which we're performing name lookup.
964  ///
965  /// \param SS The nested-name-specifier that precedes the name.
966  ///
967  /// \param Name The identifier. If typo correction finds an alternative name,
968  /// this pointer parameter will be updated accordingly.
969  ///
970  /// \param NameLoc The location of the identifier.
971  ///
972  /// \param NextToken The token following the identifier. Used to help
973  /// disambiguate the name.
974  NameClassification ClassifyName(Scope *S,
975                                  CXXScopeSpec &SS,
976                                  IdentifierInfo *&Name,
977                                  SourceLocation NameLoc,
978                                  const Token &NextToken);
979
980  Decl *ActOnDeclarator(Scope *S, Declarator &D);
981
982  Decl *HandleDeclarator(Scope *S, Declarator &D,
983                         MultiTemplateParamsArg TemplateParameterLists);
984  void RegisterLocallyScopedExternCDecl(NamedDecl *ND,
985                                        const LookupResult &Previous,
986                                        Scope *S);
987  bool DiagnoseClassNameShadow(DeclContext *DC, DeclarationNameInfo Info);
988  void DiagnoseFunctionSpecifiers(Declarator& D);
989  void CheckShadow(Scope *S, VarDecl *D, const LookupResult& R);
990  void CheckShadow(Scope *S, VarDecl *D);
991  void CheckCastAlign(Expr *Op, QualType T, SourceRange TRange);
992  void CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *D);
993  NamedDecl* ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
994                                    TypeSourceInfo *TInfo,
995                                    LookupResult &Previous);
996  NamedDecl* ActOnTypedefNameDecl(Scope* S, DeclContext* DC, TypedefNameDecl *D,
997                                  LookupResult &Previous, bool &Redeclaration);
998  NamedDecl* ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
999                                     TypeSourceInfo *TInfo,
1000                                     LookupResult &Previous,
1001                                     MultiTemplateParamsArg TemplateParamLists);
1002  // Returns true if the variable declaration is a redeclaration
1003  bool CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous);
1004  void CheckCompleteVariableDeclaration(VarDecl *var);
1005  NamedDecl* ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
1006                                     TypeSourceInfo *TInfo,
1007                                     LookupResult &Previous,
1008                                     MultiTemplateParamsArg TemplateParamLists,
1009                                     bool &AddToScope);
1010  bool AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD);
1011
1012  bool CheckConstexprFunctionDecl(const FunctionDecl *FD);
1013  bool CheckConstexprFunctionBody(const FunctionDecl *FD, Stmt *Body);
1014
1015  void DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD);
1016  // Returns true if the function declaration is a redeclaration
1017  bool CheckFunctionDeclaration(Scope *S,
1018                                FunctionDecl *NewFD, LookupResult &Previous,
1019                                bool IsExplicitSpecialization);
1020  void CheckMain(FunctionDecl *FD, const DeclSpec &D);
1021  Decl *ActOnParamDeclarator(Scope *S, Declarator &D);
1022  ParmVarDecl *BuildParmVarDeclForTypedef(DeclContext *DC,
1023                                          SourceLocation Loc,
1024                                          QualType T);
1025  ParmVarDecl *CheckParameter(DeclContext *DC, SourceLocation StartLoc,
1026                              SourceLocation NameLoc, IdentifierInfo *Name,
1027                              QualType T, TypeSourceInfo *TSInfo,
1028                              StorageClass SC, StorageClass SCAsWritten);
1029  void ActOnParamDefaultArgument(Decl *param,
1030                                 SourceLocation EqualLoc,
1031                                 Expr *defarg);
1032  void ActOnParamUnparsedDefaultArgument(Decl *param,
1033                                         SourceLocation EqualLoc,
1034                                         SourceLocation ArgLoc);
1035  void ActOnParamDefaultArgumentError(Decl *param);
1036  bool SetParamDefaultArgument(ParmVarDecl *Param, Expr *DefaultArg,
1037                               SourceLocation EqualLoc);
1038
1039  void CheckSelfReference(Decl *OrigDecl, Expr *E);
1040  void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit,
1041                            bool TypeMayContainAuto);
1042  void ActOnUninitializedDecl(Decl *dcl, bool TypeMayContainAuto);
1043  void ActOnInitializerError(Decl *Dcl);
1044  void ActOnCXXForRangeDecl(Decl *D);
1045  void SetDeclDeleted(Decl *dcl, SourceLocation DelLoc);
1046  void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
1047  void FinalizeDeclaration(Decl *D);
1048  DeclGroupPtrTy FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
1049                                         Decl **Group,
1050                                         unsigned NumDecls);
1051  DeclGroupPtrTy BuildDeclaratorGroup(Decl **Group, unsigned NumDecls,
1052                                      bool TypeMayContainAuto = true);
1053  void ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
1054                                       SourceLocation LocAfterDecls);
1055  void CheckForFunctionRedefinition(FunctionDecl *FD);
1056  Decl *ActOnStartOfFunctionDef(Scope *S, Declarator &D);
1057  Decl *ActOnStartOfFunctionDef(Scope *S, Decl *D);
1058  void ActOnStartOfObjCMethodDef(Scope *S, Decl *D);
1059
1060  void computeNRVO(Stmt *Body, sema::FunctionScopeInfo *Scope);
1061  Decl *ActOnFinishFunctionBody(Decl *Decl, Stmt *Body);
1062  Decl *ActOnFinishFunctionBody(Decl *Decl, Stmt *Body, bool IsInstantiation);
1063
1064  /// ActOnFinishDelayedAttribute - Invoked when we have finished parsing an
1065  /// attribute for which parsing is delayed.
1066  void ActOnFinishDelayedAttribute(Scope *S, Decl *D, ParsedAttributes &Attrs);
1067
1068  /// \brief Diagnose any unused parameters in the given sequence of
1069  /// ParmVarDecl pointers.
1070  void DiagnoseUnusedParameters(ParmVarDecl * const *Begin,
1071                                ParmVarDecl * const *End);
1072
1073  /// \brief Diagnose whether the size of parameters or return value of a
1074  /// function or obj-c method definition is pass-by-value and larger than a
1075  /// specified threshold.
1076  void DiagnoseSizeOfParametersAndReturnValue(ParmVarDecl * const *Begin,
1077                                              ParmVarDecl * const *End,
1078                                              QualType ReturnTy,
1079                                              NamedDecl *D);
1080
1081  void DiagnoseInvalidJumps(Stmt *Body);
1082  Decl *ActOnFileScopeAsmDecl(Expr *expr,
1083                              SourceLocation AsmLoc,
1084                              SourceLocation RParenLoc);
1085
1086  /// \brief The parser has processed a module import declaration.
1087  ///
1088  /// \param AtLoc The location of the '@' symbol, if any.
1089  ///
1090  /// \param ImportLoc The location of the 'import' keyword.
1091  ///
1092  /// \param Path The module access path.
1093  DeclResult ActOnModuleImport(SourceLocation AtLoc, SourceLocation ImportLoc,
1094                               ModuleIdPath Path);
1095
1096  /// \brief Retrieve a suitable printing policy.
1097  PrintingPolicy getPrintingPolicy() const {
1098    return getPrintingPolicy(Context, PP);
1099  }
1100
1101  /// \brief Retrieve a suitable printing policy.
1102  static PrintingPolicy getPrintingPolicy(const ASTContext &Ctx,
1103                                          const Preprocessor &PP);
1104
1105  /// Scope actions.
1106  void ActOnPopScope(SourceLocation Loc, Scope *S);
1107  void ActOnTranslationUnitScope(Scope *S);
1108
1109  Decl *ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS,
1110                                   DeclSpec &DS);
1111  Decl *ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS,
1112                                   DeclSpec &DS,
1113                                   MultiTemplateParamsArg TemplateParams);
1114
1115  Decl *BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
1116                                    AccessSpecifier AS,
1117                                    RecordDecl *Record);
1118
1119  Decl *BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
1120                                       RecordDecl *Record);
1121
1122  bool isAcceptableTagRedeclaration(const TagDecl *Previous,
1123                                    TagTypeKind NewTag, bool isDefinition,
1124                                    SourceLocation NewTagLoc,
1125                                    const IdentifierInfo &Name);
1126
1127  enum TagUseKind {
1128    TUK_Reference,   // Reference to a tag:  'struct foo *X;'
1129    TUK_Declaration, // Fwd decl of a tag:   'struct foo;'
1130    TUK_Definition,  // Definition of a tag: 'struct foo { int X; } Y;'
1131    TUK_Friend       // Friend declaration:  'friend struct foo;'
1132  };
1133
1134  Decl *ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
1135                 SourceLocation KWLoc, CXXScopeSpec &SS,
1136                 IdentifierInfo *Name, SourceLocation NameLoc,
1137                 AttributeList *Attr, AccessSpecifier AS,
1138                 SourceLocation ModulePrivateLoc,
1139                 MultiTemplateParamsArg TemplateParameterLists,
1140                 bool &OwnedDecl, bool &IsDependent,
1141                 SourceLocation ScopedEnumKWLoc,
1142                 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType);
1143
1144  Decl *ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
1145                                unsigned TagSpec, SourceLocation TagLoc,
1146                                CXXScopeSpec &SS,
1147                                IdentifierInfo *Name, SourceLocation NameLoc,
1148                                AttributeList *Attr,
1149                                MultiTemplateParamsArg TempParamLists);
1150
1151  TypeResult ActOnDependentTag(Scope *S,
1152                               unsigned TagSpec,
1153                               TagUseKind TUK,
1154                               const CXXScopeSpec &SS,
1155                               IdentifierInfo *Name,
1156                               SourceLocation TagLoc,
1157                               SourceLocation NameLoc);
1158
1159  void ActOnDefs(Scope *S, Decl *TagD, SourceLocation DeclStart,
1160                 IdentifierInfo *ClassName,
1161                 SmallVectorImpl<Decl *> &Decls);
1162  Decl *ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
1163                   Declarator &D, Expr *BitfieldWidth);
1164
1165  FieldDecl *HandleField(Scope *S, RecordDecl *TagD, SourceLocation DeclStart,
1166                         Declarator &D, Expr *BitfieldWidth, bool HasInit,
1167                         AccessSpecifier AS);
1168
1169  FieldDecl *CheckFieldDecl(DeclarationName Name, QualType T,
1170                            TypeSourceInfo *TInfo,
1171                            RecordDecl *Record, SourceLocation Loc,
1172                            bool Mutable, Expr *BitfieldWidth, bool HasInit,
1173                            SourceLocation TSSL,
1174                            AccessSpecifier AS, NamedDecl *PrevDecl,
1175                            Declarator *D = 0);
1176
1177  enum CXXSpecialMember {
1178    CXXDefaultConstructor,
1179    CXXCopyConstructor,
1180    CXXMoveConstructor,
1181    CXXCopyAssignment,
1182    CXXMoveAssignment,
1183    CXXDestructor,
1184    CXXInvalid
1185  };
1186  bool CheckNontrivialField(FieldDecl *FD);
1187  void DiagnoseNontrivial(const RecordType* Record, CXXSpecialMember mem);
1188  CXXSpecialMember getSpecialMember(const CXXMethodDecl *MD);
1189  void ActOnLastBitfield(SourceLocation DeclStart,
1190                         SmallVectorImpl<Decl *> &AllIvarDecls);
1191  Decl *ActOnIvar(Scope *S, SourceLocation DeclStart,
1192                  Declarator &D, Expr *BitfieldWidth,
1193                  tok::ObjCKeywordKind visibility);
1194
1195  // This is used for both record definitions and ObjC interface declarations.
1196  void ActOnFields(Scope* S, SourceLocation RecLoc, Decl *TagDecl,
1197                   llvm::ArrayRef<Decl *> Fields,
1198                   SourceLocation LBrac, SourceLocation RBrac,
1199                   AttributeList *AttrList);
1200
1201  /// ActOnTagStartDefinition - Invoked when we have entered the
1202  /// scope of a tag's definition (e.g., for an enumeration, class,
1203  /// struct, or union).
1204  void ActOnTagStartDefinition(Scope *S, Decl *TagDecl);
1205
1206  Decl *ActOnObjCContainerStartDefinition(Decl *IDecl);
1207
1208  /// ActOnStartCXXMemberDeclarations - Invoked when we have parsed a
1209  /// C++ record definition's base-specifiers clause and are starting its
1210  /// member declarations.
1211  void ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagDecl,
1212                                       SourceLocation FinalLoc,
1213                                       SourceLocation LBraceLoc);
1214
1215  /// ActOnTagFinishDefinition - Invoked once we have finished parsing
1216  /// the definition of a tag (enumeration, class, struct, or union).
1217  void ActOnTagFinishDefinition(Scope *S, Decl *TagDecl,
1218                                SourceLocation RBraceLoc);
1219
1220  void ActOnObjCContainerFinishDefinition();
1221
1222  /// \brief Invoked when we must temporarily exit the objective-c container
1223  /// scope for parsing/looking-up C constructs.
1224  ///
1225  /// Must be followed by a call to \see ActOnObjCReenterContainerContext
1226  void ActOnObjCTemporaryExitContainerContext(DeclContext *DC);
1227  void ActOnObjCReenterContainerContext(DeclContext *DC);
1228
1229  /// ActOnTagDefinitionError - Invoked when there was an unrecoverable
1230  /// error parsing the definition of a tag.
1231  void ActOnTagDefinitionError(Scope *S, Decl *TagDecl);
1232
1233  EnumConstantDecl *CheckEnumConstant(EnumDecl *Enum,
1234                                      EnumConstantDecl *LastEnumConst,
1235                                      SourceLocation IdLoc,
1236                                      IdentifierInfo *Id,
1237                                      Expr *val);
1238
1239  Decl *ActOnEnumConstant(Scope *S, Decl *EnumDecl, Decl *LastEnumConstant,
1240                          SourceLocation IdLoc, IdentifierInfo *Id,
1241                          AttributeList *Attrs,
1242                          SourceLocation EqualLoc, Expr *Val);
1243  void ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
1244                     SourceLocation RBraceLoc, Decl *EnumDecl,
1245                     Decl **Elements, unsigned NumElements,
1246                     Scope *S, AttributeList *Attr);
1247
1248  DeclContext *getContainingDC(DeclContext *DC);
1249
1250  /// Set the current declaration context until it gets popped.
1251  void PushDeclContext(Scope *S, DeclContext *DC);
1252  void PopDeclContext();
1253
1254  /// EnterDeclaratorContext - Used when we must lookup names in the context
1255  /// of a declarator's nested name specifier.
1256  void EnterDeclaratorContext(Scope *S, DeclContext *DC);
1257  void ExitDeclaratorContext(Scope *S);
1258
1259  /// Push the parameters of D, which must be a function, into scope.
1260  void ActOnReenterFunctionContext(Scope* S, Decl* D);
1261  void ActOnExitFunctionContext() { PopDeclContext(); }
1262
1263  DeclContext *getFunctionLevelDeclContext();
1264
1265  /// getCurFunctionDecl - If inside of a function body, this returns a pointer
1266  /// to the function decl for the function being parsed.  If we're currently
1267  /// in a 'block', this returns the containing context.
1268  FunctionDecl *getCurFunctionDecl();
1269
1270  /// getCurMethodDecl - If inside of a method body, this returns a pointer to
1271  /// the method decl for the method being parsed.  If we're currently
1272  /// in a 'block', this returns the containing context.
1273  ObjCMethodDecl *getCurMethodDecl();
1274
1275  /// getCurFunctionOrMethodDecl - Return the Decl for the current ObjC method
1276  /// or C function we're in, otherwise return null.  If we're currently
1277  /// in a 'block', this returns the containing context.
1278  NamedDecl *getCurFunctionOrMethodDecl();
1279
1280  /// Add this decl to the scope shadowed decl chains.
1281  void PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext = true);
1282
1283  /// \brief Make the given externally-produced declaration visible at the
1284  /// top level scope.
1285  ///
1286  /// \param D The externally-produced declaration to push.
1287  ///
1288  /// \param Name The name of the externally-produced declaration.
1289  void pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name);
1290
1291  /// isDeclInScope - If 'Ctx' is a function/method, isDeclInScope returns true
1292  /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns
1293  /// true if 'D' belongs to the given declaration context.
1294  ///
1295  /// \param ExplicitInstantiationOrSpecialization When true, we are checking
1296  /// whether the declaration is in scope for the purposes of explicit template
1297  /// instantiation or specialization. The default is false.
1298  bool isDeclInScope(NamedDecl *&D, DeclContext *Ctx, Scope *S = 0,
1299                     bool ExplicitInstantiationOrSpecialization = false);
1300
1301  /// Finds the scope corresponding to the given decl context, if it
1302  /// happens to be an enclosing scope.  Otherwise return NULL.
1303  static Scope *getScopeForDeclContext(Scope *S, DeclContext *DC);
1304
1305  /// Subroutines of ActOnDeclarator().
1306  TypedefDecl *ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
1307                                TypeSourceInfo *TInfo);
1308  bool isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New);
1309  void mergeDeclAttributes(Decl *New, Decl *Old, bool MergeDeprecation = true);
1310  void MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls);
1311  bool MergeFunctionDecl(FunctionDecl *New, Decl *Old);
1312  bool MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old);
1313  void mergeObjCMethodDecls(ObjCMethodDecl *New, ObjCMethodDecl *Old);
1314  void MergeVarDecl(VarDecl *New, LookupResult &OldDecls);
1315  void MergeVarDeclTypes(VarDecl *New, VarDecl *Old);
1316  void MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old);
1317  bool MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old);
1318
1319  // AssignmentAction - This is used by all the assignment diagnostic functions
1320  // to represent what is actually causing the operation
1321  enum AssignmentAction {
1322    AA_Assigning,
1323    AA_Passing,
1324    AA_Returning,
1325    AA_Converting,
1326    AA_Initializing,
1327    AA_Sending,
1328    AA_Casting
1329  };
1330
1331  /// C++ Overloading.
1332  enum OverloadKind {
1333    /// This is a legitimate overload: the existing declarations are
1334    /// functions or function templates with different signatures.
1335    Ovl_Overload,
1336
1337    /// This is not an overload because the signature exactly matches
1338    /// an existing declaration.
1339    Ovl_Match,
1340
1341    /// This is not an overload because the lookup results contain a
1342    /// non-function.
1343    Ovl_NonFunction
1344  };
1345  OverloadKind CheckOverload(Scope *S,
1346                             FunctionDecl *New,
1347                             const LookupResult &OldDecls,
1348                             NamedDecl *&OldDecl,
1349                             bool IsForUsingDecl);
1350  bool IsOverload(FunctionDecl *New, FunctionDecl *Old, bool IsForUsingDecl);
1351
1352  /// \brief Checks availability of the function depending on the current
1353  /// function context.Inside an unavailable function,unavailability is ignored.
1354  ///
1355  /// \returns true if \arg FD is unavailable and current context is inside
1356  /// an available function, false otherwise.
1357  bool isFunctionConsideredUnavailable(FunctionDecl *FD);
1358
1359  ImplicitConversionSequence
1360  TryImplicitConversion(Expr *From, QualType ToType,
1361                        bool SuppressUserConversions,
1362                        bool AllowExplicit,
1363                        bool InOverloadResolution,
1364                        bool CStyle,
1365                        bool AllowObjCWritebackConversion);
1366
1367  bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType);
1368  bool IsFloatingPointPromotion(QualType FromType, QualType ToType);
1369  bool IsComplexPromotion(QualType FromType, QualType ToType);
1370  bool IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
1371                           bool InOverloadResolution,
1372                           QualType& ConvertedType, bool &IncompatibleObjC);
1373  bool isObjCPointerConversion(QualType FromType, QualType ToType,
1374                               QualType& ConvertedType, bool &IncompatibleObjC);
1375  bool isObjCWritebackConversion(QualType FromType, QualType ToType,
1376                                 QualType &ConvertedType);
1377  bool IsBlockPointerConversion(QualType FromType, QualType ToType,
1378                                QualType& ConvertedType);
1379  bool FunctionArgTypesAreEqual(const FunctionProtoType *OldType,
1380                                const FunctionProtoType *NewType,
1381                                unsigned *ArgPos = 0);
1382  void HandleFunctionTypeMismatch(PartialDiagnostic &PDiag,
1383                                  QualType FromType, QualType ToType);
1384
1385  CastKind PrepareCastToObjCObjectPointer(ExprResult &E);
1386  bool CheckPointerConversion(Expr *From, QualType ToType,
1387                              CastKind &Kind,
1388                              CXXCastPath& BasePath,
1389                              bool IgnoreBaseAccess);
1390  bool IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType,
1391                                 bool InOverloadResolution,
1392                                 QualType &ConvertedType);
1393  bool CheckMemberPointerConversion(Expr *From, QualType ToType,
1394                                    CastKind &Kind,
1395                                    CXXCastPath &BasePath,
1396                                    bool IgnoreBaseAccess);
1397  bool IsQualificationConversion(QualType FromType, QualType ToType,
1398                                 bool CStyle, bool &ObjCLifetimeConversion);
1399  bool IsNoReturnConversion(QualType FromType, QualType ToType,
1400                            QualType &ResultTy);
1401  bool DiagnoseMultipleUserDefinedConversion(Expr *From, QualType ToType);
1402
1403
1404  ExprResult PerformMoveOrCopyInitialization(const InitializedEntity &Entity,
1405                                             const VarDecl *NRVOCandidate,
1406                                             QualType ResultType,
1407                                             Expr *Value,
1408                                             bool AllowNRVO = true);
1409
1410  bool CanPerformCopyInitialization(const InitializedEntity &Entity,
1411                                    ExprResult Init);
1412  ExprResult PerformCopyInitialization(const InitializedEntity &Entity,
1413                                       SourceLocation EqualLoc,
1414                                       ExprResult Init,
1415                                       bool TopLevelOfInitList = false);
1416  ExprResult PerformObjectArgumentInitialization(Expr *From,
1417                                                 NestedNameSpecifier *Qualifier,
1418                                                 NamedDecl *FoundDecl,
1419                                                 CXXMethodDecl *Method);
1420
1421  ExprResult PerformContextuallyConvertToBool(Expr *From);
1422  ExprResult PerformContextuallyConvertToObjCPointer(Expr *From);
1423
1424  /// Contexts in which a converted constant expression is required.
1425  enum CCEKind {
1426    CCEK_CaseValue,  ///< Expression in a case label.
1427    CCEK_Enumerator, ///< Enumerator value with fixed underlying type.
1428    CCEK_TemplateArg ///< Value of a non-type template parameter.
1429  };
1430  ExprResult CheckConvertedConstantExpression(Expr *From, QualType T,
1431                                              llvm::APSInt &Value, CCEKind CCE);
1432
1433  ExprResult
1434  ConvertToIntegralOrEnumerationType(SourceLocation Loc, Expr *FromE,
1435                                     const PartialDiagnostic &NotIntDiag,
1436                                     const PartialDiagnostic &IncompleteDiag,
1437                                     const PartialDiagnostic &ExplicitConvDiag,
1438                                     const PartialDiagnostic &ExplicitConvNote,
1439                                     const PartialDiagnostic &AmbigDiag,
1440                                     const PartialDiagnostic &AmbigNote,
1441                                     const PartialDiagnostic &ConvDiag,
1442                                     bool AllowScopedEnumerations);
1443
1444  ExprResult PerformObjectMemberConversion(Expr *From,
1445                                           NestedNameSpecifier *Qualifier,
1446                                           NamedDecl *FoundDecl,
1447                                           NamedDecl *Member);
1448
1449  // Members have to be NamespaceDecl* or TranslationUnitDecl*.
1450  // TODO: make this is a typesafe union.
1451  typedef llvm::SmallPtrSet<DeclContext   *, 16> AssociatedNamespaceSet;
1452  typedef llvm::SmallPtrSet<CXXRecordDecl *, 16> AssociatedClassSet;
1453
1454  void AddOverloadCandidate(FunctionDecl *Function,
1455                            DeclAccessPair FoundDecl,
1456                            Expr **Args, unsigned NumArgs,
1457                            OverloadCandidateSet& CandidateSet,
1458                            bool SuppressUserConversions = false,
1459                            bool PartialOverloading = false);
1460  void AddFunctionCandidates(const UnresolvedSetImpl &Functions,
1461                             Expr **Args, unsigned NumArgs,
1462                             OverloadCandidateSet& CandidateSet,
1463                             bool SuppressUserConversions = false);
1464  void AddMethodCandidate(DeclAccessPair FoundDecl,
1465                          QualType ObjectType,
1466                          Expr::Classification ObjectClassification,
1467                          Expr **Args, unsigned NumArgs,
1468                          OverloadCandidateSet& CandidateSet,
1469                          bool SuppressUserConversion = false);
1470  void AddMethodCandidate(CXXMethodDecl *Method,
1471                          DeclAccessPair FoundDecl,
1472                          CXXRecordDecl *ActingContext, QualType ObjectType,
1473                          Expr::Classification ObjectClassification,
1474                          Expr **Args, unsigned NumArgs,
1475                          OverloadCandidateSet& CandidateSet,
1476                          bool SuppressUserConversions = false);
1477  void AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl,
1478                                  DeclAccessPair FoundDecl,
1479                                  CXXRecordDecl *ActingContext,
1480                                 TemplateArgumentListInfo *ExplicitTemplateArgs,
1481                                  QualType ObjectType,
1482                                  Expr::Classification ObjectClassification,
1483                                  Expr **Args, unsigned NumArgs,
1484                                  OverloadCandidateSet& CandidateSet,
1485                                  bool SuppressUserConversions = false);
1486  void AddTemplateOverloadCandidate(FunctionTemplateDecl *FunctionTemplate,
1487                                    DeclAccessPair FoundDecl,
1488                                 TemplateArgumentListInfo *ExplicitTemplateArgs,
1489                                    Expr **Args, unsigned NumArgs,
1490                                    OverloadCandidateSet& CandidateSet,
1491                                    bool SuppressUserConversions = false);
1492  void AddConversionCandidate(CXXConversionDecl *Conversion,
1493                              DeclAccessPair FoundDecl,
1494                              CXXRecordDecl *ActingContext,
1495                              Expr *From, QualType ToType,
1496                              OverloadCandidateSet& CandidateSet);
1497  void AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate,
1498                                      DeclAccessPair FoundDecl,
1499                                      CXXRecordDecl *ActingContext,
1500                                      Expr *From, QualType ToType,
1501                                      OverloadCandidateSet &CandidateSet);
1502  void AddSurrogateCandidate(CXXConversionDecl *Conversion,
1503                             DeclAccessPair FoundDecl,
1504                             CXXRecordDecl *ActingContext,
1505                             const FunctionProtoType *Proto,
1506                             Expr *Object, Expr **Args, unsigned NumArgs,
1507                             OverloadCandidateSet& CandidateSet);
1508  void AddMemberOperatorCandidates(OverloadedOperatorKind Op,
1509                                   SourceLocation OpLoc,
1510                                   Expr **Args, unsigned NumArgs,
1511                                   OverloadCandidateSet& CandidateSet,
1512                                   SourceRange OpRange = SourceRange());
1513  void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
1514                           Expr **Args, unsigned NumArgs,
1515                           OverloadCandidateSet& CandidateSet,
1516                           bool IsAssignmentOperator = false,
1517                           unsigned NumContextualBoolArguments = 0);
1518  void AddBuiltinOperatorCandidates(OverloadedOperatorKind Op,
1519                                    SourceLocation OpLoc,
1520                                    Expr **Args, unsigned NumArgs,
1521                                    OverloadCandidateSet& CandidateSet);
1522  void AddArgumentDependentLookupCandidates(DeclarationName Name,
1523                                            bool Operator,
1524                                            Expr **Args, unsigned NumArgs,
1525                                TemplateArgumentListInfo *ExplicitTemplateArgs,
1526                                            OverloadCandidateSet& CandidateSet,
1527                                            bool PartialOverloading = false,
1528                                        bool StdNamespaceIsAssociated = false);
1529
1530  // Emit as a 'note' the specific overload candidate
1531  void NoteOverloadCandidate(FunctionDecl *Fn, QualType DestType = QualType());
1532
1533  // Emit as a series of 'note's all template and non-templates
1534  // identified by the expression Expr
1535  void NoteAllOverloadCandidates(Expr* E, QualType DestType = QualType());
1536
1537  // [PossiblyAFunctionType]  -->   [Return]
1538  // NonFunctionType --> NonFunctionType
1539  // R (A) --> R(A)
1540  // R (*)(A) --> R (A)
1541  // R (&)(A) --> R (A)
1542  // R (S::*)(A) --> R (A)
1543  QualType ExtractUnqualifiedFunctionType(QualType PossiblyAFunctionType);
1544
1545  FunctionDecl *
1546  ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr,
1547                                     QualType TargetType,
1548                                     bool Complain,
1549                                     DeclAccessPair &Found,
1550                                     bool *pHadMultipleCandidates = 0);
1551
1552  FunctionDecl *ResolveSingleFunctionTemplateSpecialization(OverloadExpr *ovl,
1553                                                   bool Complain = false,
1554                                                   DeclAccessPair* Found = 0);
1555
1556  bool ResolveAndFixSingleFunctionTemplateSpecialization(
1557                      ExprResult &SrcExpr,
1558                      bool DoFunctionPointerConverion = false,
1559                      bool Complain = false,
1560                      const SourceRange& OpRangeForComplaining = SourceRange(),
1561                      QualType DestTypeForComplaining = QualType(),
1562                      unsigned DiagIDForComplaining = 0);
1563
1564
1565  Expr *FixOverloadedFunctionReference(Expr *E,
1566                                       DeclAccessPair FoundDecl,
1567                                       FunctionDecl *Fn);
1568  ExprResult FixOverloadedFunctionReference(ExprResult,
1569                                            DeclAccessPair FoundDecl,
1570                                            FunctionDecl *Fn);
1571
1572  void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE,
1573                                   Expr **Args, unsigned NumArgs,
1574                                   OverloadCandidateSet &CandidateSet,
1575                                   bool PartialOverloading = false);
1576
1577  ExprResult BuildOverloadedCallExpr(Scope *S, Expr *Fn,
1578                                     UnresolvedLookupExpr *ULE,
1579                                     SourceLocation LParenLoc,
1580                                     Expr **Args, unsigned NumArgs,
1581                                     SourceLocation RParenLoc,
1582                                     Expr *ExecConfig,
1583                                     bool AllowTypoCorrection=true);
1584
1585  ExprResult CreateOverloadedUnaryOp(SourceLocation OpLoc,
1586                                     unsigned Opc,
1587                                     const UnresolvedSetImpl &Fns,
1588                                     Expr *input);
1589
1590  ExprResult CreateOverloadedBinOp(SourceLocation OpLoc,
1591                                   unsigned Opc,
1592                                   const UnresolvedSetImpl &Fns,
1593                                   Expr *LHS, Expr *RHS);
1594
1595  ExprResult CreateOverloadedArraySubscriptExpr(SourceLocation LLoc,
1596                                                SourceLocation RLoc,
1597                                                Expr *Base,Expr *Idx);
1598
1599  ExprResult
1600  BuildCallToMemberFunction(Scope *S, Expr *MemExpr,
1601                            SourceLocation LParenLoc, Expr **Args,
1602                            unsigned NumArgs, SourceLocation RParenLoc);
1603  ExprResult
1604  BuildCallToObjectOfClassType(Scope *S, Expr *Object, SourceLocation LParenLoc,
1605                               Expr **Args, unsigned NumArgs,
1606                               SourceLocation RParenLoc);
1607
1608  ExprResult BuildOverloadedArrowExpr(Scope *S, Expr *Base,
1609                                      SourceLocation OpLoc);
1610
1611  /// CheckCallReturnType - Checks that a call expression's return type is
1612  /// complete. Returns true on failure. The location passed in is the location
1613  /// that best represents the call.
1614  bool CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
1615                           CallExpr *CE, FunctionDecl *FD);
1616
1617  /// Helpers for dealing with blocks and functions.
1618  bool CheckParmsForFunctionDef(ParmVarDecl **Param, ParmVarDecl **ParamEnd,
1619                                bool CheckParameterNames);
1620  void CheckCXXDefaultArguments(FunctionDecl *FD);
1621  void CheckExtraCXXDefaultArguments(Declarator &D);
1622  Scope *getNonFieldDeclScope(Scope *S);
1623
1624  /// \name Name lookup
1625  ///
1626  /// These routines provide name lookup that is used during semantic
1627  /// analysis to resolve the various kinds of names (identifiers,
1628  /// overloaded operator names, constructor names, etc.) into zero or
1629  /// more declarations within a particular scope. The major entry
1630  /// points are LookupName, which performs unqualified name lookup,
1631  /// and LookupQualifiedName, which performs qualified name lookup.
1632  ///
1633  /// All name lookup is performed based on some specific criteria,
1634  /// which specify what names will be visible to name lookup and how
1635  /// far name lookup should work. These criteria are important both
1636  /// for capturing language semantics (certain lookups will ignore
1637  /// certain names, for example) and for performance, since name
1638  /// lookup is often a bottleneck in the compilation of C++. Name
1639  /// lookup criteria is specified via the LookupCriteria enumeration.
1640  ///
1641  /// The results of name lookup can vary based on the kind of name
1642  /// lookup performed, the current language, and the translation
1643  /// unit. In C, for example, name lookup will either return nothing
1644  /// (no entity found) or a single declaration. In C++, name lookup
1645  /// can additionally refer to a set of overloaded functions or
1646  /// result in an ambiguity. All of the possible results of name
1647  /// lookup are captured by the LookupResult class, which provides
1648  /// the ability to distinguish among them.
1649  //@{
1650
1651  /// @brief Describes the kind of name lookup to perform.
1652  enum LookupNameKind {
1653    /// Ordinary name lookup, which finds ordinary names (functions,
1654    /// variables, typedefs, etc.) in C and most kinds of names
1655    /// (functions, variables, members, types, etc.) in C++.
1656    LookupOrdinaryName = 0,
1657    /// Tag name lookup, which finds the names of enums, classes,
1658    /// structs, and unions.
1659    LookupTagName,
1660    /// Label name lookup.
1661    LookupLabel,
1662    /// Member name lookup, which finds the names of
1663    /// class/struct/union members.
1664    LookupMemberName,
1665    /// Look up of an operator name (e.g., operator+) for use with
1666    /// operator overloading. This lookup is similar to ordinary name
1667    /// lookup, but will ignore any declarations that are class members.
1668    LookupOperatorName,
1669    /// Look up of a name that precedes the '::' scope resolution
1670    /// operator in C++. This lookup completely ignores operator, object,
1671    /// function, and enumerator names (C++ [basic.lookup.qual]p1).
1672    LookupNestedNameSpecifierName,
1673    /// Look up a namespace name within a C++ using directive or
1674    /// namespace alias definition, ignoring non-namespace names (C++
1675    /// [basic.lookup.udir]p1).
1676    LookupNamespaceName,
1677    /// Look up all declarations in a scope with the given name,
1678    /// including resolved using declarations.  This is appropriate
1679    /// for checking redeclarations for a using declaration.
1680    LookupUsingDeclName,
1681    /// Look up an ordinary name that is going to be redeclared as a
1682    /// name with linkage. This lookup ignores any declarations that
1683    /// are outside of the current scope unless they have linkage. See
1684    /// C99 6.2.2p4-5 and C++ [basic.link]p6.
1685    LookupRedeclarationWithLinkage,
1686    /// Look up the name of an Objective-C protocol.
1687    LookupObjCProtocolName,
1688    /// Look up implicit 'self' parameter of an objective-c method.
1689    LookupObjCImplicitSelfParam,
1690    /// \brief Look up any declaration with any name.
1691    LookupAnyName
1692  };
1693
1694  /// \brief Specifies whether (or how) name lookup is being performed for a
1695  /// redeclaration (vs. a reference).
1696  enum RedeclarationKind {
1697    /// \brief The lookup is a reference to this name that is not for the
1698    /// purpose of redeclaring the name.
1699    NotForRedeclaration = 0,
1700    /// \brief The lookup results will be used for redeclaration of a name,
1701    /// if an entity by that name already exists.
1702    ForRedeclaration
1703  };
1704
1705private:
1706  bool CppLookupName(LookupResult &R, Scope *S);
1707
1708  SpecialMemberOverloadResult *LookupSpecialMember(CXXRecordDecl *D,
1709                                                   CXXSpecialMember SM,
1710                                                   bool ConstArg,
1711                                                   bool VolatileArg,
1712                                                   bool RValueThis,
1713                                                   bool ConstThis,
1714                                                   bool VolatileThis);
1715
1716  // \brief The set of known/encountered (unique, canonicalized) NamespaceDecls.
1717  //
1718  // The boolean value will be true to indicate that the namespace was loaded
1719  // from an AST/PCH file, or false otherwise.
1720  llvm::DenseMap<NamespaceDecl*, bool> KnownNamespaces;
1721
1722  /// \brief Whether we have already loaded known namespaces from an extenal
1723  /// source.
1724  bool LoadedExternalKnownNamespaces;
1725
1726public:
1727  /// \brief Look up a name, looking for a single declaration.  Return
1728  /// null if the results were absent, ambiguous, or overloaded.
1729  ///
1730  /// It is preferable to use the elaborated form and explicitly handle
1731  /// ambiguity and overloaded.
1732  NamedDecl *LookupSingleName(Scope *S, DeclarationName Name,
1733                              SourceLocation Loc,
1734                              LookupNameKind NameKind,
1735                              RedeclarationKind Redecl
1736                                = NotForRedeclaration);
1737  bool LookupName(LookupResult &R, Scope *S,
1738                  bool AllowBuiltinCreation = false);
1739  bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
1740                           bool InUnqualifiedLookup = false);
1741  bool LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS,
1742                        bool AllowBuiltinCreation = false,
1743                        bool EnteringContext = false);
1744  ObjCProtocolDecl *LookupProtocol(IdentifierInfo *II, SourceLocation IdLoc,
1745                                   RedeclarationKind Redecl
1746                                     = NotForRedeclaration);
1747
1748  void LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S,
1749                                    QualType T1, QualType T2,
1750                                    UnresolvedSetImpl &Functions);
1751
1752  LabelDecl *LookupOrCreateLabel(IdentifierInfo *II, SourceLocation IdentLoc,
1753                                 SourceLocation GnuLabelLoc = SourceLocation());
1754
1755  DeclContextLookupResult LookupConstructors(CXXRecordDecl *Class);
1756  CXXConstructorDecl *LookupDefaultConstructor(CXXRecordDecl *Class);
1757  CXXConstructorDecl *LookupCopyingConstructor(CXXRecordDecl *Class,
1758                                               unsigned Quals,
1759                                               bool *ConstParam = 0);
1760  CXXMethodDecl *LookupCopyingAssignment(CXXRecordDecl *Class, unsigned Quals,
1761                                         bool RValueThis, unsigned ThisQuals,
1762                                         bool *ConstParam = 0);
1763  CXXConstructorDecl *LookupMovingConstructor(CXXRecordDecl *Class);
1764  CXXMethodDecl *LookupMovingAssignment(CXXRecordDecl *Class, bool RValueThis,
1765                                        unsigned ThisQuals);
1766  CXXDestructorDecl *LookupDestructor(CXXRecordDecl *Class);
1767
1768  void ArgumentDependentLookup(DeclarationName Name, bool Operator,
1769                               Expr **Args, unsigned NumArgs,
1770                               ADLResult &Functions,
1771                               bool StdNamespaceIsAssociated = false);
1772
1773  void LookupVisibleDecls(Scope *S, LookupNameKind Kind,
1774                          VisibleDeclConsumer &Consumer,
1775                          bool IncludeGlobalScope = true);
1776  void LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind,
1777                          VisibleDeclConsumer &Consumer,
1778                          bool IncludeGlobalScope = true);
1779
1780  TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
1781                             Sema::LookupNameKind LookupKind,
1782                             Scope *S, CXXScopeSpec *SS,
1783                             CorrectionCandidateCallback &CCC,
1784                             DeclContext *MemberContext = 0,
1785                             bool EnteringContext = false,
1786                             const ObjCObjectPointerType *OPT = 0);
1787
1788  void FindAssociatedClassesAndNamespaces(Expr **Args, unsigned NumArgs,
1789                                   AssociatedNamespaceSet &AssociatedNamespaces,
1790                                   AssociatedClassSet &AssociatedClasses);
1791
1792  void FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1793                            bool ConsiderLinkage,
1794                            bool ExplicitInstantiationOrSpecialization);
1795
1796  bool DiagnoseAmbiguousLookup(LookupResult &Result);
1797  //@}
1798
1799  ObjCInterfaceDecl *getObjCInterfaceDecl(IdentifierInfo *&Id,
1800                                          SourceLocation IdLoc,
1801                                          bool TypoCorrection = false);
1802  NamedDecl *LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1803                                 Scope *S, bool ForRedeclaration,
1804                                 SourceLocation Loc);
1805  NamedDecl *ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II,
1806                                      Scope *S);
1807  void AddKnownFunctionAttributes(FunctionDecl *FD);
1808
1809  // More parsing and symbol table subroutines.
1810
1811  // Decl attributes - this routine is the top level dispatcher.
1812  void ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
1813                           bool NonInheritable = true, bool Inheritable = true);
1814  void ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AL,
1815                           bool NonInheritable = true, bool Inheritable = true);
1816  bool ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
1817                                      const AttributeList *AttrList);
1818
1819  void checkUnusedDeclAttributes(Declarator &D);
1820
1821  bool CheckRegparmAttr(const AttributeList &attr, unsigned &value);
1822  bool CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC);
1823  bool CheckNoReturnAttr(const AttributeList &attr);
1824
1825  void WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
1826                           bool &IncompleteImpl, unsigned DiagID);
1827  void WarnConflictingTypedMethods(ObjCMethodDecl *Method,
1828                                   ObjCMethodDecl *MethodDecl,
1829                                   bool IsProtocolMethodDecl);
1830
1831  void CheckConflictingOverridingMethod(ObjCMethodDecl *Method,
1832                                   ObjCMethodDecl *Overridden,
1833                                   bool IsProtocolMethodDecl);
1834
1835  /// WarnExactTypedMethods - This routine issues a warning if method
1836  /// implementation declaration matches exactly that of its declaration.
1837  void WarnExactTypedMethods(ObjCMethodDecl *Method,
1838                             ObjCMethodDecl *MethodDecl,
1839                             bool IsProtocolMethodDecl);
1840
1841  bool isPropertyReadonly(ObjCPropertyDecl *PropertyDecl,
1842                          ObjCInterfaceDecl *IDecl);
1843
1844  typedef llvm::DenseSet<Selector, llvm::DenseMapInfo<Selector> > SelectorSet;
1845  typedef llvm::DenseMap<Selector, ObjCMethodDecl*> ProtocolsMethodsMap;
1846
1847  /// CheckProtocolMethodDefs - This routine checks unimplemented
1848  /// methods declared in protocol, and those referenced by it.
1849  /// \param IDecl - Used for checking for methods which may have been
1850  /// inherited.
1851  void CheckProtocolMethodDefs(SourceLocation ImpLoc,
1852                               ObjCProtocolDecl *PDecl,
1853                               bool& IncompleteImpl,
1854                               const SelectorSet &InsMap,
1855                               const SelectorSet &ClsMap,
1856                               ObjCContainerDecl *CDecl);
1857
1858  /// CheckImplementationIvars - This routine checks if the instance variables
1859  /// listed in the implelementation match those listed in the interface.
1860  void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
1861                                ObjCIvarDecl **Fields, unsigned nIvars,
1862                                SourceLocation Loc);
1863
1864  /// ImplMethodsVsClassMethods - This is main routine to warn if any method
1865  /// remains unimplemented in the class or category @implementation.
1866  void ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
1867                                 ObjCContainerDecl* IDecl,
1868                                 bool IncompleteImpl = false);
1869
1870  /// DiagnoseUnimplementedProperties - This routine warns on those properties
1871  /// which must be implemented by this implementation.
1872  void DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
1873                                       ObjCContainerDecl *CDecl,
1874                                       const SelectorSet &InsMap);
1875
1876  /// DefaultSynthesizeProperties - This routine default synthesizes all
1877  /// properties which must be synthesized in class's @implementation.
1878  void DefaultSynthesizeProperties (Scope *S, ObjCImplDecl* IMPDecl,
1879                                    ObjCInterfaceDecl *IDecl);
1880  void DefaultSynthesizeProperties(Scope *S, Decl *D);
1881
1882  /// CollectImmediateProperties - This routine collects all properties in
1883  /// the class and its conforming protocols; but not those it its super class.
1884  void CollectImmediateProperties(ObjCContainerDecl *CDecl,
1885            llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap,
1886            llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& SuperPropMap);
1887
1888
1889  /// LookupPropertyDecl - Looks up a property in the current class and all
1890  /// its protocols.
1891  ObjCPropertyDecl *LookupPropertyDecl(const ObjCContainerDecl *CDecl,
1892                                       IdentifierInfo *II);
1893
1894  /// Called by ActOnProperty to handle @property declarations in
1895  ////  class extensions.
1896  Decl *HandlePropertyInClassExtension(Scope *S,
1897                                       SourceLocation AtLoc,
1898                                       FieldDeclarator &FD,
1899                                       Selector GetterSel,
1900                                       Selector SetterSel,
1901                                       const bool isAssign,
1902                                       const bool isReadWrite,
1903                                       const unsigned Attributes,
1904                                       const unsigned AttributesAsWritten,
1905                                       bool *isOverridingProperty,
1906                                       TypeSourceInfo *T,
1907                                       tok::ObjCKeywordKind MethodImplKind);
1908
1909  /// Called by ActOnProperty and HandlePropertyInClassExtension to
1910  ///  handle creating the ObjcPropertyDecl for a category or @interface.
1911  ObjCPropertyDecl *CreatePropertyDecl(Scope *S,
1912                                       ObjCContainerDecl *CDecl,
1913                                       SourceLocation AtLoc,
1914                                       FieldDeclarator &FD,
1915                                       Selector GetterSel,
1916                                       Selector SetterSel,
1917                                       const bool isAssign,
1918                                       const bool isReadWrite,
1919                                       const unsigned Attributes,
1920                                       const unsigned AttributesAsWritten,
1921                                       TypeSourceInfo *T,
1922                                       tok::ObjCKeywordKind MethodImplKind,
1923                                       DeclContext *lexicalDC = 0);
1924
1925  /// AtomicPropertySetterGetterRules - This routine enforces the rule (via
1926  /// warning) when atomic property has one but not the other user-declared
1927  /// setter or getter.
1928  void AtomicPropertySetterGetterRules(ObjCImplDecl* IMPDecl,
1929                                       ObjCContainerDecl* IDecl);
1930
1931  void DiagnoseOwningPropertyGetterSynthesis(const ObjCImplementationDecl *D);
1932
1933  void DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID, ObjCInterfaceDecl *SID);
1934
1935  enum MethodMatchStrategy {
1936    MMS_loose,
1937    MMS_strict
1938  };
1939
1940  /// MatchTwoMethodDeclarations - Checks if two methods' type match and returns
1941  /// true, or false, accordingly.
1942  bool MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
1943                                  const ObjCMethodDecl *PrevMethod,
1944                                  MethodMatchStrategy strategy = MMS_strict);
1945
1946  /// MatchAllMethodDeclarations - Check methods declaraed in interface or
1947  /// or protocol against those declared in their implementations.
1948  void MatchAllMethodDeclarations(const SelectorSet &InsMap,
1949                                  const SelectorSet &ClsMap,
1950                                  SelectorSet &InsMapSeen,
1951                                  SelectorSet &ClsMapSeen,
1952                                  ObjCImplDecl* IMPDecl,
1953                                  ObjCContainerDecl* IDecl,
1954                                  bool &IncompleteImpl,
1955                                  bool ImmediateClass,
1956                                  bool WarnCategoryMethodImpl=false);
1957
1958  /// CheckCategoryVsClassMethodMatches - Checks that methods implemented in
1959  /// category matches with those implemented in its primary class and
1960  /// warns each time an exact match is found.
1961  void CheckCategoryVsClassMethodMatches(ObjCCategoryImplDecl *CatIMP);
1962
1963  /// \brief Add the given method to the list of globally-known methods.
1964  void addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method);
1965
1966private:
1967  /// AddMethodToGlobalPool - Add an instance or factory method to the global
1968  /// pool. See descriptoin of AddInstanceMethodToGlobalPool.
1969  void AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl, bool instance);
1970
1971  /// LookupMethodInGlobalPool - Returns the instance or factory method and
1972  /// optionally warns if there are multiple signatures.
1973  ObjCMethodDecl *LookupMethodInGlobalPool(Selector Sel, SourceRange R,
1974                                           bool receiverIdOrClass,
1975                                           bool warn, bool instance);
1976
1977public:
1978  /// AddInstanceMethodToGlobalPool - All instance methods in a translation
1979  /// unit are added to a global pool. This allows us to efficiently associate
1980  /// a selector with a method declaraation for purposes of typechecking
1981  /// messages sent to "id" (where the class of the object is unknown).
1982  void AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method, bool impl=false) {
1983    AddMethodToGlobalPool(Method, impl, /*instance*/true);
1984  }
1985
1986  /// AddFactoryMethodToGlobalPool - Same as above, but for factory methods.
1987  void AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method, bool impl=false) {
1988    AddMethodToGlobalPool(Method, impl, /*instance*/false);
1989  }
1990
1991  /// AddAnyMethodToGlobalPool - Add any method, instance or factory to global
1992  /// pool.
1993  void AddAnyMethodToGlobalPool(Decl *D);
1994
1995  /// LookupInstanceMethodInGlobalPool - Returns the method and warns if
1996  /// there are multiple signatures.
1997  ObjCMethodDecl *LookupInstanceMethodInGlobalPool(Selector Sel, SourceRange R,
1998                                                   bool receiverIdOrClass=false,
1999                                                   bool warn=true) {
2000    return LookupMethodInGlobalPool(Sel, R, receiverIdOrClass,
2001                                    warn, /*instance*/true);
2002  }
2003
2004  /// LookupFactoryMethodInGlobalPool - Returns the method and warns if
2005  /// there are multiple signatures.
2006  ObjCMethodDecl *LookupFactoryMethodInGlobalPool(Selector Sel, SourceRange R,
2007                                                  bool receiverIdOrClass=false,
2008                                                  bool warn=true) {
2009    return LookupMethodInGlobalPool(Sel, R, receiverIdOrClass,
2010                                    warn, /*instance*/false);
2011  }
2012
2013  /// LookupImplementedMethodInGlobalPool - Returns the method which has an
2014  /// implementation.
2015  ObjCMethodDecl *LookupImplementedMethodInGlobalPool(Selector Sel);
2016
2017  /// CollectIvarsToConstructOrDestruct - Collect those ivars which require
2018  /// initialization.
2019  void CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI,
2020                                  SmallVectorImpl<ObjCIvarDecl*> &Ivars);
2021
2022  //===--------------------------------------------------------------------===//
2023  // Statement Parsing Callbacks: SemaStmt.cpp.
2024public:
2025  class FullExprArg {
2026  public:
2027    FullExprArg(Sema &actions) : E(0) { }
2028
2029    // FIXME: The const_cast here is ugly. RValue references would make this
2030    // much nicer (or we could duplicate a bunch of the move semantics
2031    // emulation code from Ownership.h).
2032    FullExprArg(const FullExprArg& Other) : E(Other.E) {}
2033
2034    ExprResult release() {
2035      return move(E);
2036    }
2037
2038    Expr *get() const { return E; }
2039
2040    Expr *operator->() {
2041      return E;
2042    }
2043
2044  private:
2045    // FIXME: No need to make the entire Sema class a friend when it's just
2046    // Sema::MakeFullExpr that needs access to the constructor below.
2047    friend class Sema;
2048
2049    explicit FullExprArg(Expr *expr) : E(expr) {}
2050
2051    Expr *E;
2052  };
2053
2054  FullExprArg MakeFullExpr(Expr *Arg) {
2055    return FullExprArg(ActOnFinishFullExpr(Arg).release());
2056  }
2057
2058  StmtResult ActOnExprStmt(FullExprArg Expr);
2059
2060  StmtResult ActOnNullStmt(SourceLocation SemiLoc,
2061                           bool HasLeadingEmptyMacro = false);
2062
2063  void ActOnStartOfCompoundStmt();
2064  void ActOnFinishOfCompoundStmt();
2065  StmtResult ActOnCompoundStmt(SourceLocation L, SourceLocation R,
2066                                       MultiStmtArg Elts,
2067                                       bool isStmtExpr);
2068
2069  /// \brief A RAII object to enter scope of a compound statement.
2070  class CompoundScopeRAII {
2071  public:
2072    CompoundScopeRAII(Sema &S): S(S) {
2073      S.ActOnStartOfCompoundStmt();
2074    }
2075
2076    ~CompoundScopeRAII() {
2077      S.ActOnFinishOfCompoundStmt();
2078    }
2079
2080  private:
2081    Sema &S;
2082  };
2083
2084  StmtResult ActOnDeclStmt(DeclGroupPtrTy Decl,
2085                                   SourceLocation StartLoc,
2086                                   SourceLocation EndLoc);
2087  void ActOnForEachDeclStmt(DeclGroupPtrTy Decl);
2088  StmtResult ActOnForEachLValueExpr(Expr *E);
2089  StmtResult ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
2090                                   SourceLocation DotDotDotLoc, Expr *RHSVal,
2091                                   SourceLocation ColonLoc);
2092  void ActOnCaseStmtBody(Stmt *CaseStmt, Stmt *SubStmt);
2093
2094  StmtResult ActOnDefaultStmt(SourceLocation DefaultLoc,
2095                                      SourceLocation ColonLoc,
2096                                      Stmt *SubStmt, Scope *CurScope);
2097  StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
2098                            SourceLocation ColonLoc, Stmt *SubStmt);
2099
2100  StmtResult ActOnIfStmt(SourceLocation IfLoc,
2101                         FullExprArg CondVal, Decl *CondVar,
2102                         Stmt *ThenVal,
2103                         SourceLocation ElseLoc, Stmt *ElseVal);
2104  StmtResult ActOnStartOfSwitchStmt(SourceLocation SwitchLoc,
2105                                            Expr *Cond,
2106                                            Decl *CondVar);
2107  StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc,
2108                                           Stmt *Switch, Stmt *Body);
2109  StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
2110                            FullExprArg Cond,
2111                            Decl *CondVar, Stmt *Body);
2112  StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
2113                                 SourceLocation WhileLoc,
2114                                 SourceLocation CondLParen, Expr *Cond,
2115                                 SourceLocation CondRParen);
2116
2117  StmtResult ActOnForStmt(SourceLocation ForLoc,
2118                          SourceLocation LParenLoc,
2119                          Stmt *First, FullExprArg Second,
2120                          Decl *SecondVar,
2121                          FullExprArg Third,
2122                          SourceLocation RParenLoc,
2123                          Stmt *Body);
2124  ExprResult ActOnObjCForCollectionOperand(SourceLocation forLoc,
2125                                           Expr *collection);
2126  StmtResult ActOnObjCForCollectionStmt(SourceLocation ForColLoc,
2127                                        SourceLocation LParenLoc,
2128                                        Stmt *First, Expr *Second,
2129                                        SourceLocation RParenLoc, Stmt *Body);
2130  StmtResult ActOnCXXForRangeStmt(SourceLocation ForLoc,
2131                                  SourceLocation LParenLoc, Stmt *LoopVar,
2132                                  SourceLocation ColonLoc, Expr *Collection,
2133                                  SourceLocation RParenLoc);
2134  StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,
2135                                  SourceLocation ColonLoc,
2136                                  Stmt *RangeDecl, Stmt *BeginEndDecl,
2137                                  Expr *Cond, Expr *Inc,
2138                                  Stmt *LoopVarDecl,
2139                                  SourceLocation RParenLoc);
2140  StmtResult FinishCXXForRangeStmt(Stmt *ForRange, Stmt *Body);
2141
2142  StmtResult ActOnGotoStmt(SourceLocation GotoLoc,
2143                           SourceLocation LabelLoc,
2144                           LabelDecl *TheDecl);
2145  StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,
2146                                   SourceLocation StarLoc,
2147                                   Expr *DestExp);
2148  StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);
2149  StmtResult ActOnBreakStmt(SourceLocation GotoLoc, Scope *CurScope);
2150
2151  const VarDecl *getCopyElisionCandidate(QualType ReturnType, Expr *E,
2152                                         bool AllowFunctionParameters);
2153
2154  StmtResult ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp);
2155  StmtResult ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp);
2156
2157  StmtResult ActOnAsmStmt(SourceLocation AsmLoc,
2158                          bool IsSimple, bool IsVolatile,
2159                          unsigned NumOutputs, unsigned NumInputs,
2160                          IdentifierInfo **Names,
2161                          MultiExprArg Constraints,
2162                          MultiExprArg Exprs,
2163                          Expr *AsmString,
2164                          MultiExprArg Clobbers,
2165                          SourceLocation RParenLoc,
2166                          bool MSAsm = false);
2167
2168
2169  VarDecl *BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType ExceptionType,
2170                                  SourceLocation StartLoc,
2171                                  SourceLocation IdLoc, IdentifierInfo *Id,
2172                                  bool Invalid = false);
2173
2174  Decl *ActOnObjCExceptionDecl(Scope *S, Declarator &D);
2175
2176  StmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParen,
2177                                  Decl *Parm, Stmt *Body);
2178
2179  StmtResult ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body);
2180
2181  StmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
2182                                MultiStmtArg Catch, Stmt *Finally);
2183
2184  StmtResult BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw);
2185  StmtResult ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
2186                                  Scope *CurScope);
2187  ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,
2188                                            Expr *operand);
2189  StmtResult ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc,
2190                                         Expr *SynchExpr,
2191                                         Stmt *SynchBody);
2192
2193  StmtResult ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body);
2194
2195  VarDecl *BuildExceptionDeclaration(Scope *S, TypeSourceInfo *TInfo,
2196                                     SourceLocation StartLoc,
2197                                     SourceLocation IdLoc,
2198                                     IdentifierInfo *Id);
2199
2200  Decl *ActOnExceptionDeclarator(Scope *S, Declarator &D);
2201
2202  StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc,
2203                                Decl *ExDecl, Stmt *HandlerBlock);
2204  StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
2205                              MultiStmtArg Handlers);
2206
2207  StmtResult ActOnSEHTryBlock(bool IsCXXTry, // try (true) or __try (false) ?
2208                              SourceLocation TryLoc,
2209                              Stmt *TryBlock,
2210                              Stmt *Handler);
2211
2212  StmtResult ActOnSEHExceptBlock(SourceLocation Loc,
2213                                 Expr *FilterExpr,
2214                                 Stmt *Block);
2215
2216  StmtResult ActOnSEHFinallyBlock(SourceLocation Loc,
2217                                  Stmt *Block);
2218
2219  void DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock);
2220
2221  bool ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const;
2222
2223  /// \brief If it's a file scoped decl that must warn if not used, keep track
2224  /// of it.
2225  void MarkUnusedFileScopedDecl(const DeclaratorDecl *D);
2226
2227  /// DiagnoseUnusedExprResult - If the statement passed in is an expression
2228  /// whose result is unused, warn.
2229  void DiagnoseUnusedExprResult(const Stmt *S);
2230  void DiagnoseUnusedDecl(const NamedDecl *ND);
2231
2232  /// Emit \p DiagID if statement located on \p StmtLoc has a suspicious null
2233  /// statement as a \p Body, and it is located on the same line.
2234  ///
2235  /// This helps prevent bugs due to typos, such as:
2236  ///     if (condition);
2237  ///       do_stuff();
2238  void DiagnoseEmptyStmtBody(SourceLocation StmtLoc,
2239                             const Stmt *Body,
2240                             unsigned DiagID);
2241
2242  /// Warn if a for/while loop statement \p S, which is followed by
2243  /// \p PossibleBody, has a suspicious null statement as a body.
2244  void DiagnoseEmptyLoopBody(const Stmt *S,
2245                             const Stmt *PossibleBody);
2246
2247  ParsingDeclState PushParsingDeclaration() {
2248    return DelayedDiagnostics.pushParsingDecl();
2249  }
2250  void PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
2251    DelayedDiagnostics::popParsingDecl(*this, state, decl);
2252  }
2253
2254  typedef ProcessingContextState ParsingClassState;
2255  ParsingClassState PushParsingClass() {
2256    return DelayedDiagnostics.pushContext();
2257  }
2258  void PopParsingClass(ParsingClassState state) {
2259    DelayedDiagnostics.popContext(state);
2260  }
2261
2262  void EmitDeprecationWarning(NamedDecl *D, StringRef Message,
2263                              SourceLocation Loc,
2264                              const ObjCInterfaceDecl *UnknownObjCClass=0);
2265
2266  void HandleDelayedDeprecationCheck(sema::DelayedDiagnostic &DD, Decl *Ctx);
2267
2268  bool makeUnavailableInSystemHeader(SourceLocation loc,
2269                                     StringRef message);
2270
2271  //===--------------------------------------------------------------------===//
2272  // Expression Parsing Callbacks: SemaExpr.cpp.
2273
2274  bool CanUseDecl(NamedDecl *D);
2275  bool DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
2276                         const ObjCInterfaceDecl *UnknownObjCClass=0);
2277  std::string getDeletedOrUnavailableSuffix(const FunctionDecl *FD);
2278  bool DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *PD,
2279                                        ObjCMethodDecl *Getter,
2280                                        SourceLocation Loc);
2281  void DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
2282                             Expr **Args, unsigned NumArgs);
2283
2284  void PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext);
2285
2286  void PopExpressionEvaluationContext();
2287
2288  void DiscardCleanupsInEvaluationContext();
2289
2290  ExprResult TranformToPotentiallyEvaluated(Expr *E);
2291  ExprResult HandleExprEvaluationContextForTypeof(Expr *E);
2292
2293  // Functions for marking a declaration referenced.  These functions also
2294  // contain the relevant logic for marking if a reference to a function or
2295  // variable is an odr-use (in the C++11 sense).  There are separate variants
2296  // for expressions referring to a decl; these exist because odr-use marking
2297  // needs to be delayed for some constant variables when we build one of the
2298  // named expressions.
2299  void MarkAnyDeclReferenced(SourceLocation Loc, Decl *D);
2300  void MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func);
2301  void MarkVariableReferenced(SourceLocation Loc, VarDecl *Var);
2302  void MarkBlockDeclRefReferenced(BlockDeclRefExpr *E);
2303  void MarkDeclRefReferenced(DeclRefExpr *E);
2304  void MarkMemberReferenced(MemberExpr *E);
2305
2306  void UpdateMarkingForLValueToRValue(Expr *E);
2307  void CleanupVarDeclMarking();
2308
2309  /// \brief Determine whether we can capture the given variable in
2310  /// the given scope.
2311  ///
2312  /// \param Explicit Whether this is an explicit capture (vs. an
2313  /// implicit capture).
2314  ///
2315  /// \param Diagnose Diagnose errors that occur when attempting to perform
2316  /// the capture.
2317  ///
2318  /// \param Var The variable to check for capture.
2319  ///
2320  /// \param Type Will be set to the type used to perform the capture.
2321  ///
2322  /// \param FunctionScopesIndex Will be set to the index of the first
2323  /// scope in which capture will need to be performed.
2324  ///
2325  /// \param Nested Whether this will be a nested capture.
2326  bool canCaptureVariable(VarDecl *Var, SourceLocation Loc, bool Explicit,
2327                          bool Diagnose, QualType &Type,
2328                          unsigned &FunctionScopesIndex, bool &Nested);
2329
2330  /// \brief Determine the type of the field that will capture the
2331  /// given variable in a lambda expression.
2332  ///
2333  /// \param T The type of the variable being captured.
2334  /// \param ByRef Whether we are capturing by reference or by value.
2335  QualType getLambdaCaptureFieldType(QualType T, bool ByRef);
2336
2337  enum TryCaptureKind {
2338    TryCapture_Implicit, TryCapture_ExplicitByVal, TryCapture_ExplicitByRef
2339  };
2340  void TryCaptureVar(VarDecl *var, SourceLocation loc,
2341                     TryCaptureKind Kind = TryCapture_Implicit,
2342                     SourceLocation EllipsisLoc = SourceLocation());
2343
2344  void MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T);
2345  void MarkDeclarationsReferencedInExpr(Expr *E);
2346
2347  /// \brief Try to recover by turning the given expression into a
2348  /// call.  Returns true if recovery was attempted or an error was
2349  /// emitted; this may also leave the ExprResult invalid.
2350  bool tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD,
2351                            bool ForceComplain = false,
2352                            bool (*IsPlausibleResult)(QualType) = 0);
2353
2354  /// \brief Figure out if an expression could be turned into a call.
2355  bool isExprCallable(const Expr &E, QualType &ZeroArgCallReturnTy,
2356                      UnresolvedSetImpl &NonTemplateOverloads);
2357
2358  /// \brief Conditionally issue a diagnostic based on the current
2359  /// evaluation context.
2360  ///
2361  /// \param stmt - If stmt is non-null, delay reporting the diagnostic until
2362  ///  the function body is parsed, and then do a basic reachability analysis to
2363  ///  determine if the statement is reachable.  If it is unreachable, the
2364  ///  diagnostic will not be emitted.
2365  bool DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
2366                           const PartialDiagnostic &PD);
2367
2368  // Primary Expressions.
2369  SourceRange getExprRange(Expr *E) const;
2370
2371  ExprResult ActOnIdExpression(Scope *S, CXXScopeSpec &SS,
2372                               SourceLocation TemplateKWLoc,
2373                               UnqualifiedId &Id,
2374                               bool HasTrailingLParen, bool IsAddressOfOperand,
2375                               CorrectionCandidateCallback *CCC = 0);
2376
2377  void DecomposeUnqualifiedId(const UnqualifiedId &Id,
2378                              TemplateArgumentListInfo &Buffer,
2379                              DeclarationNameInfo &NameInfo,
2380                              const TemplateArgumentListInfo *&TemplateArgs);
2381
2382  bool DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
2383                           CorrectionCandidateCallback &CCC,
2384                           TemplateArgumentListInfo *ExplicitTemplateArgs = 0,
2385                           Expr **Args = 0, unsigned NumArgs = 0);
2386
2387  ExprResult LookupInObjCMethod(LookupResult &LookUp, Scope *S,
2388                                IdentifierInfo *II,
2389                                bool AllowBuiltinCreation=false);
2390
2391  ExprResult ActOnDependentIdExpression(const CXXScopeSpec &SS,
2392                                        SourceLocation TemplateKWLoc,
2393                                        const DeclarationNameInfo &NameInfo,
2394                                        bool isAddressOfOperand,
2395                                const TemplateArgumentListInfo *TemplateArgs);
2396
2397  ExprResult BuildDeclRefExpr(ValueDecl *D, QualType Ty,
2398                              ExprValueKind VK,
2399                              SourceLocation Loc,
2400                              const CXXScopeSpec *SS = 0);
2401  ExprResult BuildDeclRefExpr(ValueDecl *D, QualType Ty,
2402                              ExprValueKind VK,
2403                              const DeclarationNameInfo &NameInfo,
2404                              const CXXScopeSpec *SS = 0);
2405  ExprResult
2406  BuildAnonymousStructUnionMemberReference(const CXXScopeSpec &SS,
2407                                           SourceLocation nameLoc,
2408                                           IndirectFieldDecl *indirectField,
2409                                           Expr *baseObjectExpr = 0,
2410                                      SourceLocation opLoc = SourceLocation());
2411  ExprResult BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS,
2412                                             SourceLocation TemplateKWLoc,
2413                                             LookupResult &R,
2414                                const TemplateArgumentListInfo *TemplateArgs);
2415  ExprResult BuildImplicitMemberExpr(const CXXScopeSpec &SS,
2416                                     SourceLocation TemplateKWLoc,
2417                                     LookupResult &R,
2418                                const TemplateArgumentListInfo *TemplateArgs,
2419                                     bool IsDefiniteInstance);
2420  bool UseArgumentDependentLookup(const CXXScopeSpec &SS,
2421                                  const LookupResult &R,
2422                                  bool HasTrailingLParen);
2423
2424  ExprResult BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS,
2425                                         const DeclarationNameInfo &NameInfo);
2426  ExprResult BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
2427                                       SourceLocation TemplateKWLoc,
2428                                const DeclarationNameInfo &NameInfo,
2429                                const TemplateArgumentListInfo *TemplateArgs);
2430
2431  ExprResult BuildDeclarationNameExpr(const CXXScopeSpec &SS,
2432                                      LookupResult &R,
2433                                      bool NeedsADL);
2434  ExprResult BuildDeclarationNameExpr(const CXXScopeSpec &SS,
2435                                      const DeclarationNameInfo &NameInfo,
2436                                      NamedDecl *D);
2437
2438  ExprResult ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind);
2439  ExprResult ActOnNumericConstant(const Token &Tok);
2440  ExprResult ActOnCharacterConstant(const Token &Tok);
2441  ExprResult ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E);
2442  ExprResult ActOnParenListExpr(SourceLocation L,
2443                                SourceLocation R,
2444                                MultiExprArg Val);
2445
2446  /// ActOnStringLiteral - The specified tokens were lexed as pasted string
2447  /// fragments (e.g. "foo" "bar" L"baz").
2448  ExprResult ActOnStringLiteral(const Token *StringToks,
2449                                unsigned NumStringToks);
2450
2451  ExprResult ActOnGenericSelectionExpr(SourceLocation KeyLoc,
2452                                       SourceLocation DefaultLoc,
2453                                       SourceLocation RParenLoc,
2454                                       Expr *ControllingExpr,
2455                                       MultiTypeArg ArgTypes,
2456                                       MultiExprArg ArgExprs);
2457  ExprResult CreateGenericSelectionExpr(SourceLocation KeyLoc,
2458                                        SourceLocation DefaultLoc,
2459                                        SourceLocation RParenLoc,
2460                                        Expr *ControllingExpr,
2461                                        TypeSourceInfo **Types,
2462                                        Expr **Exprs,
2463                                        unsigned NumAssocs);
2464
2465  // Binary/Unary Operators.  'Tok' is the token for the operator.
2466  ExprResult CreateBuiltinUnaryOp(SourceLocation OpLoc, UnaryOperatorKind Opc,
2467                                  Expr *InputExpr);
2468  ExprResult BuildUnaryOp(Scope *S, SourceLocation OpLoc,
2469                          UnaryOperatorKind Opc, Expr *Input);
2470  ExprResult ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
2471                          tok::TokenKind Op, Expr *Input);
2472
2473  ExprResult CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
2474                                            SourceLocation OpLoc,
2475                                            UnaryExprOrTypeTrait ExprKind,
2476                                            SourceRange R);
2477  ExprResult CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
2478                                            UnaryExprOrTypeTrait ExprKind);
2479  ExprResult
2480    ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
2481                                  UnaryExprOrTypeTrait ExprKind,
2482                                  bool IsType, void *TyOrEx,
2483                                  const SourceRange &ArgRange);
2484
2485  ExprResult CheckPlaceholderExpr(Expr *E);
2486  bool CheckVecStepExpr(Expr *E);
2487
2488  bool CheckUnaryExprOrTypeTraitOperand(Expr *E, UnaryExprOrTypeTrait ExprKind);
2489  bool CheckUnaryExprOrTypeTraitOperand(QualType ExprType, SourceLocation OpLoc,
2490                                        SourceRange ExprRange,
2491                                        UnaryExprOrTypeTrait ExprKind);
2492  ExprResult ActOnSizeofParameterPackExpr(Scope *S,
2493                                          SourceLocation OpLoc,
2494                                          IdentifierInfo &Name,
2495                                          SourceLocation NameLoc,
2496                                          SourceLocation RParenLoc);
2497  ExprResult ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
2498                                 tok::TokenKind Kind, Expr *Input);
2499
2500  ExprResult ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc,
2501                                     Expr *Idx, SourceLocation RLoc);
2502  ExprResult CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
2503                                             Expr *Idx, SourceLocation RLoc);
2504
2505  ExprResult BuildMemberReferenceExpr(Expr *Base, QualType BaseType,
2506                                      SourceLocation OpLoc, bool IsArrow,
2507                                      CXXScopeSpec &SS,
2508                                      SourceLocation TemplateKWLoc,
2509                                      NamedDecl *FirstQualifierInScope,
2510                                const DeclarationNameInfo &NameInfo,
2511                                const TemplateArgumentListInfo *TemplateArgs);
2512
2513  ExprResult BuildMemberReferenceExpr(Expr *Base, QualType BaseType,
2514                                      SourceLocation OpLoc, bool IsArrow,
2515                                      const CXXScopeSpec &SS,
2516                                      SourceLocation TemplateKWLoc,
2517                                      NamedDecl *FirstQualifierInScope,
2518                                      LookupResult &R,
2519                                 const TemplateArgumentListInfo *TemplateArgs,
2520                                      bool SuppressQualifierCheck = false);
2521
2522  ExprResult PerformMemberExprBaseConversion(Expr *Base, bool IsArrow);
2523  ExprResult LookupMemberExpr(LookupResult &R, ExprResult &Base,
2524                              bool &IsArrow, SourceLocation OpLoc,
2525                              CXXScopeSpec &SS,
2526                              Decl *ObjCImpDecl,
2527                              bool HasTemplateArgs);
2528
2529  bool CheckQualifiedMemberReference(Expr *BaseExpr, QualType BaseType,
2530                                     const CXXScopeSpec &SS,
2531                                     const LookupResult &R);
2532
2533  ExprResult ActOnDependentMemberExpr(Expr *Base, QualType BaseType,
2534                                      bool IsArrow, SourceLocation OpLoc,
2535                                      const CXXScopeSpec &SS,
2536                                      SourceLocation TemplateKWLoc,
2537                                      NamedDecl *FirstQualifierInScope,
2538                               const DeclarationNameInfo &NameInfo,
2539                               const TemplateArgumentListInfo *TemplateArgs);
2540
2541  ExprResult ActOnMemberAccessExpr(Scope *S, Expr *Base,
2542                                   SourceLocation OpLoc,
2543                                   tok::TokenKind OpKind,
2544                                   CXXScopeSpec &SS,
2545                                   SourceLocation TemplateKWLoc,
2546                                   UnqualifiedId &Member,
2547                                   Decl *ObjCImpDecl,
2548                                   bool HasTrailingLParen);
2549
2550  void ActOnDefaultCtorInitializers(Decl *CDtorDecl);
2551  bool ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
2552                               FunctionDecl *FDecl,
2553                               const FunctionProtoType *Proto,
2554                               Expr **Args, unsigned NumArgs,
2555                               SourceLocation RParenLoc,
2556                               bool ExecConfig = false);
2557  void CheckStaticArrayArgument(SourceLocation CallLoc,
2558                                ParmVarDecl *Param,
2559                                const Expr *ArgExpr);
2560
2561  /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
2562  /// This provides the location of the left/right parens and a list of comma
2563  /// locations.
2564  ExprResult ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
2565                           MultiExprArg ArgExprs, SourceLocation RParenLoc,
2566                           Expr *ExecConfig = 0, bool IsExecConfig = false);
2567  ExprResult BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
2568                                   SourceLocation LParenLoc,
2569                                   Expr **Args, unsigned NumArgs,
2570                                   SourceLocation RParenLoc,
2571                                   Expr *Config = 0,
2572                                   bool IsExecConfig = false);
2573
2574  ExprResult ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc,
2575                                     MultiExprArg ExecConfig,
2576                                     SourceLocation GGGLoc);
2577
2578  ExprResult ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
2579                           Declarator &D, ParsedType &Ty,
2580                           SourceLocation RParenLoc, Expr *CastExpr);
2581  ExprResult BuildCStyleCastExpr(SourceLocation LParenLoc,
2582                                 TypeSourceInfo *Ty,
2583                                 SourceLocation RParenLoc,
2584                                 Expr *Op);
2585  CastKind PrepareScalarCast(ExprResult &src, QualType destType);
2586
2587  /// \brief Build an altivec or OpenCL literal.
2588  ExprResult BuildVectorLiteral(SourceLocation LParenLoc,
2589                                SourceLocation RParenLoc, Expr *E,
2590                                TypeSourceInfo *TInfo);
2591
2592  ExprResult MaybeConvertParenListExprToParenExpr(Scope *S, Expr *ME);
2593
2594  ExprResult ActOnCompoundLiteral(SourceLocation LParenLoc,
2595                                  ParsedType Ty,
2596                                  SourceLocation RParenLoc,
2597                                  Expr *InitExpr);
2598
2599  ExprResult BuildCompoundLiteralExpr(SourceLocation LParenLoc,
2600                                      TypeSourceInfo *TInfo,
2601                                      SourceLocation RParenLoc,
2602                                      Expr *LiteralExpr);
2603
2604  ExprResult ActOnInitList(SourceLocation LBraceLoc,
2605                           MultiExprArg InitArgList,
2606                           SourceLocation RBraceLoc);
2607
2608  ExprResult ActOnDesignatedInitializer(Designation &Desig,
2609                                        SourceLocation Loc,
2610                                        bool GNUSyntax,
2611                                        ExprResult Init);
2612
2613  ExprResult ActOnBinOp(Scope *S, SourceLocation TokLoc,
2614                        tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr);
2615  ExprResult BuildBinOp(Scope *S, SourceLocation OpLoc,
2616                        BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr);
2617  ExprResult CreateBuiltinBinOp(SourceLocation OpLoc, BinaryOperatorKind Opc,
2618                                Expr *LHSExpr, Expr *RHSExpr);
2619
2620  /// ActOnConditionalOp - Parse a ?: operation.  Note that 'LHS' may be null
2621  /// in the case of a the GNU conditional expr extension.
2622  ExprResult ActOnConditionalOp(SourceLocation QuestionLoc,
2623                                SourceLocation ColonLoc,
2624                                Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr);
2625
2626  /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
2627  ExprResult ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
2628                            LabelDecl *TheDecl);
2629
2630  ExprResult ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
2631                           SourceLocation RPLoc); // "({..})"
2632
2633  // __builtin_offsetof(type, identifier(.identifier|[expr])*)
2634  struct OffsetOfComponent {
2635    SourceLocation LocStart, LocEnd;
2636    bool isBrackets;  // true if [expr], false if .ident
2637    union {
2638      IdentifierInfo *IdentInfo;
2639      Expr *E;
2640    } U;
2641  };
2642
2643  /// __builtin_offsetof(type, a.b[123][456].c)
2644  ExprResult BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
2645                                  TypeSourceInfo *TInfo,
2646                                  OffsetOfComponent *CompPtr,
2647                                  unsigned NumComponents,
2648                                  SourceLocation RParenLoc);
2649  ExprResult ActOnBuiltinOffsetOf(Scope *S,
2650                                  SourceLocation BuiltinLoc,
2651                                  SourceLocation TypeLoc,
2652                                  ParsedType ParsedArgTy,
2653                                  OffsetOfComponent *CompPtr,
2654                                  unsigned NumComponents,
2655                                  SourceLocation RParenLoc);
2656
2657  // __builtin_choose_expr(constExpr, expr1, expr2)
2658  ExprResult ActOnChooseExpr(SourceLocation BuiltinLoc,
2659                             Expr *CondExpr, Expr *LHSExpr,
2660                             Expr *RHSExpr, SourceLocation RPLoc);
2661
2662  // __builtin_va_arg(expr, type)
2663  ExprResult ActOnVAArg(SourceLocation BuiltinLoc, Expr *E, ParsedType Ty,
2664                        SourceLocation RPLoc);
2665  ExprResult BuildVAArgExpr(SourceLocation BuiltinLoc, Expr *E,
2666                            TypeSourceInfo *TInfo, SourceLocation RPLoc);
2667
2668  // __null
2669  ExprResult ActOnGNUNullExpr(SourceLocation TokenLoc);
2670
2671  bool CheckCaseExpression(Expr *E);
2672
2673  /// \brief Describes the result of an "if-exists" condition check.
2674  enum IfExistsResult {
2675    /// \brief The symbol exists.
2676    IER_Exists,
2677
2678    /// \brief The symbol does not exist.
2679    IER_DoesNotExist,
2680
2681    /// \brief The name is a dependent name, so the results will differ
2682    /// from one instantiation to the next.
2683    IER_Dependent,
2684
2685    /// \brief An error occurred.
2686    IER_Error
2687  };
2688
2689  IfExistsResult
2690  CheckMicrosoftIfExistsSymbol(Scope *S, CXXScopeSpec &SS,
2691                               const DeclarationNameInfo &TargetNameInfo);
2692
2693  IfExistsResult
2694  CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
2695                               bool IsIfExists, CXXScopeSpec &SS,
2696                               UnqualifiedId &Name);
2697
2698  StmtResult BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
2699                                        bool IsIfExists,
2700                                        NestedNameSpecifierLoc QualifierLoc,
2701                                        DeclarationNameInfo NameInfo,
2702                                        Stmt *Nested);
2703  StmtResult ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
2704                                        bool IsIfExists,
2705                                        CXXScopeSpec &SS, UnqualifiedId &Name,
2706                                        Stmt *Nested);
2707
2708  //===------------------------- "Block" Extension ------------------------===//
2709
2710  /// ActOnBlockStart - This callback is invoked when a block literal is
2711  /// started.
2712  void ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope);
2713
2714  /// ActOnBlockArguments - This callback allows processing of block arguments.
2715  /// If there are no arguments, this is still invoked.
2716  void ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope);
2717
2718  /// ActOnBlockError - If there is an error parsing a block, this callback
2719  /// is invoked to pop the information about the block from the action impl.
2720  void ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope);
2721
2722  /// ActOnBlockStmtExpr - This is called when the body of a block statement
2723  /// literal was successfully completed.  ^(int x){...}
2724  ExprResult ActOnBlockStmtExpr(SourceLocation CaretLoc, Stmt *Body,
2725                                Scope *CurScope);
2726
2727  //===---------------------------- OpenCL Features -----------------------===//
2728
2729  /// __builtin_astype(...)
2730  ExprResult ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
2731                             SourceLocation BuiltinLoc,
2732                             SourceLocation RParenLoc);
2733
2734  //===---------------------------- C++ Features --------------------------===//
2735
2736  // Act on C++ namespaces
2737  Decl *ActOnStartNamespaceDef(Scope *S, SourceLocation InlineLoc,
2738                               SourceLocation NamespaceLoc,
2739                               SourceLocation IdentLoc,
2740                               IdentifierInfo *Ident,
2741                               SourceLocation LBrace,
2742                               AttributeList *AttrList);
2743  void ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace);
2744
2745  NamespaceDecl *getStdNamespace() const;
2746  NamespaceDecl *getOrCreateStdNamespace();
2747
2748  CXXRecordDecl *getStdBadAlloc() const;
2749
2750  /// \brief Tests whether Ty is an instance of std::initializer_list and, if
2751  /// it is and Element is not NULL, assigns the element type to Element.
2752  bool isStdInitializerList(QualType Ty, QualType *Element);
2753
2754  /// \brief Looks for the std::initializer_list template and instantiates it
2755  /// with Element, or emits an error if it's not found.
2756  ///
2757  /// \returns The instantiated template, or null on error.
2758  QualType BuildStdInitializerList(QualType Element, SourceLocation Loc);
2759
2760  /// \brief Determine whether Ctor is an initializer-list constructor, as
2761  /// defined in [dcl.init.list]p2.
2762  bool isInitListConstructor(const CXXConstructorDecl *Ctor);
2763
2764  Decl *ActOnUsingDirective(Scope *CurScope,
2765                            SourceLocation UsingLoc,
2766                            SourceLocation NamespcLoc,
2767                            CXXScopeSpec &SS,
2768                            SourceLocation IdentLoc,
2769                            IdentifierInfo *NamespcName,
2770                            AttributeList *AttrList);
2771
2772  void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
2773
2774  Decl *ActOnNamespaceAliasDef(Scope *CurScope,
2775                               SourceLocation NamespaceLoc,
2776                               SourceLocation AliasLoc,
2777                               IdentifierInfo *Alias,
2778                               CXXScopeSpec &SS,
2779                               SourceLocation IdentLoc,
2780                               IdentifierInfo *Ident);
2781
2782  void HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow);
2783  bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
2784                            const LookupResult &PreviousDecls);
2785  UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
2786                                        NamedDecl *Target);
2787
2788  bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
2789                                   bool isTypeName,
2790                                   const CXXScopeSpec &SS,
2791                                   SourceLocation NameLoc,
2792                                   const LookupResult &Previous);
2793  bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
2794                               const CXXScopeSpec &SS,
2795                               SourceLocation NameLoc);
2796
2797  NamedDecl *BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
2798                                   SourceLocation UsingLoc,
2799                                   CXXScopeSpec &SS,
2800                                   const DeclarationNameInfo &NameInfo,
2801                                   AttributeList *AttrList,
2802                                   bool IsInstantiation,
2803                                   bool IsTypeName,
2804                                   SourceLocation TypenameLoc);
2805
2806  bool CheckInheritedConstructorUsingDecl(UsingDecl *UD);
2807
2808  Decl *ActOnUsingDeclaration(Scope *CurScope,
2809                              AccessSpecifier AS,
2810                              bool HasUsingKeyword,
2811                              SourceLocation UsingLoc,
2812                              CXXScopeSpec &SS,
2813                              UnqualifiedId &Name,
2814                              AttributeList *AttrList,
2815                              bool IsTypeName,
2816                              SourceLocation TypenameLoc);
2817  Decl *ActOnAliasDeclaration(Scope *CurScope,
2818                              AccessSpecifier AS,
2819                              MultiTemplateParamsArg TemplateParams,
2820                              SourceLocation UsingLoc,
2821                              UnqualifiedId &Name,
2822                              TypeResult Type);
2823
2824  /// InitializeVarWithConstructor - Creates an CXXConstructExpr
2825  /// and sets it as the initializer for the the passed in VarDecl.
2826  bool InitializeVarWithConstructor(VarDecl *VD,
2827                                    CXXConstructorDecl *Constructor,
2828                                    MultiExprArg Exprs,
2829                                    bool HadMultipleCandidates);
2830
2831  /// BuildCXXConstructExpr - Creates a complete call to a constructor,
2832  /// including handling of its default argument expressions.
2833  ///
2834  /// \param ConstructKind - a CXXConstructExpr::ConstructionKind
2835  ExprResult
2836  BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
2837                        CXXConstructorDecl *Constructor, MultiExprArg Exprs,
2838                        bool HadMultipleCandidates, bool RequiresZeroInit,
2839                        unsigned ConstructKind, SourceRange ParenRange);
2840
2841  // FIXME: Can re remove this and have the above BuildCXXConstructExpr check if
2842  // the constructor can be elidable?
2843  ExprResult
2844  BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
2845                        CXXConstructorDecl *Constructor, bool Elidable,
2846                        MultiExprArg Exprs, bool HadMultipleCandidates,
2847                        bool RequiresZeroInit, unsigned ConstructKind,
2848                        SourceRange ParenRange);
2849
2850  /// BuildCXXDefaultArgExpr - Creates a CXXDefaultArgExpr, instantiating
2851  /// the default expr if needed.
2852  ExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc,
2853                                    FunctionDecl *FD,
2854                                    ParmVarDecl *Param);
2855
2856  /// FinalizeVarWithDestructor - Prepare for calling destructor on the
2857  /// constructed variable.
2858  void FinalizeVarWithDestructor(VarDecl *VD, const RecordType *DeclInitType);
2859
2860  /// \brief Helper class that collects exception specifications for
2861  /// implicitly-declared special member functions.
2862  class ImplicitExceptionSpecification {
2863    // Pointer to allow copying
2864    ASTContext *Context;
2865    // We order exception specifications thus:
2866    // noexcept is the most restrictive, but is only used in C++0x.
2867    // throw() comes next.
2868    // Then a throw(collected exceptions)
2869    // Finally no specification.
2870    // throw(...) is used instead if any called function uses it.
2871    //
2872    // If this exception specification cannot be known yet (for instance,
2873    // because this is the exception specification for a defaulted default
2874    // constructor and we haven't finished parsing the deferred parts of the
2875    // class yet), the C++0x standard does not specify how to behave. We
2876    // record this as an 'unknown' exception specification, which overrules
2877    // any other specification (even 'none', to keep this rule simple).
2878    ExceptionSpecificationType ComputedEST;
2879    llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2880    SmallVector<QualType, 4> Exceptions;
2881
2882    void ClearExceptions() {
2883      ExceptionsSeen.clear();
2884      Exceptions.clear();
2885    }
2886
2887  public:
2888    explicit ImplicitExceptionSpecification(ASTContext &Context)
2889      : Context(&Context), ComputedEST(EST_BasicNoexcept) {
2890      if (!Context.getLangOptions().CPlusPlus0x)
2891        ComputedEST = EST_DynamicNone;
2892    }
2893
2894    /// \brief Get the computed exception specification type.
2895    ExceptionSpecificationType getExceptionSpecType() const {
2896      assert(ComputedEST != EST_ComputedNoexcept &&
2897             "noexcept(expr) should not be a possible result");
2898      return ComputedEST;
2899    }
2900
2901    /// \brief The number of exceptions in the exception specification.
2902    unsigned size() const { return Exceptions.size(); }
2903
2904    /// \brief The set of exceptions in the exception specification.
2905    const QualType *data() const { return Exceptions.data(); }
2906
2907    /// \brief Integrate another called method into the collected data.
2908    void CalledDecl(CXXMethodDecl *Method);
2909
2910    /// \brief Integrate an invoked expression into the collected data.
2911    void CalledExpr(Expr *E);
2912
2913    /// \brief Specify that the exception specification can't be detemined yet.
2914    void SetDelayed() {
2915      ClearExceptions();
2916      ComputedEST = EST_Delayed;
2917    }
2918
2919    FunctionProtoType::ExtProtoInfo getEPI() const {
2920      FunctionProtoType::ExtProtoInfo EPI;
2921      EPI.ExceptionSpecType = getExceptionSpecType();
2922      EPI.NumExceptions = size();
2923      EPI.Exceptions = data();
2924      return EPI;
2925    }
2926  };
2927
2928  /// \brief Determine what sort of exception specification a defaulted
2929  /// copy constructor of a class will have.
2930  ImplicitExceptionSpecification
2931  ComputeDefaultedDefaultCtorExceptionSpec(CXXRecordDecl *ClassDecl);
2932
2933  /// \brief Determine what sort of exception specification a defaulted
2934  /// default constructor of a class will have, and whether the parameter
2935  /// will be const.
2936  std::pair<ImplicitExceptionSpecification, bool>
2937  ComputeDefaultedCopyCtorExceptionSpecAndConst(CXXRecordDecl *ClassDecl);
2938
2939  /// \brief Determine what sort of exception specification a defautled
2940  /// copy assignment operator of a class will have, and whether the
2941  /// parameter will be const.
2942  std::pair<ImplicitExceptionSpecification, bool>
2943  ComputeDefaultedCopyAssignmentExceptionSpecAndConst(CXXRecordDecl *ClassDecl);
2944
2945  /// \brief Determine what sort of exception specification a defaulted move
2946  /// constructor of a class will have.
2947  ImplicitExceptionSpecification
2948  ComputeDefaultedMoveCtorExceptionSpec(CXXRecordDecl *ClassDecl);
2949
2950  /// \brief Determine what sort of exception specification a defaulted move
2951  /// assignment operator of a class will have.
2952  ImplicitExceptionSpecification
2953  ComputeDefaultedMoveAssignmentExceptionSpec(CXXRecordDecl *ClassDecl);
2954
2955  /// \brief Determine what sort of exception specification a defaulted
2956  /// destructor of a class will have.
2957  ImplicitExceptionSpecification
2958  ComputeDefaultedDtorExceptionSpec(CXXRecordDecl *ClassDecl);
2959
2960  /// \brief Determine if a special member function should have a deleted
2961  /// definition when it is defaulted.
2962  bool ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM);
2963
2964  /// \brief Determine if a defaulted copy assignment operator ought to be
2965  /// deleted.
2966  bool ShouldDeleteCopyAssignmentOperator(CXXMethodDecl *MD);
2967
2968  /// \brief Determine if a defaulted move assignment operator ought to be
2969  /// deleted.
2970  bool ShouldDeleteMoveAssignmentOperator(CXXMethodDecl *MD);
2971
2972  /// \brief Determine if a defaulted destructor ought to be deleted.
2973  bool ShouldDeleteDestructor(CXXDestructorDecl *DD);
2974
2975  /// \brief Declare the implicit default constructor for the given class.
2976  ///
2977  /// \param ClassDecl The class declaration into which the implicit
2978  /// default constructor will be added.
2979  ///
2980  /// \returns The implicitly-declared default constructor.
2981  CXXConstructorDecl *DeclareImplicitDefaultConstructor(
2982                                                     CXXRecordDecl *ClassDecl);
2983
2984  /// DefineImplicitDefaultConstructor - Checks for feasibility of
2985  /// defining this constructor as the default constructor.
2986  void DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
2987                                        CXXConstructorDecl *Constructor);
2988
2989  /// \brief Declare the implicit destructor for the given class.
2990  ///
2991  /// \param ClassDecl The class declaration into which the implicit
2992  /// destructor will be added.
2993  ///
2994  /// \returns The implicitly-declared destructor.
2995  CXXDestructorDecl *DeclareImplicitDestructor(CXXRecordDecl *ClassDecl);
2996
2997  /// DefineImplicitDestructor - Checks for feasibility of
2998  /// defining this destructor as the default destructor.
2999  void DefineImplicitDestructor(SourceLocation CurrentLocation,
3000                                CXXDestructorDecl *Destructor);
3001
3002  /// \brief Build an exception spec for destructors that don't have one.
3003  ///
3004  /// C++11 says that user-defined destructors with no exception spec get one
3005  /// that looks as if the destructor was implicitly declared.
3006  void AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
3007                                     CXXDestructorDecl *Destructor);
3008
3009  /// \brief Declare all inherited constructors for the given class.
3010  ///
3011  /// \param ClassDecl The class declaration into which the inherited
3012  /// constructors will be added.
3013  void DeclareInheritedConstructors(CXXRecordDecl *ClassDecl);
3014
3015  /// \brief Declare the implicit copy constructor for the given class.
3016  ///
3017  /// \param ClassDecl The class declaration into which the implicit
3018  /// copy constructor will be added.
3019  ///
3020  /// \returns The implicitly-declared copy constructor.
3021  CXXConstructorDecl *DeclareImplicitCopyConstructor(CXXRecordDecl *ClassDecl);
3022
3023  /// DefineImplicitCopyConstructor - Checks for feasibility of
3024  /// defining this constructor as the copy constructor.
3025  void DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
3026                                     CXXConstructorDecl *Constructor);
3027
3028  /// \brief Declare the implicit move constructor for the given class.
3029  ///
3030  /// \param ClassDecl The Class declaration into which the implicit
3031  /// move constructor will be added.
3032  ///
3033  /// \returns The implicitly-declared move constructor, or NULL if it wasn't
3034  /// declared.
3035  CXXConstructorDecl *DeclareImplicitMoveConstructor(CXXRecordDecl *ClassDecl);
3036
3037  /// DefineImplicitMoveConstructor - Checks for feasibility of
3038  /// defining this constructor as the move constructor.
3039  void DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
3040                                     CXXConstructorDecl *Constructor);
3041
3042  /// \brief Declare the implicit copy assignment operator for the given class.
3043  ///
3044  /// \param ClassDecl The class declaration into which the implicit
3045  /// copy assignment operator will be added.
3046  ///
3047  /// \returns The implicitly-declared copy assignment operator.
3048  CXXMethodDecl *DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl);
3049
3050  /// \brief Defines an implicitly-declared copy assignment operator.
3051  void DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
3052                                    CXXMethodDecl *MethodDecl);
3053
3054  /// \brief Declare the implicit move assignment operator for the given class.
3055  ///
3056  /// \param ClassDecl The Class declaration into which the implicit
3057  /// move assignment operator will be added.
3058  ///
3059  /// \returns The implicitly-declared move assignment operator, or NULL if it
3060  /// wasn't declared.
3061  CXXMethodDecl *DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl);
3062
3063  /// \brief Defines an implicitly-declared move assignment operator.
3064  void DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
3065                                    CXXMethodDecl *MethodDecl);
3066
3067  /// \brief Force the declaration of any implicitly-declared members of this
3068  /// class.
3069  void ForceDeclarationOfImplicitMembers(CXXRecordDecl *Class);
3070
3071  /// MaybeBindToTemporary - If the passed in expression has a record type with
3072  /// a non-trivial destructor, this will return CXXBindTemporaryExpr. Otherwise
3073  /// it simply returns the passed in expression.
3074  ExprResult MaybeBindToTemporary(Expr *E);
3075
3076  bool CompleteConstructorCall(CXXConstructorDecl *Constructor,
3077                               MultiExprArg ArgsPtr,
3078                               SourceLocation Loc,
3079                               ASTOwningVector<Expr*> &ConvertedArgs);
3080
3081  ParsedType getDestructorName(SourceLocation TildeLoc,
3082                               IdentifierInfo &II, SourceLocation NameLoc,
3083                               Scope *S, CXXScopeSpec &SS,
3084                               ParsedType ObjectType,
3085                               bool EnteringContext);
3086
3087  ParsedType getDestructorType(const DeclSpec& DS, ParsedType ObjectType);
3088
3089  // Checks that reinterpret casts don't have undefined behavior.
3090  void CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
3091                                      bool IsDereference, SourceRange Range);
3092
3093  /// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's.
3094  ExprResult ActOnCXXNamedCast(SourceLocation OpLoc,
3095                               tok::TokenKind Kind,
3096                               SourceLocation LAngleBracketLoc,
3097                               Declarator &D,
3098                               SourceLocation RAngleBracketLoc,
3099                               SourceLocation LParenLoc,
3100                               Expr *E,
3101                               SourceLocation RParenLoc);
3102
3103  ExprResult BuildCXXNamedCast(SourceLocation OpLoc,
3104                               tok::TokenKind Kind,
3105                               TypeSourceInfo *Ty,
3106                               Expr *E,
3107                               SourceRange AngleBrackets,
3108                               SourceRange Parens);
3109
3110  ExprResult BuildCXXTypeId(QualType TypeInfoType,
3111                            SourceLocation TypeidLoc,
3112                            TypeSourceInfo *Operand,
3113                            SourceLocation RParenLoc);
3114  ExprResult BuildCXXTypeId(QualType TypeInfoType,
3115                            SourceLocation TypeidLoc,
3116                            Expr *Operand,
3117                            SourceLocation RParenLoc);
3118
3119  /// ActOnCXXTypeid - Parse typeid( something ).
3120  ExprResult ActOnCXXTypeid(SourceLocation OpLoc,
3121                            SourceLocation LParenLoc, bool isType,
3122                            void *TyOrExpr,
3123                            SourceLocation RParenLoc);
3124
3125  ExprResult BuildCXXUuidof(QualType TypeInfoType,
3126                            SourceLocation TypeidLoc,
3127                            TypeSourceInfo *Operand,
3128                            SourceLocation RParenLoc);
3129  ExprResult BuildCXXUuidof(QualType TypeInfoType,
3130                            SourceLocation TypeidLoc,
3131                            Expr *Operand,
3132                            SourceLocation RParenLoc);
3133
3134  /// ActOnCXXUuidof - Parse __uuidof( something ).
3135  ExprResult ActOnCXXUuidof(SourceLocation OpLoc,
3136                            SourceLocation LParenLoc, bool isType,
3137                            void *TyOrExpr,
3138                            SourceLocation RParenLoc);
3139
3140
3141  //// ActOnCXXThis -  Parse 'this' pointer.
3142  ExprResult ActOnCXXThis(SourceLocation loc);
3143
3144  /// \brief Try to retrieve the type of the 'this' pointer.
3145  ///
3146  /// \param Capture If true, capture 'this' in this context.
3147  ///
3148  /// \returns The type of 'this', if possible. Otherwise, returns a NULL type.
3149  QualType getCurrentThisType();
3150
3151  /// \brief Make sure the value of 'this' is actually available in the current
3152  /// context, if it is a potentially evaluated context.
3153  ///
3154  /// \param Loc The location at which the capture of 'this' occurs.
3155  ///
3156  /// \param Explicit Whether 'this' is explicitly captured in a lambda
3157  /// capture list.
3158  void CheckCXXThisCapture(SourceLocation Loc, bool Explicit = false);
3159
3160  /// ActOnCXXBoolLiteral - Parse {true,false} literals.
3161  ExprResult ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind);
3162
3163  /// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
3164  ExprResult ActOnCXXNullPtrLiteral(SourceLocation Loc);
3165
3166  //// ActOnCXXThrow -  Parse throw expressions.
3167  ExprResult ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *expr);
3168  ExprResult BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
3169                           bool IsThrownVarInScope);
3170  ExprResult CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E,
3171                                  bool IsThrownVarInScope);
3172
3173  /// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
3174  /// Can be interpreted either as function-style casting ("int(x)")
3175  /// or class type construction ("ClassType(x,y,z)")
3176  /// or creation of a value-initialized type ("int()").
3177  ExprResult ActOnCXXTypeConstructExpr(ParsedType TypeRep,
3178                                       SourceLocation LParenLoc,
3179                                       MultiExprArg Exprs,
3180                                       SourceLocation RParenLoc);
3181
3182  ExprResult BuildCXXTypeConstructExpr(TypeSourceInfo *Type,
3183                                       SourceLocation LParenLoc,
3184                                       MultiExprArg Exprs,
3185                                       SourceLocation RParenLoc);
3186
3187  /// ActOnCXXNew - Parsed a C++ 'new' expression.
3188  ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
3189                         SourceLocation PlacementLParen,
3190                         MultiExprArg PlacementArgs,
3191                         SourceLocation PlacementRParen,
3192                         SourceRange TypeIdParens, Declarator &D,
3193                         SourceLocation ConstructorLParen,
3194                         MultiExprArg ConstructorArgs,
3195                         SourceLocation ConstructorRParen);
3196  ExprResult BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
3197                         SourceLocation PlacementLParen,
3198                         MultiExprArg PlacementArgs,
3199                         SourceLocation PlacementRParen,
3200                         SourceRange TypeIdParens,
3201                         QualType AllocType,
3202                         TypeSourceInfo *AllocTypeInfo,
3203                         Expr *ArraySize,
3204                         SourceLocation ConstructorLParen,
3205                         MultiExprArg ConstructorArgs,
3206                         SourceLocation ConstructorRParen,
3207                         bool TypeMayContainAuto = true);
3208
3209  bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
3210                          SourceRange R);
3211  bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
3212                               bool UseGlobal, QualType AllocType, bool IsArray,
3213                               Expr **PlaceArgs, unsigned NumPlaceArgs,
3214                               FunctionDecl *&OperatorNew,
3215                               FunctionDecl *&OperatorDelete);
3216  bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
3217                              DeclarationName Name, Expr** Args,
3218                              unsigned NumArgs, DeclContext *Ctx,
3219                              bool AllowMissing, FunctionDecl *&Operator,
3220                              bool Diagnose = true);
3221  void DeclareGlobalNewDelete();
3222  void DeclareGlobalAllocationFunction(DeclarationName Name, QualType Return,
3223                                       QualType Argument,
3224                                       bool addMallocAttr = false);
3225
3226  bool FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
3227                                DeclarationName Name, FunctionDecl* &Operator,
3228                                bool Diagnose = true);
3229
3230  /// ActOnCXXDelete - Parsed a C++ 'delete' expression
3231  ExprResult ActOnCXXDelete(SourceLocation StartLoc,
3232                            bool UseGlobal, bool ArrayForm,
3233                            Expr *Operand);
3234
3235  DeclResult ActOnCXXConditionDeclaration(Scope *S, Declarator &D);
3236  ExprResult CheckConditionVariable(VarDecl *ConditionVar,
3237                                    SourceLocation StmtLoc,
3238                                    bool ConvertToBoolean);
3239
3240  ExprResult ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation LParen,
3241                               Expr *Operand, SourceLocation RParen);
3242  ExprResult BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
3243                                  SourceLocation RParen);
3244
3245  /// ActOnUnaryTypeTrait - Parsed one of the unary type trait support
3246  /// pseudo-functions.
3247  ExprResult ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
3248                                 SourceLocation KWLoc,
3249                                 ParsedType Ty,
3250                                 SourceLocation RParen);
3251
3252  ExprResult BuildUnaryTypeTrait(UnaryTypeTrait OTT,
3253                                 SourceLocation KWLoc,
3254                                 TypeSourceInfo *T,
3255                                 SourceLocation RParen);
3256
3257  /// ActOnBinaryTypeTrait - Parsed one of the bianry type trait support
3258  /// pseudo-functions.
3259  ExprResult ActOnBinaryTypeTrait(BinaryTypeTrait OTT,
3260                                  SourceLocation KWLoc,
3261                                  ParsedType LhsTy,
3262                                  ParsedType RhsTy,
3263                                  SourceLocation RParen);
3264
3265  ExprResult BuildBinaryTypeTrait(BinaryTypeTrait BTT,
3266                                  SourceLocation KWLoc,
3267                                  TypeSourceInfo *LhsT,
3268                                  TypeSourceInfo *RhsT,
3269                                  SourceLocation RParen);
3270
3271  /// ActOnArrayTypeTrait - Parsed one of the bianry type trait support
3272  /// pseudo-functions.
3273  ExprResult ActOnArrayTypeTrait(ArrayTypeTrait ATT,
3274                                 SourceLocation KWLoc,
3275                                 ParsedType LhsTy,
3276                                 Expr *DimExpr,
3277                                 SourceLocation RParen);
3278
3279  ExprResult BuildArrayTypeTrait(ArrayTypeTrait ATT,
3280                                 SourceLocation KWLoc,
3281                                 TypeSourceInfo *TSInfo,
3282                                 Expr *DimExpr,
3283                                 SourceLocation RParen);
3284
3285  /// ActOnExpressionTrait - Parsed one of the unary type trait support
3286  /// pseudo-functions.
3287  ExprResult ActOnExpressionTrait(ExpressionTrait OET,
3288                                  SourceLocation KWLoc,
3289                                  Expr *Queried,
3290                                  SourceLocation RParen);
3291
3292  ExprResult BuildExpressionTrait(ExpressionTrait OET,
3293                                  SourceLocation KWLoc,
3294                                  Expr *Queried,
3295                                  SourceLocation RParen);
3296
3297  ExprResult ActOnStartCXXMemberReference(Scope *S,
3298                                          Expr *Base,
3299                                          SourceLocation OpLoc,
3300                                          tok::TokenKind OpKind,
3301                                          ParsedType &ObjectType,
3302                                          bool &MayBePseudoDestructor);
3303
3304  ExprResult DiagnoseDtorReference(SourceLocation NameLoc, Expr *MemExpr);
3305
3306  ExprResult BuildPseudoDestructorExpr(Expr *Base,
3307                                       SourceLocation OpLoc,
3308                                       tok::TokenKind OpKind,
3309                                       const CXXScopeSpec &SS,
3310                                       TypeSourceInfo *ScopeType,
3311                                       SourceLocation CCLoc,
3312                                       SourceLocation TildeLoc,
3313                                     PseudoDestructorTypeStorage DestroyedType,
3314                                       bool HasTrailingLParen);
3315
3316  ExprResult ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
3317                                       SourceLocation OpLoc,
3318                                       tok::TokenKind OpKind,
3319                                       CXXScopeSpec &SS,
3320                                       UnqualifiedId &FirstTypeName,
3321                                       SourceLocation CCLoc,
3322                                       SourceLocation TildeLoc,
3323                                       UnqualifiedId &SecondTypeName,
3324                                       bool HasTrailingLParen);
3325
3326  ExprResult ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
3327                                       SourceLocation OpLoc,
3328                                       tok::TokenKind OpKind,
3329                                       SourceLocation TildeLoc,
3330                                       const DeclSpec& DS,
3331                                       bool HasTrailingLParen);
3332
3333  /// MaybeCreateExprWithCleanups - If the current full-expression
3334  /// requires any cleanups, surround it with a ExprWithCleanups node.
3335  /// Otherwise, just returns the passed-in expression.
3336  Expr *MaybeCreateExprWithCleanups(Expr *SubExpr);
3337  Stmt *MaybeCreateStmtWithCleanups(Stmt *SubStmt);
3338  ExprResult MaybeCreateExprWithCleanups(ExprResult SubExpr);
3339
3340  ExprResult ActOnFinishFullExpr(Expr *Expr);
3341  StmtResult ActOnFinishFullStmt(Stmt *Stmt);
3342
3343  // Marks SS invalid if it represents an incomplete type.
3344  bool RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC);
3345
3346  DeclContext *computeDeclContext(QualType T);
3347  DeclContext *computeDeclContext(const CXXScopeSpec &SS,
3348                                  bool EnteringContext = false);
3349  bool isDependentScopeSpecifier(const CXXScopeSpec &SS);
3350  CXXRecordDecl *getCurrentInstantiationOf(NestedNameSpecifier *NNS);
3351  bool isUnknownSpecialization(const CXXScopeSpec &SS);
3352
3353  /// \brief The parser has parsed a global nested-name-specifier '::'.
3354  ///
3355  /// \param S The scope in which this nested-name-specifier occurs.
3356  ///
3357  /// \param CCLoc The location of the '::'.
3358  ///
3359  /// \param SS The nested-name-specifier, which will be updated in-place
3360  /// to reflect the parsed nested-name-specifier.
3361  ///
3362  /// \returns true if an error occurred, false otherwise.
3363  bool ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
3364                                    CXXScopeSpec &SS);
3365
3366  bool isAcceptableNestedNameSpecifier(NamedDecl *SD);
3367  NamedDecl *FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS);
3368
3369  bool isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
3370                                    SourceLocation IdLoc,
3371                                    IdentifierInfo &II,
3372                                    ParsedType ObjectType);
3373
3374  bool BuildCXXNestedNameSpecifier(Scope *S,
3375                                   IdentifierInfo &Identifier,
3376                                   SourceLocation IdentifierLoc,
3377                                   SourceLocation CCLoc,
3378                                   QualType ObjectType,
3379                                   bool EnteringContext,
3380                                   CXXScopeSpec &SS,
3381                                   NamedDecl *ScopeLookupResult,
3382                                   bool ErrorRecoveryLookup);
3383
3384  /// \brief The parser has parsed a nested-name-specifier 'identifier::'.
3385  ///
3386  /// \param S The scope in which this nested-name-specifier occurs.
3387  ///
3388  /// \param Identifier The identifier preceding the '::'.
3389  ///
3390  /// \param IdentifierLoc The location of the identifier.
3391  ///
3392  /// \param CCLoc The location of the '::'.
3393  ///
3394  /// \param ObjectType The type of the object, if we're parsing
3395  /// nested-name-specifier in a member access expression.
3396  ///
3397  /// \param EnteringContext Whether we're entering the context nominated by
3398  /// this nested-name-specifier.
3399  ///
3400  /// \param SS The nested-name-specifier, which is both an input
3401  /// parameter (the nested-name-specifier before this type) and an
3402  /// output parameter (containing the full nested-name-specifier,
3403  /// including this new type).
3404  ///
3405  /// \returns true if an error occurred, false otherwise.
3406  bool ActOnCXXNestedNameSpecifier(Scope *S,
3407                                   IdentifierInfo &Identifier,
3408                                   SourceLocation IdentifierLoc,
3409                                   SourceLocation CCLoc,
3410                                   ParsedType ObjectType,
3411                                   bool EnteringContext,
3412                                   CXXScopeSpec &SS);
3413
3414  bool ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
3415                                           const DeclSpec &DS,
3416                                           SourceLocation ColonColonLoc);
3417
3418  bool IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
3419                                 IdentifierInfo &Identifier,
3420                                 SourceLocation IdentifierLoc,
3421                                 SourceLocation ColonLoc,
3422                                 ParsedType ObjectType,
3423                                 bool EnteringContext);
3424
3425  /// \brief The parser has parsed a nested-name-specifier
3426  /// 'template[opt] template-name < template-args >::'.
3427  ///
3428  /// \param S The scope in which this nested-name-specifier occurs.
3429  ///
3430  /// \param SS The nested-name-specifier, which is both an input
3431  /// parameter (the nested-name-specifier before this type) and an
3432  /// output parameter (containing the full nested-name-specifier,
3433  /// including this new type).
3434  ///
3435  /// \param TemplateKWLoc the location of the 'template' keyword, if any.
3436  /// \param TemplateName The template name.
3437  /// \param TemplateNameLoc The location of the template name.
3438  /// \param LAngleLoc The location of the opening angle bracket  ('<').
3439  /// \param TemplateArgs The template arguments.
3440  /// \param RAngleLoc The location of the closing angle bracket  ('>').
3441  /// \param CCLoc The location of the '::'.
3442  ///
3443  /// \param EnteringContext Whether we're entering the context of the
3444  /// nested-name-specifier.
3445  ///
3446  ///
3447  /// \returns true if an error occurred, false otherwise.
3448  bool ActOnCXXNestedNameSpecifier(Scope *S,
3449                                   CXXScopeSpec &SS,
3450                                   SourceLocation TemplateKWLoc,
3451                                   TemplateTy Template,
3452                                   SourceLocation TemplateNameLoc,
3453                                   SourceLocation LAngleLoc,
3454                                   ASTTemplateArgsPtr TemplateArgs,
3455                                   SourceLocation RAngleLoc,
3456                                   SourceLocation CCLoc,
3457                                   bool EnteringContext);
3458
3459  /// \brief Given a C++ nested-name-specifier, produce an annotation value
3460  /// that the parser can use later to reconstruct the given
3461  /// nested-name-specifier.
3462  ///
3463  /// \param SS A nested-name-specifier.
3464  ///
3465  /// \returns A pointer containing all of the information in the
3466  /// nested-name-specifier \p SS.
3467  void *SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS);
3468
3469  /// \brief Given an annotation pointer for a nested-name-specifier, restore
3470  /// the nested-name-specifier structure.
3471  ///
3472  /// \param Annotation The annotation pointer, produced by
3473  /// \c SaveNestedNameSpecifierAnnotation().
3474  ///
3475  /// \param AnnotationRange The source range corresponding to the annotation.
3476  ///
3477  /// \param SS The nested-name-specifier that will be updated with the contents
3478  /// of the annotation pointer.
3479  void RestoreNestedNameSpecifierAnnotation(void *Annotation,
3480                                            SourceRange AnnotationRange,
3481                                            CXXScopeSpec &SS);
3482
3483  bool ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS);
3484
3485  /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
3486  /// scope or nested-name-specifier) is parsed, part of a declarator-id.
3487  /// After this method is called, according to [C++ 3.4.3p3], names should be
3488  /// looked up in the declarator-id's scope, until the declarator is parsed and
3489  /// ActOnCXXExitDeclaratorScope is called.
3490  /// The 'SS' should be a non-empty valid CXXScopeSpec.
3491  bool ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS);
3492
3493  /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
3494  /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
3495  /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
3496  /// Used to indicate that names should revert to being looked up in the
3497  /// defining scope.
3498  void ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS);
3499
3500  /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
3501  /// initializer for the declaration 'Dcl'.
3502  /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
3503  /// static data member of class X, names should be looked up in the scope of
3504  /// class X.
3505  void ActOnCXXEnterDeclInitializer(Scope *S, Decl *Dcl);
3506
3507  /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
3508  /// initializer for the declaration 'Dcl'.
3509  void ActOnCXXExitDeclInitializer(Scope *S, Decl *Dcl);
3510
3511  /// \brief Create a new lambda closure type.
3512  CXXRecordDecl *createLambdaClosureType(SourceRange IntroducerRange);
3513
3514  /// \brief Start the definition of a lambda expression.
3515  CXXMethodDecl *startLambdaDefinition(CXXRecordDecl *Class,
3516                                       SourceRange IntroducerRange,
3517                                       TypeSourceInfo *MethodType,
3518                                       SourceLocation EndLoc);
3519
3520  /// \brief Introduce the scope for a lambda expression.
3521  sema::LambdaScopeInfo *enterLambdaScope(CXXMethodDecl *CallOperator,
3522                                          SourceRange IntroducerRange,
3523                                          LambdaCaptureDefault CaptureDefault,
3524                                          bool ExplicitParams,
3525                                          bool ExplicitResultType,
3526                                          bool Mutable);
3527
3528  /// \brief Note that we have finished the explicit captures for the
3529  /// given lambda.
3530  void finishLambdaExplicitCaptures(sema::LambdaScopeInfo *LSI);
3531
3532  /// \brief Introduce the lambda parameters into scope.
3533  void addLambdaParameters(CXXMethodDecl *CallOperator, Scope *CurScope,
3534                           llvm::ArrayRef<ParmVarDecl *> Params);
3535
3536  /// ActOnStartOfLambdaDefinition - This is called just before we start
3537  /// parsing the body of a lambda; it analyzes the explicit captures and
3538  /// arguments, and sets up various data-structures for the body of the
3539  /// lambda.
3540  void ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
3541                                    Declarator &ParamInfo, Scope *CurScope);
3542
3543  /// ActOnLambdaError - If there is an error parsing a lambda, this callback
3544  /// is invoked to pop the information about the lambda.
3545  void ActOnLambdaError(SourceLocation StartLoc, Scope *CurScope,
3546                        bool IsInstantiation = false);
3547
3548  /// ActOnLambdaExpr - This is called when the body of a lambda expression
3549  /// was successfully completed.
3550  ExprResult ActOnLambdaExpr(SourceLocation StartLoc, Stmt *Body,
3551                             Scope *CurScope, bool IsInstantiation = false);
3552
3553  // ParseObjCStringLiteral - Parse Objective-C string literals.
3554  ExprResult ParseObjCStringLiteral(SourceLocation *AtLocs,
3555                                    Expr **Strings,
3556                                    unsigned NumStrings);
3557
3558  ExprResult BuildObjCEncodeExpression(SourceLocation AtLoc,
3559                                  TypeSourceInfo *EncodedTypeInfo,
3560                                  SourceLocation RParenLoc);
3561  ExprResult BuildCXXMemberCallExpr(Expr *Exp, NamedDecl *FoundDecl,
3562                                    CXXMethodDecl *Method,
3563                                    bool HadMultipleCandidates);
3564
3565  ExprResult ParseObjCEncodeExpression(SourceLocation AtLoc,
3566                                       SourceLocation EncodeLoc,
3567                                       SourceLocation LParenLoc,
3568                                       ParsedType Ty,
3569                                       SourceLocation RParenLoc);
3570
3571  // ParseObjCSelectorExpression - Build selector expression for @selector
3572  ExprResult ParseObjCSelectorExpression(Selector Sel,
3573                                         SourceLocation AtLoc,
3574                                         SourceLocation SelLoc,
3575                                         SourceLocation LParenLoc,
3576                                         SourceLocation RParenLoc);
3577
3578  // ParseObjCProtocolExpression - Build protocol expression for @protocol
3579  ExprResult ParseObjCProtocolExpression(IdentifierInfo * ProtocolName,
3580                                         SourceLocation AtLoc,
3581                                         SourceLocation ProtoLoc,
3582                                         SourceLocation LParenLoc,
3583                                         SourceLocation RParenLoc);
3584
3585  //===--------------------------------------------------------------------===//
3586  // C++ Declarations
3587  //
3588  Decl *ActOnStartLinkageSpecification(Scope *S,
3589                                       SourceLocation ExternLoc,
3590                                       SourceLocation LangLoc,
3591                                       StringRef Lang,
3592                                       SourceLocation LBraceLoc);
3593  Decl *ActOnFinishLinkageSpecification(Scope *S,
3594                                        Decl *LinkageSpec,
3595                                        SourceLocation RBraceLoc);
3596
3597
3598  //===--------------------------------------------------------------------===//
3599  // C++ Classes
3600  //
3601  bool isCurrentClassName(const IdentifierInfo &II, Scope *S,
3602                          const CXXScopeSpec *SS = 0);
3603
3604  bool ActOnAccessSpecifier(AccessSpecifier Access,
3605                            SourceLocation ASLoc,
3606                            SourceLocation ColonLoc,
3607                            AttributeList *Attrs = 0);
3608
3609  Decl *ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS,
3610                                 Declarator &D,
3611                                 MultiTemplateParamsArg TemplateParameterLists,
3612                                 Expr *BitfieldWidth, const VirtSpecifiers &VS,
3613                                 bool HasDeferredInit);
3614  void ActOnCXXInClassMemberInitializer(Decl *VarDecl, SourceLocation EqualLoc,
3615                                        Expr *Init);
3616
3617  MemInitResult ActOnMemInitializer(Decl *ConstructorD,
3618                                    Scope *S,
3619                                    CXXScopeSpec &SS,
3620                                    IdentifierInfo *MemberOrBase,
3621                                    ParsedType TemplateTypeTy,
3622                                    const DeclSpec &DS,
3623                                    SourceLocation IdLoc,
3624                                    SourceLocation LParenLoc,
3625                                    Expr **Args, unsigned NumArgs,
3626                                    SourceLocation RParenLoc,
3627                                    SourceLocation EllipsisLoc);
3628
3629  MemInitResult ActOnMemInitializer(Decl *ConstructorD,
3630                                    Scope *S,
3631                                    CXXScopeSpec &SS,
3632                                    IdentifierInfo *MemberOrBase,
3633                                    ParsedType TemplateTypeTy,
3634                                    const DeclSpec &DS,
3635                                    SourceLocation IdLoc,
3636                                    Expr *InitList,
3637                                    SourceLocation EllipsisLoc);
3638
3639  MemInitResult BuildMemInitializer(Decl *ConstructorD,
3640                                    Scope *S,
3641                                    CXXScopeSpec &SS,
3642                                    IdentifierInfo *MemberOrBase,
3643                                    ParsedType TemplateTypeTy,
3644                                    const DeclSpec &DS,
3645                                    SourceLocation IdLoc,
3646                                    Expr *Init,
3647                                    SourceLocation EllipsisLoc);
3648
3649  MemInitResult BuildMemberInitializer(ValueDecl *Member,
3650                                       Expr *Init,
3651                                       SourceLocation IdLoc);
3652
3653  MemInitResult BuildBaseInitializer(QualType BaseType,
3654                                     TypeSourceInfo *BaseTInfo,
3655                                     Expr *Init,
3656                                     CXXRecordDecl *ClassDecl,
3657                                     SourceLocation EllipsisLoc);
3658
3659  MemInitResult BuildDelegatingInitializer(TypeSourceInfo *TInfo,
3660                                           Expr *Init,
3661                                           CXXRecordDecl *ClassDecl);
3662
3663  bool SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3664                                CXXCtorInitializer *Initializer);
3665
3666  bool SetCtorInitializers(CXXConstructorDecl *Constructor,
3667                           CXXCtorInitializer **Initializers,
3668                           unsigned NumInitializers, bool AnyErrors);
3669
3670  void SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation);
3671
3672
3673  /// MarkBaseAndMemberDestructorsReferenced - Given a record decl,
3674  /// mark all the non-trivial destructors of its members and bases as
3675  /// referenced.
3676  void MarkBaseAndMemberDestructorsReferenced(SourceLocation Loc,
3677                                              CXXRecordDecl *Record);
3678
3679  /// \brief The list of classes whose vtables have been used within
3680  /// this translation unit, and the source locations at which the
3681  /// first use occurred.
3682  typedef std::pair<CXXRecordDecl*, SourceLocation> VTableUse;
3683
3684  /// \brief The list of vtables that are required but have not yet been
3685  /// materialized.
3686  SmallVector<VTableUse, 16> VTableUses;
3687
3688  /// \brief The set of classes whose vtables have been used within
3689  /// this translation unit, and a bit that will be true if the vtable is
3690  /// required to be emitted (otherwise, it should be emitted only if needed
3691  /// by code generation).
3692  llvm::DenseMap<CXXRecordDecl *, bool> VTablesUsed;
3693
3694  /// \brief Load any externally-stored vtable uses.
3695  void LoadExternalVTableUses();
3696
3697  typedef LazyVector<CXXRecordDecl *, ExternalSemaSource,
3698                     &ExternalSemaSource::ReadDynamicClasses, 2, 2>
3699    DynamicClassesType;
3700
3701  /// \brief A list of all of the dynamic classes in this translation
3702  /// unit.
3703  DynamicClassesType DynamicClasses;
3704
3705  /// \brief Note that the vtable for the given class was used at the
3706  /// given location.
3707  void MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
3708                      bool DefinitionRequired = false);
3709
3710  /// MarkVirtualMembersReferenced - Will mark all members of the given
3711  /// CXXRecordDecl referenced.
3712  void MarkVirtualMembersReferenced(SourceLocation Loc,
3713                                    const CXXRecordDecl *RD);
3714
3715  /// \brief Define all of the vtables that have been used in this
3716  /// translation unit and reference any virtual members used by those
3717  /// vtables.
3718  ///
3719  /// \returns true if any work was done, false otherwise.
3720  bool DefineUsedVTables();
3721
3722  void AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl);
3723
3724  void ActOnMemInitializers(Decl *ConstructorDecl,
3725                            SourceLocation ColonLoc,
3726                            CXXCtorInitializer **MemInits,
3727                            unsigned NumMemInits,
3728                            bool AnyErrors);
3729
3730  void CheckCompletedCXXClass(CXXRecordDecl *Record);
3731  void ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
3732                                         Decl *TagDecl,
3733                                         SourceLocation LBrac,
3734                                         SourceLocation RBrac,
3735                                         AttributeList *AttrList);
3736
3737  void ActOnReenterTemplateScope(Scope *S, Decl *Template);
3738  void ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D);
3739  void ActOnStartDelayedMemberDeclarations(Scope *S, Decl *Record);
3740  void ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *Method);
3741  void ActOnDelayedCXXMethodParameter(Scope *S, Decl *Param);
3742  void ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *Record);
3743  void ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *Method);
3744  void ActOnFinishDelayedMemberInitializers(Decl *Record);
3745  void MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag = true);
3746  bool IsInsideALocalClassWithinATemplateFunction();
3747
3748  Decl *ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
3749                                     Expr *AssertExpr,
3750                                     Expr *AssertMessageExpr,
3751                                     SourceLocation RParenLoc);
3752
3753  FriendDecl *CheckFriendTypeDecl(SourceLocation Loc,
3754                                  SourceLocation FriendLoc,
3755                                  TypeSourceInfo *TSInfo);
3756  Decl *ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
3757                            MultiTemplateParamsArg TemplateParams);
3758  Decl *ActOnFriendFunctionDecl(Scope *S, Declarator &D,
3759                                MultiTemplateParamsArg TemplateParams);
3760
3761  QualType CheckConstructorDeclarator(Declarator &D, QualType R,
3762                                      StorageClass& SC);
3763  void CheckConstructor(CXXConstructorDecl *Constructor);
3764  QualType CheckDestructorDeclarator(Declarator &D, QualType R,
3765                                     StorageClass& SC);
3766  bool CheckDestructor(CXXDestructorDecl *Destructor);
3767  void CheckConversionDeclarator(Declarator &D, QualType &R,
3768                                 StorageClass& SC);
3769  Decl *ActOnConversionDeclarator(CXXConversionDecl *Conversion);
3770
3771  void CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record);
3772  void CheckExplicitlyDefaultedDefaultConstructor(CXXConstructorDecl *Ctor);
3773  void CheckExplicitlyDefaultedCopyConstructor(CXXConstructorDecl *Ctor);
3774  void CheckExplicitlyDefaultedCopyAssignment(CXXMethodDecl *Method);
3775  void CheckExplicitlyDefaultedMoveConstructor(CXXConstructorDecl *Ctor);
3776  void CheckExplicitlyDefaultedMoveAssignment(CXXMethodDecl *Method);
3777  void CheckExplicitlyDefaultedDestructor(CXXDestructorDecl *Dtor);
3778
3779  //===--------------------------------------------------------------------===//
3780  // C++ Derived Classes
3781  //
3782
3783  /// ActOnBaseSpecifier - Parsed a base specifier
3784  CXXBaseSpecifier *CheckBaseSpecifier(CXXRecordDecl *Class,
3785                                       SourceRange SpecifierRange,
3786                                       bool Virtual, AccessSpecifier Access,
3787                                       TypeSourceInfo *TInfo,
3788                                       SourceLocation EllipsisLoc);
3789
3790  BaseResult ActOnBaseSpecifier(Decl *classdecl,
3791                                SourceRange SpecifierRange,
3792                                bool Virtual, AccessSpecifier Access,
3793                                ParsedType basetype,
3794                                SourceLocation BaseLoc,
3795                                SourceLocation EllipsisLoc);
3796
3797  bool AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
3798                            unsigned NumBases);
3799  void ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
3800                           unsigned NumBases);
3801
3802  bool IsDerivedFrom(QualType Derived, QualType Base);
3803  bool IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths);
3804
3805  // FIXME: I don't like this name.
3806  void BuildBasePathArray(const CXXBasePaths &Paths, CXXCastPath &BasePath);
3807
3808  bool BasePathInvolvesVirtualBase(const CXXCastPath &BasePath);
3809
3810  bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3811                                    SourceLocation Loc, SourceRange Range,
3812                                    CXXCastPath *BasePath = 0,
3813                                    bool IgnoreAccess = false);
3814  bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3815                                    unsigned InaccessibleBaseID,
3816                                    unsigned AmbigiousBaseConvID,
3817                                    SourceLocation Loc, SourceRange Range,
3818                                    DeclarationName Name,
3819                                    CXXCastPath *BasePath);
3820
3821  std::string getAmbiguousPathsDisplayString(CXXBasePaths &Paths);
3822
3823  /// CheckOverridingFunctionReturnType - Checks whether the return types are
3824  /// covariant, according to C++ [class.virtual]p5.
3825  bool CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
3826                                         const CXXMethodDecl *Old);
3827
3828  /// CheckOverridingFunctionExceptionSpec - Checks whether the exception
3829  /// spec is a subset of base spec.
3830  bool CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New,
3831                                            const CXXMethodDecl *Old);
3832
3833  bool CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange);
3834
3835  /// CheckOverrideControl - Check C++0x override control semantics.
3836  void CheckOverrideControl(const Decl *D);
3837
3838  /// CheckForFunctionMarkedFinal - Checks whether a virtual member function
3839  /// overrides a virtual member function marked 'final', according to
3840  /// C++0x [class.virtual]p3.
3841  bool CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
3842                                              const CXXMethodDecl *Old);
3843
3844
3845  //===--------------------------------------------------------------------===//
3846  // C++ Access Control
3847  //
3848
3849  enum AccessResult {
3850    AR_accessible,
3851    AR_inaccessible,
3852    AR_dependent,
3853    AR_delayed
3854  };
3855
3856  bool SetMemberAccessSpecifier(NamedDecl *MemberDecl,
3857                                NamedDecl *PrevMemberDecl,
3858                                AccessSpecifier LexicalAS);
3859
3860  AccessResult CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E,
3861                                           DeclAccessPair FoundDecl);
3862  AccessResult CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E,
3863                                           DeclAccessPair FoundDecl);
3864  AccessResult CheckAllocationAccess(SourceLocation OperatorLoc,
3865                                     SourceRange PlacementRange,
3866                                     CXXRecordDecl *NamingClass,
3867                                     DeclAccessPair FoundDecl,
3868                                     bool Diagnose = true);
3869  AccessResult CheckConstructorAccess(SourceLocation Loc,
3870                                      CXXConstructorDecl *D,
3871                                      const InitializedEntity &Entity,
3872                                      AccessSpecifier Access,
3873                                      bool IsCopyBindingRefToTemp = false);
3874  AccessResult CheckConstructorAccess(SourceLocation Loc,
3875                                      CXXConstructorDecl *D,
3876                                      AccessSpecifier Access,
3877                                      PartialDiagnostic PD);
3878  AccessResult CheckDestructorAccess(SourceLocation Loc,
3879                                     CXXDestructorDecl *Dtor,
3880                                     const PartialDiagnostic &PDiag);
3881  AccessResult CheckDirectMemberAccess(SourceLocation Loc,
3882                                       NamedDecl *D,
3883                                       const PartialDiagnostic &PDiag);
3884  AccessResult CheckMemberOperatorAccess(SourceLocation Loc,
3885                                         Expr *ObjectExpr,
3886                                         Expr *ArgExpr,
3887                                         DeclAccessPair FoundDecl);
3888  AccessResult CheckAddressOfMemberAccess(Expr *OvlExpr,
3889                                          DeclAccessPair FoundDecl);
3890  AccessResult CheckBaseClassAccess(SourceLocation AccessLoc,
3891                                    QualType Base, QualType Derived,
3892                                    const CXXBasePath &Path,
3893                                    unsigned DiagID,
3894                                    bool ForceCheck = false,
3895                                    bool ForceUnprivileged = false);
3896  void CheckLookupAccess(const LookupResult &R);
3897  bool IsSimplyAccessible(NamedDecl *decl, DeclContext *Ctx);
3898
3899  void HandleDependentAccessCheck(const DependentDiagnostic &DD,
3900                         const MultiLevelTemplateArgumentList &TemplateArgs);
3901  void PerformDependentDiagnostics(const DeclContext *Pattern,
3902                        const MultiLevelTemplateArgumentList &TemplateArgs);
3903
3904  void HandleDelayedAccessCheck(sema::DelayedDiagnostic &DD, Decl *Ctx);
3905
3906  /// A flag to suppress access checking.
3907  bool SuppressAccessChecking;
3908
3909  /// \brief When true, access checking violations are treated as SFINAE
3910  /// failures rather than hard errors.
3911  bool AccessCheckingSFINAE;
3912
3913  void ActOnStartSuppressingAccessChecks();
3914  void ActOnStopSuppressingAccessChecks();
3915
3916  enum AbstractDiagSelID {
3917    AbstractNone = -1,
3918    AbstractReturnType,
3919    AbstractParamType,
3920    AbstractVariableType,
3921    AbstractFieldType,
3922    AbstractArrayType
3923  };
3924
3925  bool RequireNonAbstractType(SourceLocation Loc, QualType T,
3926                              const PartialDiagnostic &PD);
3927  void DiagnoseAbstractType(const CXXRecordDecl *RD);
3928
3929  bool RequireNonAbstractType(SourceLocation Loc, QualType T, unsigned DiagID,
3930                              AbstractDiagSelID SelID = AbstractNone);
3931
3932  //===--------------------------------------------------------------------===//
3933  // C++ Overloaded Operators [C++ 13.5]
3934  //
3935
3936  bool CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl);
3937
3938  bool CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl);
3939
3940  //===--------------------------------------------------------------------===//
3941  // C++ Templates [C++ 14]
3942  //
3943  void FilterAcceptableTemplateNames(LookupResult &R);
3944  bool hasAnyAcceptableTemplateNames(LookupResult &R);
3945
3946  void LookupTemplateName(LookupResult &R, Scope *S, CXXScopeSpec &SS,
3947                          QualType ObjectType, bool EnteringContext,
3948                          bool &MemberOfUnknownSpecialization);
3949
3950  TemplateNameKind isTemplateName(Scope *S,
3951                                  CXXScopeSpec &SS,
3952                                  bool hasTemplateKeyword,
3953                                  UnqualifiedId &Name,
3954                                  ParsedType ObjectType,
3955                                  bool EnteringContext,
3956                                  TemplateTy &Template,
3957                                  bool &MemberOfUnknownSpecialization);
3958
3959  bool DiagnoseUnknownTemplateName(const IdentifierInfo &II,
3960                                   SourceLocation IILoc,
3961                                   Scope *S,
3962                                   const CXXScopeSpec *SS,
3963                                   TemplateTy &SuggestedTemplate,
3964                                   TemplateNameKind &SuggestedKind);
3965
3966  void DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl);
3967  TemplateDecl *AdjustDeclIfTemplate(Decl *&Decl);
3968
3969  Decl *ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,
3970                           SourceLocation EllipsisLoc,
3971                           SourceLocation KeyLoc,
3972                           IdentifierInfo *ParamName,
3973                           SourceLocation ParamNameLoc,
3974                           unsigned Depth, unsigned Position,
3975                           SourceLocation EqualLoc,
3976                           ParsedType DefaultArg);
3977
3978  QualType CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc);
3979  Decl *ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
3980                                      unsigned Depth,
3981                                      unsigned Position,
3982                                      SourceLocation EqualLoc,
3983                                      Expr *DefaultArg);
3984  Decl *ActOnTemplateTemplateParameter(Scope *S,
3985                                       SourceLocation TmpLoc,
3986                                       TemplateParameterList *Params,
3987                                       SourceLocation EllipsisLoc,
3988                                       IdentifierInfo *ParamName,
3989                                       SourceLocation ParamNameLoc,
3990                                       unsigned Depth,
3991                                       unsigned Position,
3992                                       SourceLocation EqualLoc,
3993                                       ParsedTemplateArgument DefaultArg);
3994
3995  TemplateParameterList *
3996  ActOnTemplateParameterList(unsigned Depth,
3997                             SourceLocation ExportLoc,
3998                             SourceLocation TemplateLoc,
3999                             SourceLocation LAngleLoc,
4000                             Decl **Params, unsigned NumParams,
4001                             SourceLocation RAngleLoc);
4002
4003  /// \brief The context in which we are checking a template parameter
4004  /// list.
4005  enum TemplateParamListContext {
4006    TPC_ClassTemplate,
4007    TPC_FunctionTemplate,
4008    TPC_ClassTemplateMember,
4009    TPC_FriendFunctionTemplate,
4010    TPC_FriendFunctionTemplateDefinition,
4011    TPC_TypeAliasTemplate
4012  };
4013
4014  bool CheckTemplateParameterList(TemplateParameterList *NewParams,
4015                                  TemplateParameterList *OldParams,
4016                                  TemplateParamListContext TPC);
4017  TemplateParameterList *
4018  MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
4019                                          SourceLocation DeclLoc,
4020                                          const CXXScopeSpec &SS,
4021                                          TemplateParameterList **ParamLists,
4022                                          unsigned NumParamLists,
4023                                          bool IsFriend,
4024                                          bool &IsExplicitSpecialization,
4025                                          bool &Invalid);
4026
4027  DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
4028                                SourceLocation KWLoc, CXXScopeSpec &SS,
4029                                IdentifierInfo *Name, SourceLocation NameLoc,
4030                                AttributeList *Attr,
4031                                TemplateParameterList *TemplateParams,
4032                                AccessSpecifier AS,
4033                                SourceLocation ModulePrivateLoc,
4034                                unsigned NumOuterTemplateParamLists,
4035                            TemplateParameterList **OuterTemplateParamLists);
4036
4037  void translateTemplateArguments(const ASTTemplateArgsPtr &In,
4038                                  TemplateArgumentListInfo &Out);
4039
4040  void NoteAllFoundTemplates(TemplateName Name);
4041
4042  QualType CheckTemplateIdType(TemplateName Template,
4043                               SourceLocation TemplateLoc,
4044                              TemplateArgumentListInfo &TemplateArgs);
4045
4046  TypeResult
4047  ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
4048                      TemplateTy Template, SourceLocation TemplateLoc,
4049                      SourceLocation LAngleLoc,
4050                      ASTTemplateArgsPtr TemplateArgs,
4051                      SourceLocation RAngleLoc,
4052                      bool IsCtorOrDtorName = false);
4053
4054  /// \brief Parsed an elaborated-type-specifier that refers to a template-id,
4055  /// such as \c class T::template apply<U>.
4056  ///
4057  /// \param TUK
4058  TypeResult ActOnTagTemplateIdType(TagUseKind TUK,
4059                                    TypeSpecifierType TagSpec,
4060                                    SourceLocation TagLoc,
4061                                    CXXScopeSpec &SS,
4062                                    SourceLocation TemplateKWLoc,
4063                                    TemplateTy TemplateD,
4064                                    SourceLocation TemplateLoc,
4065                                    SourceLocation LAngleLoc,
4066                                    ASTTemplateArgsPtr TemplateArgsIn,
4067                                    SourceLocation RAngleLoc);
4068
4069
4070  ExprResult BuildTemplateIdExpr(const CXXScopeSpec &SS,
4071                                 SourceLocation TemplateKWLoc,
4072                                 LookupResult &R,
4073                                 bool RequiresADL,
4074                               const TemplateArgumentListInfo *TemplateArgs);
4075
4076  ExprResult BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
4077                                          SourceLocation TemplateKWLoc,
4078                               const DeclarationNameInfo &NameInfo,
4079                               const TemplateArgumentListInfo *TemplateArgs);
4080
4081  TemplateNameKind ActOnDependentTemplateName(Scope *S,
4082                                              CXXScopeSpec &SS,
4083                                              SourceLocation TemplateKWLoc,
4084                                              UnqualifiedId &Name,
4085                                              ParsedType ObjectType,
4086                                              bool EnteringContext,
4087                                              TemplateTy &Template);
4088
4089  DeclResult
4090  ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK,
4091                                   SourceLocation KWLoc,
4092                                   SourceLocation ModulePrivateLoc,
4093                                   CXXScopeSpec &SS,
4094                                   TemplateTy Template,
4095                                   SourceLocation TemplateNameLoc,
4096                                   SourceLocation LAngleLoc,
4097                                   ASTTemplateArgsPtr TemplateArgs,
4098                                   SourceLocation RAngleLoc,
4099                                   AttributeList *Attr,
4100                                 MultiTemplateParamsArg TemplateParameterLists);
4101
4102  Decl *ActOnTemplateDeclarator(Scope *S,
4103                                MultiTemplateParamsArg TemplateParameterLists,
4104                                Declarator &D);
4105
4106  Decl *ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
4107                                  MultiTemplateParamsArg TemplateParameterLists,
4108                                        Declarator &D);
4109
4110  bool
4111  CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
4112                                         TemplateSpecializationKind NewTSK,
4113                                         NamedDecl *PrevDecl,
4114                                         TemplateSpecializationKind PrevTSK,
4115                                         SourceLocation PrevPtOfInstantiation,
4116                                         bool &SuppressNew);
4117
4118  bool CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
4119                    const TemplateArgumentListInfo &ExplicitTemplateArgs,
4120                                                    LookupResult &Previous);
4121
4122  bool CheckFunctionTemplateSpecialization(FunctionDecl *FD,
4123                         TemplateArgumentListInfo *ExplicitTemplateArgs,
4124                                           LookupResult &Previous);
4125  bool CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous);
4126
4127  DeclResult
4128  ActOnExplicitInstantiation(Scope *S,
4129                             SourceLocation ExternLoc,
4130                             SourceLocation TemplateLoc,
4131                             unsigned TagSpec,
4132                             SourceLocation KWLoc,
4133                             const CXXScopeSpec &SS,
4134                             TemplateTy Template,
4135                             SourceLocation TemplateNameLoc,
4136                             SourceLocation LAngleLoc,
4137                             ASTTemplateArgsPtr TemplateArgs,
4138                             SourceLocation RAngleLoc,
4139                             AttributeList *Attr);
4140
4141  DeclResult
4142  ActOnExplicitInstantiation(Scope *S,
4143                             SourceLocation ExternLoc,
4144                             SourceLocation TemplateLoc,
4145                             unsigned TagSpec,
4146                             SourceLocation KWLoc,
4147                             CXXScopeSpec &SS,
4148                             IdentifierInfo *Name,
4149                             SourceLocation NameLoc,
4150                             AttributeList *Attr);
4151
4152  DeclResult ActOnExplicitInstantiation(Scope *S,
4153                                        SourceLocation ExternLoc,
4154                                        SourceLocation TemplateLoc,
4155                                        Declarator &D);
4156
4157  TemplateArgumentLoc
4158  SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
4159                                          SourceLocation TemplateLoc,
4160                                          SourceLocation RAngleLoc,
4161                                          Decl *Param,
4162                          SmallVectorImpl<TemplateArgument> &Converted);
4163
4164  /// \brief Specifies the context in which a particular template
4165  /// argument is being checked.
4166  enum CheckTemplateArgumentKind {
4167    /// \brief The template argument was specified in the code or was
4168    /// instantiated with some deduced template arguments.
4169    CTAK_Specified,
4170
4171    /// \brief The template argument was deduced via template argument
4172    /// deduction.
4173    CTAK_Deduced,
4174
4175    /// \brief The template argument was deduced from an array bound
4176    /// via template argument deduction.
4177    CTAK_DeducedFromArrayBound
4178  };
4179
4180  bool CheckTemplateArgument(NamedDecl *Param,
4181                             const TemplateArgumentLoc &Arg,
4182                             NamedDecl *Template,
4183                             SourceLocation TemplateLoc,
4184                             SourceLocation RAngleLoc,
4185                             unsigned ArgumentPackIndex,
4186                           SmallVectorImpl<TemplateArgument> &Converted,
4187                             CheckTemplateArgumentKind CTAK = CTAK_Specified);
4188
4189  /// \brief Check that the given template arguments can be be provided to
4190  /// the given template, converting the arguments along the way.
4191  ///
4192  /// \param Template The template to which the template arguments are being
4193  /// provided.
4194  ///
4195  /// \param TemplateLoc The location of the template name in the source.
4196  ///
4197  /// \param TemplateArgs The list of template arguments. If the template is
4198  /// a template template parameter, this function may extend the set of
4199  /// template arguments to also include substituted, defaulted template
4200  /// arguments.
4201  ///
4202  /// \param PartialTemplateArgs True if the list of template arguments is
4203  /// intentionally partial, e.g., because we're checking just the initial
4204  /// set of template arguments.
4205  ///
4206  /// \param Converted Will receive the converted, canonicalized template
4207  /// arguments.
4208  ///
4209  ///
4210  /// \param ExpansionIntoFixedList If non-NULL, will be set true to indicate
4211  /// when the template arguments contain a pack expansion that is being
4212  /// expanded into a fixed parameter list.
4213  ///
4214  /// \returns True if an error occurred, false otherwise.
4215  bool CheckTemplateArgumentList(TemplateDecl *Template,
4216                                 SourceLocation TemplateLoc,
4217                                 TemplateArgumentListInfo &TemplateArgs,
4218                                 bool PartialTemplateArgs,
4219                           SmallVectorImpl<TemplateArgument> &Converted,
4220                                 bool *ExpansionIntoFixedList = 0);
4221
4222  bool CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
4223                                 const TemplateArgumentLoc &Arg,
4224                           SmallVectorImpl<TemplateArgument> &Converted);
4225
4226  bool CheckTemplateArgument(TemplateTypeParmDecl *Param,
4227                             TypeSourceInfo *Arg);
4228  bool CheckTemplateArgumentPointerToMember(Expr *Arg,
4229                                            TemplateArgument &Converted);
4230  ExprResult CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
4231                                   QualType InstantiatedParamType, Expr *Arg,
4232                                   TemplateArgument &Converted,
4233                               CheckTemplateArgumentKind CTAK = CTAK_Specified);
4234  bool CheckTemplateArgument(TemplateTemplateParmDecl *Param,
4235                             const TemplateArgumentLoc &Arg);
4236
4237  ExprResult
4238  BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
4239                                          QualType ParamType,
4240                                          SourceLocation Loc);
4241  ExprResult
4242  BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4243                                              SourceLocation Loc);
4244
4245  /// \brief Enumeration describing how template parameter lists are compared
4246  /// for equality.
4247  enum TemplateParameterListEqualKind {
4248    /// \brief We are matching the template parameter lists of two templates
4249    /// that might be redeclarations.
4250    ///
4251    /// \code
4252    /// template<typename T> struct X;
4253    /// template<typename T> struct X;
4254    /// \endcode
4255    TPL_TemplateMatch,
4256
4257    /// \brief We are matching the template parameter lists of two template
4258    /// template parameters as part of matching the template parameter lists
4259    /// of two templates that might be redeclarations.
4260    ///
4261    /// \code
4262    /// template<template<int I> class TT> struct X;
4263    /// template<template<int Value> class Other> struct X;
4264    /// \endcode
4265    TPL_TemplateTemplateParmMatch,
4266
4267    /// \brief We are matching the template parameter lists of a template
4268    /// template argument against the template parameter lists of a template
4269    /// template parameter.
4270    ///
4271    /// \code
4272    /// template<template<int Value> class Metafun> struct X;
4273    /// template<int Value> struct integer_c;
4274    /// X<integer_c> xic;
4275    /// \endcode
4276    TPL_TemplateTemplateArgumentMatch
4277  };
4278
4279  bool TemplateParameterListsAreEqual(TemplateParameterList *New,
4280                                      TemplateParameterList *Old,
4281                                      bool Complain,
4282                                      TemplateParameterListEqualKind Kind,
4283                                      SourceLocation TemplateArgLoc
4284                                        = SourceLocation());
4285
4286  bool CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams);
4287
4288  /// \brief Called when the parser has parsed a C++ typename
4289  /// specifier, e.g., "typename T::type".
4290  ///
4291  /// \param S The scope in which this typename type occurs.
4292  /// \param TypenameLoc the location of the 'typename' keyword
4293  /// \param SS the nested-name-specifier following the typename (e.g., 'T::').
4294  /// \param II the identifier we're retrieving (e.g., 'type' in the example).
4295  /// \param IdLoc the location of the identifier.
4296  TypeResult
4297  ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
4298                    const CXXScopeSpec &SS, const IdentifierInfo &II,
4299                    SourceLocation IdLoc);
4300
4301  /// \brief Called when the parser has parsed a C++ typename
4302  /// specifier that ends in a template-id, e.g.,
4303  /// "typename MetaFun::template apply<T1, T2>".
4304  ///
4305  /// \param S The scope in which this typename type occurs.
4306  /// \param TypenameLoc the location of the 'typename' keyword
4307  /// \param SS the nested-name-specifier following the typename (e.g., 'T::').
4308  /// \param TemplateLoc the location of the 'template' keyword, if any.
4309  /// \param TemplateName The template name.
4310  /// \param TemplateNameLoc The location of the template name.
4311  /// \param LAngleLoc The location of the opening angle bracket  ('<').
4312  /// \param TemplateArgs The template arguments.
4313  /// \param RAngleLoc The location of the closing angle bracket  ('>').
4314  TypeResult
4315  ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
4316                    const CXXScopeSpec &SS,
4317                    SourceLocation TemplateLoc,
4318                    TemplateTy Template,
4319                    SourceLocation TemplateNameLoc,
4320                    SourceLocation LAngleLoc,
4321                    ASTTemplateArgsPtr TemplateArgs,
4322                    SourceLocation RAngleLoc);
4323
4324  QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
4325                             SourceLocation KeywordLoc,
4326                             NestedNameSpecifierLoc QualifierLoc,
4327                             const IdentifierInfo &II,
4328                             SourceLocation IILoc);
4329
4330  TypeSourceInfo *RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
4331                                                    SourceLocation Loc,
4332                                                    DeclarationName Name);
4333  bool RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS);
4334
4335  ExprResult RebuildExprInCurrentInstantiation(Expr *E);
4336  bool RebuildTemplateParamsInCurrentInstantiation(
4337                                                TemplateParameterList *Params);
4338
4339  std::string
4340  getTemplateArgumentBindingsText(const TemplateParameterList *Params,
4341                                  const TemplateArgumentList &Args);
4342
4343  std::string
4344  getTemplateArgumentBindingsText(const TemplateParameterList *Params,
4345                                  const TemplateArgument *Args,
4346                                  unsigned NumArgs);
4347
4348  //===--------------------------------------------------------------------===//
4349  // C++ Variadic Templates (C++0x [temp.variadic])
4350  //===--------------------------------------------------------------------===//
4351
4352  /// \brief The context in which an unexpanded parameter pack is
4353  /// being diagnosed.
4354  ///
4355  /// Note that the values of this enumeration line up with the first
4356  /// argument to the \c err_unexpanded_parameter_pack diagnostic.
4357  enum UnexpandedParameterPackContext {
4358    /// \brief An arbitrary expression.
4359    UPPC_Expression = 0,
4360
4361    /// \brief The base type of a class type.
4362    UPPC_BaseType,
4363
4364    /// \brief The type of an arbitrary declaration.
4365    UPPC_DeclarationType,
4366
4367    /// \brief The type of a data member.
4368    UPPC_DataMemberType,
4369
4370    /// \brief The size of a bit-field.
4371    UPPC_BitFieldWidth,
4372
4373    /// \brief The expression in a static assertion.
4374    UPPC_StaticAssertExpression,
4375
4376    /// \brief The fixed underlying type of an enumeration.
4377    UPPC_FixedUnderlyingType,
4378
4379    /// \brief The enumerator value.
4380    UPPC_EnumeratorValue,
4381
4382    /// \brief A using declaration.
4383    UPPC_UsingDeclaration,
4384
4385    /// \brief A friend declaration.
4386    UPPC_FriendDeclaration,
4387
4388    /// \brief A declaration qualifier.
4389    UPPC_DeclarationQualifier,
4390
4391    /// \brief An initializer.
4392    UPPC_Initializer,
4393
4394    /// \brief A default argument.
4395    UPPC_DefaultArgument,
4396
4397    /// \brief The type of a non-type template parameter.
4398    UPPC_NonTypeTemplateParameterType,
4399
4400    /// \brief The type of an exception.
4401    UPPC_ExceptionType,
4402
4403    /// \brief Partial specialization.
4404    UPPC_PartialSpecialization,
4405
4406    /// \brief Microsoft __if_exists.
4407    UPPC_IfExists,
4408
4409    /// \brief Microsoft __if_not_exists.
4410    UPPC_IfNotExists
4411};
4412
4413  /// \brief Diagnose unexpanded parameter packs.
4414  ///
4415  /// \param Loc The location at which we should emit the diagnostic.
4416  ///
4417  /// \param UPPC The context in which we are diagnosing unexpanded
4418  /// parameter packs.
4419  ///
4420  /// \param Unexpanded the set of unexpanded parameter packs.
4421  void DiagnoseUnexpandedParameterPacks(SourceLocation Loc,
4422                                        UnexpandedParameterPackContext UPPC,
4423                    const SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4424
4425  /// \brief If the given type contains an unexpanded parameter pack,
4426  /// diagnose the error.
4427  ///
4428  /// \param Loc The source location where a diagnostc should be emitted.
4429  ///
4430  /// \param T The type that is being checked for unexpanded parameter
4431  /// packs.
4432  ///
4433  /// \returns true if an error occurred, false otherwise.
4434  bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T,
4435                                       UnexpandedParameterPackContext UPPC);
4436
4437  /// \brief If the given expression contains an unexpanded parameter
4438  /// pack, diagnose the error.
4439  ///
4440  /// \param E The expression that is being checked for unexpanded
4441  /// parameter packs.
4442  ///
4443  /// \returns true if an error occurred, false otherwise.
4444  bool DiagnoseUnexpandedParameterPack(Expr *E,
4445                       UnexpandedParameterPackContext UPPC = UPPC_Expression);
4446
4447  /// \brief If the given nested-name-specifier contains an unexpanded
4448  /// parameter pack, diagnose the error.
4449  ///
4450  /// \param SS The nested-name-specifier that is being checked for
4451  /// unexpanded parameter packs.
4452  ///
4453  /// \returns true if an error occurred, false otherwise.
4454  bool DiagnoseUnexpandedParameterPack(const CXXScopeSpec &SS,
4455                                       UnexpandedParameterPackContext UPPC);
4456
4457  /// \brief If the given name contains an unexpanded parameter pack,
4458  /// diagnose the error.
4459  ///
4460  /// \param NameInfo The name (with source location information) that
4461  /// is being checked for unexpanded parameter packs.
4462  ///
4463  /// \returns true if an error occurred, false otherwise.
4464  bool DiagnoseUnexpandedParameterPack(const DeclarationNameInfo &NameInfo,
4465                                       UnexpandedParameterPackContext UPPC);
4466
4467  /// \brief If the given template name contains an unexpanded parameter pack,
4468  /// diagnose the error.
4469  ///
4470  /// \param Loc The location of the template name.
4471  ///
4472  /// \param Template The template name that is being checked for unexpanded
4473  /// parameter packs.
4474  ///
4475  /// \returns true if an error occurred, false otherwise.
4476  bool DiagnoseUnexpandedParameterPack(SourceLocation Loc,
4477                                       TemplateName Template,
4478                                       UnexpandedParameterPackContext UPPC);
4479
4480  /// \brief If the given template argument contains an unexpanded parameter
4481  /// pack, diagnose the error.
4482  ///
4483  /// \param Arg The template argument that is being checked for unexpanded
4484  /// parameter packs.
4485  ///
4486  /// \returns true if an error occurred, false otherwise.
4487  bool DiagnoseUnexpandedParameterPack(TemplateArgumentLoc Arg,
4488                                       UnexpandedParameterPackContext UPPC);
4489
4490  /// \brief Collect the set of unexpanded parameter packs within the given
4491  /// template argument.
4492  ///
4493  /// \param Arg The template argument that will be traversed to find
4494  /// unexpanded parameter packs.
4495  void collectUnexpandedParameterPacks(TemplateArgument Arg,
4496                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4497
4498  /// \brief Collect the set of unexpanded parameter packs within the given
4499  /// template argument.
4500  ///
4501  /// \param Arg The template argument that will be traversed to find
4502  /// unexpanded parameter packs.
4503  void collectUnexpandedParameterPacks(TemplateArgumentLoc Arg,
4504                    SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4505
4506  /// \brief Collect the set of unexpanded parameter packs within the given
4507  /// type.
4508  ///
4509  /// \param T The type that will be traversed to find
4510  /// unexpanded parameter packs.
4511  void collectUnexpandedParameterPacks(QualType T,
4512                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4513
4514  /// \brief Collect the set of unexpanded parameter packs within the given
4515  /// type.
4516  ///
4517  /// \param TL The type that will be traversed to find
4518  /// unexpanded parameter packs.
4519  void collectUnexpandedParameterPacks(TypeLoc TL,
4520                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4521
4522  /// \brief Collect the set of unexpanded parameter packs within the given
4523  /// nested-name-specifier.
4524  ///
4525  /// \param SS The nested-name-specifier that will be traversed to find
4526  /// unexpanded parameter packs.
4527  void collectUnexpandedParameterPacks(CXXScopeSpec &SS,
4528                         SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4529
4530  /// \brief Collect the set of unexpanded parameter packs within the given
4531  /// name.
4532  ///
4533  /// \param NameInfo The name that will be traversed to find
4534  /// unexpanded parameter packs.
4535  void collectUnexpandedParameterPacks(const DeclarationNameInfo &NameInfo,
4536                         SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4537
4538  /// \brief Invoked when parsing a template argument followed by an
4539  /// ellipsis, which creates a pack expansion.
4540  ///
4541  /// \param Arg The template argument preceding the ellipsis, which
4542  /// may already be invalid.
4543  ///
4544  /// \param EllipsisLoc The location of the ellipsis.
4545  ParsedTemplateArgument ActOnPackExpansion(const ParsedTemplateArgument &Arg,
4546                                            SourceLocation EllipsisLoc);
4547
4548  /// \brief Invoked when parsing a type followed by an ellipsis, which
4549  /// creates a pack expansion.
4550  ///
4551  /// \param Type The type preceding the ellipsis, which will become
4552  /// the pattern of the pack expansion.
4553  ///
4554  /// \param EllipsisLoc The location of the ellipsis.
4555  TypeResult ActOnPackExpansion(ParsedType Type, SourceLocation EllipsisLoc);
4556
4557  /// \brief Construct a pack expansion type from the pattern of the pack
4558  /// expansion.
4559  TypeSourceInfo *CheckPackExpansion(TypeSourceInfo *Pattern,
4560                                     SourceLocation EllipsisLoc,
4561                                     llvm::Optional<unsigned> NumExpansions);
4562
4563  /// \brief Construct a pack expansion type from the pattern of the pack
4564  /// expansion.
4565  QualType CheckPackExpansion(QualType Pattern,
4566                              SourceRange PatternRange,
4567                              SourceLocation EllipsisLoc,
4568                              llvm::Optional<unsigned> NumExpansions);
4569
4570  /// \brief Invoked when parsing an expression followed by an ellipsis, which
4571  /// creates a pack expansion.
4572  ///
4573  /// \param Pattern The expression preceding the ellipsis, which will become
4574  /// the pattern of the pack expansion.
4575  ///
4576  /// \param EllipsisLoc The location of the ellipsis.
4577  ExprResult ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc);
4578
4579  /// \brief Invoked when parsing an expression followed by an ellipsis, which
4580  /// creates a pack expansion.
4581  ///
4582  /// \param Pattern The expression preceding the ellipsis, which will become
4583  /// the pattern of the pack expansion.
4584  ///
4585  /// \param EllipsisLoc The location of the ellipsis.
4586  ExprResult CheckPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc,
4587                                llvm::Optional<unsigned> NumExpansions);
4588
4589  /// \brief Determine whether we could expand a pack expansion with the
4590  /// given set of parameter packs into separate arguments by repeatedly
4591  /// transforming the pattern.
4592  ///
4593  /// \param EllipsisLoc The location of the ellipsis that identifies the
4594  /// pack expansion.
4595  ///
4596  /// \param PatternRange The source range that covers the entire pattern of
4597  /// the pack expansion.
4598  ///
4599  /// \param Unexpanded The set of unexpanded parameter packs within the
4600  /// pattern.
4601  ///
4602  /// \param NumUnexpanded The number of unexpanded parameter packs in
4603  /// \p Unexpanded.
4604  ///
4605  /// \param ShouldExpand Will be set to \c true if the transformer should
4606  /// expand the corresponding pack expansions into separate arguments. When
4607  /// set, \c NumExpansions must also be set.
4608  ///
4609  /// \param RetainExpansion Whether the caller should add an unexpanded
4610  /// pack expansion after all of the expanded arguments. This is used
4611  /// when extending explicitly-specified template argument packs per
4612  /// C++0x [temp.arg.explicit]p9.
4613  ///
4614  /// \param NumExpansions The number of separate arguments that will be in
4615  /// the expanded form of the corresponding pack expansion. This is both an
4616  /// input and an output parameter, which can be set by the caller if the
4617  /// number of expansions is known a priori (e.g., due to a prior substitution)
4618  /// and will be set by the callee when the number of expansions is known.
4619  /// The callee must set this value when \c ShouldExpand is \c true; it may
4620  /// set this value in other cases.
4621  ///
4622  /// \returns true if an error occurred (e.g., because the parameter packs
4623  /// are to be instantiated with arguments of different lengths), false
4624  /// otherwise. If false, \c ShouldExpand (and possibly \c NumExpansions)
4625  /// must be set.
4626  bool CheckParameterPacksForExpansion(SourceLocation EllipsisLoc,
4627                                       SourceRange PatternRange,
4628                             llvm::ArrayRef<UnexpandedParameterPack> Unexpanded,
4629                             const MultiLevelTemplateArgumentList &TemplateArgs,
4630                                       bool &ShouldExpand,
4631                                       bool &RetainExpansion,
4632                                       llvm::Optional<unsigned> &NumExpansions);
4633
4634  /// \brief Determine the number of arguments in the given pack expansion
4635  /// type.
4636  ///
4637  /// This routine already assumes that the pack expansion type can be
4638  /// expanded and that the number of arguments in the expansion is
4639  /// consistent across all of the unexpanded parameter packs in its pattern.
4640  unsigned getNumArgumentsInExpansion(QualType T,
4641                            const MultiLevelTemplateArgumentList &TemplateArgs);
4642
4643  /// \brief Determine whether the given declarator contains any unexpanded
4644  /// parameter packs.
4645  ///
4646  /// This routine is used by the parser to disambiguate function declarators
4647  /// with an ellipsis prior to the ')', e.g.,
4648  ///
4649  /// \code
4650  ///   void f(T...);
4651  /// \endcode
4652  ///
4653  /// To determine whether we have an (unnamed) function parameter pack or
4654  /// a variadic function.
4655  ///
4656  /// \returns true if the declarator contains any unexpanded parameter packs,
4657  /// false otherwise.
4658  bool containsUnexpandedParameterPacks(Declarator &D);
4659
4660  //===--------------------------------------------------------------------===//
4661  // C++ Template Argument Deduction (C++ [temp.deduct])
4662  //===--------------------------------------------------------------------===//
4663
4664  /// \brief Describes the result of template argument deduction.
4665  ///
4666  /// The TemplateDeductionResult enumeration describes the result of
4667  /// template argument deduction, as returned from
4668  /// DeduceTemplateArguments(). The separate TemplateDeductionInfo
4669  /// structure provides additional information about the results of
4670  /// template argument deduction, e.g., the deduced template argument
4671  /// list (if successful) or the specific template parameters or
4672  /// deduced arguments that were involved in the failure.
4673  enum TemplateDeductionResult {
4674    /// \brief Template argument deduction was successful.
4675    TDK_Success = 0,
4676    /// \brief Template argument deduction exceeded the maximum template
4677    /// instantiation depth (which has already been diagnosed).
4678    TDK_InstantiationDepth,
4679    /// \brief Template argument deduction did not deduce a value
4680    /// for every template parameter.
4681    TDK_Incomplete,
4682    /// \brief Template argument deduction produced inconsistent
4683    /// deduced values for the given template parameter.
4684    TDK_Inconsistent,
4685    /// \brief Template argument deduction failed due to inconsistent
4686    /// cv-qualifiers on a template parameter type that would
4687    /// otherwise be deduced, e.g., we tried to deduce T in "const T"
4688    /// but were given a non-const "X".
4689    TDK_Underqualified,
4690    /// \brief Substitution of the deduced template argument values
4691    /// resulted in an error.
4692    TDK_SubstitutionFailure,
4693    /// \brief Substitution of the deduced template argument values
4694    /// into a non-deduced context produced a type or value that
4695    /// produces a type that does not match the original template
4696    /// arguments provided.
4697    TDK_NonDeducedMismatch,
4698    /// \brief When performing template argument deduction for a function
4699    /// template, there were too many call arguments.
4700    TDK_TooManyArguments,
4701    /// \brief When performing template argument deduction for a function
4702    /// template, there were too few call arguments.
4703    TDK_TooFewArguments,
4704    /// \brief The explicitly-specified template arguments were not valid
4705    /// template arguments for the given template.
4706    TDK_InvalidExplicitArguments,
4707    /// \brief The arguments included an overloaded function name that could
4708    /// not be resolved to a suitable function.
4709    TDK_FailedOverloadResolution
4710  };
4711
4712  TemplateDeductionResult
4713  DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
4714                          const TemplateArgumentList &TemplateArgs,
4715                          sema::TemplateDeductionInfo &Info);
4716
4717  TemplateDeductionResult
4718  SubstituteExplicitTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4719                              TemplateArgumentListInfo &ExplicitTemplateArgs,
4720                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
4721                                 SmallVectorImpl<QualType> &ParamTypes,
4722                                      QualType *FunctionType,
4723                                      sema::TemplateDeductionInfo &Info);
4724
4725  /// brief A function argument from which we performed template argument
4726  // deduction for a call.
4727  struct OriginalCallArg {
4728    OriginalCallArg(QualType OriginalParamType,
4729                    unsigned ArgIdx,
4730                    QualType OriginalArgType)
4731      : OriginalParamType(OriginalParamType), ArgIdx(ArgIdx),
4732        OriginalArgType(OriginalArgType) { }
4733
4734    QualType OriginalParamType;
4735    unsigned ArgIdx;
4736    QualType OriginalArgType;
4737  };
4738
4739  TemplateDeductionResult
4740  FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate,
4741                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
4742                                  unsigned NumExplicitlySpecified,
4743                                  FunctionDecl *&Specialization,
4744                                  sema::TemplateDeductionInfo &Info,
4745           SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs = 0);
4746
4747  TemplateDeductionResult
4748  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4749                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4750                          Expr **Args, unsigned NumArgs,
4751                          FunctionDecl *&Specialization,
4752                          sema::TemplateDeductionInfo &Info);
4753
4754  TemplateDeductionResult
4755  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4756                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4757                          QualType ArgFunctionType,
4758                          FunctionDecl *&Specialization,
4759                          sema::TemplateDeductionInfo &Info);
4760
4761  TemplateDeductionResult
4762  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4763                          QualType ToType,
4764                          CXXConversionDecl *&Specialization,
4765                          sema::TemplateDeductionInfo &Info);
4766
4767  TemplateDeductionResult
4768  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4769                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4770                          FunctionDecl *&Specialization,
4771                          sema::TemplateDeductionInfo &Info);
4772
4773  /// \brief Result type of DeduceAutoType.
4774  enum DeduceAutoResult {
4775    DAR_Succeeded,
4776    DAR_Failed,
4777    DAR_FailedAlreadyDiagnosed
4778  };
4779
4780  DeduceAutoResult DeduceAutoType(TypeSourceInfo *AutoType, Expr *&Initializer,
4781                                  TypeSourceInfo *&Result);
4782  void DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init);
4783
4784  FunctionTemplateDecl *getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
4785                                                   FunctionTemplateDecl *FT2,
4786                                                   SourceLocation Loc,
4787                                           TemplatePartialOrderingContext TPOC,
4788                                                   unsigned NumCallArguments);
4789  UnresolvedSetIterator getMostSpecialized(UnresolvedSetIterator SBegin,
4790                                           UnresolvedSetIterator SEnd,
4791                                           TemplatePartialOrderingContext TPOC,
4792                                           unsigned NumCallArguments,
4793                                           SourceLocation Loc,
4794                                           const PartialDiagnostic &NoneDiag,
4795                                           const PartialDiagnostic &AmbigDiag,
4796                                        const PartialDiagnostic &CandidateDiag,
4797                                        bool Complain = true,
4798                                        QualType TargetType = QualType());
4799
4800  ClassTemplatePartialSpecializationDecl *
4801  getMoreSpecializedPartialSpecialization(
4802                                  ClassTemplatePartialSpecializationDecl *PS1,
4803                                  ClassTemplatePartialSpecializationDecl *PS2,
4804                                  SourceLocation Loc);
4805
4806  void MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
4807                                  bool OnlyDeduced,
4808                                  unsigned Depth,
4809                                  llvm::SmallBitVector &Used);
4810  void MarkDeducedTemplateParameters(FunctionTemplateDecl *FunctionTemplate,
4811                                     llvm::SmallBitVector &Deduced) {
4812    return MarkDeducedTemplateParameters(Context, FunctionTemplate, Deduced);
4813  }
4814  static void MarkDeducedTemplateParameters(ASTContext &Ctx,
4815                                         FunctionTemplateDecl *FunctionTemplate,
4816                                         llvm::SmallBitVector &Deduced);
4817
4818  //===--------------------------------------------------------------------===//
4819  // C++ Template Instantiation
4820  //
4821
4822  MultiLevelTemplateArgumentList getTemplateInstantiationArgs(NamedDecl *D,
4823                                     const TemplateArgumentList *Innermost = 0,
4824                                                bool RelativeToPrimary = false,
4825                                               const FunctionDecl *Pattern = 0);
4826
4827  /// \brief A template instantiation that is currently in progress.
4828  struct ActiveTemplateInstantiation {
4829    /// \brief The kind of template instantiation we are performing
4830    enum InstantiationKind {
4831      /// We are instantiating a template declaration. The entity is
4832      /// the declaration we're instantiating (e.g., a CXXRecordDecl).
4833      TemplateInstantiation,
4834
4835      /// We are instantiating a default argument for a template
4836      /// parameter. The Entity is the template, and
4837      /// TemplateArgs/NumTemplateArguments provides the template
4838      /// arguments as specified.
4839      /// FIXME: Use a TemplateArgumentList
4840      DefaultTemplateArgumentInstantiation,
4841
4842      /// We are instantiating a default argument for a function.
4843      /// The Entity is the ParmVarDecl, and TemplateArgs/NumTemplateArgs
4844      /// provides the template arguments as specified.
4845      DefaultFunctionArgumentInstantiation,
4846
4847      /// We are substituting explicit template arguments provided for
4848      /// a function template. The entity is a FunctionTemplateDecl.
4849      ExplicitTemplateArgumentSubstitution,
4850
4851      /// We are substituting template argument determined as part of
4852      /// template argument deduction for either a class template
4853      /// partial specialization or a function template. The
4854      /// Entity is either a ClassTemplatePartialSpecializationDecl or
4855      /// a FunctionTemplateDecl.
4856      DeducedTemplateArgumentSubstitution,
4857
4858      /// We are substituting prior template arguments into a new
4859      /// template parameter. The template parameter itself is either a
4860      /// NonTypeTemplateParmDecl or a TemplateTemplateParmDecl.
4861      PriorTemplateArgumentSubstitution,
4862
4863      /// We are checking the validity of a default template argument that
4864      /// has been used when naming a template-id.
4865      DefaultTemplateArgumentChecking
4866    } Kind;
4867
4868    /// \brief The point of instantiation within the source code.
4869    SourceLocation PointOfInstantiation;
4870
4871    /// \brief The template (or partial specialization) in which we are
4872    /// performing the instantiation, for substitutions of prior template
4873    /// arguments.
4874    NamedDecl *Template;
4875
4876    /// \brief The entity that is being instantiated.
4877    uintptr_t Entity;
4878
4879    /// \brief The list of template arguments we are substituting, if they
4880    /// are not part of the entity.
4881    const TemplateArgument *TemplateArgs;
4882
4883    /// \brief The number of template arguments in TemplateArgs.
4884    unsigned NumTemplateArgs;
4885
4886    /// \brief The template deduction info object associated with the
4887    /// substitution or checking of explicit or deduced template arguments.
4888    sema::TemplateDeductionInfo *DeductionInfo;
4889
4890    /// \brief The source range that covers the construct that cause
4891    /// the instantiation, e.g., the template-id that causes a class
4892    /// template instantiation.
4893    SourceRange InstantiationRange;
4894
4895    ActiveTemplateInstantiation()
4896      : Kind(TemplateInstantiation), Template(0), Entity(0), TemplateArgs(0),
4897        NumTemplateArgs(0), DeductionInfo(0) {}
4898
4899    /// \brief Determines whether this template is an actual instantiation
4900    /// that should be counted toward the maximum instantiation depth.
4901    bool isInstantiationRecord() const;
4902
4903    friend bool operator==(const ActiveTemplateInstantiation &X,
4904                           const ActiveTemplateInstantiation &Y) {
4905      if (X.Kind != Y.Kind)
4906        return false;
4907
4908      if (X.Entity != Y.Entity)
4909        return false;
4910
4911      switch (X.Kind) {
4912      case TemplateInstantiation:
4913        return true;
4914
4915      case PriorTemplateArgumentSubstitution:
4916      case DefaultTemplateArgumentChecking:
4917        if (X.Template != Y.Template)
4918          return false;
4919
4920        // Fall through
4921
4922      case DefaultTemplateArgumentInstantiation:
4923      case ExplicitTemplateArgumentSubstitution:
4924      case DeducedTemplateArgumentSubstitution:
4925      case DefaultFunctionArgumentInstantiation:
4926        return X.TemplateArgs == Y.TemplateArgs;
4927
4928      }
4929
4930      llvm_unreachable("Invalid InstantiationKind!");
4931    }
4932
4933    friend bool operator!=(const ActiveTemplateInstantiation &X,
4934                           const ActiveTemplateInstantiation &Y) {
4935      return !(X == Y);
4936    }
4937  };
4938
4939  /// \brief List of active template instantiations.
4940  ///
4941  /// This vector is treated as a stack. As one template instantiation
4942  /// requires another template instantiation, additional
4943  /// instantiations are pushed onto the stack up to a
4944  /// user-configurable limit LangOptions::InstantiationDepth.
4945  SmallVector<ActiveTemplateInstantiation, 16>
4946    ActiveTemplateInstantiations;
4947
4948  /// \brief Whether we are in a SFINAE context that is not associated with
4949  /// template instantiation.
4950  ///
4951  /// This is used when setting up a SFINAE trap (\c see SFINAETrap) outside
4952  /// of a template instantiation or template argument deduction.
4953  bool InNonInstantiationSFINAEContext;
4954
4955  /// \brief The number of ActiveTemplateInstantiation entries in
4956  /// \c ActiveTemplateInstantiations that are not actual instantiations and,
4957  /// therefore, should not be counted as part of the instantiation depth.
4958  unsigned NonInstantiationEntries;
4959
4960  /// \brief The last template from which a template instantiation
4961  /// error or warning was produced.
4962  ///
4963  /// This value is used to suppress printing of redundant template
4964  /// instantiation backtraces when there are multiple errors in the
4965  /// same instantiation. FIXME: Does this belong in Sema? It's tough
4966  /// to implement it anywhere else.
4967  ActiveTemplateInstantiation LastTemplateInstantiationErrorContext;
4968
4969  /// \brief The current index into pack expansion arguments that will be
4970  /// used for substitution of parameter packs.
4971  ///
4972  /// The pack expansion index will be -1 to indicate that parameter packs
4973  /// should be instantiated as themselves. Otherwise, the index specifies
4974  /// which argument within the parameter pack will be used for substitution.
4975  int ArgumentPackSubstitutionIndex;
4976
4977  /// \brief RAII object used to change the argument pack substitution index
4978  /// within a \c Sema object.
4979  ///
4980  /// See \c ArgumentPackSubstitutionIndex for more information.
4981  class ArgumentPackSubstitutionIndexRAII {
4982    Sema &Self;
4983    int OldSubstitutionIndex;
4984
4985  public:
4986    ArgumentPackSubstitutionIndexRAII(Sema &Self, int NewSubstitutionIndex)
4987      : Self(Self), OldSubstitutionIndex(Self.ArgumentPackSubstitutionIndex) {
4988      Self.ArgumentPackSubstitutionIndex = NewSubstitutionIndex;
4989    }
4990
4991    ~ArgumentPackSubstitutionIndexRAII() {
4992      Self.ArgumentPackSubstitutionIndex = OldSubstitutionIndex;
4993    }
4994  };
4995
4996  friend class ArgumentPackSubstitutionRAII;
4997
4998  /// \brief The stack of calls expression undergoing template instantiation.
4999  ///
5000  /// The top of this stack is used by a fixit instantiating unresolved
5001  /// function calls to fix the AST to match the textual change it prints.
5002  SmallVector<CallExpr *, 8> CallsUndergoingInstantiation;
5003
5004  /// \brief For each declaration that involved template argument deduction, the
5005  /// set of diagnostics that were suppressed during that template argument
5006  /// deduction.
5007  ///
5008  /// FIXME: Serialize this structure to the AST file.
5009  llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >
5010    SuppressedDiagnostics;
5011
5012  /// \brief A stack object to be created when performing template
5013  /// instantiation.
5014  ///
5015  /// Construction of an object of type \c InstantiatingTemplate
5016  /// pushes the current instantiation onto the stack of active
5017  /// instantiations. If the size of this stack exceeds the maximum
5018  /// number of recursive template instantiations, construction
5019  /// produces an error and evaluates true.
5020  ///
5021  /// Destruction of this object will pop the named instantiation off
5022  /// the stack.
5023  struct InstantiatingTemplate {
5024    /// \brief Note that we are instantiating a class template,
5025    /// function template, or a member thereof.
5026    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5027                          Decl *Entity,
5028                          SourceRange InstantiationRange = SourceRange());
5029
5030    /// \brief Note that we are instantiating a default argument in a
5031    /// template-id.
5032    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5033                          TemplateDecl *Template,
5034                          const TemplateArgument *TemplateArgs,
5035                          unsigned NumTemplateArgs,
5036                          SourceRange InstantiationRange = SourceRange());
5037
5038    /// \brief Note that we are instantiating a default argument in a
5039    /// template-id.
5040    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5041                          FunctionTemplateDecl *FunctionTemplate,
5042                          const TemplateArgument *TemplateArgs,
5043                          unsigned NumTemplateArgs,
5044                          ActiveTemplateInstantiation::InstantiationKind Kind,
5045                          sema::TemplateDeductionInfo &DeductionInfo,
5046                          SourceRange InstantiationRange = SourceRange());
5047
5048    /// \brief Note that we are instantiating as part of template
5049    /// argument deduction for a class template partial
5050    /// specialization.
5051    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5052                          ClassTemplatePartialSpecializationDecl *PartialSpec,
5053                          const TemplateArgument *TemplateArgs,
5054                          unsigned NumTemplateArgs,
5055                          sema::TemplateDeductionInfo &DeductionInfo,
5056                          SourceRange InstantiationRange = SourceRange());
5057
5058    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5059                          ParmVarDecl *Param,
5060                          const TemplateArgument *TemplateArgs,
5061                          unsigned NumTemplateArgs,
5062                          SourceRange InstantiationRange = SourceRange());
5063
5064    /// \brief Note that we are substituting prior template arguments into a
5065    /// non-type or template template parameter.
5066    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5067                          NamedDecl *Template,
5068                          NonTypeTemplateParmDecl *Param,
5069                          const TemplateArgument *TemplateArgs,
5070                          unsigned NumTemplateArgs,
5071                          SourceRange InstantiationRange);
5072
5073    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5074                          NamedDecl *Template,
5075                          TemplateTemplateParmDecl *Param,
5076                          const TemplateArgument *TemplateArgs,
5077                          unsigned NumTemplateArgs,
5078                          SourceRange InstantiationRange);
5079
5080    /// \brief Note that we are checking the default template argument
5081    /// against the template parameter for a given template-id.
5082    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5083                          TemplateDecl *Template,
5084                          NamedDecl *Param,
5085                          const TemplateArgument *TemplateArgs,
5086                          unsigned NumTemplateArgs,
5087                          SourceRange InstantiationRange);
5088
5089
5090    /// \brief Note that we have finished instantiating this template.
5091    void Clear();
5092
5093    ~InstantiatingTemplate() { Clear(); }
5094
5095    /// \brief Determines whether we have exceeded the maximum
5096    /// recursive template instantiations.
5097    operator bool() const { return Invalid; }
5098
5099  private:
5100    Sema &SemaRef;
5101    bool Invalid;
5102    bool SavedInNonInstantiationSFINAEContext;
5103    bool CheckInstantiationDepth(SourceLocation PointOfInstantiation,
5104                                 SourceRange InstantiationRange);
5105
5106    InstantiatingTemplate(const InstantiatingTemplate&); // not implemented
5107
5108    InstantiatingTemplate&
5109    operator=(const InstantiatingTemplate&); // not implemented
5110  };
5111
5112  void PrintInstantiationStack();
5113
5114  /// \brief Determines whether we are currently in a context where
5115  /// template argument substitution failures are not considered
5116  /// errors.
5117  ///
5118  /// \returns An empty \c llvm::Optional if we're not in a SFINAE context.
5119  /// Otherwise, contains a pointer that, if non-NULL, contains the nearest
5120  /// template-deduction context object, which can be used to capture
5121  /// diagnostics that will be suppressed.
5122  llvm::Optional<sema::TemplateDeductionInfo *> isSFINAEContext() const;
5123
5124  /// \brief RAII class used to determine whether SFINAE has
5125  /// trapped any errors that occur during template argument
5126  /// deduction.`
5127  class SFINAETrap {
5128    Sema &SemaRef;
5129    unsigned PrevSFINAEErrors;
5130    bool PrevInNonInstantiationSFINAEContext;
5131    bool PrevAccessCheckingSFINAE;
5132
5133  public:
5134    explicit SFINAETrap(Sema &SemaRef, bool AccessCheckingSFINAE = false)
5135      : SemaRef(SemaRef), PrevSFINAEErrors(SemaRef.NumSFINAEErrors),
5136        PrevInNonInstantiationSFINAEContext(
5137                                      SemaRef.InNonInstantiationSFINAEContext),
5138        PrevAccessCheckingSFINAE(SemaRef.AccessCheckingSFINAE)
5139    {
5140      if (!SemaRef.isSFINAEContext())
5141        SemaRef.InNonInstantiationSFINAEContext = true;
5142      SemaRef.AccessCheckingSFINAE = AccessCheckingSFINAE;
5143    }
5144
5145    ~SFINAETrap() {
5146      SemaRef.NumSFINAEErrors = PrevSFINAEErrors;
5147      SemaRef.InNonInstantiationSFINAEContext
5148        = PrevInNonInstantiationSFINAEContext;
5149      SemaRef.AccessCheckingSFINAE = PrevAccessCheckingSFINAE;
5150    }
5151
5152    /// \brief Determine whether any SFINAE errors have been trapped.
5153    bool hasErrorOccurred() const {
5154      return SemaRef.NumSFINAEErrors > PrevSFINAEErrors;
5155    }
5156  };
5157
5158  /// \brief The current instantiation scope used to store local
5159  /// variables.
5160  LocalInstantiationScope *CurrentInstantiationScope;
5161
5162  /// \brief The number of typos corrected by CorrectTypo.
5163  unsigned TyposCorrected;
5164
5165  typedef llvm::DenseMap<IdentifierInfo *, TypoCorrection>
5166    UnqualifiedTyposCorrectedMap;
5167
5168  /// \brief A cache containing the results of typo correction for unqualified
5169  /// name lookup.
5170  ///
5171  /// The string is the string that we corrected to (which may be empty, if
5172  /// there was no correction), while the boolean will be true when the
5173  /// string represents a keyword.
5174  UnqualifiedTyposCorrectedMap UnqualifiedTyposCorrected;
5175
5176  /// \brief Worker object for performing CFG-based warnings.
5177  sema::AnalysisBasedWarnings AnalysisWarnings;
5178
5179  /// \brief An entity for which implicit template instantiation is required.
5180  ///
5181  /// The source location associated with the declaration is the first place in
5182  /// the source code where the declaration was "used". It is not necessarily
5183  /// the point of instantiation (which will be either before or after the
5184  /// namespace-scope declaration that triggered this implicit instantiation),
5185  /// However, it is the location that diagnostics should generally refer to,
5186  /// because users will need to know what code triggered the instantiation.
5187  typedef std::pair<ValueDecl *, SourceLocation> PendingImplicitInstantiation;
5188
5189  /// \brief The queue of implicit template instantiations that are required
5190  /// but have not yet been performed.
5191  std::deque<PendingImplicitInstantiation> PendingInstantiations;
5192
5193  /// \brief The queue of implicit template instantiations that are required
5194  /// and must be performed within the current local scope.
5195  ///
5196  /// This queue is only used for member functions of local classes in
5197  /// templates, which must be instantiated in the same scope as their
5198  /// enclosing function, so that they can reference function-local
5199  /// types, static variables, enumerators, etc.
5200  std::deque<PendingImplicitInstantiation> PendingLocalImplicitInstantiations;
5201
5202  void PerformPendingInstantiations(bool LocalOnly = false);
5203
5204  TypeSourceInfo *SubstType(TypeSourceInfo *T,
5205                            const MultiLevelTemplateArgumentList &TemplateArgs,
5206                            SourceLocation Loc, DeclarationName Entity);
5207
5208  QualType SubstType(QualType T,
5209                     const MultiLevelTemplateArgumentList &TemplateArgs,
5210                     SourceLocation Loc, DeclarationName Entity);
5211
5212  TypeSourceInfo *SubstType(TypeLoc TL,
5213                            const MultiLevelTemplateArgumentList &TemplateArgs,
5214                            SourceLocation Loc, DeclarationName Entity);
5215
5216  TypeSourceInfo *SubstFunctionDeclType(TypeSourceInfo *T,
5217                            const MultiLevelTemplateArgumentList &TemplateArgs,
5218                                        SourceLocation Loc,
5219                                        DeclarationName Entity);
5220  ParmVarDecl *SubstParmVarDecl(ParmVarDecl *D,
5221                            const MultiLevelTemplateArgumentList &TemplateArgs,
5222                                int indexAdjustment,
5223                                llvm::Optional<unsigned> NumExpansions,
5224                                bool ExpectParameterPack);
5225  bool SubstParmTypes(SourceLocation Loc,
5226                      ParmVarDecl **Params, unsigned NumParams,
5227                      const MultiLevelTemplateArgumentList &TemplateArgs,
5228                      SmallVectorImpl<QualType> &ParamTypes,
5229                      SmallVectorImpl<ParmVarDecl *> *OutParams = 0);
5230  ExprResult SubstExpr(Expr *E,
5231                       const MultiLevelTemplateArgumentList &TemplateArgs);
5232
5233  /// \brief Substitute the given template arguments into a list of
5234  /// expressions, expanding pack expansions if required.
5235  ///
5236  /// \param Exprs The list of expressions to substitute into.
5237  ///
5238  /// \param NumExprs The number of expressions in \p Exprs.
5239  ///
5240  /// \param IsCall Whether this is some form of call, in which case
5241  /// default arguments will be dropped.
5242  ///
5243  /// \param TemplateArgs The set of template arguments to substitute.
5244  ///
5245  /// \param Outputs Will receive all of the substituted arguments.
5246  ///
5247  /// \returns true if an error occurred, false otherwise.
5248  bool SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,
5249                  const MultiLevelTemplateArgumentList &TemplateArgs,
5250                  SmallVectorImpl<Expr *> &Outputs);
5251
5252  StmtResult SubstStmt(Stmt *S,
5253                       const MultiLevelTemplateArgumentList &TemplateArgs);
5254
5255  Decl *SubstDecl(Decl *D, DeclContext *Owner,
5256                  const MultiLevelTemplateArgumentList &TemplateArgs);
5257
5258  ExprResult SubstInitializer(Expr *E,
5259                       const MultiLevelTemplateArgumentList &TemplateArgs,
5260                       bool CXXDirectInit);
5261
5262  bool
5263  SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
5264                      CXXRecordDecl *Pattern,
5265                      const MultiLevelTemplateArgumentList &TemplateArgs);
5266
5267  bool
5268  InstantiateClass(SourceLocation PointOfInstantiation,
5269                   CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
5270                   const MultiLevelTemplateArgumentList &TemplateArgs,
5271                   TemplateSpecializationKind TSK,
5272                   bool Complain = true);
5273
5274  struct LateInstantiatedAttribute {
5275    const Attr *TmplAttr;
5276    LocalInstantiationScope *Scope;
5277    Decl *NewDecl;
5278
5279    LateInstantiatedAttribute(const Attr *A, LocalInstantiationScope *S,
5280                              Decl *D)
5281      : TmplAttr(A), Scope(S), NewDecl(D)
5282    { }
5283  };
5284  typedef SmallVector<LateInstantiatedAttribute, 16> LateInstantiatedAttrVec;
5285
5286  void InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
5287                        const Decl *Pattern, Decl *Inst,
5288                        LateInstantiatedAttrVec *LateAttrs = 0,
5289                        LocalInstantiationScope *OuterMostScope = 0);
5290
5291  bool
5292  InstantiateClassTemplateSpecialization(SourceLocation PointOfInstantiation,
5293                           ClassTemplateSpecializationDecl *ClassTemplateSpec,
5294                           TemplateSpecializationKind TSK,
5295                           bool Complain = true);
5296
5297  void InstantiateClassMembers(SourceLocation PointOfInstantiation,
5298                               CXXRecordDecl *Instantiation,
5299                            const MultiLevelTemplateArgumentList &TemplateArgs,
5300                               TemplateSpecializationKind TSK);
5301
5302  void InstantiateClassTemplateSpecializationMembers(
5303                                          SourceLocation PointOfInstantiation,
5304                           ClassTemplateSpecializationDecl *ClassTemplateSpec,
5305                                                TemplateSpecializationKind TSK);
5306
5307  NestedNameSpecifierLoc
5308  SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
5309                           const MultiLevelTemplateArgumentList &TemplateArgs);
5310
5311  DeclarationNameInfo
5312  SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
5313                           const MultiLevelTemplateArgumentList &TemplateArgs);
5314  TemplateName
5315  SubstTemplateName(NestedNameSpecifierLoc QualifierLoc, TemplateName Name,
5316                    SourceLocation Loc,
5317                    const MultiLevelTemplateArgumentList &TemplateArgs);
5318  bool Subst(const TemplateArgumentLoc *Args, unsigned NumArgs,
5319             TemplateArgumentListInfo &Result,
5320             const MultiLevelTemplateArgumentList &TemplateArgs);
5321
5322  void InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
5323                                     FunctionDecl *Function,
5324                                     bool Recursive = false,
5325                                     bool DefinitionRequired = false);
5326  void InstantiateStaticDataMemberDefinition(
5327                                     SourceLocation PointOfInstantiation,
5328                                     VarDecl *Var,
5329                                     bool Recursive = false,
5330                                     bool DefinitionRequired = false);
5331
5332  void InstantiateMemInitializers(CXXConstructorDecl *New,
5333                                  const CXXConstructorDecl *Tmpl,
5334                            const MultiLevelTemplateArgumentList &TemplateArgs);
5335
5336  NamedDecl *FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
5337                          const MultiLevelTemplateArgumentList &TemplateArgs);
5338  DeclContext *FindInstantiatedContext(SourceLocation Loc, DeclContext *DC,
5339                          const MultiLevelTemplateArgumentList &TemplateArgs);
5340
5341  // Objective-C declarations.
5342  enum ObjCContainerKind {
5343    OCK_None = -1,
5344    OCK_Interface = 0,
5345    OCK_Protocol,
5346    OCK_Category,
5347    OCK_ClassExtension,
5348    OCK_Implementation,
5349    OCK_CategoryImplementation
5350  };
5351  ObjCContainerKind getObjCContainerKind() const;
5352
5353  Decl *ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
5354                                 IdentifierInfo *ClassName,
5355                                 SourceLocation ClassLoc,
5356                                 IdentifierInfo *SuperName,
5357                                 SourceLocation SuperLoc,
5358                                 Decl * const *ProtoRefs,
5359                                 unsigned NumProtoRefs,
5360                                 const SourceLocation *ProtoLocs,
5361                                 SourceLocation EndProtoLoc,
5362                                 AttributeList *AttrList);
5363
5364  Decl *ActOnCompatiblityAlias(
5365                    SourceLocation AtCompatibilityAliasLoc,
5366                    IdentifierInfo *AliasName,  SourceLocation AliasLocation,
5367                    IdentifierInfo *ClassName, SourceLocation ClassLocation);
5368
5369  bool CheckForwardProtocolDeclarationForCircularDependency(
5370    IdentifierInfo *PName,
5371    SourceLocation &PLoc, SourceLocation PrevLoc,
5372    const ObjCList<ObjCProtocolDecl> &PList);
5373
5374  Decl *ActOnStartProtocolInterface(
5375                    SourceLocation AtProtoInterfaceLoc,
5376                    IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
5377                    Decl * const *ProtoRefNames, unsigned NumProtoRefs,
5378                    const SourceLocation *ProtoLocs,
5379                    SourceLocation EndProtoLoc,
5380                    AttributeList *AttrList);
5381
5382  Decl *ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
5383                                    IdentifierInfo *ClassName,
5384                                    SourceLocation ClassLoc,
5385                                    IdentifierInfo *CategoryName,
5386                                    SourceLocation CategoryLoc,
5387                                    Decl * const *ProtoRefs,
5388                                    unsigned NumProtoRefs,
5389                                    const SourceLocation *ProtoLocs,
5390                                    SourceLocation EndProtoLoc);
5391
5392  Decl *ActOnStartClassImplementation(
5393                    SourceLocation AtClassImplLoc,
5394                    IdentifierInfo *ClassName, SourceLocation ClassLoc,
5395                    IdentifierInfo *SuperClassname,
5396                    SourceLocation SuperClassLoc);
5397
5398  Decl *ActOnStartCategoryImplementation(SourceLocation AtCatImplLoc,
5399                                         IdentifierInfo *ClassName,
5400                                         SourceLocation ClassLoc,
5401                                         IdentifierInfo *CatName,
5402                                         SourceLocation CatLoc);
5403
5404  DeclGroupPtrTy ActOnForwardClassDeclaration(SourceLocation Loc,
5405                                     IdentifierInfo **IdentList,
5406                                     SourceLocation *IdentLocs,
5407                                     unsigned NumElts);
5408
5409  DeclGroupPtrTy ActOnForwardProtocolDeclaration(SourceLocation AtProtoclLoc,
5410                                        const IdentifierLocPair *IdentList,
5411                                        unsigned NumElts,
5412                                        AttributeList *attrList);
5413
5414  void FindProtocolDeclaration(bool WarnOnDeclarations,
5415                               const IdentifierLocPair *ProtocolId,
5416                               unsigned NumProtocols,
5417                               SmallVectorImpl<Decl *> &Protocols);
5418
5419  /// Ensure attributes are consistent with type.
5420  /// \param [in, out] Attributes The attributes to check; they will
5421  /// be modified to be consistent with \arg PropertyTy.
5422  void CheckObjCPropertyAttributes(Decl *PropertyPtrTy,
5423                                   SourceLocation Loc,
5424                                   unsigned &Attributes);
5425
5426  /// Process the specified property declaration and create decls for the
5427  /// setters and getters as needed.
5428  /// \param property The property declaration being processed
5429  /// \param DC The semantic container for the property
5430  /// \param redeclaredProperty Declaration for property if redeclared
5431  ///        in class extension.
5432  /// \param lexicalDC Container for redeclaredProperty.
5433  void ProcessPropertyDecl(ObjCPropertyDecl *property,
5434                           ObjCContainerDecl *DC,
5435                           ObjCPropertyDecl *redeclaredProperty = 0,
5436                           ObjCContainerDecl *lexicalDC = 0);
5437
5438  void DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
5439                                ObjCPropertyDecl *SuperProperty,
5440                                const IdentifierInfo *Name);
5441  void ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl);
5442
5443  void CompareMethodParamsInBaseAndSuper(Decl *IDecl,
5444                                         ObjCMethodDecl *MethodDecl,
5445                                         bool IsInstance);
5446
5447  void CompareProperties(Decl *CDecl, Decl *MergeProtocols);
5448
5449  void DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
5450                                        ObjCInterfaceDecl *ID);
5451
5452  void MatchOneProtocolPropertiesInClass(Decl *CDecl,
5453                                         ObjCProtocolDecl *PDecl);
5454
5455  Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,
5456                   Decl **allMethods = 0, unsigned allNum = 0,
5457                   Decl **allProperties = 0, unsigned pNum = 0,
5458                   DeclGroupPtrTy *allTUVars = 0, unsigned tuvNum = 0);
5459
5460  Decl *ActOnProperty(Scope *S, SourceLocation AtLoc,
5461                      FieldDeclarator &FD, ObjCDeclSpec &ODS,
5462                      Selector GetterSel, Selector SetterSel,
5463                      bool *OverridingProperty,
5464                      tok::ObjCKeywordKind MethodImplKind,
5465                      DeclContext *lexicalDC = 0);
5466
5467  Decl *ActOnPropertyImplDecl(Scope *S,
5468                              SourceLocation AtLoc,
5469                              SourceLocation PropertyLoc,
5470                              bool ImplKind,
5471                              IdentifierInfo *PropertyId,
5472                              IdentifierInfo *PropertyIvar,
5473                              SourceLocation PropertyIvarLoc);
5474
5475  enum ObjCSpecialMethodKind {
5476    OSMK_None,
5477    OSMK_Alloc,
5478    OSMK_New,
5479    OSMK_Copy,
5480    OSMK_RetainingInit,
5481    OSMK_NonRetainingInit
5482  };
5483
5484  struct ObjCArgInfo {
5485    IdentifierInfo *Name;
5486    SourceLocation NameLoc;
5487    // The Type is null if no type was specified, and the DeclSpec is invalid
5488    // in this case.
5489    ParsedType Type;
5490    ObjCDeclSpec DeclSpec;
5491
5492    /// ArgAttrs - Attribute list for this argument.
5493    AttributeList *ArgAttrs;
5494  };
5495
5496  Decl *ActOnMethodDeclaration(
5497    Scope *S,
5498    SourceLocation BeginLoc, // location of the + or -.
5499    SourceLocation EndLoc,   // location of the ; or {.
5500    tok::TokenKind MethodType,
5501    ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
5502    ArrayRef<SourceLocation> SelectorLocs, Selector Sel,
5503    // optional arguments. The number of types/arguments is obtained
5504    // from the Sel.getNumArgs().
5505    ObjCArgInfo *ArgInfo,
5506    DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args
5507    AttributeList *AttrList, tok::ObjCKeywordKind MethodImplKind,
5508    bool isVariadic, bool MethodDefinition);
5509
5510  // Helper method for ActOnClassMethod/ActOnInstanceMethod.
5511  // Will search "local" class/category implementations for a method decl.
5512  // Will also search in class's root looking for instance method.
5513  // Returns 0 if no method is found.
5514  ObjCMethodDecl *LookupPrivateClassMethod(Selector Sel,
5515                                           ObjCInterfaceDecl *CDecl);
5516  ObjCMethodDecl *LookupPrivateInstanceMethod(Selector Sel,
5517                                              ObjCInterfaceDecl *ClassDecl);
5518  ObjCMethodDecl *LookupMethodInQualifiedType(Selector Sel,
5519                                              const ObjCObjectPointerType *OPT,
5520                                              bool IsInstance);
5521  ObjCMethodDecl *LookupMethodInObjectType(Selector Sel, QualType Ty,
5522                                           bool IsInstance);
5523
5524  bool inferObjCARCLifetime(ValueDecl *decl);
5525
5526  ExprResult
5527  HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
5528                            Expr *BaseExpr,
5529                            SourceLocation OpLoc,
5530                            DeclarationName MemberName,
5531                            SourceLocation MemberLoc,
5532                            SourceLocation SuperLoc, QualType SuperType,
5533                            bool Super);
5534
5535  ExprResult
5536  ActOnClassPropertyRefExpr(IdentifierInfo &receiverName,
5537                            IdentifierInfo &propertyName,
5538                            SourceLocation receiverNameLoc,
5539                            SourceLocation propertyNameLoc);
5540
5541  ObjCMethodDecl *tryCaptureObjCSelf(SourceLocation Loc);
5542
5543  /// \brief Describes the kind of message expression indicated by a message
5544  /// send that starts with an identifier.
5545  enum ObjCMessageKind {
5546    /// \brief The message is sent to 'super'.
5547    ObjCSuperMessage,
5548    /// \brief The message is an instance message.
5549    ObjCInstanceMessage,
5550    /// \brief The message is a class message, and the identifier is a type
5551    /// name.
5552    ObjCClassMessage
5553  };
5554
5555  ObjCMessageKind getObjCMessageKind(Scope *S,
5556                                     IdentifierInfo *Name,
5557                                     SourceLocation NameLoc,
5558                                     bool IsSuper,
5559                                     bool HasTrailingDot,
5560                                     ParsedType &ReceiverType);
5561
5562  ExprResult ActOnSuperMessage(Scope *S, SourceLocation SuperLoc,
5563                               Selector Sel,
5564                               SourceLocation LBracLoc,
5565                               ArrayRef<SourceLocation> SelectorLocs,
5566                               SourceLocation RBracLoc,
5567                               MultiExprArg Args);
5568
5569  ExprResult BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo,
5570                               QualType ReceiverType,
5571                               SourceLocation SuperLoc,
5572                               Selector Sel,
5573                               ObjCMethodDecl *Method,
5574                               SourceLocation LBracLoc,
5575                               ArrayRef<SourceLocation> SelectorLocs,
5576                               SourceLocation RBracLoc,
5577                               MultiExprArg Args,
5578                               bool isImplicit = false);
5579
5580  ExprResult BuildClassMessageImplicit(QualType ReceiverType,
5581                                       bool isSuperReceiver,
5582                                       SourceLocation Loc,
5583                                       Selector Sel,
5584                                       ObjCMethodDecl *Method,
5585                                       MultiExprArg Args);
5586
5587  ExprResult ActOnClassMessage(Scope *S,
5588                               ParsedType Receiver,
5589                               Selector Sel,
5590                               SourceLocation LBracLoc,
5591                               ArrayRef<SourceLocation> SelectorLocs,
5592                               SourceLocation RBracLoc,
5593                               MultiExprArg Args);
5594
5595  ExprResult BuildInstanceMessage(Expr *Receiver,
5596                                  QualType ReceiverType,
5597                                  SourceLocation SuperLoc,
5598                                  Selector Sel,
5599                                  ObjCMethodDecl *Method,
5600                                  SourceLocation LBracLoc,
5601                                  ArrayRef<SourceLocation> SelectorLocs,
5602                                  SourceLocation RBracLoc,
5603                                  MultiExprArg Args,
5604                                  bool isImplicit = false);
5605
5606  ExprResult BuildInstanceMessageImplicit(Expr *Receiver,
5607                                          QualType ReceiverType,
5608                                          SourceLocation Loc,
5609                                          Selector Sel,
5610                                          ObjCMethodDecl *Method,
5611                                          MultiExprArg Args);
5612
5613  ExprResult ActOnInstanceMessage(Scope *S,
5614                                  Expr *Receiver,
5615                                  Selector Sel,
5616                                  SourceLocation LBracLoc,
5617                                  ArrayRef<SourceLocation> SelectorLocs,
5618                                  SourceLocation RBracLoc,
5619                                  MultiExprArg Args);
5620
5621  ExprResult BuildObjCBridgedCast(SourceLocation LParenLoc,
5622                                  ObjCBridgeCastKind Kind,
5623                                  SourceLocation BridgeKeywordLoc,
5624                                  TypeSourceInfo *TSInfo,
5625                                  Expr *SubExpr);
5626
5627  ExprResult ActOnObjCBridgedCast(Scope *S,
5628                                  SourceLocation LParenLoc,
5629                                  ObjCBridgeCastKind Kind,
5630                                  SourceLocation BridgeKeywordLoc,
5631                                  ParsedType Type,
5632                                  SourceLocation RParenLoc,
5633                                  Expr *SubExpr);
5634
5635  bool checkInitMethod(ObjCMethodDecl *method, QualType receiverTypeIfCall);
5636
5637  /// \brief Check whether the given new method is a valid override of the
5638  /// given overridden method, and set any properties that should be inherited.
5639  void CheckObjCMethodOverride(ObjCMethodDecl *NewMethod,
5640                               const ObjCMethodDecl *Overridden,
5641                               bool IsImplementation);
5642
5643  /// \brief Check whether the given method overrides any methods in its class,
5644  /// calling \c CheckObjCMethodOverride for each overridden method.
5645  bool CheckObjCMethodOverrides(ObjCMethodDecl *NewMethod, DeclContext *DC);
5646
5647  enum PragmaOptionsAlignKind {
5648    POAK_Native,  // #pragma options align=native
5649    POAK_Natural, // #pragma options align=natural
5650    POAK_Packed,  // #pragma options align=packed
5651    POAK_Power,   // #pragma options align=power
5652    POAK_Mac68k,  // #pragma options align=mac68k
5653    POAK_Reset    // #pragma options align=reset
5654  };
5655
5656  /// ActOnPragmaOptionsAlign - Called on well formed #pragma options align.
5657  void ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
5658                               SourceLocation PragmaLoc,
5659                               SourceLocation KindLoc);
5660
5661  enum PragmaPackKind {
5662    PPK_Default, // #pragma pack([n])
5663    PPK_Show,    // #pragma pack(show), only supported by MSVC.
5664    PPK_Push,    // #pragma pack(push, [identifier], [n])
5665    PPK_Pop      // #pragma pack(pop, [identifier], [n])
5666  };
5667
5668  enum PragmaMSStructKind {
5669    PMSST_OFF,  // #pragms ms_struct off
5670    PMSST_ON    // #pragms ms_struct on
5671  };
5672
5673  /// ActOnPragmaPack - Called on well formed #pragma pack(...).
5674  void ActOnPragmaPack(PragmaPackKind Kind,
5675                       IdentifierInfo *Name,
5676                       Expr *Alignment,
5677                       SourceLocation PragmaLoc,
5678                       SourceLocation LParenLoc,
5679                       SourceLocation RParenLoc);
5680
5681  /// ActOnPragmaMSStruct - Called on well formed #pragms ms_struct [on|off].
5682  void ActOnPragmaMSStruct(PragmaMSStructKind Kind);
5683
5684  /// ActOnPragmaUnused - Called on well-formed '#pragma unused'.
5685  void ActOnPragmaUnused(const Token &Identifier,
5686                         Scope *curScope,
5687                         SourceLocation PragmaLoc);
5688
5689  /// ActOnPragmaVisibility - Called on well formed #pragma GCC visibility... .
5690  void ActOnPragmaVisibility(const IdentifierInfo* VisType,
5691                             SourceLocation PragmaLoc);
5692
5693  NamedDecl *DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5694                                 SourceLocation Loc);
5695  void DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W);
5696
5697  /// ActOnPragmaWeakID - Called on well formed #pragma weak ident.
5698  void ActOnPragmaWeakID(IdentifierInfo* WeakName,
5699                         SourceLocation PragmaLoc,
5700                         SourceLocation WeakNameLoc);
5701
5702  /// ActOnPragmaWeakAlias - Called on well formed #pragma weak ident = ident.
5703  void ActOnPragmaWeakAlias(IdentifierInfo* WeakName,
5704                            IdentifierInfo* AliasName,
5705                            SourceLocation PragmaLoc,
5706                            SourceLocation WeakNameLoc,
5707                            SourceLocation AliasNameLoc);
5708
5709  /// ActOnPragmaFPContract - Called on well formed
5710  /// #pragma {STDC,OPENCL} FP_CONTRACT
5711  void ActOnPragmaFPContract(tok::OnOffSwitch OOS);
5712
5713  /// AddAlignmentAttributesForRecord - Adds any needed alignment attributes to
5714  /// a the record decl, to handle '#pragma pack' and '#pragma options align'.
5715  void AddAlignmentAttributesForRecord(RecordDecl *RD);
5716
5717  /// AddMsStructLayoutForRecord - Adds ms_struct layout attribute to record.
5718  void AddMsStructLayoutForRecord(RecordDecl *RD);
5719
5720  /// FreePackedContext - Deallocate and null out PackContext.
5721  void FreePackedContext();
5722
5723  /// PushNamespaceVisibilityAttr - Note that we've entered a
5724  /// namespace with a visibility attribute.
5725  void PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
5726                                   SourceLocation Loc);
5727
5728  /// AddPushedVisibilityAttribute - If '#pragma GCC visibility' was used,
5729  /// add an appropriate visibility attribute.
5730  void AddPushedVisibilityAttribute(Decl *RD);
5731
5732  /// PopPragmaVisibility - Pop the top element of the visibility stack; used
5733  /// for '#pragma GCC visibility' and visibility attributes on namespaces.
5734  void PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc);
5735
5736  /// FreeVisContext - Deallocate and null out VisContext.
5737  void FreeVisContext();
5738
5739  /// AddCFAuditedAttribute - Check whether we're currently within
5740  /// '#pragma clang arc_cf_code_audited' and, if so, consider adding
5741  /// the appropriate attribute.
5742  void AddCFAuditedAttribute(Decl *D);
5743
5744  /// AddAlignedAttr - Adds an aligned attribute to a particular declaration.
5745  void AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E);
5746  void AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *T);
5747
5748  /// \brief The kind of conversion being performed.
5749  enum CheckedConversionKind {
5750    /// \brief An implicit conversion.
5751    CCK_ImplicitConversion,
5752    /// \brief A C-style cast.
5753    CCK_CStyleCast,
5754    /// \brief A functional-style cast.
5755    CCK_FunctionalCast,
5756    /// \brief A cast other than a C-style cast.
5757    CCK_OtherCast
5758  };
5759
5760  /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit
5761  /// cast.  If there is already an implicit cast, merge into the existing one.
5762  /// If isLvalue, the result of the cast is an lvalue.
5763  ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK,
5764                               ExprValueKind VK = VK_RValue,
5765                               const CXXCastPath *BasePath = 0,
5766                               CheckedConversionKind CCK
5767                                  = CCK_ImplicitConversion);
5768
5769  /// ScalarTypeToBooleanCastKind - Returns the cast kind corresponding
5770  /// to the conversion from scalar type ScalarTy to the Boolean type.
5771  static CastKind ScalarTypeToBooleanCastKind(QualType ScalarTy);
5772
5773  /// IgnoredValueConversions - Given that an expression's result is
5774  /// syntactically ignored, perform any conversions that are
5775  /// required.
5776  ExprResult IgnoredValueConversions(Expr *E);
5777
5778  // UsualUnaryConversions - promotes integers (C99 6.3.1.1p2) and converts
5779  // functions and arrays to their respective pointers (C99 6.3.2.1).
5780  ExprResult UsualUnaryConversions(Expr *E);
5781
5782  // DefaultFunctionArrayConversion - converts functions and arrays
5783  // to their respective pointers (C99 6.3.2.1).
5784  ExprResult DefaultFunctionArrayConversion(Expr *E);
5785
5786  // DefaultFunctionArrayLvalueConversion - converts functions and
5787  // arrays to their respective pointers and performs the
5788  // lvalue-to-rvalue conversion.
5789  ExprResult DefaultFunctionArrayLvalueConversion(Expr *E);
5790
5791  // DefaultLvalueConversion - performs lvalue-to-rvalue conversion on
5792  // the operand.  This is DefaultFunctionArrayLvalueConversion,
5793  // except that it assumes the operand isn't of function or array
5794  // type.
5795  ExprResult DefaultLvalueConversion(Expr *E);
5796
5797  // DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
5798  // do not have a prototype. Integer promotions are performed on each
5799  // argument, and arguments that have type float are promoted to double.
5800  ExprResult DefaultArgumentPromotion(Expr *E);
5801
5802  // Used for emitting the right warning by DefaultVariadicArgumentPromotion
5803  enum VariadicCallType {
5804    VariadicFunction,
5805    VariadicBlock,
5806    VariadicMethod,
5807    VariadicConstructor,
5808    VariadicDoesNotApply
5809  };
5810
5811  /// GatherArgumentsForCall - Collector argument expressions for various
5812  /// form of call prototypes.
5813  bool GatherArgumentsForCall(SourceLocation CallLoc,
5814                              FunctionDecl *FDecl,
5815                              const FunctionProtoType *Proto,
5816                              unsigned FirstProtoArg,
5817                              Expr **Args, unsigned NumArgs,
5818                              SmallVector<Expr *, 8> &AllArgs,
5819                              VariadicCallType CallType = VariadicDoesNotApply);
5820
5821  // DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
5822  // will warn if the resulting type is not a POD type.
5823  ExprResult DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
5824                                              FunctionDecl *FDecl);
5825
5826  // UsualArithmeticConversions - performs the UsualUnaryConversions on it's
5827  // operands and then handles various conversions that are common to binary
5828  // operators (C99 6.3.1.8). If both operands aren't arithmetic, this
5829  // routine returns the first non-arithmetic type found. The client is
5830  // responsible for emitting appropriate error diagnostics.
5831  QualType UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
5832                                      bool IsCompAssign = false);
5833
5834  /// AssignConvertType - All of the 'assignment' semantic checks return this
5835  /// enum to indicate whether the assignment was allowed.  These checks are
5836  /// done for simple assignments, as well as initialization, return from
5837  /// function, argument passing, etc.  The query is phrased in terms of a
5838  /// source and destination type.
5839  enum AssignConvertType {
5840    /// Compatible - the types are compatible according to the standard.
5841    Compatible,
5842
5843    /// PointerToInt - The assignment converts a pointer to an int, which we
5844    /// accept as an extension.
5845    PointerToInt,
5846
5847    /// IntToPointer - The assignment converts an int to a pointer, which we
5848    /// accept as an extension.
5849    IntToPointer,
5850
5851    /// FunctionVoidPointer - The assignment is between a function pointer and
5852    /// void*, which the standard doesn't allow, but we accept as an extension.
5853    FunctionVoidPointer,
5854
5855    /// IncompatiblePointer - The assignment is between two pointers types that
5856    /// are not compatible, but we accept them as an extension.
5857    IncompatiblePointer,
5858
5859    /// IncompatiblePointer - The assignment is between two pointers types which
5860    /// point to integers which have a different sign, but are otherwise
5861    /// identical. This is a subset of the above, but broken out because it's by
5862    /// far the most common case of incompatible pointers.
5863    IncompatiblePointerSign,
5864
5865    /// CompatiblePointerDiscardsQualifiers - The assignment discards
5866    /// c/v/r qualifiers, which we accept as an extension.
5867    CompatiblePointerDiscardsQualifiers,
5868
5869    /// IncompatiblePointerDiscardsQualifiers - The assignment
5870    /// discards qualifiers that we don't permit to be discarded,
5871    /// like address spaces.
5872    IncompatiblePointerDiscardsQualifiers,
5873
5874    /// IncompatibleNestedPointerQualifiers - The assignment is between two
5875    /// nested pointer types, and the qualifiers other than the first two
5876    /// levels differ e.g. char ** -> const char **, but we accept them as an
5877    /// extension.
5878    IncompatibleNestedPointerQualifiers,
5879
5880    /// IncompatibleVectors - The assignment is between two vector types that
5881    /// have the same size, which we accept as an extension.
5882    IncompatibleVectors,
5883
5884    /// IntToBlockPointer - The assignment converts an int to a block
5885    /// pointer. We disallow this.
5886    IntToBlockPointer,
5887
5888    /// IncompatibleBlockPointer - The assignment is between two block
5889    /// pointers types that are not compatible.
5890    IncompatibleBlockPointer,
5891
5892    /// IncompatibleObjCQualifiedId - The assignment is between a qualified
5893    /// id type and something else (that is incompatible with it). For example,
5894    /// "id <XXX>" = "Foo *", where "Foo *" doesn't implement the XXX protocol.
5895    IncompatibleObjCQualifiedId,
5896
5897    /// IncompatibleObjCWeakRef - Assigning a weak-unavailable object to an
5898    /// object with __weak qualifier.
5899    IncompatibleObjCWeakRef,
5900
5901    /// Incompatible - We reject this conversion outright, it is invalid to
5902    /// represent it in the AST.
5903    Incompatible
5904  };
5905
5906  /// DiagnoseAssignmentResult - Emit a diagnostic, if required, for the
5907  /// assignment conversion type specified by ConvTy.  This returns true if the
5908  /// conversion was invalid or false if the conversion was accepted.
5909  bool DiagnoseAssignmentResult(AssignConvertType ConvTy,
5910                                SourceLocation Loc,
5911                                QualType DstType, QualType SrcType,
5912                                Expr *SrcExpr, AssignmentAction Action,
5913                                bool *Complained = 0);
5914
5915  /// CheckAssignmentConstraints - Perform type checking for assignment,
5916  /// argument passing, variable initialization, and function return values.
5917  /// C99 6.5.16.
5918  AssignConvertType CheckAssignmentConstraints(SourceLocation Loc,
5919                                               QualType LHSType,
5920                                               QualType RHSType);
5921
5922  /// Check assignment constraints and prepare for a conversion of the
5923  /// RHS to the LHS type.
5924  AssignConvertType CheckAssignmentConstraints(QualType LHSType,
5925                                               ExprResult &RHS,
5926                                               CastKind &Kind);
5927
5928  // CheckSingleAssignmentConstraints - Currently used by
5929  // CheckAssignmentOperands, and ActOnReturnStmt. Prior to type checking,
5930  // this routine performs the default function/array converions.
5931  AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType,
5932                                                     ExprResult &RHS,
5933                                                     bool Diagnose = true);
5934
5935  // \brief If the lhs type is a transparent union, check whether we
5936  // can initialize the transparent union with the given expression.
5937  AssignConvertType CheckTransparentUnionArgumentConstraints(QualType ArgType,
5938                                                             ExprResult &RHS);
5939
5940  bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType);
5941
5942  bool CheckExceptionSpecCompatibility(Expr *From, QualType ToType);
5943
5944  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5945                                       AssignmentAction Action,
5946                                       bool AllowExplicit = false);
5947  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5948                                       AssignmentAction Action,
5949                                       bool AllowExplicit,
5950                                       ImplicitConversionSequence& ICS);
5951  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5952                                       const ImplicitConversionSequence& ICS,
5953                                       AssignmentAction Action,
5954                                       CheckedConversionKind CCK
5955                                          = CCK_ImplicitConversion);
5956  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5957                                       const StandardConversionSequence& SCS,
5958                                       AssignmentAction Action,
5959                                       CheckedConversionKind CCK);
5960
5961  /// the following "Check" methods will return a valid/converted QualType
5962  /// or a null QualType (indicating an error diagnostic was issued).
5963
5964  /// type checking binary operators (subroutines of CreateBuiltinBinOp).
5965  QualType InvalidOperands(SourceLocation Loc, ExprResult &LHS,
5966                           ExprResult &RHS);
5967  QualType CheckPointerToMemberOperands( // C++ 5.5
5968    ExprResult &LHS, ExprResult &RHS, ExprValueKind &VK,
5969    SourceLocation OpLoc, bool isIndirect);
5970  QualType CheckMultiplyDivideOperands( // C99 6.5.5
5971    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign,
5972    bool IsDivide);
5973  QualType CheckRemainderOperands( // C99 6.5.5
5974    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5975    bool IsCompAssign = false);
5976  QualType CheckAdditionOperands( // C99 6.5.6
5977    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5978    QualType* CompLHSTy = 0);
5979  QualType CheckSubtractionOperands( // C99 6.5.6
5980    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5981    QualType* CompLHSTy = 0);
5982  QualType CheckShiftOperands( // C99 6.5.7
5983    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc,
5984    bool IsCompAssign = false);
5985  QualType CheckCompareOperands( // C99 6.5.8/9
5986    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned OpaqueOpc,
5987                                bool isRelational);
5988  QualType CheckBitwiseOperands( // C99 6.5.[10...12]
5989    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5990    bool IsCompAssign = false);
5991  QualType CheckLogicalOperands( // C99 6.5.[13,14]
5992    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc);
5993  // CheckAssignmentOperands is used for both simple and compound assignment.
5994  // For simple assignment, pass both expressions and a null converted type.
5995  // For compound assignment, pass both expressions and the converted type.
5996  QualType CheckAssignmentOperands( // C99 6.5.16.[1,2]
5997    Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType);
5998
5999  ExprResult checkPseudoObjectIncDec(Scope *S, SourceLocation OpLoc,
6000                                     UnaryOperatorKind Opcode, Expr *Op);
6001  ExprResult checkPseudoObjectAssignment(Scope *S, SourceLocation OpLoc,
6002                                         BinaryOperatorKind Opcode,
6003                                         Expr *LHS, Expr *RHS);
6004  ExprResult checkPseudoObjectRValue(Expr *E);
6005  Expr *recreateSyntacticForm(PseudoObjectExpr *E);
6006
6007  QualType CheckConditionalOperands( // C99 6.5.15
6008    ExprResult &Cond, ExprResult &LHS, ExprResult &RHS,
6009    ExprValueKind &VK, ExprObjectKind &OK, SourceLocation QuestionLoc);
6010  QualType CXXCheckConditionalOperands( // C++ 5.16
6011    ExprResult &cond, ExprResult &lhs, ExprResult &rhs,
6012    ExprValueKind &VK, ExprObjectKind &OK, SourceLocation questionLoc);
6013  QualType FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2,
6014                                    bool *NonStandardCompositeType = 0);
6015  QualType FindCompositePointerType(SourceLocation Loc,
6016                                    ExprResult &E1, ExprResult &E2,
6017                                    bool *NonStandardCompositeType = 0) {
6018    Expr *E1Tmp = E1.take(), *E2Tmp = E2.take();
6019    QualType Composite = FindCompositePointerType(Loc, E1Tmp, E2Tmp,
6020                                                  NonStandardCompositeType);
6021    E1 = Owned(E1Tmp);
6022    E2 = Owned(E2Tmp);
6023    return Composite;
6024  }
6025
6026  QualType FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
6027                                        SourceLocation QuestionLoc);
6028
6029  bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
6030                                  SourceLocation QuestionLoc);
6031
6032  /// type checking for vector binary operators.
6033  QualType CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
6034                               SourceLocation Loc, bool IsCompAssign);
6035  QualType GetSignedVectorType(QualType V);
6036  QualType CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
6037                                      SourceLocation Loc, bool isRelational);
6038  QualType CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
6039                                      SourceLocation Loc);
6040
6041  /// type checking declaration initializers (C99 6.7.8)
6042  bool CheckForConstantInitializer(Expr *e, QualType t);
6043
6044  // type checking C++ declaration initializers (C++ [dcl.init]).
6045
6046  /// ReferenceCompareResult - Expresses the result of comparing two
6047  /// types (cv1 T1 and cv2 T2) to determine their compatibility for the
6048  /// purposes of initialization by reference (C++ [dcl.init.ref]p4).
6049  enum ReferenceCompareResult {
6050    /// Ref_Incompatible - The two types are incompatible, so direct
6051    /// reference binding is not possible.
6052    Ref_Incompatible = 0,
6053    /// Ref_Related - The two types are reference-related, which means
6054    /// that their unqualified forms (T1 and T2) are either the same
6055    /// or T1 is a base class of T2.
6056    Ref_Related,
6057    /// Ref_Compatible_With_Added_Qualification - The two types are
6058    /// reference-compatible with added qualification, meaning that
6059    /// they are reference-compatible and the qualifiers on T1 (cv1)
6060    /// are greater than the qualifiers on T2 (cv2).
6061    Ref_Compatible_With_Added_Qualification,
6062    /// Ref_Compatible - The two types are reference-compatible and
6063    /// have equivalent qualifiers (cv1 == cv2).
6064    Ref_Compatible
6065  };
6066
6067  ReferenceCompareResult CompareReferenceRelationship(SourceLocation Loc,
6068                                                      QualType T1, QualType T2,
6069                                                      bool &DerivedToBase,
6070                                                      bool &ObjCConversion,
6071                                                bool &ObjCLifetimeConversion);
6072
6073  ExprResult checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
6074                                 Expr *CastExpr, CastKind &CastKind,
6075                                 ExprValueKind &VK, CXXCastPath &Path);
6076
6077  /// \brief Force an expression with unknown-type to an expression of the
6078  /// given type.
6079  ExprResult forceUnknownAnyToType(Expr *E, QualType ToType);
6080
6081  // CheckVectorCast - check type constraints for vectors.
6082  // Since vectors are an extension, there are no C standard reference for this.
6083  // We allow casting between vectors and integer datatypes of the same size.
6084  // returns true if the cast is invalid
6085  bool CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
6086                       CastKind &Kind);
6087
6088  // CheckExtVectorCast - check type constraints for extended vectors.
6089  // Since vectors are an extension, there are no C standard reference for this.
6090  // We allow casting between vectors and integer datatypes of the same size,
6091  // or vectors and the element type of that vector.
6092  // returns the cast expr
6093  ExprResult CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *CastExpr,
6094                                CastKind &Kind);
6095
6096  ExprResult BuildCXXFunctionalCastExpr(TypeSourceInfo *TInfo,
6097                                        SourceLocation LParenLoc,
6098                                        Expr *CastExpr,
6099                                        SourceLocation RParenLoc);
6100
6101  enum ARCConversionResult { ACR_okay, ACR_unbridged };
6102
6103  /// \brief Checks for invalid conversions and casts between
6104  /// retainable pointers and other pointer kinds.
6105  ARCConversionResult CheckObjCARCConversion(SourceRange castRange,
6106                                             QualType castType, Expr *&op,
6107                                             CheckedConversionKind CCK);
6108
6109  Expr *stripARCUnbridgedCast(Expr *e);
6110  void diagnoseARCUnbridgedCast(Expr *e);
6111
6112  bool CheckObjCARCUnavailableWeakConversion(QualType castType,
6113                                             QualType ExprType);
6114
6115  /// checkRetainCycles - Check whether an Objective-C message send
6116  /// might create an obvious retain cycle.
6117  void checkRetainCycles(ObjCMessageExpr *msg);
6118  void checkRetainCycles(Expr *receiver, Expr *argument);
6119
6120  /// checkUnsafeAssigns - Check whether +1 expr is being assigned
6121  /// to weak/__unsafe_unretained type.
6122  bool checkUnsafeAssigns(SourceLocation Loc, QualType LHS, Expr *RHS);
6123
6124  /// checkUnsafeExprAssigns - Check whether +1 expr is being assigned
6125  /// to weak/__unsafe_unretained expression.
6126  void checkUnsafeExprAssigns(SourceLocation Loc, Expr *LHS, Expr *RHS);
6127
6128  /// CheckMessageArgumentTypes - Check types in an Obj-C message send.
6129  /// \param Method - May be null.
6130  /// \param [out] ReturnType - The return type of the send.
6131  /// \return true iff there were any incompatible types.
6132  bool CheckMessageArgumentTypes(QualType ReceiverType,
6133                                 Expr **Args, unsigned NumArgs, Selector Sel,
6134                                 ObjCMethodDecl *Method, bool isClassMessage,
6135                                 bool isSuperMessage,
6136                                 SourceLocation lbrac, SourceLocation rbrac,
6137                                 QualType &ReturnType, ExprValueKind &VK);
6138
6139  /// \brief Determine the result of a message send expression based on
6140  /// the type of the receiver, the method expected to receive the message,
6141  /// and the form of the message send.
6142  QualType getMessageSendResultType(QualType ReceiverType,
6143                                    ObjCMethodDecl *Method,
6144                                    bool isClassMessage, bool isSuperMessage);
6145
6146  /// \brief If the given expression involves a message send to a method
6147  /// with a related result type, emit a note describing what happened.
6148  void EmitRelatedResultTypeNote(const Expr *E);
6149
6150  /// CheckBooleanCondition - Diagnose problems involving the use of
6151  /// the given expression as a boolean condition (e.g. in an if
6152  /// statement).  Also performs the standard function and array
6153  /// decays, possibly changing the input variable.
6154  ///
6155  /// \param Loc - A location associated with the condition, e.g. the
6156  /// 'if' keyword.
6157  /// \return true iff there were any errors
6158  ExprResult CheckBooleanCondition(Expr *E, SourceLocation Loc);
6159
6160  ExprResult ActOnBooleanCondition(Scope *S, SourceLocation Loc,
6161                                   Expr *SubExpr);
6162
6163  /// DiagnoseAssignmentAsCondition - Given that an expression is
6164  /// being used as a boolean condition, warn if it's an assignment.
6165  void DiagnoseAssignmentAsCondition(Expr *E);
6166
6167  /// \brief Redundant parentheses over an equality comparison can indicate
6168  /// that the user intended an assignment used as condition.
6169  void DiagnoseEqualityWithExtraParens(ParenExpr *ParenE);
6170
6171  /// CheckCXXBooleanCondition - Returns true if conversion to bool is invalid.
6172  ExprResult CheckCXXBooleanCondition(Expr *CondExpr);
6173
6174  /// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
6175  /// the specified width and sign.  If an overflow occurs, detect it and emit
6176  /// the specified diagnostic.
6177  void ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &OldVal,
6178                                          unsigned NewWidth, bool NewSign,
6179                                          SourceLocation Loc, unsigned DiagID);
6180
6181  /// Checks that the Objective-C declaration is declared in the global scope.
6182  /// Emits an error and marks the declaration as invalid if it's not declared
6183  /// in the global scope.
6184  bool CheckObjCDeclScope(Decl *D);
6185
6186  /// VerifyIntegerConstantExpression - Verifies that an expression is an ICE,
6187  /// and reports the appropriate diagnostics. Returns false on success.
6188  /// Can optionally return the value of the expression.
6189  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
6190                                             PartialDiagnostic Diag,
6191                                             bool AllowFold,
6192                                             PartialDiagnostic FoldDiag);
6193  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
6194                                             PartialDiagnostic Diag,
6195                                             bool AllowFold = true) {
6196    return VerifyIntegerConstantExpression(E, Result, Diag, AllowFold,
6197                                           PDiag(0));
6198  }
6199  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result = 0);
6200
6201  /// VerifyBitField - verifies that a bit field expression is an ICE and has
6202  /// the correct width, and that the field type is valid.
6203  /// Returns false on success.
6204  /// Can optionally return whether the bit-field is of width 0
6205  ExprResult VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
6206                            QualType FieldTy, Expr *BitWidth,
6207                            bool *ZeroWidth = 0);
6208
6209  enum CUDAFunctionTarget {
6210    CFT_Device,
6211    CFT_Global,
6212    CFT_Host,
6213    CFT_HostDevice
6214  };
6215
6216  CUDAFunctionTarget IdentifyCUDATarget(const FunctionDecl *D);
6217
6218  bool CheckCUDATarget(CUDAFunctionTarget CallerTarget,
6219                       CUDAFunctionTarget CalleeTarget);
6220
6221  bool CheckCUDATarget(const FunctionDecl *Caller, const FunctionDecl *Callee) {
6222    return CheckCUDATarget(IdentifyCUDATarget(Caller),
6223                           IdentifyCUDATarget(Callee));
6224  }
6225
6226  /// \name Code completion
6227  //@{
6228  /// \brief Describes the context in which code completion occurs.
6229  enum ParserCompletionContext {
6230    /// \brief Code completion occurs at top-level or namespace context.
6231    PCC_Namespace,
6232    /// \brief Code completion occurs within a class, struct, or union.
6233    PCC_Class,
6234    /// \brief Code completion occurs within an Objective-C interface, protocol,
6235    /// or category.
6236    PCC_ObjCInterface,
6237    /// \brief Code completion occurs within an Objective-C implementation or
6238    /// category implementation
6239    PCC_ObjCImplementation,
6240    /// \brief Code completion occurs within the list of instance variables
6241    /// in an Objective-C interface, protocol, category, or implementation.
6242    PCC_ObjCInstanceVariableList,
6243    /// \brief Code completion occurs following one or more template
6244    /// headers.
6245    PCC_Template,
6246    /// \brief Code completion occurs following one or more template
6247    /// headers within a class.
6248    PCC_MemberTemplate,
6249    /// \brief Code completion occurs within an expression.
6250    PCC_Expression,
6251    /// \brief Code completion occurs within a statement, which may
6252    /// also be an expression or a declaration.
6253    PCC_Statement,
6254    /// \brief Code completion occurs at the beginning of the
6255    /// initialization statement (or expression) in a for loop.
6256    PCC_ForInit,
6257    /// \brief Code completion occurs within the condition of an if,
6258    /// while, switch, or for statement.
6259    PCC_Condition,
6260    /// \brief Code completion occurs within the body of a function on a
6261    /// recovery path, where we do not have a specific handle on our position
6262    /// in the grammar.
6263    PCC_RecoveryInFunction,
6264    /// \brief Code completion occurs where only a type is permitted.
6265    PCC_Type,
6266    /// \brief Code completion occurs in a parenthesized expression, which
6267    /// might also be a type cast.
6268    PCC_ParenthesizedExpression,
6269    /// \brief Code completion occurs within a sequence of declaration
6270    /// specifiers within a function, method, or block.
6271    PCC_LocalDeclarationSpecifiers
6272  };
6273
6274  void CodeCompleteModuleImport(SourceLocation ImportLoc, ModuleIdPath Path);
6275  void CodeCompleteOrdinaryName(Scope *S,
6276                                ParserCompletionContext CompletionContext);
6277  void CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
6278                            bool AllowNonIdentifiers,
6279                            bool AllowNestedNameSpecifiers);
6280
6281  struct CodeCompleteExpressionData;
6282  void CodeCompleteExpression(Scope *S,
6283                              const CodeCompleteExpressionData &Data);
6284  void CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
6285                                       SourceLocation OpLoc,
6286                                       bool IsArrow);
6287  void CodeCompletePostfixExpression(Scope *S, ExprResult LHS);
6288  void CodeCompleteTag(Scope *S, unsigned TagSpec);
6289  void CodeCompleteTypeQualifiers(DeclSpec &DS);
6290  void CodeCompleteCase(Scope *S);
6291  void CodeCompleteCall(Scope *S, Expr *Fn, Expr **Args, unsigned NumArgs);
6292  void CodeCompleteInitializer(Scope *S, Decl *D);
6293  void CodeCompleteReturn(Scope *S);
6294  void CodeCompleteAfterIf(Scope *S);
6295  void CodeCompleteAssignmentRHS(Scope *S, Expr *LHS);
6296
6297  void CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
6298                               bool EnteringContext);
6299  void CodeCompleteUsing(Scope *S);
6300  void CodeCompleteUsingDirective(Scope *S);
6301  void CodeCompleteNamespaceDecl(Scope *S);
6302  void CodeCompleteNamespaceAliasDecl(Scope *S);
6303  void CodeCompleteOperatorName(Scope *S);
6304  void CodeCompleteConstructorInitializer(Decl *Constructor,
6305                                          CXXCtorInitializer** Initializers,
6306                                          unsigned NumInitializers);
6307
6308  void CodeCompleteObjCAtDirective(Scope *S);
6309  void CodeCompleteObjCAtVisibility(Scope *S);
6310  void CodeCompleteObjCAtStatement(Scope *S);
6311  void CodeCompleteObjCAtExpression(Scope *S);
6312  void CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS);
6313  void CodeCompleteObjCPropertyGetter(Scope *S);
6314  void CodeCompleteObjCPropertySetter(Scope *S);
6315  void CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
6316                                   bool IsParameter);
6317  void CodeCompleteObjCMessageReceiver(Scope *S);
6318  void CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
6319                                    IdentifierInfo **SelIdents,
6320                                    unsigned NumSelIdents,
6321                                    bool AtArgumentExpression);
6322  void CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
6323                                    IdentifierInfo **SelIdents,
6324                                    unsigned NumSelIdents,
6325                                    bool AtArgumentExpression,
6326                                    bool IsSuper = false);
6327  void CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
6328                                       IdentifierInfo **SelIdents,
6329                                       unsigned NumSelIdents,
6330                                       bool AtArgumentExpression,
6331                                       ObjCInterfaceDecl *Super = 0);
6332  void CodeCompleteObjCForCollection(Scope *S,
6333                                     DeclGroupPtrTy IterationVar);
6334  void CodeCompleteObjCSelector(Scope *S,
6335                                IdentifierInfo **SelIdents,
6336                                unsigned NumSelIdents);
6337  void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
6338                                          unsigned NumProtocols);
6339  void CodeCompleteObjCProtocolDecl(Scope *S);
6340  void CodeCompleteObjCInterfaceDecl(Scope *S);
6341  void CodeCompleteObjCSuperclass(Scope *S,
6342                                  IdentifierInfo *ClassName,
6343                                  SourceLocation ClassNameLoc);
6344  void CodeCompleteObjCImplementationDecl(Scope *S);
6345  void CodeCompleteObjCInterfaceCategory(Scope *S,
6346                                         IdentifierInfo *ClassName,
6347                                         SourceLocation ClassNameLoc);
6348  void CodeCompleteObjCImplementationCategory(Scope *S,
6349                                              IdentifierInfo *ClassName,
6350                                              SourceLocation ClassNameLoc);
6351  void CodeCompleteObjCPropertyDefinition(Scope *S);
6352  void CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
6353                                              IdentifierInfo *PropertyName);
6354  void CodeCompleteObjCMethodDecl(Scope *S,
6355                                  bool IsInstanceMethod,
6356                                  ParsedType ReturnType);
6357  void CodeCompleteObjCMethodDeclSelector(Scope *S,
6358                                          bool IsInstanceMethod,
6359                                          bool AtParameterName,
6360                                          ParsedType ReturnType,
6361                                          IdentifierInfo **SelIdents,
6362                                          unsigned NumSelIdents);
6363  void CodeCompletePreprocessorDirective(bool InConditional);
6364  void CodeCompleteInPreprocessorConditionalExclusion(Scope *S);
6365  void CodeCompletePreprocessorMacroName(bool IsDefinition);
6366  void CodeCompletePreprocessorExpression();
6367  void CodeCompletePreprocessorMacroArgument(Scope *S,
6368                                             IdentifierInfo *Macro,
6369                                             MacroInfo *MacroInfo,
6370                                             unsigned Argument);
6371  void CodeCompleteNaturalLanguage();
6372  void GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
6373                  SmallVectorImpl<CodeCompletionResult> &Results);
6374  //@}
6375
6376  //===--------------------------------------------------------------------===//
6377  // Extra semantic analysis beyond the C type system
6378
6379public:
6380  SourceLocation getLocationOfStringLiteralByte(const StringLiteral *SL,
6381                                                unsigned ByteNo) const;
6382
6383private:
6384  void CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
6385                        const ArraySubscriptExpr *ASE=0,
6386                        bool AllowOnePastEnd=true, bool IndexNegated=false);
6387  void CheckArrayAccess(const Expr *E);
6388  bool CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall);
6389  bool CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation loc,
6390                           Expr **Args, unsigned NumArgs);
6391  bool CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall);
6392
6393  bool CheckObjCString(Expr *Arg);
6394
6395  ExprResult CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall);
6396  bool CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall);
6397
6398  bool SemaBuiltinVAStart(CallExpr *TheCall);
6399  bool SemaBuiltinUnorderedCompare(CallExpr *TheCall);
6400  bool SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs);
6401
6402public:
6403  // Used by C++ template instantiation.
6404  ExprResult SemaBuiltinShuffleVector(CallExpr *TheCall);
6405
6406private:
6407  bool SemaBuiltinPrefetch(CallExpr *TheCall);
6408  bool SemaBuiltinObjectSize(CallExpr *TheCall);
6409  bool SemaBuiltinLongjmp(CallExpr *TheCall);
6410  ExprResult SemaBuiltinAtomicOverloaded(ExprResult TheCallResult);
6411  ExprResult SemaAtomicOpsOverloaded(ExprResult TheCallResult,
6412                                     AtomicExpr::AtomicOp Op);
6413  bool SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
6414                              llvm::APSInt &Result);
6415
6416  enum FormatStringType {
6417    FST_Scanf,
6418    FST_Printf,
6419    FST_NSString,
6420    FST_Strftime,
6421    FST_Strfmon,
6422    FST_Kprintf,
6423    FST_Unknown
6424  };
6425  static FormatStringType GetFormatStringType(const FormatAttr *Format);
6426  bool SemaCheckStringLiteral(const Expr *E, Expr **Args, unsigned NumArgs,
6427                              bool HasVAListArg, unsigned format_idx,
6428                              unsigned firstDataArg, FormatStringType Type,
6429                              bool inFunctionCall = true);
6430
6431  void CheckFormatString(const StringLiteral *FExpr, const Expr *OrigFormatExpr,
6432                         Expr **Args, unsigned NumArgs, bool HasVAListArg,
6433                         unsigned format_idx, unsigned firstDataArg,
6434                         FormatStringType Type, bool inFunctionCall);
6435
6436  void CheckFormatArguments(const FormatAttr *Format, CallExpr *TheCall);
6437  void CheckFormatArguments(const FormatAttr *Format, Expr **Args,
6438                            unsigned NumArgs, bool IsCXXMember,
6439                            SourceLocation Loc, SourceRange Range);
6440  void CheckFormatArguments(Expr **Args, unsigned NumArgs,
6441                            bool HasVAListArg, unsigned format_idx,
6442                            unsigned firstDataArg, FormatStringType Type,
6443                            SourceLocation Loc, SourceRange range);
6444
6445  void CheckNonNullArguments(const NonNullAttr *NonNull,
6446                             const Expr * const *ExprArgs,
6447                             SourceLocation CallSiteLoc);
6448
6449  void CheckMemaccessArguments(const CallExpr *Call,
6450                               unsigned BId,
6451                               IdentifierInfo *FnName);
6452
6453  void CheckStrlcpycatArguments(const CallExpr *Call,
6454                                IdentifierInfo *FnName);
6455
6456  void CheckStrncatArguments(const CallExpr *Call,
6457                             IdentifierInfo *FnName);
6458
6459  void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
6460                            SourceLocation ReturnLoc);
6461  void CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr* RHS);
6462  void CheckImplicitConversions(Expr *E, SourceLocation CC = SourceLocation());
6463
6464  void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field,
6465                                   Expr *Init);
6466
6467  /// \brief The parser's current scope.
6468  ///
6469  /// The parser maintains this state here.
6470  Scope *CurScope;
6471
6472protected:
6473  friend class Parser;
6474  friend class InitializationSequence;
6475  friend class ASTReader;
6476  friend class ASTWriter;
6477
6478public:
6479  /// \brief Retrieve the parser's current scope.
6480  ///
6481  /// This routine must only be used when it is certain that semantic analysis
6482  /// and the parser are in precisely the same context, which is not the case
6483  /// when, e.g., we are performing any kind of template instantiation.
6484  /// Therefore, the only safe places to use this scope are in the parser
6485  /// itself and in routines directly invoked from the parser and *never* from
6486  /// template substitution or instantiation.
6487  Scope *getCurScope() const { return CurScope; }
6488
6489  Decl *getObjCDeclContext() const;
6490
6491  DeclContext *getCurLexicalContext() const {
6492    return OriginalLexicalContext ? OriginalLexicalContext : CurContext;
6493  }
6494
6495  AvailabilityResult getCurContextAvailability() const;
6496};
6497
6498/// \brief RAII object that enters a new expression evaluation context.
6499class EnterExpressionEvaluationContext {
6500  Sema &Actions;
6501
6502public:
6503  EnterExpressionEvaluationContext(Sema &Actions,
6504                                   Sema::ExpressionEvaluationContext NewContext)
6505    : Actions(Actions) {
6506    Actions.PushExpressionEvaluationContext(NewContext);
6507  }
6508
6509  ~EnterExpressionEvaluationContext() {
6510    Actions.PopExpressionEvaluationContext();
6511  }
6512};
6513
6514}  // end namespace clang
6515
6516#endif
6517