Sema.h revision e4e68d45f89ff4899d30cbd196603d09b7fbc150
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  /// \brief Determine whether the given function is an implicitly-deleted
3072  /// special member function.
3073  bool isImplicitlyDeleted(FunctionDecl *FD);
3074
3075  /// MaybeBindToTemporary - If the passed in expression has a record type with
3076  /// a non-trivial destructor, this will return CXXBindTemporaryExpr. Otherwise
3077  /// it simply returns the passed in expression.
3078  ExprResult MaybeBindToTemporary(Expr *E);
3079
3080  bool CompleteConstructorCall(CXXConstructorDecl *Constructor,
3081                               MultiExprArg ArgsPtr,
3082                               SourceLocation Loc,
3083                               ASTOwningVector<Expr*> &ConvertedArgs);
3084
3085  ParsedType getDestructorName(SourceLocation TildeLoc,
3086                               IdentifierInfo &II, SourceLocation NameLoc,
3087                               Scope *S, CXXScopeSpec &SS,
3088                               ParsedType ObjectType,
3089                               bool EnteringContext);
3090
3091  ParsedType getDestructorType(const DeclSpec& DS, ParsedType ObjectType);
3092
3093  // Checks that reinterpret casts don't have undefined behavior.
3094  void CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
3095                                      bool IsDereference, SourceRange Range);
3096
3097  /// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's.
3098  ExprResult ActOnCXXNamedCast(SourceLocation OpLoc,
3099                               tok::TokenKind Kind,
3100                               SourceLocation LAngleBracketLoc,
3101                               Declarator &D,
3102                               SourceLocation RAngleBracketLoc,
3103                               SourceLocation LParenLoc,
3104                               Expr *E,
3105                               SourceLocation RParenLoc);
3106
3107  ExprResult BuildCXXNamedCast(SourceLocation OpLoc,
3108                               tok::TokenKind Kind,
3109                               TypeSourceInfo *Ty,
3110                               Expr *E,
3111                               SourceRange AngleBrackets,
3112                               SourceRange Parens);
3113
3114  ExprResult BuildCXXTypeId(QualType TypeInfoType,
3115                            SourceLocation TypeidLoc,
3116                            TypeSourceInfo *Operand,
3117                            SourceLocation RParenLoc);
3118  ExprResult BuildCXXTypeId(QualType TypeInfoType,
3119                            SourceLocation TypeidLoc,
3120                            Expr *Operand,
3121                            SourceLocation RParenLoc);
3122
3123  /// ActOnCXXTypeid - Parse typeid( something ).
3124  ExprResult ActOnCXXTypeid(SourceLocation OpLoc,
3125                            SourceLocation LParenLoc, bool isType,
3126                            void *TyOrExpr,
3127                            SourceLocation RParenLoc);
3128
3129  ExprResult BuildCXXUuidof(QualType TypeInfoType,
3130                            SourceLocation TypeidLoc,
3131                            TypeSourceInfo *Operand,
3132                            SourceLocation RParenLoc);
3133  ExprResult BuildCXXUuidof(QualType TypeInfoType,
3134                            SourceLocation TypeidLoc,
3135                            Expr *Operand,
3136                            SourceLocation RParenLoc);
3137
3138  /// ActOnCXXUuidof - Parse __uuidof( something ).
3139  ExprResult ActOnCXXUuidof(SourceLocation OpLoc,
3140                            SourceLocation LParenLoc, bool isType,
3141                            void *TyOrExpr,
3142                            SourceLocation RParenLoc);
3143
3144
3145  //// ActOnCXXThis -  Parse 'this' pointer.
3146  ExprResult ActOnCXXThis(SourceLocation loc);
3147
3148  /// \brief Try to retrieve the type of the 'this' pointer.
3149  ///
3150  /// \param Capture If true, capture 'this' in this context.
3151  ///
3152  /// \returns The type of 'this', if possible. Otherwise, returns a NULL type.
3153  QualType getCurrentThisType();
3154
3155  /// \brief Make sure the value of 'this' is actually available in the current
3156  /// context, if it is a potentially evaluated context.
3157  ///
3158  /// \param Loc The location at which the capture of 'this' occurs.
3159  ///
3160  /// \param Explicit Whether 'this' is explicitly captured in a lambda
3161  /// capture list.
3162  void CheckCXXThisCapture(SourceLocation Loc, bool Explicit = false);
3163
3164  /// ActOnCXXBoolLiteral - Parse {true,false} literals.
3165  ExprResult ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind);
3166
3167  /// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
3168  ExprResult ActOnCXXNullPtrLiteral(SourceLocation Loc);
3169
3170  //// ActOnCXXThrow -  Parse throw expressions.
3171  ExprResult ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *expr);
3172  ExprResult BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
3173                           bool IsThrownVarInScope);
3174  ExprResult CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E,
3175                                  bool IsThrownVarInScope);
3176
3177  /// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
3178  /// Can be interpreted either as function-style casting ("int(x)")
3179  /// or class type construction ("ClassType(x,y,z)")
3180  /// or creation of a value-initialized type ("int()").
3181  ExprResult ActOnCXXTypeConstructExpr(ParsedType TypeRep,
3182                                       SourceLocation LParenLoc,
3183                                       MultiExprArg Exprs,
3184                                       SourceLocation RParenLoc);
3185
3186  ExprResult BuildCXXTypeConstructExpr(TypeSourceInfo *Type,
3187                                       SourceLocation LParenLoc,
3188                                       MultiExprArg Exprs,
3189                                       SourceLocation RParenLoc);
3190
3191  /// ActOnCXXNew - Parsed a C++ 'new' expression.
3192  ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
3193                         SourceLocation PlacementLParen,
3194                         MultiExprArg PlacementArgs,
3195                         SourceLocation PlacementRParen,
3196                         SourceRange TypeIdParens, Declarator &D,
3197                         SourceLocation ConstructorLParen,
3198                         MultiExprArg ConstructorArgs,
3199                         SourceLocation ConstructorRParen);
3200  ExprResult BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
3201                         SourceLocation PlacementLParen,
3202                         MultiExprArg PlacementArgs,
3203                         SourceLocation PlacementRParen,
3204                         SourceRange TypeIdParens,
3205                         QualType AllocType,
3206                         TypeSourceInfo *AllocTypeInfo,
3207                         Expr *ArraySize,
3208                         SourceLocation ConstructorLParen,
3209                         MultiExprArg ConstructorArgs,
3210                         SourceLocation ConstructorRParen,
3211                         bool TypeMayContainAuto = true);
3212
3213  bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
3214                          SourceRange R);
3215  bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
3216                               bool UseGlobal, QualType AllocType, bool IsArray,
3217                               Expr **PlaceArgs, unsigned NumPlaceArgs,
3218                               FunctionDecl *&OperatorNew,
3219                               FunctionDecl *&OperatorDelete);
3220  bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
3221                              DeclarationName Name, Expr** Args,
3222                              unsigned NumArgs, DeclContext *Ctx,
3223                              bool AllowMissing, FunctionDecl *&Operator,
3224                              bool Diagnose = true);
3225  void DeclareGlobalNewDelete();
3226  void DeclareGlobalAllocationFunction(DeclarationName Name, QualType Return,
3227                                       QualType Argument,
3228                                       bool addMallocAttr = false);
3229
3230  bool FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
3231                                DeclarationName Name, FunctionDecl* &Operator,
3232                                bool Diagnose = true);
3233
3234  /// ActOnCXXDelete - Parsed a C++ 'delete' expression
3235  ExprResult ActOnCXXDelete(SourceLocation StartLoc,
3236                            bool UseGlobal, bool ArrayForm,
3237                            Expr *Operand);
3238
3239  DeclResult ActOnCXXConditionDeclaration(Scope *S, Declarator &D);
3240  ExprResult CheckConditionVariable(VarDecl *ConditionVar,
3241                                    SourceLocation StmtLoc,
3242                                    bool ConvertToBoolean);
3243
3244  ExprResult ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation LParen,
3245                               Expr *Operand, SourceLocation RParen);
3246  ExprResult BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
3247                                  SourceLocation RParen);
3248
3249  /// ActOnUnaryTypeTrait - Parsed one of the unary type trait support
3250  /// pseudo-functions.
3251  ExprResult ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
3252                                 SourceLocation KWLoc,
3253                                 ParsedType Ty,
3254                                 SourceLocation RParen);
3255
3256  ExprResult BuildUnaryTypeTrait(UnaryTypeTrait OTT,
3257                                 SourceLocation KWLoc,
3258                                 TypeSourceInfo *T,
3259                                 SourceLocation RParen);
3260
3261  /// ActOnBinaryTypeTrait - Parsed one of the bianry type trait support
3262  /// pseudo-functions.
3263  ExprResult ActOnBinaryTypeTrait(BinaryTypeTrait OTT,
3264                                  SourceLocation KWLoc,
3265                                  ParsedType LhsTy,
3266                                  ParsedType RhsTy,
3267                                  SourceLocation RParen);
3268
3269  ExprResult BuildBinaryTypeTrait(BinaryTypeTrait BTT,
3270                                  SourceLocation KWLoc,
3271                                  TypeSourceInfo *LhsT,
3272                                  TypeSourceInfo *RhsT,
3273                                  SourceLocation RParen);
3274
3275  /// ActOnArrayTypeTrait - Parsed one of the bianry type trait support
3276  /// pseudo-functions.
3277  ExprResult ActOnArrayTypeTrait(ArrayTypeTrait ATT,
3278                                 SourceLocation KWLoc,
3279                                 ParsedType LhsTy,
3280                                 Expr *DimExpr,
3281                                 SourceLocation RParen);
3282
3283  ExprResult BuildArrayTypeTrait(ArrayTypeTrait ATT,
3284                                 SourceLocation KWLoc,
3285                                 TypeSourceInfo *TSInfo,
3286                                 Expr *DimExpr,
3287                                 SourceLocation RParen);
3288
3289  /// ActOnExpressionTrait - Parsed one of the unary type trait support
3290  /// pseudo-functions.
3291  ExprResult ActOnExpressionTrait(ExpressionTrait OET,
3292                                  SourceLocation KWLoc,
3293                                  Expr *Queried,
3294                                  SourceLocation RParen);
3295
3296  ExprResult BuildExpressionTrait(ExpressionTrait OET,
3297                                  SourceLocation KWLoc,
3298                                  Expr *Queried,
3299                                  SourceLocation RParen);
3300
3301  ExprResult ActOnStartCXXMemberReference(Scope *S,
3302                                          Expr *Base,
3303                                          SourceLocation OpLoc,
3304                                          tok::TokenKind OpKind,
3305                                          ParsedType &ObjectType,
3306                                          bool &MayBePseudoDestructor);
3307
3308  ExprResult DiagnoseDtorReference(SourceLocation NameLoc, Expr *MemExpr);
3309
3310  ExprResult BuildPseudoDestructorExpr(Expr *Base,
3311                                       SourceLocation OpLoc,
3312                                       tok::TokenKind OpKind,
3313                                       const CXXScopeSpec &SS,
3314                                       TypeSourceInfo *ScopeType,
3315                                       SourceLocation CCLoc,
3316                                       SourceLocation TildeLoc,
3317                                     PseudoDestructorTypeStorage DestroyedType,
3318                                       bool HasTrailingLParen);
3319
3320  ExprResult ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
3321                                       SourceLocation OpLoc,
3322                                       tok::TokenKind OpKind,
3323                                       CXXScopeSpec &SS,
3324                                       UnqualifiedId &FirstTypeName,
3325                                       SourceLocation CCLoc,
3326                                       SourceLocation TildeLoc,
3327                                       UnqualifiedId &SecondTypeName,
3328                                       bool HasTrailingLParen);
3329
3330  ExprResult ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
3331                                       SourceLocation OpLoc,
3332                                       tok::TokenKind OpKind,
3333                                       SourceLocation TildeLoc,
3334                                       const DeclSpec& DS,
3335                                       bool HasTrailingLParen);
3336
3337  /// MaybeCreateExprWithCleanups - If the current full-expression
3338  /// requires any cleanups, surround it with a ExprWithCleanups node.
3339  /// Otherwise, just returns the passed-in expression.
3340  Expr *MaybeCreateExprWithCleanups(Expr *SubExpr);
3341  Stmt *MaybeCreateStmtWithCleanups(Stmt *SubStmt);
3342  ExprResult MaybeCreateExprWithCleanups(ExprResult SubExpr);
3343
3344  ExprResult ActOnFinishFullExpr(Expr *Expr);
3345  StmtResult ActOnFinishFullStmt(Stmt *Stmt);
3346
3347  // Marks SS invalid if it represents an incomplete type.
3348  bool RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC);
3349
3350  DeclContext *computeDeclContext(QualType T);
3351  DeclContext *computeDeclContext(const CXXScopeSpec &SS,
3352                                  bool EnteringContext = false);
3353  bool isDependentScopeSpecifier(const CXXScopeSpec &SS);
3354  CXXRecordDecl *getCurrentInstantiationOf(NestedNameSpecifier *NNS);
3355  bool isUnknownSpecialization(const CXXScopeSpec &SS);
3356
3357  /// \brief The parser has parsed a global nested-name-specifier '::'.
3358  ///
3359  /// \param S The scope in which this nested-name-specifier occurs.
3360  ///
3361  /// \param CCLoc The location of the '::'.
3362  ///
3363  /// \param SS The nested-name-specifier, which will be updated in-place
3364  /// to reflect the parsed nested-name-specifier.
3365  ///
3366  /// \returns true if an error occurred, false otherwise.
3367  bool ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
3368                                    CXXScopeSpec &SS);
3369
3370  bool isAcceptableNestedNameSpecifier(NamedDecl *SD);
3371  NamedDecl *FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS);
3372
3373  bool isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
3374                                    SourceLocation IdLoc,
3375                                    IdentifierInfo &II,
3376                                    ParsedType ObjectType);
3377
3378  bool BuildCXXNestedNameSpecifier(Scope *S,
3379                                   IdentifierInfo &Identifier,
3380                                   SourceLocation IdentifierLoc,
3381                                   SourceLocation CCLoc,
3382                                   QualType ObjectType,
3383                                   bool EnteringContext,
3384                                   CXXScopeSpec &SS,
3385                                   NamedDecl *ScopeLookupResult,
3386                                   bool ErrorRecoveryLookup);
3387
3388  /// \brief The parser has parsed a nested-name-specifier 'identifier::'.
3389  ///
3390  /// \param S The scope in which this nested-name-specifier occurs.
3391  ///
3392  /// \param Identifier The identifier preceding the '::'.
3393  ///
3394  /// \param IdentifierLoc The location of the identifier.
3395  ///
3396  /// \param CCLoc The location of the '::'.
3397  ///
3398  /// \param ObjectType The type of the object, if we're parsing
3399  /// nested-name-specifier in a member access expression.
3400  ///
3401  /// \param EnteringContext Whether we're entering the context nominated by
3402  /// this nested-name-specifier.
3403  ///
3404  /// \param SS The nested-name-specifier, which is both an input
3405  /// parameter (the nested-name-specifier before this type) and an
3406  /// output parameter (containing the full nested-name-specifier,
3407  /// including this new type).
3408  ///
3409  /// \returns true if an error occurred, false otherwise.
3410  bool ActOnCXXNestedNameSpecifier(Scope *S,
3411                                   IdentifierInfo &Identifier,
3412                                   SourceLocation IdentifierLoc,
3413                                   SourceLocation CCLoc,
3414                                   ParsedType ObjectType,
3415                                   bool EnteringContext,
3416                                   CXXScopeSpec &SS);
3417
3418  bool ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
3419                                           const DeclSpec &DS,
3420                                           SourceLocation ColonColonLoc);
3421
3422  bool IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
3423                                 IdentifierInfo &Identifier,
3424                                 SourceLocation IdentifierLoc,
3425                                 SourceLocation ColonLoc,
3426                                 ParsedType ObjectType,
3427                                 bool EnteringContext);
3428
3429  /// \brief The parser has parsed a nested-name-specifier
3430  /// 'template[opt] template-name < template-args >::'.
3431  ///
3432  /// \param S The scope in which this nested-name-specifier occurs.
3433  ///
3434  /// \param SS The nested-name-specifier, which is both an input
3435  /// parameter (the nested-name-specifier before this type) and an
3436  /// output parameter (containing the full nested-name-specifier,
3437  /// including this new type).
3438  ///
3439  /// \param TemplateKWLoc the location of the 'template' keyword, if any.
3440  /// \param TemplateName The template name.
3441  /// \param TemplateNameLoc The location of the template name.
3442  /// \param LAngleLoc The location of the opening angle bracket  ('<').
3443  /// \param TemplateArgs The template arguments.
3444  /// \param RAngleLoc The location of the closing angle bracket  ('>').
3445  /// \param CCLoc The location of the '::'.
3446  ///
3447  /// \param EnteringContext Whether we're entering the context of the
3448  /// nested-name-specifier.
3449  ///
3450  ///
3451  /// \returns true if an error occurred, false otherwise.
3452  bool ActOnCXXNestedNameSpecifier(Scope *S,
3453                                   CXXScopeSpec &SS,
3454                                   SourceLocation TemplateKWLoc,
3455                                   TemplateTy Template,
3456                                   SourceLocation TemplateNameLoc,
3457                                   SourceLocation LAngleLoc,
3458                                   ASTTemplateArgsPtr TemplateArgs,
3459                                   SourceLocation RAngleLoc,
3460                                   SourceLocation CCLoc,
3461                                   bool EnteringContext);
3462
3463  /// \brief Given a C++ nested-name-specifier, produce an annotation value
3464  /// that the parser can use later to reconstruct the given
3465  /// nested-name-specifier.
3466  ///
3467  /// \param SS A nested-name-specifier.
3468  ///
3469  /// \returns A pointer containing all of the information in the
3470  /// nested-name-specifier \p SS.
3471  void *SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS);
3472
3473  /// \brief Given an annotation pointer for a nested-name-specifier, restore
3474  /// the nested-name-specifier structure.
3475  ///
3476  /// \param Annotation The annotation pointer, produced by
3477  /// \c SaveNestedNameSpecifierAnnotation().
3478  ///
3479  /// \param AnnotationRange The source range corresponding to the annotation.
3480  ///
3481  /// \param SS The nested-name-specifier that will be updated with the contents
3482  /// of the annotation pointer.
3483  void RestoreNestedNameSpecifierAnnotation(void *Annotation,
3484                                            SourceRange AnnotationRange,
3485                                            CXXScopeSpec &SS);
3486
3487  bool ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS);
3488
3489  /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
3490  /// scope or nested-name-specifier) is parsed, part of a declarator-id.
3491  /// After this method is called, according to [C++ 3.4.3p3], names should be
3492  /// looked up in the declarator-id's scope, until the declarator is parsed and
3493  /// ActOnCXXExitDeclaratorScope is called.
3494  /// The 'SS' should be a non-empty valid CXXScopeSpec.
3495  bool ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS);
3496
3497  /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
3498  /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
3499  /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
3500  /// Used to indicate that names should revert to being looked up in the
3501  /// defining scope.
3502  void ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS);
3503
3504  /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
3505  /// initializer for the declaration 'Dcl'.
3506  /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
3507  /// static data member of class X, names should be looked up in the scope of
3508  /// class X.
3509  void ActOnCXXEnterDeclInitializer(Scope *S, Decl *Dcl);
3510
3511  /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
3512  /// initializer for the declaration 'Dcl'.
3513  void ActOnCXXExitDeclInitializer(Scope *S, Decl *Dcl);
3514
3515  /// \brief Create a new lambda closure type.
3516  CXXRecordDecl *createLambdaClosureType(SourceRange IntroducerRange);
3517
3518  /// \brief Start the definition of a lambda expression.
3519  CXXMethodDecl *startLambdaDefinition(CXXRecordDecl *Class,
3520                                       SourceRange IntroducerRange,
3521                                       TypeSourceInfo *MethodType,
3522                                       SourceLocation EndLoc,
3523                                       llvm::ArrayRef<ParmVarDecl *> Params);
3524
3525  /// \brief Introduce the scope for a lambda expression.
3526  sema::LambdaScopeInfo *enterLambdaScope(CXXMethodDecl *CallOperator,
3527                                          SourceRange IntroducerRange,
3528                                          LambdaCaptureDefault CaptureDefault,
3529                                          bool ExplicitParams,
3530                                          bool ExplicitResultType,
3531                                          bool Mutable);
3532
3533  /// \brief Note that we have finished the explicit captures for the
3534  /// given lambda.
3535  void finishLambdaExplicitCaptures(sema::LambdaScopeInfo *LSI);
3536
3537  /// \brief Introduce the lambda parameters into scope.
3538  void addLambdaParameters(CXXMethodDecl *CallOperator, Scope *CurScope);
3539
3540  /// ActOnStartOfLambdaDefinition - This is called just before we start
3541  /// parsing the body of a lambda; it analyzes the explicit captures and
3542  /// arguments, and sets up various data-structures for the body of the
3543  /// lambda.
3544  void ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
3545                                    Declarator &ParamInfo, Scope *CurScope);
3546
3547  /// ActOnLambdaError - If there is an error parsing a lambda, this callback
3548  /// is invoked to pop the information about the lambda.
3549  void ActOnLambdaError(SourceLocation StartLoc, Scope *CurScope,
3550                        bool IsInstantiation = false);
3551
3552  /// ActOnLambdaExpr - This is called when the body of a lambda expression
3553  /// was successfully completed.
3554  ExprResult ActOnLambdaExpr(SourceLocation StartLoc, Stmt *Body,
3555                             Scope *CurScope, bool IsInstantiation = false);
3556
3557  // ParseObjCStringLiteral - Parse Objective-C string literals.
3558  ExprResult ParseObjCStringLiteral(SourceLocation *AtLocs,
3559                                    Expr **Strings,
3560                                    unsigned NumStrings);
3561
3562  ExprResult BuildObjCEncodeExpression(SourceLocation AtLoc,
3563                                  TypeSourceInfo *EncodedTypeInfo,
3564                                  SourceLocation RParenLoc);
3565  ExprResult BuildCXXMemberCallExpr(Expr *Exp, NamedDecl *FoundDecl,
3566                                    CXXMethodDecl *Method,
3567                                    bool HadMultipleCandidates);
3568
3569  ExprResult ParseObjCEncodeExpression(SourceLocation AtLoc,
3570                                       SourceLocation EncodeLoc,
3571                                       SourceLocation LParenLoc,
3572                                       ParsedType Ty,
3573                                       SourceLocation RParenLoc);
3574
3575  // ParseObjCSelectorExpression - Build selector expression for @selector
3576  ExprResult ParseObjCSelectorExpression(Selector Sel,
3577                                         SourceLocation AtLoc,
3578                                         SourceLocation SelLoc,
3579                                         SourceLocation LParenLoc,
3580                                         SourceLocation RParenLoc);
3581
3582  // ParseObjCProtocolExpression - Build protocol expression for @protocol
3583  ExprResult ParseObjCProtocolExpression(IdentifierInfo * ProtocolName,
3584                                         SourceLocation AtLoc,
3585                                         SourceLocation ProtoLoc,
3586                                         SourceLocation LParenLoc,
3587                                         SourceLocation RParenLoc);
3588
3589  //===--------------------------------------------------------------------===//
3590  // C++ Declarations
3591  //
3592  Decl *ActOnStartLinkageSpecification(Scope *S,
3593                                       SourceLocation ExternLoc,
3594                                       SourceLocation LangLoc,
3595                                       StringRef Lang,
3596                                       SourceLocation LBraceLoc);
3597  Decl *ActOnFinishLinkageSpecification(Scope *S,
3598                                        Decl *LinkageSpec,
3599                                        SourceLocation RBraceLoc);
3600
3601
3602  //===--------------------------------------------------------------------===//
3603  // C++ Classes
3604  //
3605  bool isCurrentClassName(const IdentifierInfo &II, Scope *S,
3606                          const CXXScopeSpec *SS = 0);
3607
3608  bool ActOnAccessSpecifier(AccessSpecifier Access,
3609                            SourceLocation ASLoc,
3610                            SourceLocation ColonLoc,
3611                            AttributeList *Attrs = 0);
3612
3613  Decl *ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS,
3614                                 Declarator &D,
3615                                 MultiTemplateParamsArg TemplateParameterLists,
3616                                 Expr *BitfieldWidth, const VirtSpecifiers &VS,
3617                                 bool HasDeferredInit);
3618  void ActOnCXXInClassMemberInitializer(Decl *VarDecl, SourceLocation EqualLoc,
3619                                        Expr *Init);
3620
3621  MemInitResult ActOnMemInitializer(Decl *ConstructorD,
3622                                    Scope *S,
3623                                    CXXScopeSpec &SS,
3624                                    IdentifierInfo *MemberOrBase,
3625                                    ParsedType TemplateTypeTy,
3626                                    const DeclSpec &DS,
3627                                    SourceLocation IdLoc,
3628                                    SourceLocation LParenLoc,
3629                                    Expr **Args, unsigned NumArgs,
3630                                    SourceLocation RParenLoc,
3631                                    SourceLocation EllipsisLoc);
3632
3633  MemInitResult ActOnMemInitializer(Decl *ConstructorD,
3634                                    Scope *S,
3635                                    CXXScopeSpec &SS,
3636                                    IdentifierInfo *MemberOrBase,
3637                                    ParsedType TemplateTypeTy,
3638                                    const DeclSpec &DS,
3639                                    SourceLocation IdLoc,
3640                                    Expr *InitList,
3641                                    SourceLocation EllipsisLoc);
3642
3643  MemInitResult BuildMemInitializer(Decl *ConstructorD,
3644                                    Scope *S,
3645                                    CXXScopeSpec &SS,
3646                                    IdentifierInfo *MemberOrBase,
3647                                    ParsedType TemplateTypeTy,
3648                                    const DeclSpec &DS,
3649                                    SourceLocation IdLoc,
3650                                    Expr *Init,
3651                                    SourceLocation EllipsisLoc);
3652
3653  MemInitResult BuildMemberInitializer(ValueDecl *Member,
3654                                       Expr *Init,
3655                                       SourceLocation IdLoc);
3656
3657  MemInitResult BuildBaseInitializer(QualType BaseType,
3658                                     TypeSourceInfo *BaseTInfo,
3659                                     Expr *Init,
3660                                     CXXRecordDecl *ClassDecl,
3661                                     SourceLocation EllipsisLoc);
3662
3663  MemInitResult BuildDelegatingInitializer(TypeSourceInfo *TInfo,
3664                                           Expr *Init,
3665                                           CXXRecordDecl *ClassDecl);
3666
3667  bool SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3668                                CXXCtorInitializer *Initializer);
3669
3670  bool SetCtorInitializers(CXXConstructorDecl *Constructor,
3671                           CXXCtorInitializer **Initializers,
3672                           unsigned NumInitializers, bool AnyErrors);
3673
3674  void SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation);
3675
3676
3677  /// MarkBaseAndMemberDestructorsReferenced - Given a record decl,
3678  /// mark all the non-trivial destructors of its members and bases as
3679  /// referenced.
3680  void MarkBaseAndMemberDestructorsReferenced(SourceLocation Loc,
3681                                              CXXRecordDecl *Record);
3682
3683  /// \brief The list of classes whose vtables have been used within
3684  /// this translation unit, and the source locations at which the
3685  /// first use occurred.
3686  typedef std::pair<CXXRecordDecl*, SourceLocation> VTableUse;
3687
3688  /// \brief The list of vtables that are required but have not yet been
3689  /// materialized.
3690  SmallVector<VTableUse, 16> VTableUses;
3691
3692  /// \brief The set of classes whose vtables have been used within
3693  /// this translation unit, and a bit that will be true if the vtable is
3694  /// required to be emitted (otherwise, it should be emitted only if needed
3695  /// by code generation).
3696  llvm::DenseMap<CXXRecordDecl *, bool> VTablesUsed;
3697
3698  /// \brief Load any externally-stored vtable uses.
3699  void LoadExternalVTableUses();
3700
3701  typedef LazyVector<CXXRecordDecl *, ExternalSemaSource,
3702                     &ExternalSemaSource::ReadDynamicClasses, 2, 2>
3703    DynamicClassesType;
3704
3705  /// \brief A list of all of the dynamic classes in this translation
3706  /// unit.
3707  DynamicClassesType DynamicClasses;
3708
3709  /// \brief Note that the vtable for the given class was used at the
3710  /// given location.
3711  void MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
3712                      bool DefinitionRequired = false);
3713
3714  /// MarkVirtualMembersReferenced - Will mark all members of the given
3715  /// CXXRecordDecl referenced.
3716  void MarkVirtualMembersReferenced(SourceLocation Loc,
3717                                    const CXXRecordDecl *RD);
3718
3719  /// \brief Define all of the vtables that have been used in this
3720  /// translation unit and reference any virtual members used by those
3721  /// vtables.
3722  ///
3723  /// \returns true if any work was done, false otherwise.
3724  bool DefineUsedVTables();
3725
3726  void AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl);
3727
3728  void ActOnMemInitializers(Decl *ConstructorDecl,
3729                            SourceLocation ColonLoc,
3730                            CXXCtorInitializer **MemInits,
3731                            unsigned NumMemInits,
3732                            bool AnyErrors);
3733
3734  void CheckCompletedCXXClass(CXXRecordDecl *Record);
3735  void ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
3736                                         Decl *TagDecl,
3737                                         SourceLocation LBrac,
3738                                         SourceLocation RBrac,
3739                                         AttributeList *AttrList);
3740
3741  void ActOnReenterTemplateScope(Scope *S, Decl *Template);
3742  void ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D);
3743  void ActOnStartDelayedMemberDeclarations(Scope *S, Decl *Record);
3744  void ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *Method);
3745  void ActOnDelayedCXXMethodParameter(Scope *S, Decl *Param);
3746  void ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *Record);
3747  void ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *Method);
3748  void ActOnFinishDelayedMemberInitializers(Decl *Record);
3749  void MarkAsLateParsedTemplate(FunctionDecl *FD, bool Flag = true);
3750  bool IsInsideALocalClassWithinATemplateFunction();
3751
3752  Decl *ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
3753                                     Expr *AssertExpr,
3754                                     Expr *AssertMessageExpr,
3755                                     SourceLocation RParenLoc);
3756
3757  FriendDecl *CheckFriendTypeDecl(SourceLocation Loc,
3758                                  SourceLocation FriendLoc,
3759                                  TypeSourceInfo *TSInfo);
3760  Decl *ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
3761                            MultiTemplateParamsArg TemplateParams);
3762  Decl *ActOnFriendFunctionDecl(Scope *S, Declarator &D,
3763                                MultiTemplateParamsArg TemplateParams);
3764
3765  QualType CheckConstructorDeclarator(Declarator &D, QualType R,
3766                                      StorageClass& SC);
3767  void CheckConstructor(CXXConstructorDecl *Constructor);
3768  QualType CheckDestructorDeclarator(Declarator &D, QualType R,
3769                                     StorageClass& SC);
3770  bool CheckDestructor(CXXDestructorDecl *Destructor);
3771  void CheckConversionDeclarator(Declarator &D, QualType &R,
3772                                 StorageClass& SC);
3773  Decl *ActOnConversionDeclarator(CXXConversionDecl *Conversion);
3774
3775  void CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record);
3776  void CheckExplicitlyDefaultedDefaultConstructor(CXXConstructorDecl *Ctor);
3777  void CheckExplicitlyDefaultedCopyConstructor(CXXConstructorDecl *Ctor);
3778  void CheckExplicitlyDefaultedCopyAssignment(CXXMethodDecl *Method);
3779  void CheckExplicitlyDefaultedMoveConstructor(CXXConstructorDecl *Ctor);
3780  void CheckExplicitlyDefaultedMoveAssignment(CXXMethodDecl *Method);
3781  void CheckExplicitlyDefaultedDestructor(CXXDestructorDecl *Dtor);
3782
3783  //===--------------------------------------------------------------------===//
3784  // C++ Derived Classes
3785  //
3786
3787  /// ActOnBaseSpecifier - Parsed a base specifier
3788  CXXBaseSpecifier *CheckBaseSpecifier(CXXRecordDecl *Class,
3789                                       SourceRange SpecifierRange,
3790                                       bool Virtual, AccessSpecifier Access,
3791                                       TypeSourceInfo *TInfo,
3792                                       SourceLocation EllipsisLoc);
3793
3794  BaseResult ActOnBaseSpecifier(Decl *classdecl,
3795                                SourceRange SpecifierRange,
3796                                bool Virtual, AccessSpecifier Access,
3797                                ParsedType basetype,
3798                                SourceLocation BaseLoc,
3799                                SourceLocation EllipsisLoc);
3800
3801  bool AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
3802                            unsigned NumBases);
3803  void ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
3804                           unsigned NumBases);
3805
3806  bool IsDerivedFrom(QualType Derived, QualType Base);
3807  bool IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths);
3808
3809  // FIXME: I don't like this name.
3810  void BuildBasePathArray(const CXXBasePaths &Paths, CXXCastPath &BasePath);
3811
3812  bool BasePathInvolvesVirtualBase(const CXXCastPath &BasePath);
3813
3814  bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3815                                    SourceLocation Loc, SourceRange Range,
3816                                    CXXCastPath *BasePath = 0,
3817                                    bool IgnoreAccess = false);
3818  bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3819                                    unsigned InaccessibleBaseID,
3820                                    unsigned AmbigiousBaseConvID,
3821                                    SourceLocation Loc, SourceRange Range,
3822                                    DeclarationName Name,
3823                                    CXXCastPath *BasePath);
3824
3825  std::string getAmbiguousPathsDisplayString(CXXBasePaths &Paths);
3826
3827  /// CheckOverridingFunctionReturnType - Checks whether the return types are
3828  /// covariant, according to C++ [class.virtual]p5.
3829  bool CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
3830                                         const CXXMethodDecl *Old);
3831
3832  /// CheckOverridingFunctionExceptionSpec - Checks whether the exception
3833  /// spec is a subset of base spec.
3834  bool CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New,
3835                                            const CXXMethodDecl *Old);
3836
3837  bool CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange);
3838
3839  /// CheckOverrideControl - Check C++0x override control semantics.
3840  void CheckOverrideControl(const Decl *D);
3841
3842  /// CheckForFunctionMarkedFinal - Checks whether a virtual member function
3843  /// overrides a virtual member function marked 'final', according to
3844  /// C++0x [class.virtual]p3.
3845  bool CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
3846                                              const CXXMethodDecl *Old);
3847
3848
3849  //===--------------------------------------------------------------------===//
3850  // C++ Access Control
3851  //
3852
3853  enum AccessResult {
3854    AR_accessible,
3855    AR_inaccessible,
3856    AR_dependent,
3857    AR_delayed
3858  };
3859
3860  bool SetMemberAccessSpecifier(NamedDecl *MemberDecl,
3861                                NamedDecl *PrevMemberDecl,
3862                                AccessSpecifier LexicalAS);
3863
3864  AccessResult CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E,
3865                                           DeclAccessPair FoundDecl);
3866  AccessResult CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E,
3867                                           DeclAccessPair FoundDecl);
3868  AccessResult CheckAllocationAccess(SourceLocation OperatorLoc,
3869                                     SourceRange PlacementRange,
3870                                     CXXRecordDecl *NamingClass,
3871                                     DeclAccessPair FoundDecl,
3872                                     bool Diagnose = true);
3873  AccessResult CheckConstructorAccess(SourceLocation Loc,
3874                                      CXXConstructorDecl *D,
3875                                      const InitializedEntity &Entity,
3876                                      AccessSpecifier Access,
3877                                      bool IsCopyBindingRefToTemp = false);
3878  AccessResult CheckConstructorAccess(SourceLocation Loc,
3879                                      CXXConstructorDecl *D,
3880                                      AccessSpecifier Access,
3881                                      PartialDiagnostic PD);
3882  AccessResult CheckDestructorAccess(SourceLocation Loc,
3883                                     CXXDestructorDecl *Dtor,
3884                                     const PartialDiagnostic &PDiag);
3885  AccessResult CheckDirectMemberAccess(SourceLocation Loc,
3886                                       NamedDecl *D,
3887                                       const PartialDiagnostic &PDiag);
3888  AccessResult CheckMemberOperatorAccess(SourceLocation Loc,
3889                                         Expr *ObjectExpr,
3890                                         Expr *ArgExpr,
3891                                         DeclAccessPair FoundDecl);
3892  AccessResult CheckAddressOfMemberAccess(Expr *OvlExpr,
3893                                          DeclAccessPair FoundDecl);
3894  AccessResult CheckBaseClassAccess(SourceLocation AccessLoc,
3895                                    QualType Base, QualType Derived,
3896                                    const CXXBasePath &Path,
3897                                    unsigned DiagID,
3898                                    bool ForceCheck = false,
3899                                    bool ForceUnprivileged = false);
3900  void CheckLookupAccess(const LookupResult &R);
3901  bool IsSimplyAccessible(NamedDecl *decl, DeclContext *Ctx);
3902
3903  void HandleDependentAccessCheck(const DependentDiagnostic &DD,
3904                         const MultiLevelTemplateArgumentList &TemplateArgs);
3905  void PerformDependentDiagnostics(const DeclContext *Pattern,
3906                        const MultiLevelTemplateArgumentList &TemplateArgs);
3907
3908  void HandleDelayedAccessCheck(sema::DelayedDiagnostic &DD, Decl *Ctx);
3909
3910  /// A flag to suppress access checking.
3911  bool SuppressAccessChecking;
3912
3913  /// \brief When true, access checking violations are treated as SFINAE
3914  /// failures rather than hard errors.
3915  bool AccessCheckingSFINAE;
3916
3917  void ActOnStartSuppressingAccessChecks();
3918  void ActOnStopSuppressingAccessChecks();
3919
3920  enum AbstractDiagSelID {
3921    AbstractNone = -1,
3922    AbstractReturnType,
3923    AbstractParamType,
3924    AbstractVariableType,
3925    AbstractFieldType,
3926    AbstractArrayType
3927  };
3928
3929  bool RequireNonAbstractType(SourceLocation Loc, QualType T,
3930                              const PartialDiagnostic &PD);
3931  void DiagnoseAbstractType(const CXXRecordDecl *RD);
3932
3933  bool RequireNonAbstractType(SourceLocation Loc, QualType T, unsigned DiagID,
3934                              AbstractDiagSelID SelID = AbstractNone);
3935
3936  //===--------------------------------------------------------------------===//
3937  // C++ Overloaded Operators [C++ 13.5]
3938  //
3939
3940  bool CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl);
3941
3942  bool CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl);
3943
3944  //===--------------------------------------------------------------------===//
3945  // C++ Templates [C++ 14]
3946  //
3947  void FilterAcceptableTemplateNames(LookupResult &R);
3948  bool hasAnyAcceptableTemplateNames(LookupResult &R);
3949
3950  void LookupTemplateName(LookupResult &R, Scope *S, CXXScopeSpec &SS,
3951                          QualType ObjectType, bool EnteringContext,
3952                          bool &MemberOfUnknownSpecialization);
3953
3954  TemplateNameKind isTemplateName(Scope *S,
3955                                  CXXScopeSpec &SS,
3956                                  bool hasTemplateKeyword,
3957                                  UnqualifiedId &Name,
3958                                  ParsedType ObjectType,
3959                                  bool EnteringContext,
3960                                  TemplateTy &Template,
3961                                  bool &MemberOfUnknownSpecialization);
3962
3963  bool DiagnoseUnknownTemplateName(const IdentifierInfo &II,
3964                                   SourceLocation IILoc,
3965                                   Scope *S,
3966                                   const CXXScopeSpec *SS,
3967                                   TemplateTy &SuggestedTemplate,
3968                                   TemplateNameKind &SuggestedKind);
3969
3970  void DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl);
3971  TemplateDecl *AdjustDeclIfTemplate(Decl *&Decl);
3972
3973  Decl *ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,
3974                           SourceLocation EllipsisLoc,
3975                           SourceLocation KeyLoc,
3976                           IdentifierInfo *ParamName,
3977                           SourceLocation ParamNameLoc,
3978                           unsigned Depth, unsigned Position,
3979                           SourceLocation EqualLoc,
3980                           ParsedType DefaultArg);
3981
3982  QualType CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc);
3983  Decl *ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
3984                                      unsigned Depth,
3985                                      unsigned Position,
3986                                      SourceLocation EqualLoc,
3987                                      Expr *DefaultArg);
3988  Decl *ActOnTemplateTemplateParameter(Scope *S,
3989                                       SourceLocation TmpLoc,
3990                                       TemplateParameterList *Params,
3991                                       SourceLocation EllipsisLoc,
3992                                       IdentifierInfo *ParamName,
3993                                       SourceLocation ParamNameLoc,
3994                                       unsigned Depth,
3995                                       unsigned Position,
3996                                       SourceLocation EqualLoc,
3997                                       ParsedTemplateArgument DefaultArg);
3998
3999  TemplateParameterList *
4000  ActOnTemplateParameterList(unsigned Depth,
4001                             SourceLocation ExportLoc,
4002                             SourceLocation TemplateLoc,
4003                             SourceLocation LAngleLoc,
4004                             Decl **Params, unsigned NumParams,
4005                             SourceLocation RAngleLoc);
4006
4007  /// \brief The context in which we are checking a template parameter
4008  /// list.
4009  enum TemplateParamListContext {
4010    TPC_ClassTemplate,
4011    TPC_FunctionTemplate,
4012    TPC_ClassTemplateMember,
4013    TPC_FriendFunctionTemplate,
4014    TPC_FriendFunctionTemplateDefinition,
4015    TPC_TypeAliasTemplate
4016  };
4017
4018  bool CheckTemplateParameterList(TemplateParameterList *NewParams,
4019                                  TemplateParameterList *OldParams,
4020                                  TemplateParamListContext TPC);
4021  TemplateParameterList *
4022  MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc,
4023                                          SourceLocation DeclLoc,
4024                                          const CXXScopeSpec &SS,
4025                                          TemplateParameterList **ParamLists,
4026                                          unsigned NumParamLists,
4027                                          bool IsFriend,
4028                                          bool &IsExplicitSpecialization,
4029                                          bool &Invalid);
4030
4031  DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
4032                                SourceLocation KWLoc, CXXScopeSpec &SS,
4033                                IdentifierInfo *Name, SourceLocation NameLoc,
4034                                AttributeList *Attr,
4035                                TemplateParameterList *TemplateParams,
4036                                AccessSpecifier AS,
4037                                SourceLocation ModulePrivateLoc,
4038                                unsigned NumOuterTemplateParamLists,
4039                            TemplateParameterList **OuterTemplateParamLists);
4040
4041  void translateTemplateArguments(const ASTTemplateArgsPtr &In,
4042                                  TemplateArgumentListInfo &Out);
4043
4044  void NoteAllFoundTemplates(TemplateName Name);
4045
4046  QualType CheckTemplateIdType(TemplateName Template,
4047                               SourceLocation TemplateLoc,
4048                              TemplateArgumentListInfo &TemplateArgs);
4049
4050  TypeResult
4051  ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
4052                      TemplateTy Template, SourceLocation TemplateLoc,
4053                      SourceLocation LAngleLoc,
4054                      ASTTemplateArgsPtr TemplateArgs,
4055                      SourceLocation RAngleLoc,
4056                      bool IsCtorOrDtorName = false);
4057
4058  /// \brief Parsed an elaborated-type-specifier that refers to a template-id,
4059  /// such as \c class T::template apply<U>.
4060  ///
4061  /// \param TUK
4062  TypeResult ActOnTagTemplateIdType(TagUseKind TUK,
4063                                    TypeSpecifierType TagSpec,
4064                                    SourceLocation TagLoc,
4065                                    CXXScopeSpec &SS,
4066                                    SourceLocation TemplateKWLoc,
4067                                    TemplateTy TemplateD,
4068                                    SourceLocation TemplateLoc,
4069                                    SourceLocation LAngleLoc,
4070                                    ASTTemplateArgsPtr TemplateArgsIn,
4071                                    SourceLocation RAngleLoc);
4072
4073
4074  ExprResult BuildTemplateIdExpr(const CXXScopeSpec &SS,
4075                                 SourceLocation TemplateKWLoc,
4076                                 LookupResult &R,
4077                                 bool RequiresADL,
4078                               const TemplateArgumentListInfo *TemplateArgs);
4079
4080  ExprResult BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
4081                                          SourceLocation TemplateKWLoc,
4082                               const DeclarationNameInfo &NameInfo,
4083                               const TemplateArgumentListInfo *TemplateArgs);
4084
4085  TemplateNameKind ActOnDependentTemplateName(Scope *S,
4086                                              CXXScopeSpec &SS,
4087                                              SourceLocation TemplateKWLoc,
4088                                              UnqualifiedId &Name,
4089                                              ParsedType ObjectType,
4090                                              bool EnteringContext,
4091                                              TemplateTy &Template);
4092
4093  DeclResult
4094  ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK,
4095                                   SourceLocation KWLoc,
4096                                   SourceLocation ModulePrivateLoc,
4097                                   CXXScopeSpec &SS,
4098                                   TemplateTy Template,
4099                                   SourceLocation TemplateNameLoc,
4100                                   SourceLocation LAngleLoc,
4101                                   ASTTemplateArgsPtr TemplateArgs,
4102                                   SourceLocation RAngleLoc,
4103                                   AttributeList *Attr,
4104                                 MultiTemplateParamsArg TemplateParameterLists);
4105
4106  Decl *ActOnTemplateDeclarator(Scope *S,
4107                                MultiTemplateParamsArg TemplateParameterLists,
4108                                Declarator &D);
4109
4110  Decl *ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
4111                                  MultiTemplateParamsArg TemplateParameterLists,
4112                                        Declarator &D);
4113
4114  bool
4115  CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
4116                                         TemplateSpecializationKind NewTSK,
4117                                         NamedDecl *PrevDecl,
4118                                         TemplateSpecializationKind PrevTSK,
4119                                         SourceLocation PrevPtOfInstantiation,
4120                                         bool &SuppressNew);
4121
4122  bool CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
4123                    const TemplateArgumentListInfo &ExplicitTemplateArgs,
4124                                                    LookupResult &Previous);
4125
4126  bool CheckFunctionTemplateSpecialization(FunctionDecl *FD,
4127                         TemplateArgumentListInfo *ExplicitTemplateArgs,
4128                                           LookupResult &Previous);
4129  bool CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous);
4130
4131  DeclResult
4132  ActOnExplicitInstantiation(Scope *S,
4133                             SourceLocation ExternLoc,
4134                             SourceLocation TemplateLoc,
4135                             unsigned TagSpec,
4136                             SourceLocation KWLoc,
4137                             const CXXScopeSpec &SS,
4138                             TemplateTy Template,
4139                             SourceLocation TemplateNameLoc,
4140                             SourceLocation LAngleLoc,
4141                             ASTTemplateArgsPtr TemplateArgs,
4142                             SourceLocation RAngleLoc,
4143                             AttributeList *Attr);
4144
4145  DeclResult
4146  ActOnExplicitInstantiation(Scope *S,
4147                             SourceLocation ExternLoc,
4148                             SourceLocation TemplateLoc,
4149                             unsigned TagSpec,
4150                             SourceLocation KWLoc,
4151                             CXXScopeSpec &SS,
4152                             IdentifierInfo *Name,
4153                             SourceLocation NameLoc,
4154                             AttributeList *Attr);
4155
4156  DeclResult ActOnExplicitInstantiation(Scope *S,
4157                                        SourceLocation ExternLoc,
4158                                        SourceLocation TemplateLoc,
4159                                        Declarator &D);
4160
4161  TemplateArgumentLoc
4162  SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
4163                                          SourceLocation TemplateLoc,
4164                                          SourceLocation RAngleLoc,
4165                                          Decl *Param,
4166                          SmallVectorImpl<TemplateArgument> &Converted);
4167
4168  /// \brief Specifies the context in which a particular template
4169  /// argument is being checked.
4170  enum CheckTemplateArgumentKind {
4171    /// \brief The template argument was specified in the code or was
4172    /// instantiated with some deduced template arguments.
4173    CTAK_Specified,
4174
4175    /// \brief The template argument was deduced via template argument
4176    /// deduction.
4177    CTAK_Deduced,
4178
4179    /// \brief The template argument was deduced from an array bound
4180    /// via template argument deduction.
4181    CTAK_DeducedFromArrayBound
4182  };
4183
4184  bool CheckTemplateArgument(NamedDecl *Param,
4185                             const TemplateArgumentLoc &Arg,
4186                             NamedDecl *Template,
4187                             SourceLocation TemplateLoc,
4188                             SourceLocation RAngleLoc,
4189                             unsigned ArgumentPackIndex,
4190                           SmallVectorImpl<TemplateArgument> &Converted,
4191                             CheckTemplateArgumentKind CTAK = CTAK_Specified);
4192
4193  /// \brief Check that the given template arguments can be be provided to
4194  /// the given template, converting the arguments along the way.
4195  ///
4196  /// \param Template The template to which the template arguments are being
4197  /// provided.
4198  ///
4199  /// \param TemplateLoc The location of the template name in the source.
4200  ///
4201  /// \param TemplateArgs The list of template arguments. If the template is
4202  /// a template template parameter, this function may extend the set of
4203  /// template arguments to also include substituted, defaulted template
4204  /// arguments.
4205  ///
4206  /// \param PartialTemplateArgs True if the list of template arguments is
4207  /// intentionally partial, e.g., because we're checking just the initial
4208  /// set of template arguments.
4209  ///
4210  /// \param Converted Will receive the converted, canonicalized template
4211  /// arguments.
4212  ///
4213  ///
4214  /// \param ExpansionIntoFixedList If non-NULL, will be set true to indicate
4215  /// when the template arguments contain a pack expansion that is being
4216  /// expanded into a fixed parameter list.
4217  ///
4218  /// \returns True if an error occurred, false otherwise.
4219  bool CheckTemplateArgumentList(TemplateDecl *Template,
4220                                 SourceLocation TemplateLoc,
4221                                 TemplateArgumentListInfo &TemplateArgs,
4222                                 bool PartialTemplateArgs,
4223                           SmallVectorImpl<TemplateArgument> &Converted,
4224                                 bool *ExpansionIntoFixedList = 0);
4225
4226  bool CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
4227                                 const TemplateArgumentLoc &Arg,
4228                           SmallVectorImpl<TemplateArgument> &Converted);
4229
4230  bool CheckTemplateArgument(TemplateTypeParmDecl *Param,
4231                             TypeSourceInfo *Arg);
4232  bool CheckTemplateArgumentPointerToMember(Expr *Arg,
4233                                            TemplateArgument &Converted);
4234  ExprResult CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
4235                                   QualType InstantiatedParamType, Expr *Arg,
4236                                   TemplateArgument &Converted,
4237                               CheckTemplateArgumentKind CTAK = CTAK_Specified);
4238  bool CheckTemplateArgument(TemplateTemplateParmDecl *Param,
4239                             const TemplateArgumentLoc &Arg);
4240
4241  ExprResult
4242  BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
4243                                          QualType ParamType,
4244                                          SourceLocation Loc);
4245  ExprResult
4246  BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
4247                                              SourceLocation Loc);
4248
4249  /// \brief Enumeration describing how template parameter lists are compared
4250  /// for equality.
4251  enum TemplateParameterListEqualKind {
4252    /// \brief We are matching the template parameter lists of two templates
4253    /// that might be redeclarations.
4254    ///
4255    /// \code
4256    /// template<typename T> struct X;
4257    /// template<typename T> struct X;
4258    /// \endcode
4259    TPL_TemplateMatch,
4260
4261    /// \brief We are matching the template parameter lists of two template
4262    /// template parameters as part of matching the template parameter lists
4263    /// of two templates that might be redeclarations.
4264    ///
4265    /// \code
4266    /// template<template<int I> class TT> struct X;
4267    /// template<template<int Value> class Other> struct X;
4268    /// \endcode
4269    TPL_TemplateTemplateParmMatch,
4270
4271    /// \brief We are matching the template parameter lists of a template
4272    /// template argument against the template parameter lists of a template
4273    /// template parameter.
4274    ///
4275    /// \code
4276    /// template<template<int Value> class Metafun> struct X;
4277    /// template<int Value> struct integer_c;
4278    /// X<integer_c> xic;
4279    /// \endcode
4280    TPL_TemplateTemplateArgumentMatch
4281  };
4282
4283  bool TemplateParameterListsAreEqual(TemplateParameterList *New,
4284                                      TemplateParameterList *Old,
4285                                      bool Complain,
4286                                      TemplateParameterListEqualKind Kind,
4287                                      SourceLocation TemplateArgLoc
4288                                        = SourceLocation());
4289
4290  bool CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams);
4291
4292  /// \brief Called when the parser has parsed a C++ typename
4293  /// specifier, e.g., "typename T::type".
4294  ///
4295  /// \param S The scope in which this typename type occurs.
4296  /// \param TypenameLoc the location of the 'typename' keyword
4297  /// \param SS the nested-name-specifier following the typename (e.g., 'T::').
4298  /// \param II the identifier we're retrieving (e.g., 'type' in the example).
4299  /// \param IdLoc the location of the identifier.
4300  TypeResult
4301  ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
4302                    const CXXScopeSpec &SS, const IdentifierInfo &II,
4303                    SourceLocation IdLoc);
4304
4305  /// \brief Called when the parser has parsed a C++ typename
4306  /// specifier that ends in a template-id, e.g.,
4307  /// "typename MetaFun::template apply<T1, T2>".
4308  ///
4309  /// \param S The scope in which this typename type occurs.
4310  /// \param TypenameLoc the location of the 'typename' keyword
4311  /// \param SS the nested-name-specifier following the typename (e.g., 'T::').
4312  /// \param TemplateLoc the location of the 'template' keyword, if any.
4313  /// \param TemplateName The template name.
4314  /// \param TemplateNameLoc The location of the template name.
4315  /// \param LAngleLoc The location of the opening angle bracket  ('<').
4316  /// \param TemplateArgs The template arguments.
4317  /// \param RAngleLoc The location of the closing angle bracket  ('>').
4318  TypeResult
4319  ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
4320                    const CXXScopeSpec &SS,
4321                    SourceLocation TemplateLoc,
4322                    TemplateTy Template,
4323                    SourceLocation TemplateNameLoc,
4324                    SourceLocation LAngleLoc,
4325                    ASTTemplateArgsPtr TemplateArgs,
4326                    SourceLocation RAngleLoc);
4327
4328  QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
4329                             SourceLocation KeywordLoc,
4330                             NestedNameSpecifierLoc QualifierLoc,
4331                             const IdentifierInfo &II,
4332                             SourceLocation IILoc);
4333
4334  TypeSourceInfo *RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
4335                                                    SourceLocation Loc,
4336                                                    DeclarationName Name);
4337  bool RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS);
4338
4339  ExprResult RebuildExprInCurrentInstantiation(Expr *E);
4340  bool RebuildTemplateParamsInCurrentInstantiation(
4341                                                TemplateParameterList *Params);
4342
4343  std::string
4344  getTemplateArgumentBindingsText(const TemplateParameterList *Params,
4345                                  const TemplateArgumentList &Args);
4346
4347  std::string
4348  getTemplateArgumentBindingsText(const TemplateParameterList *Params,
4349                                  const TemplateArgument *Args,
4350                                  unsigned NumArgs);
4351
4352  //===--------------------------------------------------------------------===//
4353  // C++ Variadic Templates (C++0x [temp.variadic])
4354  //===--------------------------------------------------------------------===//
4355
4356  /// \brief The context in which an unexpanded parameter pack is
4357  /// being diagnosed.
4358  ///
4359  /// Note that the values of this enumeration line up with the first
4360  /// argument to the \c err_unexpanded_parameter_pack diagnostic.
4361  enum UnexpandedParameterPackContext {
4362    /// \brief An arbitrary expression.
4363    UPPC_Expression = 0,
4364
4365    /// \brief The base type of a class type.
4366    UPPC_BaseType,
4367
4368    /// \brief The type of an arbitrary declaration.
4369    UPPC_DeclarationType,
4370
4371    /// \brief The type of a data member.
4372    UPPC_DataMemberType,
4373
4374    /// \brief The size of a bit-field.
4375    UPPC_BitFieldWidth,
4376
4377    /// \brief The expression in a static assertion.
4378    UPPC_StaticAssertExpression,
4379
4380    /// \brief The fixed underlying type of an enumeration.
4381    UPPC_FixedUnderlyingType,
4382
4383    /// \brief The enumerator value.
4384    UPPC_EnumeratorValue,
4385
4386    /// \brief A using declaration.
4387    UPPC_UsingDeclaration,
4388
4389    /// \brief A friend declaration.
4390    UPPC_FriendDeclaration,
4391
4392    /// \brief A declaration qualifier.
4393    UPPC_DeclarationQualifier,
4394
4395    /// \brief An initializer.
4396    UPPC_Initializer,
4397
4398    /// \brief A default argument.
4399    UPPC_DefaultArgument,
4400
4401    /// \brief The type of a non-type template parameter.
4402    UPPC_NonTypeTemplateParameterType,
4403
4404    /// \brief The type of an exception.
4405    UPPC_ExceptionType,
4406
4407    /// \brief Partial specialization.
4408    UPPC_PartialSpecialization,
4409
4410    /// \brief Microsoft __if_exists.
4411    UPPC_IfExists,
4412
4413    /// \brief Microsoft __if_not_exists.
4414    UPPC_IfNotExists
4415};
4416
4417  /// \brief Diagnose unexpanded parameter packs.
4418  ///
4419  /// \param Loc The location at which we should emit the diagnostic.
4420  ///
4421  /// \param UPPC The context in which we are diagnosing unexpanded
4422  /// parameter packs.
4423  ///
4424  /// \param Unexpanded the set of unexpanded parameter packs.
4425  void DiagnoseUnexpandedParameterPacks(SourceLocation Loc,
4426                                        UnexpandedParameterPackContext UPPC,
4427                    const SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4428
4429  /// \brief If the given type contains an unexpanded parameter pack,
4430  /// diagnose the error.
4431  ///
4432  /// \param Loc The source location where a diagnostc should be emitted.
4433  ///
4434  /// \param T The type that is being checked for unexpanded parameter
4435  /// packs.
4436  ///
4437  /// \returns true if an error occurred, false otherwise.
4438  bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T,
4439                                       UnexpandedParameterPackContext UPPC);
4440
4441  /// \brief If the given expression contains an unexpanded parameter
4442  /// pack, diagnose the error.
4443  ///
4444  /// \param E The expression that is being checked for unexpanded
4445  /// parameter packs.
4446  ///
4447  /// \returns true if an error occurred, false otherwise.
4448  bool DiagnoseUnexpandedParameterPack(Expr *E,
4449                       UnexpandedParameterPackContext UPPC = UPPC_Expression);
4450
4451  /// \brief If the given nested-name-specifier contains an unexpanded
4452  /// parameter pack, diagnose the error.
4453  ///
4454  /// \param SS The nested-name-specifier that is being checked for
4455  /// unexpanded parameter packs.
4456  ///
4457  /// \returns true if an error occurred, false otherwise.
4458  bool DiagnoseUnexpandedParameterPack(const CXXScopeSpec &SS,
4459                                       UnexpandedParameterPackContext UPPC);
4460
4461  /// \brief If the given name contains an unexpanded parameter pack,
4462  /// diagnose the error.
4463  ///
4464  /// \param NameInfo The name (with source location information) that
4465  /// is being checked for unexpanded parameter packs.
4466  ///
4467  /// \returns true if an error occurred, false otherwise.
4468  bool DiagnoseUnexpandedParameterPack(const DeclarationNameInfo &NameInfo,
4469                                       UnexpandedParameterPackContext UPPC);
4470
4471  /// \brief If the given template name contains an unexpanded parameter pack,
4472  /// diagnose the error.
4473  ///
4474  /// \param Loc The location of the template name.
4475  ///
4476  /// \param Template The template name that is being checked for unexpanded
4477  /// parameter packs.
4478  ///
4479  /// \returns true if an error occurred, false otherwise.
4480  bool DiagnoseUnexpandedParameterPack(SourceLocation Loc,
4481                                       TemplateName Template,
4482                                       UnexpandedParameterPackContext UPPC);
4483
4484  /// \brief If the given template argument contains an unexpanded parameter
4485  /// pack, diagnose the error.
4486  ///
4487  /// \param Arg The template argument that is being checked for unexpanded
4488  /// parameter packs.
4489  ///
4490  /// \returns true if an error occurred, false otherwise.
4491  bool DiagnoseUnexpandedParameterPack(TemplateArgumentLoc Arg,
4492                                       UnexpandedParameterPackContext UPPC);
4493
4494  /// \brief Collect the set of unexpanded parameter packs within the given
4495  /// template argument.
4496  ///
4497  /// \param Arg The template argument that will be traversed to find
4498  /// unexpanded parameter packs.
4499  void collectUnexpandedParameterPacks(TemplateArgument Arg,
4500                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4501
4502  /// \brief Collect the set of unexpanded parameter packs within the given
4503  /// template argument.
4504  ///
4505  /// \param Arg The template argument that will be traversed to find
4506  /// unexpanded parameter packs.
4507  void collectUnexpandedParameterPacks(TemplateArgumentLoc Arg,
4508                    SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4509
4510  /// \brief Collect the set of unexpanded parameter packs within the given
4511  /// type.
4512  ///
4513  /// \param T The type that will be traversed to find
4514  /// unexpanded parameter packs.
4515  void collectUnexpandedParameterPacks(QualType T,
4516                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4517
4518  /// \brief Collect the set of unexpanded parameter packs within the given
4519  /// type.
4520  ///
4521  /// \param TL The type that will be traversed to find
4522  /// unexpanded parameter packs.
4523  void collectUnexpandedParameterPacks(TypeLoc TL,
4524                   SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4525
4526  /// \brief Collect the set of unexpanded parameter packs within the given
4527  /// nested-name-specifier.
4528  ///
4529  /// \param SS The nested-name-specifier that will be traversed to find
4530  /// unexpanded parameter packs.
4531  void collectUnexpandedParameterPacks(CXXScopeSpec &SS,
4532                         SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4533
4534  /// \brief Collect the set of unexpanded parameter packs within the given
4535  /// name.
4536  ///
4537  /// \param NameInfo The name that will be traversed to find
4538  /// unexpanded parameter packs.
4539  void collectUnexpandedParameterPacks(const DeclarationNameInfo &NameInfo,
4540                         SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
4541
4542  /// \brief Invoked when parsing a template argument followed by an
4543  /// ellipsis, which creates a pack expansion.
4544  ///
4545  /// \param Arg The template argument preceding the ellipsis, which
4546  /// may already be invalid.
4547  ///
4548  /// \param EllipsisLoc The location of the ellipsis.
4549  ParsedTemplateArgument ActOnPackExpansion(const ParsedTemplateArgument &Arg,
4550                                            SourceLocation EllipsisLoc);
4551
4552  /// \brief Invoked when parsing a type followed by an ellipsis, which
4553  /// creates a pack expansion.
4554  ///
4555  /// \param Type The type preceding the ellipsis, which will become
4556  /// the pattern of the pack expansion.
4557  ///
4558  /// \param EllipsisLoc The location of the ellipsis.
4559  TypeResult ActOnPackExpansion(ParsedType Type, SourceLocation EllipsisLoc);
4560
4561  /// \brief Construct a pack expansion type from the pattern of the pack
4562  /// expansion.
4563  TypeSourceInfo *CheckPackExpansion(TypeSourceInfo *Pattern,
4564                                     SourceLocation EllipsisLoc,
4565                                     llvm::Optional<unsigned> NumExpansions);
4566
4567  /// \brief Construct a pack expansion type from the pattern of the pack
4568  /// expansion.
4569  QualType CheckPackExpansion(QualType Pattern,
4570                              SourceRange PatternRange,
4571                              SourceLocation EllipsisLoc,
4572                              llvm::Optional<unsigned> NumExpansions);
4573
4574  /// \brief Invoked when parsing an expression followed by an ellipsis, which
4575  /// creates a pack expansion.
4576  ///
4577  /// \param Pattern The expression preceding the ellipsis, which will become
4578  /// the pattern of the pack expansion.
4579  ///
4580  /// \param EllipsisLoc The location of the ellipsis.
4581  ExprResult ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc);
4582
4583  /// \brief Invoked when parsing an expression followed by an ellipsis, which
4584  /// creates a pack expansion.
4585  ///
4586  /// \param Pattern The expression preceding the ellipsis, which will become
4587  /// the pattern of the pack expansion.
4588  ///
4589  /// \param EllipsisLoc The location of the ellipsis.
4590  ExprResult CheckPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc,
4591                                llvm::Optional<unsigned> NumExpansions);
4592
4593  /// \brief Determine whether we could expand a pack expansion with the
4594  /// given set of parameter packs into separate arguments by repeatedly
4595  /// transforming the pattern.
4596  ///
4597  /// \param EllipsisLoc The location of the ellipsis that identifies the
4598  /// pack expansion.
4599  ///
4600  /// \param PatternRange The source range that covers the entire pattern of
4601  /// the pack expansion.
4602  ///
4603  /// \param Unexpanded The set of unexpanded parameter packs within the
4604  /// pattern.
4605  ///
4606  /// \param NumUnexpanded The number of unexpanded parameter packs in
4607  /// \p Unexpanded.
4608  ///
4609  /// \param ShouldExpand Will be set to \c true if the transformer should
4610  /// expand the corresponding pack expansions into separate arguments. When
4611  /// set, \c NumExpansions must also be set.
4612  ///
4613  /// \param RetainExpansion Whether the caller should add an unexpanded
4614  /// pack expansion after all of the expanded arguments. This is used
4615  /// when extending explicitly-specified template argument packs per
4616  /// C++0x [temp.arg.explicit]p9.
4617  ///
4618  /// \param NumExpansions The number of separate arguments that will be in
4619  /// the expanded form of the corresponding pack expansion. This is both an
4620  /// input and an output parameter, which can be set by the caller if the
4621  /// number of expansions is known a priori (e.g., due to a prior substitution)
4622  /// and will be set by the callee when the number of expansions is known.
4623  /// The callee must set this value when \c ShouldExpand is \c true; it may
4624  /// set this value in other cases.
4625  ///
4626  /// \returns true if an error occurred (e.g., because the parameter packs
4627  /// are to be instantiated with arguments of different lengths), false
4628  /// otherwise. If false, \c ShouldExpand (and possibly \c NumExpansions)
4629  /// must be set.
4630  bool CheckParameterPacksForExpansion(SourceLocation EllipsisLoc,
4631                                       SourceRange PatternRange,
4632                             llvm::ArrayRef<UnexpandedParameterPack> Unexpanded,
4633                             const MultiLevelTemplateArgumentList &TemplateArgs,
4634                                       bool &ShouldExpand,
4635                                       bool &RetainExpansion,
4636                                       llvm::Optional<unsigned> &NumExpansions);
4637
4638  /// \brief Determine the number of arguments in the given pack expansion
4639  /// type.
4640  ///
4641  /// This routine already assumes that the pack expansion type can be
4642  /// expanded and that the number of arguments in the expansion is
4643  /// consistent across all of the unexpanded parameter packs in its pattern.
4644  unsigned getNumArgumentsInExpansion(QualType T,
4645                            const MultiLevelTemplateArgumentList &TemplateArgs);
4646
4647  /// \brief Determine whether the given declarator contains any unexpanded
4648  /// parameter packs.
4649  ///
4650  /// This routine is used by the parser to disambiguate function declarators
4651  /// with an ellipsis prior to the ')', e.g.,
4652  ///
4653  /// \code
4654  ///   void f(T...);
4655  /// \endcode
4656  ///
4657  /// To determine whether we have an (unnamed) function parameter pack or
4658  /// a variadic function.
4659  ///
4660  /// \returns true if the declarator contains any unexpanded parameter packs,
4661  /// false otherwise.
4662  bool containsUnexpandedParameterPacks(Declarator &D);
4663
4664  //===--------------------------------------------------------------------===//
4665  // C++ Template Argument Deduction (C++ [temp.deduct])
4666  //===--------------------------------------------------------------------===//
4667
4668  /// \brief Describes the result of template argument deduction.
4669  ///
4670  /// The TemplateDeductionResult enumeration describes the result of
4671  /// template argument deduction, as returned from
4672  /// DeduceTemplateArguments(). The separate TemplateDeductionInfo
4673  /// structure provides additional information about the results of
4674  /// template argument deduction, e.g., the deduced template argument
4675  /// list (if successful) or the specific template parameters or
4676  /// deduced arguments that were involved in the failure.
4677  enum TemplateDeductionResult {
4678    /// \brief Template argument deduction was successful.
4679    TDK_Success = 0,
4680    /// \brief Template argument deduction exceeded the maximum template
4681    /// instantiation depth (which has already been diagnosed).
4682    TDK_InstantiationDepth,
4683    /// \brief Template argument deduction did not deduce a value
4684    /// for every template parameter.
4685    TDK_Incomplete,
4686    /// \brief Template argument deduction produced inconsistent
4687    /// deduced values for the given template parameter.
4688    TDK_Inconsistent,
4689    /// \brief Template argument deduction failed due to inconsistent
4690    /// cv-qualifiers on a template parameter type that would
4691    /// otherwise be deduced, e.g., we tried to deduce T in "const T"
4692    /// but were given a non-const "X".
4693    TDK_Underqualified,
4694    /// \brief Substitution of the deduced template argument values
4695    /// resulted in an error.
4696    TDK_SubstitutionFailure,
4697    /// \brief Substitution of the deduced template argument values
4698    /// into a non-deduced context produced a type or value that
4699    /// produces a type that does not match the original template
4700    /// arguments provided.
4701    TDK_NonDeducedMismatch,
4702    /// \brief When performing template argument deduction for a function
4703    /// template, there were too many call arguments.
4704    TDK_TooManyArguments,
4705    /// \brief When performing template argument deduction for a function
4706    /// template, there were too few call arguments.
4707    TDK_TooFewArguments,
4708    /// \brief The explicitly-specified template arguments were not valid
4709    /// template arguments for the given template.
4710    TDK_InvalidExplicitArguments,
4711    /// \brief The arguments included an overloaded function name that could
4712    /// not be resolved to a suitable function.
4713    TDK_FailedOverloadResolution
4714  };
4715
4716  TemplateDeductionResult
4717  DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
4718                          const TemplateArgumentList &TemplateArgs,
4719                          sema::TemplateDeductionInfo &Info);
4720
4721  TemplateDeductionResult
4722  SubstituteExplicitTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4723                              TemplateArgumentListInfo &ExplicitTemplateArgs,
4724                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
4725                                 SmallVectorImpl<QualType> &ParamTypes,
4726                                      QualType *FunctionType,
4727                                      sema::TemplateDeductionInfo &Info);
4728
4729  /// brief A function argument from which we performed template argument
4730  // deduction for a call.
4731  struct OriginalCallArg {
4732    OriginalCallArg(QualType OriginalParamType,
4733                    unsigned ArgIdx,
4734                    QualType OriginalArgType)
4735      : OriginalParamType(OriginalParamType), ArgIdx(ArgIdx),
4736        OriginalArgType(OriginalArgType) { }
4737
4738    QualType OriginalParamType;
4739    unsigned ArgIdx;
4740    QualType OriginalArgType;
4741  };
4742
4743  TemplateDeductionResult
4744  FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate,
4745                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
4746                                  unsigned NumExplicitlySpecified,
4747                                  FunctionDecl *&Specialization,
4748                                  sema::TemplateDeductionInfo &Info,
4749           SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs = 0);
4750
4751  TemplateDeductionResult
4752  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4753                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4754                          Expr **Args, unsigned NumArgs,
4755                          FunctionDecl *&Specialization,
4756                          sema::TemplateDeductionInfo &Info);
4757
4758  TemplateDeductionResult
4759  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4760                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4761                          QualType ArgFunctionType,
4762                          FunctionDecl *&Specialization,
4763                          sema::TemplateDeductionInfo &Info);
4764
4765  TemplateDeductionResult
4766  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4767                          QualType ToType,
4768                          CXXConversionDecl *&Specialization,
4769                          sema::TemplateDeductionInfo &Info);
4770
4771  TemplateDeductionResult
4772  DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
4773                          TemplateArgumentListInfo *ExplicitTemplateArgs,
4774                          FunctionDecl *&Specialization,
4775                          sema::TemplateDeductionInfo &Info);
4776
4777  /// \brief Result type of DeduceAutoType.
4778  enum DeduceAutoResult {
4779    DAR_Succeeded,
4780    DAR_Failed,
4781    DAR_FailedAlreadyDiagnosed
4782  };
4783
4784  DeduceAutoResult DeduceAutoType(TypeSourceInfo *AutoType, Expr *&Initializer,
4785                                  TypeSourceInfo *&Result);
4786  void DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init);
4787
4788  FunctionTemplateDecl *getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
4789                                                   FunctionTemplateDecl *FT2,
4790                                                   SourceLocation Loc,
4791                                           TemplatePartialOrderingContext TPOC,
4792                                                   unsigned NumCallArguments);
4793  UnresolvedSetIterator getMostSpecialized(UnresolvedSetIterator SBegin,
4794                                           UnresolvedSetIterator SEnd,
4795                                           TemplatePartialOrderingContext TPOC,
4796                                           unsigned NumCallArguments,
4797                                           SourceLocation Loc,
4798                                           const PartialDiagnostic &NoneDiag,
4799                                           const PartialDiagnostic &AmbigDiag,
4800                                        const PartialDiagnostic &CandidateDiag,
4801                                        bool Complain = true,
4802                                        QualType TargetType = QualType());
4803
4804  ClassTemplatePartialSpecializationDecl *
4805  getMoreSpecializedPartialSpecialization(
4806                                  ClassTemplatePartialSpecializationDecl *PS1,
4807                                  ClassTemplatePartialSpecializationDecl *PS2,
4808                                  SourceLocation Loc);
4809
4810  void MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
4811                                  bool OnlyDeduced,
4812                                  unsigned Depth,
4813                                  llvm::SmallBitVector &Used);
4814  void MarkDeducedTemplateParameters(FunctionTemplateDecl *FunctionTemplate,
4815                                     llvm::SmallBitVector &Deduced) {
4816    return MarkDeducedTemplateParameters(Context, FunctionTemplate, Deduced);
4817  }
4818  static void MarkDeducedTemplateParameters(ASTContext &Ctx,
4819                                         FunctionTemplateDecl *FunctionTemplate,
4820                                         llvm::SmallBitVector &Deduced);
4821
4822  //===--------------------------------------------------------------------===//
4823  // C++ Template Instantiation
4824  //
4825
4826  MultiLevelTemplateArgumentList getTemplateInstantiationArgs(NamedDecl *D,
4827                                     const TemplateArgumentList *Innermost = 0,
4828                                                bool RelativeToPrimary = false,
4829                                               const FunctionDecl *Pattern = 0);
4830
4831  /// \brief A template instantiation that is currently in progress.
4832  struct ActiveTemplateInstantiation {
4833    /// \brief The kind of template instantiation we are performing
4834    enum InstantiationKind {
4835      /// We are instantiating a template declaration. The entity is
4836      /// the declaration we're instantiating (e.g., a CXXRecordDecl).
4837      TemplateInstantiation,
4838
4839      /// We are instantiating a default argument for a template
4840      /// parameter. The Entity is the template, and
4841      /// TemplateArgs/NumTemplateArguments provides the template
4842      /// arguments as specified.
4843      /// FIXME: Use a TemplateArgumentList
4844      DefaultTemplateArgumentInstantiation,
4845
4846      /// We are instantiating a default argument for a function.
4847      /// The Entity is the ParmVarDecl, and TemplateArgs/NumTemplateArgs
4848      /// provides the template arguments as specified.
4849      DefaultFunctionArgumentInstantiation,
4850
4851      /// We are substituting explicit template arguments provided for
4852      /// a function template. The entity is a FunctionTemplateDecl.
4853      ExplicitTemplateArgumentSubstitution,
4854
4855      /// We are substituting template argument determined as part of
4856      /// template argument deduction for either a class template
4857      /// partial specialization or a function template. The
4858      /// Entity is either a ClassTemplatePartialSpecializationDecl or
4859      /// a FunctionTemplateDecl.
4860      DeducedTemplateArgumentSubstitution,
4861
4862      /// We are substituting prior template arguments into a new
4863      /// template parameter. The template parameter itself is either a
4864      /// NonTypeTemplateParmDecl or a TemplateTemplateParmDecl.
4865      PriorTemplateArgumentSubstitution,
4866
4867      /// We are checking the validity of a default template argument that
4868      /// has been used when naming a template-id.
4869      DefaultTemplateArgumentChecking
4870    } Kind;
4871
4872    /// \brief The point of instantiation within the source code.
4873    SourceLocation PointOfInstantiation;
4874
4875    /// \brief The template (or partial specialization) in which we are
4876    /// performing the instantiation, for substitutions of prior template
4877    /// arguments.
4878    NamedDecl *Template;
4879
4880    /// \brief The entity that is being instantiated.
4881    uintptr_t Entity;
4882
4883    /// \brief The list of template arguments we are substituting, if they
4884    /// are not part of the entity.
4885    const TemplateArgument *TemplateArgs;
4886
4887    /// \brief The number of template arguments in TemplateArgs.
4888    unsigned NumTemplateArgs;
4889
4890    /// \brief The template deduction info object associated with the
4891    /// substitution or checking of explicit or deduced template arguments.
4892    sema::TemplateDeductionInfo *DeductionInfo;
4893
4894    /// \brief The source range that covers the construct that cause
4895    /// the instantiation, e.g., the template-id that causes a class
4896    /// template instantiation.
4897    SourceRange InstantiationRange;
4898
4899    ActiveTemplateInstantiation()
4900      : Kind(TemplateInstantiation), Template(0), Entity(0), TemplateArgs(0),
4901        NumTemplateArgs(0), DeductionInfo(0) {}
4902
4903    /// \brief Determines whether this template is an actual instantiation
4904    /// that should be counted toward the maximum instantiation depth.
4905    bool isInstantiationRecord() const;
4906
4907    friend bool operator==(const ActiveTemplateInstantiation &X,
4908                           const ActiveTemplateInstantiation &Y) {
4909      if (X.Kind != Y.Kind)
4910        return false;
4911
4912      if (X.Entity != Y.Entity)
4913        return false;
4914
4915      switch (X.Kind) {
4916      case TemplateInstantiation:
4917        return true;
4918
4919      case PriorTemplateArgumentSubstitution:
4920      case DefaultTemplateArgumentChecking:
4921        if (X.Template != Y.Template)
4922          return false;
4923
4924        // Fall through
4925
4926      case DefaultTemplateArgumentInstantiation:
4927      case ExplicitTemplateArgumentSubstitution:
4928      case DeducedTemplateArgumentSubstitution:
4929      case DefaultFunctionArgumentInstantiation:
4930        return X.TemplateArgs == Y.TemplateArgs;
4931
4932      }
4933
4934      llvm_unreachable("Invalid InstantiationKind!");
4935    }
4936
4937    friend bool operator!=(const ActiveTemplateInstantiation &X,
4938                           const ActiveTemplateInstantiation &Y) {
4939      return !(X == Y);
4940    }
4941  };
4942
4943  /// \brief List of active template instantiations.
4944  ///
4945  /// This vector is treated as a stack. As one template instantiation
4946  /// requires another template instantiation, additional
4947  /// instantiations are pushed onto the stack up to a
4948  /// user-configurable limit LangOptions::InstantiationDepth.
4949  SmallVector<ActiveTemplateInstantiation, 16>
4950    ActiveTemplateInstantiations;
4951
4952  /// \brief Whether we are in a SFINAE context that is not associated with
4953  /// template instantiation.
4954  ///
4955  /// This is used when setting up a SFINAE trap (\c see SFINAETrap) outside
4956  /// of a template instantiation or template argument deduction.
4957  bool InNonInstantiationSFINAEContext;
4958
4959  /// \brief The number of ActiveTemplateInstantiation entries in
4960  /// \c ActiveTemplateInstantiations that are not actual instantiations and,
4961  /// therefore, should not be counted as part of the instantiation depth.
4962  unsigned NonInstantiationEntries;
4963
4964  /// \brief The last template from which a template instantiation
4965  /// error or warning was produced.
4966  ///
4967  /// This value is used to suppress printing of redundant template
4968  /// instantiation backtraces when there are multiple errors in the
4969  /// same instantiation. FIXME: Does this belong in Sema? It's tough
4970  /// to implement it anywhere else.
4971  ActiveTemplateInstantiation LastTemplateInstantiationErrorContext;
4972
4973  /// \brief The current index into pack expansion arguments that will be
4974  /// used for substitution of parameter packs.
4975  ///
4976  /// The pack expansion index will be -1 to indicate that parameter packs
4977  /// should be instantiated as themselves. Otherwise, the index specifies
4978  /// which argument within the parameter pack will be used for substitution.
4979  int ArgumentPackSubstitutionIndex;
4980
4981  /// \brief RAII object used to change the argument pack substitution index
4982  /// within a \c Sema object.
4983  ///
4984  /// See \c ArgumentPackSubstitutionIndex for more information.
4985  class ArgumentPackSubstitutionIndexRAII {
4986    Sema &Self;
4987    int OldSubstitutionIndex;
4988
4989  public:
4990    ArgumentPackSubstitutionIndexRAII(Sema &Self, int NewSubstitutionIndex)
4991      : Self(Self), OldSubstitutionIndex(Self.ArgumentPackSubstitutionIndex) {
4992      Self.ArgumentPackSubstitutionIndex = NewSubstitutionIndex;
4993    }
4994
4995    ~ArgumentPackSubstitutionIndexRAII() {
4996      Self.ArgumentPackSubstitutionIndex = OldSubstitutionIndex;
4997    }
4998  };
4999
5000  friend class ArgumentPackSubstitutionRAII;
5001
5002  /// \brief The stack of calls expression undergoing template instantiation.
5003  ///
5004  /// The top of this stack is used by a fixit instantiating unresolved
5005  /// function calls to fix the AST to match the textual change it prints.
5006  SmallVector<CallExpr *, 8> CallsUndergoingInstantiation;
5007
5008  /// \brief For each declaration that involved template argument deduction, the
5009  /// set of diagnostics that were suppressed during that template argument
5010  /// deduction.
5011  ///
5012  /// FIXME: Serialize this structure to the AST file.
5013  llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >
5014    SuppressedDiagnostics;
5015
5016  /// \brief A stack object to be created when performing template
5017  /// instantiation.
5018  ///
5019  /// Construction of an object of type \c InstantiatingTemplate
5020  /// pushes the current instantiation onto the stack of active
5021  /// instantiations. If the size of this stack exceeds the maximum
5022  /// number of recursive template instantiations, construction
5023  /// produces an error and evaluates true.
5024  ///
5025  /// Destruction of this object will pop the named instantiation off
5026  /// the stack.
5027  struct InstantiatingTemplate {
5028    /// \brief Note that we are instantiating a class template,
5029    /// function template, or a member thereof.
5030    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5031                          Decl *Entity,
5032                          SourceRange InstantiationRange = SourceRange());
5033
5034    /// \brief Note that we are instantiating a default argument in a
5035    /// template-id.
5036    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5037                          TemplateDecl *Template,
5038                          const TemplateArgument *TemplateArgs,
5039                          unsigned NumTemplateArgs,
5040                          SourceRange InstantiationRange = SourceRange());
5041
5042    /// \brief Note that we are instantiating a default argument in a
5043    /// template-id.
5044    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5045                          FunctionTemplateDecl *FunctionTemplate,
5046                          const TemplateArgument *TemplateArgs,
5047                          unsigned NumTemplateArgs,
5048                          ActiveTemplateInstantiation::InstantiationKind Kind,
5049                          sema::TemplateDeductionInfo &DeductionInfo,
5050                          SourceRange InstantiationRange = SourceRange());
5051
5052    /// \brief Note that we are instantiating as part of template
5053    /// argument deduction for a class template partial
5054    /// specialization.
5055    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5056                          ClassTemplatePartialSpecializationDecl *PartialSpec,
5057                          const TemplateArgument *TemplateArgs,
5058                          unsigned NumTemplateArgs,
5059                          sema::TemplateDeductionInfo &DeductionInfo,
5060                          SourceRange InstantiationRange = SourceRange());
5061
5062    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5063                          ParmVarDecl *Param,
5064                          const TemplateArgument *TemplateArgs,
5065                          unsigned NumTemplateArgs,
5066                          SourceRange InstantiationRange = SourceRange());
5067
5068    /// \brief Note that we are substituting prior template arguments into a
5069    /// non-type or template template parameter.
5070    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5071                          NamedDecl *Template,
5072                          NonTypeTemplateParmDecl *Param,
5073                          const TemplateArgument *TemplateArgs,
5074                          unsigned NumTemplateArgs,
5075                          SourceRange InstantiationRange);
5076
5077    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5078                          NamedDecl *Template,
5079                          TemplateTemplateParmDecl *Param,
5080                          const TemplateArgument *TemplateArgs,
5081                          unsigned NumTemplateArgs,
5082                          SourceRange InstantiationRange);
5083
5084    /// \brief Note that we are checking the default template argument
5085    /// against the template parameter for a given template-id.
5086    InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
5087                          TemplateDecl *Template,
5088                          NamedDecl *Param,
5089                          const TemplateArgument *TemplateArgs,
5090                          unsigned NumTemplateArgs,
5091                          SourceRange InstantiationRange);
5092
5093
5094    /// \brief Note that we have finished instantiating this template.
5095    void Clear();
5096
5097    ~InstantiatingTemplate() { Clear(); }
5098
5099    /// \brief Determines whether we have exceeded the maximum
5100    /// recursive template instantiations.
5101    operator bool() const { return Invalid; }
5102
5103  private:
5104    Sema &SemaRef;
5105    bool Invalid;
5106    bool SavedInNonInstantiationSFINAEContext;
5107    bool CheckInstantiationDepth(SourceLocation PointOfInstantiation,
5108                                 SourceRange InstantiationRange);
5109
5110    InstantiatingTemplate(const InstantiatingTemplate&); // not implemented
5111
5112    InstantiatingTemplate&
5113    operator=(const InstantiatingTemplate&); // not implemented
5114  };
5115
5116  void PrintInstantiationStack();
5117
5118  /// \brief Determines whether we are currently in a context where
5119  /// template argument substitution failures are not considered
5120  /// errors.
5121  ///
5122  /// \returns An empty \c llvm::Optional if we're not in a SFINAE context.
5123  /// Otherwise, contains a pointer that, if non-NULL, contains the nearest
5124  /// template-deduction context object, which can be used to capture
5125  /// diagnostics that will be suppressed.
5126  llvm::Optional<sema::TemplateDeductionInfo *> isSFINAEContext() const;
5127
5128  /// \brief RAII class used to determine whether SFINAE has
5129  /// trapped any errors that occur during template argument
5130  /// deduction.`
5131  class SFINAETrap {
5132    Sema &SemaRef;
5133    unsigned PrevSFINAEErrors;
5134    bool PrevInNonInstantiationSFINAEContext;
5135    bool PrevAccessCheckingSFINAE;
5136
5137  public:
5138    explicit SFINAETrap(Sema &SemaRef, bool AccessCheckingSFINAE = false)
5139      : SemaRef(SemaRef), PrevSFINAEErrors(SemaRef.NumSFINAEErrors),
5140        PrevInNonInstantiationSFINAEContext(
5141                                      SemaRef.InNonInstantiationSFINAEContext),
5142        PrevAccessCheckingSFINAE(SemaRef.AccessCheckingSFINAE)
5143    {
5144      if (!SemaRef.isSFINAEContext())
5145        SemaRef.InNonInstantiationSFINAEContext = true;
5146      SemaRef.AccessCheckingSFINAE = AccessCheckingSFINAE;
5147    }
5148
5149    ~SFINAETrap() {
5150      SemaRef.NumSFINAEErrors = PrevSFINAEErrors;
5151      SemaRef.InNonInstantiationSFINAEContext
5152        = PrevInNonInstantiationSFINAEContext;
5153      SemaRef.AccessCheckingSFINAE = PrevAccessCheckingSFINAE;
5154    }
5155
5156    /// \brief Determine whether any SFINAE errors have been trapped.
5157    bool hasErrorOccurred() const {
5158      return SemaRef.NumSFINAEErrors > PrevSFINAEErrors;
5159    }
5160  };
5161
5162  /// \brief The current instantiation scope used to store local
5163  /// variables.
5164  LocalInstantiationScope *CurrentInstantiationScope;
5165
5166  /// \brief The number of typos corrected by CorrectTypo.
5167  unsigned TyposCorrected;
5168
5169  typedef llvm::DenseMap<IdentifierInfo *, TypoCorrection>
5170    UnqualifiedTyposCorrectedMap;
5171
5172  /// \brief A cache containing the results of typo correction for unqualified
5173  /// name lookup.
5174  ///
5175  /// The string is the string that we corrected to (which may be empty, if
5176  /// there was no correction), while the boolean will be true when the
5177  /// string represents a keyword.
5178  UnqualifiedTyposCorrectedMap UnqualifiedTyposCorrected;
5179
5180  /// \brief Worker object for performing CFG-based warnings.
5181  sema::AnalysisBasedWarnings AnalysisWarnings;
5182
5183  /// \brief An entity for which implicit template instantiation is required.
5184  ///
5185  /// The source location associated with the declaration is the first place in
5186  /// the source code where the declaration was "used". It is not necessarily
5187  /// the point of instantiation (which will be either before or after the
5188  /// namespace-scope declaration that triggered this implicit instantiation),
5189  /// However, it is the location that diagnostics should generally refer to,
5190  /// because users will need to know what code triggered the instantiation.
5191  typedef std::pair<ValueDecl *, SourceLocation> PendingImplicitInstantiation;
5192
5193  /// \brief The queue of implicit template instantiations that are required
5194  /// but have not yet been performed.
5195  std::deque<PendingImplicitInstantiation> PendingInstantiations;
5196
5197  /// \brief The queue of implicit template instantiations that are required
5198  /// and must be performed within the current local scope.
5199  ///
5200  /// This queue is only used for member functions of local classes in
5201  /// templates, which must be instantiated in the same scope as their
5202  /// enclosing function, so that they can reference function-local
5203  /// types, static variables, enumerators, etc.
5204  std::deque<PendingImplicitInstantiation> PendingLocalImplicitInstantiations;
5205
5206  void PerformPendingInstantiations(bool LocalOnly = false);
5207
5208  TypeSourceInfo *SubstType(TypeSourceInfo *T,
5209                            const MultiLevelTemplateArgumentList &TemplateArgs,
5210                            SourceLocation Loc, DeclarationName Entity);
5211
5212  QualType SubstType(QualType T,
5213                     const MultiLevelTemplateArgumentList &TemplateArgs,
5214                     SourceLocation Loc, DeclarationName Entity);
5215
5216  TypeSourceInfo *SubstType(TypeLoc TL,
5217                            const MultiLevelTemplateArgumentList &TemplateArgs,
5218                            SourceLocation Loc, DeclarationName Entity);
5219
5220  TypeSourceInfo *SubstFunctionDeclType(TypeSourceInfo *T,
5221                            const MultiLevelTemplateArgumentList &TemplateArgs,
5222                                        SourceLocation Loc,
5223                                        DeclarationName Entity);
5224  ParmVarDecl *SubstParmVarDecl(ParmVarDecl *D,
5225                            const MultiLevelTemplateArgumentList &TemplateArgs,
5226                                int indexAdjustment,
5227                                llvm::Optional<unsigned> NumExpansions,
5228                                bool ExpectParameterPack);
5229  bool SubstParmTypes(SourceLocation Loc,
5230                      ParmVarDecl **Params, unsigned NumParams,
5231                      const MultiLevelTemplateArgumentList &TemplateArgs,
5232                      SmallVectorImpl<QualType> &ParamTypes,
5233                      SmallVectorImpl<ParmVarDecl *> *OutParams = 0);
5234  ExprResult SubstExpr(Expr *E,
5235                       const MultiLevelTemplateArgumentList &TemplateArgs);
5236
5237  /// \brief Substitute the given template arguments into a list of
5238  /// expressions, expanding pack expansions if required.
5239  ///
5240  /// \param Exprs The list of expressions to substitute into.
5241  ///
5242  /// \param NumExprs The number of expressions in \p Exprs.
5243  ///
5244  /// \param IsCall Whether this is some form of call, in which case
5245  /// default arguments will be dropped.
5246  ///
5247  /// \param TemplateArgs The set of template arguments to substitute.
5248  ///
5249  /// \param Outputs Will receive all of the substituted arguments.
5250  ///
5251  /// \returns true if an error occurred, false otherwise.
5252  bool SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,
5253                  const MultiLevelTemplateArgumentList &TemplateArgs,
5254                  SmallVectorImpl<Expr *> &Outputs);
5255
5256  StmtResult SubstStmt(Stmt *S,
5257                       const MultiLevelTemplateArgumentList &TemplateArgs);
5258
5259  Decl *SubstDecl(Decl *D, DeclContext *Owner,
5260                  const MultiLevelTemplateArgumentList &TemplateArgs);
5261
5262  ExprResult SubstInitializer(Expr *E,
5263                       const MultiLevelTemplateArgumentList &TemplateArgs,
5264                       bool CXXDirectInit);
5265
5266  bool
5267  SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
5268                      CXXRecordDecl *Pattern,
5269                      const MultiLevelTemplateArgumentList &TemplateArgs);
5270
5271  bool
5272  InstantiateClass(SourceLocation PointOfInstantiation,
5273                   CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
5274                   const MultiLevelTemplateArgumentList &TemplateArgs,
5275                   TemplateSpecializationKind TSK,
5276                   bool Complain = true);
5277
5278  struct LateInstantiatedAttribute {
5279    const Attr *TmplAttr;
5280    LocalInstantiationScope *Scope;
5281    Decl *NewDecl;
5282
5283    LateInstantiatedAttribute(const Attr *A, LocalInstantiationScope *S,
5284                              Decl *D)
5285      : TmplAttr(A), Scope(S), NewDecl(D)
5286    { }
5287  };
5288  typedef SmallVector<LateInstantiatedAttribute, 16> LateInstantiatedAttrVec;
5289
5290  void InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
5291                        const Decl *Pattern, Decl *Inst,
5292                        LateInstantiatedAttrVec *LateAttrs = 0,
5293                        LocalInstantiationScope *OuterMostScope = 0);
5294
5295  bool
5296  InstantiateClassTemplateSpecialization(SourceLocation PointOfInstantiation,
5297                           ClassTemplateSpecializationDecl *ClassTemplateSpec,
5298                           TemplateSpecializationKind TSK,
5299                           bool Complain = true);
5300
5301  void InstantiateClassMembers(SourceLocation PointOfInstantiation,
5302                               CXXRecordDecl *Instantiation,
5303                            const MultiLevelTemplateArgumentList &TemplateArgs,
5304                               TemplateSpecializationKind TSK);
5305
5306  void InstantiateClassTemplateSpecializationMembers(
5307                                          SourceLocation PointOfInstantiation,
5308                           ClassTemplateSpecializationDecl *ClassTemplateSpec,
5309                                                TemplateSpecializationKind TSK);
5310
5311  NestedNameSpecifierLoc
5312  SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
5313                           const MultiLevelTemplateArgumentList &TemplateArgs);
5314
5315  DeclarationNameInfo
5316  SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
5317                           const MultiLevelTemplateArgumentList &TemplateArgs);
5318  TemplateName
5319  SubstTemplateName(NestedNameSpecifierLoc QualifierLoc, TemplateName Name,
5320                    SourceLocation Loc,
5321                    const MultiLevelTemplateArgumentList &TemplateArgs);
5322  bool Subst(const TemplateArgumentLoc *Args, unsigned NumArgs,
5323             TemplateArgumentListInfo &Result,
5324             const MultiLevelTemplateArgumentList &TemplateArgs);
5325
5326  void InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
5327                                     FunctionDecl *Function,
5328                                     bool Recursive = false,
5329                                     bool DefinitionRequired = false);
5330  void InstantiateStaticDataMemberDefinition(
5331                                     SourceLocation PointOfInstantiation,
5332                                     VarDecl *Var,
5333                                     bool Recursive = false,
5334                                     bool DefinitionRequired = false);
5335
5336  void InstantiateMemInitializers(CXXConstructorDecl *New,
5337                                  const CXXConstructorDecl *Tmpl,
5338                            const MultiLevelTemplateArgumentList &TemplateArgs);
5339
5340  NamedDecl *FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
5341                          const MultiLevelTemplateArgumentList &TemplateArgs);
5342  DeclContext *FindInstantiatedContext(SourceLocation Loc, DeclContext *DC,
5343                          const MultiLevelTemplateArgumentList &TemplateArgs);
5344
5345  // Objective-C declarations.
5346  enum ObjCContainerKind {
5347    OCK_None = -1,
5348    OCK_Interface = 0,
5349    OCK_Protocol,
5350    OCK_Category,
5351    OCK_ClassExtension,
5352    OCK_Implementation,
5353    OCK_CategoryImplementation
5354  };
5355  ObjCContainerKind getObjCContainerKind() const;
5356
5357  Decl *ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
5358                                 IdentifierInfo *ClassName,
5359                                 SourceLocation ClassLoc,
5360                                 IdentifierInfo *SuperName,
5361                                 SourceLocation SuperLoc,
5362                                 Decl * const *ProtoRefs,
5363                                 unsigned NumProtoRefs,
5364                                 const SourceLocation *ProtoLocs,
5365                                 SourceLocation EndProtoLoc,
5366                                 AttributeList *AttrList);
5367
5368  Decl *ActOnCompatiblityAlias(
5369                    SourceLocation AtCompatibilityAliasLoc,
5370                    IdentifierInfo *AliasName,  SourceLocation AliasLocation,
5371                    IdentifierInfo *ClassName, SourceLocation ClassLocation);
5372
5373  bool CheckForwardProtocolDeclarationForCircularDependency(
5374    IdentifierInfo *PName,
5375    SourceLocation &PLoc, SourceLocation PrevLoc,
5376    const ObjCList<ObjCProtocolDecl> &PList);
5377
5378  Decl *ActOnStartProtocolInterface(
5379                    SourceLocation AtProtoInterfaceLoc,
5380                    IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
5381                    Decl * const *ProtoRefNames, unsigned NumProtoRefs,
5382                    const SourceLocation *ProtoLocs,
5383                    SourceLocation EndProtoLoc,
5384                    AttributeList *AttrList);
5385
5386  Decl *ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
5387                                    IdentifierInfo *ClassName,
5388                                    SourceLocation ClassLoc,
5389                                    IdentifierInfo *CategoryName,
5390                                    SourceLocation CategoryLoc,
5391                                    Decl * const *ProtoRefs,
5392                                    unsigned NumProtoRefs,
5393                                    const SourceLocation *ProtoLocs,
5394                                    SourceLocation EndProtoLoc);
5395
5396  Decl *ActOnStartClassImplementation(
5397                    SourceLocation AtClassImplLoc,
5398                    IdentifierInfo *ClassName, SourceLocation ClassLoc,
5399                    IdentifierInfo *SuperClassname,
5400                    SourceLocation SuperClassLoc);
5401
5402  Decl *ActOnStartCategoryImplementation(SourceLocation AtCatImplLoc,
5403                                         IdentifierInfo *ClassName,
5404                                         SourceLocation ClassLoc,
5405                                         IdentifierInfo *CatName,
5406                                         SourceLocation CatLoc);
5407
5408  DeclGroupPtrTy ActOnForwardClassDeclaration(SourceLocation Loc,
5409                                     IdentifierInfo **IdentList,
5410                                     SourceLocation *IdentLocs,
5411                                     unsigned NumElts);
5412
5413  DeclGroupPtrTy ActOnForwardProtocolDeclaration(SourceLocation AtProtoclLoc,
5414                                        const IdentifierLocPair *IdentList,
5415                                        unsigned NumElts,
5416                                        AttributeList *attrList);
5417
5418  void FindProtocolDeclaration(bool WarnOnDeclarations,
5419                               const IdentifierLocPair *ProtocolId,
5420                               unsigned NumProtocols,
5421                               SmallVectorImpl<Decl *> &Protocols);
5422
5423  /// Ensure attributes are consistent with type.
5424  /// \param [in, out] Attributes The attributes to check; they will
5425  /// be modified to be consistent with \arg PropertyTy.
5426  void CheckObjCPropertyAttributes(Decl *PropertyPtrTy,
5427                                   SourceLocation Loc,
5428                                   unsigned &Attributes);
5429
5430  /// Process the specified property declaration and create decls for the
5431  /// setters and getters as needed.
5432  /// \param property The property declaration being processed
5433  /// \param DC The semantic container for the property
5434  /// \param redeclaredProperty Declaration for property if redeclared
5435  ///        in class extension.
5436  /// \param lexicalDC Container for redeclaredProperty.
5437  void ProcessPropertyDecl(ObjCPropertyDecl *property,
5438                           ObjCContainerDecl *DC,
5439                           ObjCPropertyDecl *redeclaredProperty = 0,
5440                           ObjCContainerDecl *lexicalDC = 0);
5441
5442  void DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
5443                                ObjCPropertyDecl *SuperProperty,
5444                                const IdentifierInfo *Name);
5445  void ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl);
5446
5447  void CompareMethodParamsInBaseAndSuper(Decl *IDecl,
5448                                         ObjCMethodDecl *MethodDecl,
5449                                         bool IsInstance);
5450
5451  void CompareProperties(Decl *CDecl, Decl *MergeProtocols);
5452
5453  void DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
5454                                        ObjCInterfaceDecl *ID);
5455
5456  void MatchOneProtocolPropertiesInClass(Decl *CDecl,
5457                                         ObjCProtocolDecl *PDecl);
5458
5459  Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,
5460                   Decl **allMethods = 0, unsigned allNum = 0,
5461                   Decl **allProperties = 0, unsigned pNum = 0,
5462                   DeclGroupPtrTy *allTUVars = 0, unsigned tuvNum = 0);
5463
5464  Decl *ActOnProperty(Scope *S, SourceLocation AtLoc,
5465                      FieldDeclarator &FD, ObjCDeclSpec &ODS,
5466                      Selector GetterSel, Selector SetterSel,
5467                      bool *OverridingProperty,
5468                      tok::ObjCKeywordKind MethodImplKind,
5469                      DeclContext *lexicalDC = 0);
5470
5471  Decl *ActOnPropertyImplDecl(Scope *S,
5472                              SourceLocation AtLoc,
5473                              SourceLocation PropertyLoc,
5474                              bool ImplKind,
5475                              IdentifierInfo *PropertyId,
5476                              IdentifierInfo *PropertyIvar,
5477                              SourceLocation PropertyIvarLoc);
5478
5479  enum ObjCSpecialMethodKind {
5480    OSMK_None,
5481    OSMK_Alloc,
5482    OSMK_New,
5483    OSMK_Copy,
5484    OSMK_RetainingInit,
5485    OSMK_NonRetainingInit
5486  };
5487
5488  struct ObjCArgInfo {
5489    IdentifierInfo *Name;
5490    SourceLocation NameLoc;
5491    // The Type is null if no type was specified, and the DeclSpec is invalid
5492    // in this case.
5493    ParsedType Type;
5494    ObjCDeclSpec DeclSpec;
5495
5496    /// ArgAttrs - Attribute list for this argument.
5497    AttributeList *ArgAttrs;
5498  };
5499
5500  Decl *ActOnMethodDeclaration(
5501    Scope *S,
5502    SourceLocation BeginLoc, // location of the + or -.
5503    SourceLocation EndLoc,   // location of the ; or {.
5504    tok::TokenKind MethodType,
5505    ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
5506    ArrayRef<SourceLocation> SelectorLocs, Selector Sel,
5507    // optional arguments. The number of types/arguments is obtained
5508    // from the Sel.getNumArgs().
5509    ObjCArgInfo *ArgInfo,
5510    DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args
5511    AttributeList *AttrList, tok::ObjCKeywordKind MethodImplKind,
5512    bool isVariadic, bool MethodDefinition);
5513
5514  // Helper method for ActOnClassMethod/ActOnInstanceMethod.
5515  // Will search "local" class/category implementations for a method decl.
5516  // Will also search in class's root looking for instance method.
5517  // Returns 0 if no method is found.
5518  ObjCMethodDecl *LookupPrivateClassMethod(Selector Sel,
5519                                           ObjCInterfaceDecl *CDecl);
5520  ObjCMethodDecl *LookupPrivateInstanceMethod(Selector Sel,
5521                                              ObjCInterfaceDecl *ClassDecl);
5522  ObjCMethodDecl *LookupMethodInQualifiedType(Selector Sel,
5523                                              const ObjCObjectPointerType *OPT,
5524                                              bool IsInstance);
5525  ObjCMethodDecl *LookupMethodInObjectType(Selector Sel, QualType Ty,
5526                                           bool IsInstance);
5527
5528  bool inferObjCARCLifetime(ValueDecl *decl);
5529
5530  ExprResult
5531  HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
5532                            Expr *BaseExpr,
5533                            SourceLocation OpLoc,
5534                            DeclarationName MemberName,
5535                            SourceLocation MemberLoc,
5536                            SourceLocation SuperLoc, QualType SuperType,
5537                            bool Super);
5538
5539  ExprResult
5540  ActOnClassPropertyRefExpr(IdentifierInfo &receiverName,
5541                            IdentifierInfo &propertyName,
5542                            SourceLocation receiverNameLoc,
5543                            SourceLocation propertyNameLoc);
5544
5545  ObjCMethodDecl *tryCaptureObjCSelf(SourceLocation Loc);
5546
5547  /// \brief Describes the kind of message expression indicated by a message
5548  /// send that starts with an identifier.
5549  enum ObjCMessageKind {
5550    /// \brief The message is sent to 'super'.
5551    ObjCSuperMessage,
5552    /// \brief The message is an instance message.
5553    ObjCInstanceMessage,
5554    /// \brief The message is a class message, and the identifier is a type
5555    /// name.
5556    ObjCClassMessage
5557  };
5558
5559  ObjCMessageKind getObjCMessageKind(Scope *S,
5560                                     IdentifierInfo *Name,
5561                                     SourceLocation NameLoc,
5562                                     bool IsSuper,
5563                                     bool HasTrailingDot,
5564                                     ParsedType &ReceiverType);
5565
5566  ExprResult ActOnSuperMessage(Scope *S, SourceLocation SuperLoc,
5567                               Selector Sel,
5568                               SourceLocation LBracLoc,
5569                               ArrayRef<SourceLocation> SelectorLocs,
5570                               SourceLocation RBracLoc,
5571                               MultiExprArg Args);
5572
5573  ExprResult BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo,
5574                               QualType ReceiverType,
5575                               SourceLocation SuperLoc,
5576                               Selector Sel,
5577                               ObjCMethodDecl *Method,
5578                               SourceLocation LBracLoc,
5579                               ArrayRef<SourceLocation> SelectorLocs,
5580                               SourceLocation RBracLoc,
5581                               MultiExprArg Args,
5582                               bool isImplicit = false);
5583
5584  ExprResult BuildClassMessageImplicit(QualType ReceiverType,
5585                                       bool isSuperReceiver,
5586                                       SourceLocation Loc,
5587                                       Selector Sel,
5588                                       ObjCMethodDecl *Method,
5589                                       MultiExprArg Args);
5590
5591  ExprResult ActOnClassMessage(Scope *S,
5592                               ParsedType Receiver,
5593                               Selector Sel,
5594                               SourceLocation LBracLoc,
5595                               ArrayRef<SourceLocation> SelectorLocs,
5596                               SourceLocation RBracLoc,
5597                               MultiExprArg Args);
5598
5599  ExprResult BuildInstanceMessage(Expr *Receiver,
5600                                  QualType ReceiverType,
5601                                  SourceLocation SuperLoc,
5602                                  Selector Sel,
5603                                  ObjCMethodDecl *Method,
5604                                  SourceLocation LBracLoc,
5605                                  ArrayRef<SourceLocation> SelectorLocs,
5606                                  SourceLocation RBracLoc,
5607                                  MultiExprArg Args,
5608                                  bool isImplicit = false);
5609
5610  ExprResult BuildInstanceMessageImplicit(Expr *Receiver,
5611                                          QualType ReceiverType,
5612                                          SourceLocation Loc,
5613                                          Selector Sel,
5614                                          ObjCMethodDecl *Method,
5615                                          MultiExprArg Args);
5616
5617  ExprResult ActOnInstanceMessage(Scope *S,
5618                                  Expr *Receiver,
5619                                  Selector Sel,
5620                                  SourceLocation LBracLoc,
5621                                  ArrayRef<SourceLocation> SelectorLocs,
5622                                  SourceLocation RBracLoc,
5623                                  MultiExprArg Args);
5624
5625  ExprResult BuildObjCBridgedCast(SourceLocation LParenLoc,
5626                                  ObjCBridgeCastKind Kind,
5627                                  SourceLocation BridgeKeywordLoc,
5628                                  TypeSourceInfo *TSInfo,
5629                                  Expr *SubExpr);
5630
5631  ExprResult ActOnObjCBridgedCast(Scope *S,
5632                                  SourceLocation LParenLoc,
5633                                  ObjCBridgeCastKind Kind,
5634                                  SourceLocation BridgeKeywordLoc,
5635                                  ParsedType Type,
5636                                  SourceLocation RParenLoc,
5637                                  Expr *SubExpr);
5638
5639  bool checkInitMethod(ObjCMethodDecl *method, QualType receiverTypeIfCall);
5640
5641  /// \brief Check whether the given new method is a valid override of the
5642  /// given overridden method, and set any properties that should be inherited.
5643  void CheckObjCMethodOverride(ObjCMethodDecl *NewMethod,
5644                               const ObjCMethodDecl *Overridden,
5645                               bool IsImplementation);
5646
5647  /// \brief Check whether the given method overrides any methods in its class,
5648  /// calling \c CheckObjCMethodOverride for each overridden method.
5649  bool CheckObjCMethodOverrides(ObjCMethodDecl *NewMethod, DeclContext *DC);
5650
5651  enum PragmaOptionsAlignKind {
5652    POAK_Native,  // #pragma options align=native
5653    POAK_Natural, // #pragma options align=natural
5654    POAK_Packed,  // #pragma options align=packed
5655    POAK_Power,   // #pragma options align=power
5656    POAK_Mac68k,  // #pragma options align=mac68k
5657    POAK_Reset    // #pragma options align=reset
5658  };
5659
5660  /// ActOnPragmaOptionsAlign - Called on well formed #pragma options align.
5661  void ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
5662                               SourceLocation PragmaLoc,
5663                               SourceLocation KindLoc);
5664
5665  enum PragmaPackKind {
5666    PPK_Default, // #pragma pack([n])
5667    PPK_Show,    // #pragma pack(show), only supported by MSVC.
5668    PPK_Push,    // #pragma pack(push, [identifier], [n])
5669    PPK_Pop      // #pragma pack(pop, [identifier], [n])
5670  };
5671
5672  enum PragmaMSStructKind {
5673    PMSST_OFF,  // #pragms ms_struct off
5674    PMSST_ON    // #pragms ms_struct on
5675  };
5676
5677  /// ActOnPragmaPack - Called on well formed #pragma pack(...).
5678  void ActOnPragmaPack(PragmaPackKind Kind,
5679                       IdentifierInfo *Name,
5680                       Expr *Alignment,
5681                       SourceLocation PragmaLoc,
5682                       SourceLocation LParenLoc,
5683                       SourceLocation RParenLoc);
5684
5685  /// ActOnPragmaMSStruct - Called on well formed #pragms ms_struct [on|off].
5686  void ActOnPragmaMSStruct(PragmaMSStructKind Kind);
5687
5688  /// ActOnPragmaUnused - Called on well-formed '#pragma unused'.
5689  void ActOnPragmaUnused(const Token &Identifier,
5690                         Scope *curScope,
5691                         SourceLocation PragmaLoc);
5692
5693  /// ActOnPragmaVisibility - Called on well formed #pragma GCC visibility... .
5694  void ActOnPragmaVisibility(const IdentifierInfo* VisType,
5695                             SourceLocation PragmaLoc);
5696
5697  NamedDecl *DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5698                                 SourceLocation Loc);
5699  void DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W);
5700
5701  /// ActOnPragmaWeakID - Called on well formed #pragma weak ident.
5702  void ActOnPragmaWeakID(IdentifierInfo* WeakName,
5703                         SourceLocation PragmaLoc,
5704                         SourceLocation WeakNameLoc);
5705
5706  /// ActOnPragmaWeakAlias - Called on well formed #pragma weak ident = ident.
5707  void ActOnPragmaWeakAlias(IdentifierInfo* WeakName,
5708                            IdentifierInfo* AliasName,
5709                            SourceLocation PragmaLoc,
5710                            SourceLocation WeakNameLoc,
5711                            SourceLocation AliasNameLoc);
5712
5713  /// ActOnPragmaFPContract - Called on well formed
5714  /// #pragma {STDC,OPENCL} FP_CONTRACT
5715  void ActOnPragmaFPContract(tok::OnOffSwitch OOS);
5716
5717  /// AddAlignmentAttributesForRecord - Adds any needed alignment attributes to
5718  /// a the record decl, to handle '#pragma pack' and '#pragma options align'.
5719  void AddAlignmentAttributesForRecord(RecordDecl *RD);
5720
5721  /// AddMsStructLayoutForRecord - Adds ms_struct layout attribute to record.
5722  void AddMsStructLayoutForRecord(RecordDecl *RD);
5723
5724  /// FreePackedContext - Deallocate and null out PackContext.
5725  void FreePackedContext();
5726
5727  /// PushNamespaceVisibilityAttr - Note that we've entered a
5728  /// namespace with a visibility attribute.
5729  void PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
5730                                   SourceLocation Loc);
5731
5732  /// AddPushedVisibilityAttribute - If '#pragma GCC visibility' was used,
5733  /// add an appropriate visibility attribute.
5734  void AddPushedVisibilityAttribute(Decl *RD);
5735
5736  /// PopPragmaVisibility - Pop the top element of the visibility stack; used
5737  /// for '#pragma GCC visibility' and visibility attributes on namespaces.
5738  void PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc);
5739
5740  /// FreeVisContext - Deallocate and null out VisContext.
5741  void FreeVisContext();
5742
5743  /// AddCFAuditedAttribute - Check whether we're currently within
5744  /// '#pragma clang arc_cf_code_audited' and, if so, consider adding
5745  /// the appropriate attribute.
5746  void AddCFAuditedAttribute(Decl *D);
5747
5748  /// AddAlignedAttr - Adds an aligned attribute to a particular declaration.
5749  void AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E);
5750  void AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *T);
5751
5752  /// \brief The kind of conversion being performed.
5753  enum CheckedConversionKind {
5754    /// \brief An implicit conversion.
5755    CCK_ImplicitConversion,
5756    /// \brief A C-style cast.
5757    CCK_CStyleCast,
5758    /// \brief A functional-style cast.
5759    CCK_FunctionalCast,
5760    /// \brief A cast other than a C-style cast.
5761    CCK_OtherCast
5762  };
5763
5764  /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit
5765  /// cast.  If there is already an implicit cast, merge into the existing one.
5766  /// If isLvalue, the result of the cast is an lvalue.
5767  ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK,
5768                               ExprValueKind VK = VK_RValue,
5769                               const CXXCastPath *BasePath = 0,
5770                               CheckedConversionKind CCK
5771                                  = CCK_ImplicitConversion);
5772
5773  /// ScalarTypeToBooleanCastKind - Returns the cast kind corresponding
5774  /// to the conversion from scalar type ScalarTy to the Boolean type.
5775  static CastKind ScalarTypeToBooleanCastKind(QualType ScalarTy);
5776
5777  /// IgnoredValueConversions - Given that an expression's result is
5778  /// syntactically ignored, perform any conversions that are
5779  /// required.
5780  ExprResult IgnoredValueConversions(Expr *E);
5781
5782  // UsualUnaryConversions - promotes integers (C99 6.3.1.1p2) and converts
5783  // functions and arrays to their respective pointers (C99 6.3.2.1).
5784  ExprResult UsualUnaryConversions(Expr *E);
5785
5786  // DefaultFunctionArrayConversion - converts functions and arrays
5787  // to their respective pointers (C99 6.3.2.1).
5788  ExprResult DefaultFunctionArrayConversion(Expr *E);
5789
5790  // DefaultFunctionArrayLvalueConversion - converts functions and
5791  // arrays to their respective pointers and performs the
5792  // lvalue-to-rvalue conversion.
5793  ExprResult DefaultFunctionArrayLvalueConversion(Expr *E);
5794
5795  // DefaultLvalueConversion - performs lvalue-to-rvalue conversion on
5796  // the operand.  This is DefaultFunctionArrayLvalueConversion,
5797  // except that it assumes the operand isn't of function or array
5798  // type.
5799  ExprResult DefaultLvalueConversion(Expr *E);
5800
5801  // DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
5802  // do not have a prototype. Integer promotions are performed on each
5803  // argument, and arguments that have type float are promoted to double.
5804  ExprResult DefaultArgumentPromotion(Expr *E);
5805
5806  // Used for emitting the right warning by DefaultVariadicArgumentPromotion
5807  enum VariadicCallType {
5808    VariadicFunction,
5809    VariadicBlock,
5810    VariadicMethod,
5811    VariadicConstructor,
5812    VariadicDoesNotApply
5813  };
5814
5815  /// GatherArgumentsForCall - Collector argument expressions for various
5816  /// form of call prototypes.
5817  bool GatherArgumentsForCall(SourceLocation CallLoc,
5818                              FunctionDecl *FDecl,
5819                              const FunctionProtoType *Proto,
5820                              unsigned FirstProtoArg,
5821                              Expr **Args, unsigned NumArgs,
5822                              SmallVector<Expr *, 8> &AllArgs,
5823                              VariadicCallType CallType = VariadicDoesNotApply);
5824
5825  // DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
5826  // will warn if the resulting type is not a POD type.
5827  ExprResult DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
5828                                              FunctionDecl *FDecl);
5829
5830  // UsualArithmeticConversions - performs the UsualUnaryConversions on it's
5831  // operands and then handles various conversions that are common to binary
5832  // operators (C99 6.3.1.8). If both operands aren't arithmetic, this
5833  // routine returns the first non-arithmetic type found. The client is
5834  // responsible for emitting appropriate error diagnostics.
5835  QualType UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
5836                                      bool IsCompAssign = false);
5837
5838  /// AssignConvertType - All of the 'assignment' semantic checks return this
5839  /// enum to indicate whether the assignment was allowed.  These checks are
5840  /// done for simple assignments, as well as initialization, return from
5841  /// function, argument passing, etc.  The query is phrased in terms of a
5842  /// source and destination type.
5843  enum AssignConvertType {
5844    /// Compatible - the types are compatible according to the standard.
5845    Compatible,
5846
5847    /// PointerToInt - The assignment converts a pointer to an int, which we
5848    /// accept as an extension.
5849    PointerToInt,
5850
5851    /// IntToPointer - The assignment converts an int to a pointer, which we
5852    /// accept as an extension.
5853    IntToPointer,
5854
5855    /// FunctionVoidPointer - The assignment is between a function pointer and
5856    /// void*, which the standard doesn't allow, but we accept as an extension.
5857    FunctionVoidPointer,
5858
5859    /// IncompatiblePointer - The assignment is between two pointers types that
5860    /// are not compatible, but we accept them as an extension.
5861    IncompatiblePointer,
5862
5863    /// IncompatiblePointer - The assignment is between two pointers types which
5864    /// point to integers which have a different sign, but are otherwise
5865    /// identical. This is a subset of the above, but broken out because it's by
5866    /// far the most common case of incompatible pointers.
5867    IncompatiblePointerSign,
5868
5869    /// CompatiblePointerDiscardsQualifiers - The assignment discards
5870    /// c/v/r qualifiers, which we accept as an extension.
5871    CompatiblePointerDiscardsQualifiers,
5872
5873    /// IncompatiblePointerDiscardsQualifiers - The assignment
5874    /// discards qualifiers that we don't permit to be discarded,
5875    /// like address spaces.
5876    IncompatiblePointerDiscardsQualifiers,
5877
5878    /// IncompatibleNestedPointerQualifiers - The assignment is between two
5879    /// nested pointer types, and the qualifiers other than the first two
5880    /// levels differ e.g. char ** -> const char **, but we accept them as an
5881    /// extension.
5882    IncompatibleNestedPointerQualifiers,
5883
5884    /// IncompatibleVectors - The assignment is between two vector types that
5885    /// have the same size, which we accept as an extension.
5886    IncompatibleVectors,
5887
5888    /// IntToBlockPointer - The assignment converts an int to a block
5889    /// pointer. We disallow this.
5890    IntToBlockPointer,
5891
5892    /// IncompatibleBlockPointer - The assignment is between two block
5893    /// pointers types that are not compatible.
5894    IncompatibleBlockPointer,
5895
5896    /// IncompatibleObjCQualifiedId - The assignment is between a qualified
5897    /// id type and something else (that is incompatible with it). For example,
5898    /// "id <XXX>" = "Foo *", where "Foo *" doesn't implement the XXX protocol.
5899    IncompatibleObjCQualifiedId,
5900
5901    /// IncompatibleObjCWeakRef - Assigning a weak-unavailable object to an
5902    /// object with __weak qualifier.
5903    IncompatibleObjCWeakRef,
5904
5905    /// Incompatible - We reject this conversion outright, it is invalid to
5906    /// represent it in the AST.
5907    Incompatible
5908  };
5909
5910  /// DiagnoseAssignmentResult - Emit a diagnostic, if required, for the
5911  /// assignment conversion type specified by ConvTy.  This returns true if the
5912  /// conversion was invalid or false if the conversion was accepted.
5913  bool DiagnoseAssignmentResult(AssignConvertType ConvTy,
5914                                SourceLocation Loc,
5915                                QualType DstType, QualType SrcType,
5916                                Expr *SrcExpr, AssignmentAction Action,
5917                                bool *Complained = 0);
5918
5919  /// CheckAssignmentConstraints - Perform type checking for assignment,
5920  /// argument passing, variable initialization, and function return values.
5921  /// C99 6.5.16.
5922  AssignConvertType CheckAssignmentConstraints(SourceLocation Loc,
5923                                               QualType LHSType,
5924                                               QualType RHSType);
5925
5926  /// Check assignment constraints and prepare for a conversion of the
5927  /// RHS to the LHS type.
5928  AssignConvertType CheckAssignmentConstraints(QualType LHSType,
5929                                               ExprResult &RHS,
5930                                               CastKind &Kind);
5931
5932  // CheckSingleAssignmentConstraints - Currently used by
5933  // CheckAssignmentOperands, and ActOnReturnStmt. Prior to type checking,
5934  // this routine performs the default function/array converions.
5935  AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType,
5936                                                     ExprResult &RHS,
5937                                                     bool Diagnose = true);
5938
5939  // \brief If the lhs type is a transparent union, check whether we
5940  // can initialize the transparent union with the given expression.
5941  AssignConvertType CheckTransparentUnionArgumentConstraints(QualType ArgType,
5942                                                             ExprResult &RHS);
5943
5944  bool IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType);
5945
5946  bool CheckExceptionSpecCompatibility(Expr *From, QualType ToType);
5947
5948  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5949                                       AssignmentAction Action,
5950                                       bool AllowExplicit = false);
5951  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5952                                       AssignmentAction Action,
5953                                       bool AllowExplicit,
5954                                       ImplicitConversionSequence& ICS);
5955  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5956                                       const ImplicitConversionSequence& ICS,
5957                                       AssignmentAction Action,
5958                                       CheckedConversionKind CCK
5959                                          = CCK_ImplicitConversion);
5960  ExprResult PerformImplicitConversion(Expr *From, QualType ToType,
5961                                       const StandardConversionSequence& SCS,
5962                                       AssignmentAction Action,
5963                                       CheckedConversionKind CCK);
5964
5965  /// the following "Check" methods will return a valid/converted QualType
5966  /// or a null QualType (indicating an error diagnostic was issued).
5967
5968  /// type checking binary operators (subroutines of CreateBuiltinBinOp).
5969  QualType InvalidOperands(SourceLocation Loc, ExprResult &LHS,
5970                           ExprResult &RHS);
5971  QualType CheckPointerToMemberOperands( // C++ 5.5
5972    ExprResult &LHS, ExprResult &RHS, ExprValueKind &VK,
5973    SourceLocation OpLoc, bool isIndirect);
5974  QualType CheckMultiplyDivideOperands( // C99 6.5.5
5975    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign,
5976    bool IsDivide);
5977  QualType CheckRemainderOperands( // C99 6.5.5
5978    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5979    bool IsCompAssign = false);
5980  QualType CheckAdditionOperands( // C99 6.5.6
5981    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5982    QualType* CompLHSTy = 0);
5983  QualType CheckSubtractionOperands( // C99 6.5.6
5984    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5985    QualType* CompLHSTy = 0);
5986  QualType CheckShiftOperands( // C99 6.5.7
5987    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc,
5988    bool IsCompAssign = false);
5989  QualType CheckCompareOperands( // C99 6.5.8/9
5990    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned OpaqueOpc,
5991                                bool isRelational);
5992  QualType CheckBitwiseOperands( // C99 6.5.[10...12]
5993    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc,
5994    bool IsCompAssign = false);
5995  QualType CheckLogicalOperands( // C99 6.5.[13,14]
5996    ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc);
5997  // CheckAssignmentOperands is used for both simple and compound assignment.
5998  // For simple assignment, pass both expressions and a null converted type.
5999  // For compound assignment, pass both expressions and the converted type.
6000  QualType CheckAssignmentOperands( // C99 6.5.16.[1,2]
6001    Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType);
6002
6003  ExprResult checkPseudoObjectIncDec(Scope *S, SourceLocation OpLoc,
6004                                     UnaryOperatorKind Opcode, Expr *Op);
6005  ExprResult checkPseudoObjectAssignment(Scope *S, SourceLocation OpLoc,
6006                                         BinaryOperatorKind Opcode,
6007                                         Expr *LHS, Expr *RHS);
6008  ExprResult checkPseudoObjectRValue(Expr *E);
6009  Expr *recreateSyntacticForm(PseudoObjectExpr *E);
6010
6011  QualType CheckConditionalOperands( // C99 6.5.15
6012    ExprResult &Cond, ExprResult &LHS, ExprResult &RHS,
6013    ExprValueKind &VK, ExprObjectKind &OK, SourceLocation QuestionLoc);
6014  QualType CXXCheckConditionalOperands( // C++ 5.16
6015    ExprResult &cond, ExprResult &lhs, ExprResult &rhs,
6016    ExprValueKind &VK, ExprObjectKind &OK, SourceLocation questionLoc);
6017  QualType FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2,
6018                                    bool *NonStandardCompositeType = 0);
6019  QualType FindCompositePointerType(SourceLocation Loc,
6020                                    ExprResult &E1, ExprResult &E2,
6021                                    bool *NonStandardCompositeType = 0) {
6022    Expr *E1Tmp = E1.take(), *E2Tmp = E2.take();
6023    QualType Composite = FindCompositePointerType(Loc, E1Tmp, E2Tmp,
6024                                                  NonStandardCompositeType);
6025    E1 = Owned(E1Tmp);
6026    E2 = Owned(E2Tmp);
6027    return Composite;
6028  }
6029
6030  QualType FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
6031                                        SourceLocation QuestionLoc);
6032
6033  bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
6034                                  SourceLocation QuestionLoc);
6035
6036  /// type checking for vector binary operators.
6037  QualType CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
6038                               SourceLocation Loc, bool IsCompAssign);
6039  QualType GetSignedVectorType(QualType V);
6040  QualType CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
6041                                      SourceLocation Loc, bool isRelational);
6042  QualType CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
6043                                      SourceLocation Loc);
6044
6045  /// type checking declaration initializers (C99 6.7.8)
6046  bool CheckForConstantInitializer(Expr *e, QualType t);
6047
6048  // type checking C++ declaration initializers (C++ [dcl.init]).
6049
6050  /// ReferenceCompareResult - Expresses the result of comparing two
6051  /// types (cv1 T1 and cv2 T2) to determine their compatibility for the
6052  /// purposes of initialization by reference (C++ [dcl.init.ref]p4).
6053  enum ReferenceCompareResult {
6054    /// Ref_Incompatible - The two types are incompatible, so direct
6055    /// reference binding is not possible.
6056    Ref_Incompatible = 0,
6057    /// Ref_Related - The two types are reference-related, which means
6058    /// that their unqualified forms (T1 and T2) are either the same
6059    /// or T1 is a base class of T2.
6060    Ref_Related,
6061    /// Ref_Compatible_With_Added_Qualification - The two types are
6062    /// reference-compatible with added qualification, meaning that
6063    /// they are reference-compatible and the qualifiers on T1 (cv1)
6064    /// are greater than the qualifiers on T2 (cv2).
6065    Ref_Compatible_With_Added_Qualification,
6066    /// Ref_Compatible - The two types are reference-compatible and
6067    /// have equivalent qualifiers (cv1 == cv2).
6068    Ref_Compatible
6069  };
6070
6071  ReferenceCompareResult CompareReferenceRelationship(SourceLocation Loc,
6072                                                      QualType T1, QualType T2,
6073                                                      bool &DerivedToBase,
6074                                                      bool &ObjCConversion,
6075                                                bool &ObjCLifetimeConversion);
6076
6077  ExprResult checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
6078                                 Expr *CastExpr, CastKind &CastKind,
6079                                 ExprValueKind &VK, CXXCastPath &Path);
6080
6081  /// \brief Force an expression with unknown-type to an expression of the
6082  /// given type.
6083  ExprResult forceUnknownAnyToType(Expr *E, QualType ToType);
6084
6085  // CheckVectorCast - check type constraints for vectors.
6086  // Since vectors are an extension, there are no C standard reference for this.
6087  // We allow casting between vectors and integer datatypes of the same size.
6088  // returns true if the cast is invalid
6089  bool CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
6090                       CastKind &Kind);
6091
6092  // CheckExtVectorCast - check type constraints for extended vectors.
6093  // Since vectors are an extension, there are no C standard reference for this.
6094  // We allow casting between vectors and integer datatypes of the same size,
6095  // or vectors and the element type of that vector.
6096  // returns the cast expr
6097  ExprResult CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *CastExpr,
6098                                CastKind &Kind);
6099
6100  ExprResult BuildCXXFunctionalCastExpr(TypeSourceInfo *TInfo,
6101                                        SourceLocation LParenLoc,
6102                                        Expr *CastExpr,
6103                                        SourceLocation RParenLoc);
6104
6105  enum ARCConversionResult { ACR_okay, ACR_unbridged };
6106
6107  /// \brief Checks for invalid conversions and casts between
6108  /// retainable pointers and other pointer kinds.
6109  ARCConversionResult CheckObjCARCConversion(SourceRange castRange,
6110                                             QualType castType, Expr *&op,
6111                                             CheckedConversionKind CCK);
6112
6113  Expr *stripARCUnbridgedCast(Expr *e);
6114  void diagnoseARCUnbridgedCast(Expr *e);
6115
6116  bool CheckObjCARCUnavailableWeakConversion(QualType castType,
6117                                             QualType ExprType);
6118
6119  /// checkRetainCycles - Check whether an Objective-C message send
6120  /// might create an obvious retain cycle.
6121  void checkRetainCycles(ObjCMessageExpr *msg);
6122  void checkRetainCycles(Expr *receiver, Expr *argument);
6123
6124  /// checkUnsafeAssigns - Check whether +1 expr is being assigned
6125  /// to weak/__unsafe_unretained type.
6126  bool checkUnsafeAssigns(SourceLocation Loc, QualType LHS, Expr *RHS);
6127
6128  /// checkUnsafeExprAssigns - Check whether +1 expr is being assigned
6129  /// to weak/__unsafe_unretained expression.
6130  void checkUnsafeExprAssigns(SourceLocation Loc, Expr *LHS, Expr *RHS);
6131
6132  /// CheckMessageArgumentTypes - Check types in an Obj-C message send.
6133  /// \param Method - May be null.
6134  /// \param [out] ReturnType - The return type of the send.
6135  /// \return true iff there were any incompatible types.
6136  bool CheckMessageArgumentTypes(QualType ReceiverType,
6137                                 Expr **Args, unsigned NumArgs, Selector Sel,
6138                                 ObjCMethodDecl *Method, bool isClassMessage,
6139                                 bool isSuperMessage,
6140                                 SourceLocation lbrac, SourceLocation rbrac,
6141                                 QualType &ReturnType, ExprValueKind &VK);
6142
6143  /// \brief Determine the result of a message send expression based on
6144  /// the type of the receiver, the method expected to receive the message,
6145  /// and the form of the message send.
6146  QualType getMessageSendResultType(QualType ReceiverType,
6147                                    ObjCMethodDecl *Method,
6148                                    bool isClassMessage, bool isSuperMessage);
6149
6150  /// \brief If the given expression involves a message send to a method
6151  /// with a related result type, emit a note describing what happened.
6152  void EmitRelatedResultTypeNote(const Expr *E);
6153
6154  /// CheckBooleanCondition - Diagnose problems involving the use of
6155  /// the given expression as a boolean condition (e.g. in an if
6156  /// statement).  Also performs the standard function and array
6157  /// decays, possibly changing the input variable.
6158  ///
6159  /// \param Loc - A location associated with the condition, e.g. the
6160  /// 'if' keyword.
6161  /// \return true iff there were any errors
6162  ExprResult CheckBooleanCondition(Expr *E, SourceLocation Loc);
6163
6164  ExprResult ActOnBooleanCondition(Scope *S, SourceLocation Loc,
6165                                   Expr *SubExpr);
6166
6167  /// DiagnoseAssignmentAsCondition - Given that an expression is
6168  /// being used as a boolean condition, warn if it's an assignment.
6169  void DiagnoseAssignmentAsCondition(Expr *E);
6170
6171  /// \brief Redundant parentheses over an equality comparison can indicate
6172  /// that the user intended an assignment used as condition.
6173  void DiagnoseEqualityWithExtraParens(ParenExpr *ParenE);
6174
6175  /// CheckCXXBooleanCondition - Returns true if conversion to bool is invalid.
6176  ExprResult CheckCXXBooleanCondition(Expr *CondExpr);
6177
6178  /// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
6179  /// the specified width and sign.  If an overflow occurs, detect it and emit
6180  /// the specified diagnostic.
6181  void ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &OldVal,
6182                                          unsigned NewWidth, bool NewSign,
6183                                          SourceLocation Loc, unsigned DiagID);
6184
6185  /// Checks that the Objective-C declaration is declared in the global scope.
6186  /// Emits an error and marks the declaration as invalid if it's not declared
6187  /// in the global scope.
6188  bool CheckObjCDeclScope(Decl *D);
6189
6190  /// VerifyIntegerConstantExpression - Verifies that an expression is an ICE,
6191  /// and reports the appropriate diagnostics. Returns false on success.
6192  /// Can optionally return the value of the expression.
6193  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
6194                                             PartialDiagnostic Diag,
6195                                             bool AllowFold,
6196                                             PartialDiagnostic FoldDiag);
6197  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
6198                                             PartialDiagnostic Diag,
6199                                             bool AllowFold = true) {
6200    return VerifyIntegerConstantExpression(E, Result, Diag, AllowFold,
6201                                           PDiag(0));
6202  }
6203  ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result = 0);
6204
6205  /// VerifyBitField - verifies that a bit field expression is an ICE and has
6206  /// the correct width, and that the field type is valid.
6207  /// Returns false on success.
6208  /// Can optionally return whether the bit-field is of width 0
6209  ExprResult VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
6210                            QualType FieldTy, Expr *BitWidth,
6211                            bool *ZeroWidth = 0);
6212
6213  enum CUDAFunctionTarget {
6214    CFT_Device,
6215    CFT_Global,
6216    CFT_Host,
6217    CFT_HostDevice
6218  };
6219
6220  CUDAFunctionTarget IdentifyCUDATarget(const FunctionDecl *D);
6221
6222  bool CheckCUDATarget(CUDAFunctionTarget CallerTarget,
6223                       CUDAFunctionTarget CalleeTarget);
6224
6225  bool CheckCUDATarget(const FunctionDecl *Caller, const FunctionDecl *Callee) {
6226    return CheckCUDATarget(IdentifyCUDATarget(Caller),
6227                           IdentifyCUDATarget(Callee));
6228  }
6229
6230  /// \name Code completion
6231  //@{
6232  /// \brief Describes the context in which code completion occurs.
6233  enum ParserCompletionContext {
6234    /// \brief Code completion occurs at top-level or namespace context.
6235    PCC_Namespace,
6236    /// \brief Code completion occurs within a class, struct, or union.
6237    PCC_Class,
6238    /// \brief Code completion occurs within an Objective-C interface, protocol,
6239    /// or category.
6240    PCC_ObjCInterface,
6241    /// \brief Code completion occurs within an Objective-C implementation or
6242    /// category implementation
6243    PCC_ObjCImplementation,
6244    /// \brief Code completion occurs within the list of instance variables
6245    /// in an Objective-C interface, protocol, category, or implementation.
6246    PCC_ObjCInstanceVariableList,
6247    /// \brief Code completion occurs following one or more template
6248    /// headers.
6249    PCC_Template,
6250    /// \brief Code completion occurs following one or more template
6251    /// headers within a class.
6252    PCC_MemberTemplate,
6253    /// \brief Code completion occurs within an expression.
6254    PCC_Expression,
6255    /// \brief Code completion occurs within a statement, which may
6256    /// also be an expression or a declaration.
6257    PCC_Statement,
6258    /// \brief Code completion occurs at the beginning of the
6259    /// initialization statement (or expression) in a for loop.
6260    PCC_ForInit,
6261    /// \brief Code completion occurs within the condition of an if,
6262    /// while, switch, or for statement.
6263    PCC_Condition,
6264    /// \brief Code completion occurs within the body of a function on a
6265    /// recovery path, where we do not have a specific handle on our position
6266    /// in the grammar.
6267    PCC_RecoveryInFunction,
6268    /// \brief Code completion occurs where only a type is permitted.
6269    PCC_Type,
6270    /// \brief Code completion occurs in a parenthesized expression, which
6271    /// might also be a type cast.
6272    PCC_ParenthesizedExpression,
6273    /// \brief Code completion occurs within a sequence of declaration
6274    /// specifiers within a function, method, or block.
6275    PCC_LocalDeclarationSpecifiers
6276  };
6277
6278  void CodeCompleteModuleImport(SourceLocation ImportLoc, ModuleIdPath Path);
6279  void CodeCompleteOrdinaryName(Scope *S,
6280                                ParserCompletionContext CompletionContext);
6281  void CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
6282                            bool AllowNonIdentifiers,
6283                            bool AllowNestedNameSpecifiers);
6284
6285  struct CodeCompleteExpressionData;
6286  void CodeCompleteExpression(Scope *S,
6287                              const CodeCompleteExpressionData &Data);
6288  void CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
6289                                       SourceLocation OpLoc,
6290                                       bool IsArrow);
6291  void CodeCompletePostfixExpression(Scope *S, ExprResult LHS);
6292  void CodeCompleteTag(Scope *S, unsigned TagSpec);
6293  void CodeCompleteTypeQualifiers(DeclSpec &DS);
6294  void CodeCompleteCase(Scope *S);
6295  void CodeCompleteCall(Scope *S, Expr *Fn, Expr **Args, unsigned NumArgs);
6296  void CodeCompleteInitializer(Scope *S, Decl *D);
6297  void CodeCompleteReturn(Scope *S);
6298  void CodeCompleteAfterIf(Scope *S);
6299  void CodeCompleteAssignmentRHS(Scope *S, Expr *LHS);
6300
6301  void CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
6302                               bool EnteringContext);
6303  void CodeCompleteUsing(Scope *S);
6304  void CodeCompleteUsingDirective(Scope *S);
6305  void CodeCompleteNamespaceDecl(Scope *S);
6306  void CodeCompleteNamespaceAliasDecl(Scope *S);
6307  void CodeCompleteOperatorName(Scope *S);
6308  void CodeCompleteConstructorInitializer(Decl *Constructor,
6309                                          CXXCtorInitializer** Initializers,
6310                                          unsigned NumInitializers);
6311  void CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
6312                                    bool AfterAmpersand);
6313
6314  void CodeCompleteObjCAtDirective(Scope *S);
6315  void CodeCompleteObjCAtVisibility(Scope *S);
6316  void CodeCompleteObjCAtStatement(Scope *S);
6317  void CodeCompleteObjCAtExpression(Scope *S);
6318  void CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS);
6319  void CodeCompleteObjCPropertyGetter(Scope *S);
6320  void CodeCompleteObjCPropertySetter(Scope *S);
6321  void CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
6322                                   bool IsParameter);
6323  void CodeCompleteObjCMessageReceiver(Scope *S);
6324  void CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
6325                                    IdentifierInfo **SelIdents,
6326                                    unsigned NumSelIdents,
6327                                    bool AtArgumentExpression);
6328  void CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
6329                                    IdentifierInfo **SelIdents,
6330                                    unsigned NumSelIdents,
6331                                    bool AtArgumentExpression,
6332                                    bool IsSuper = false);
6333  void CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
6334                                       IdentifierInfo **SelIdents,
6335                                       unsigned NumSelIdents,
6336                                       bool AtArgumentExpression,
6337                                       ObjCInterfaceDecl *Super = 0);
6338  void CodeCompleteObjCForCollection(Scope *S,
6339                                     DeclGroupPtrTy IterationVar);
6340  void CodeCompleteObjCSelector(Scope *S,
6341                                IdentifierInfo **SelIdents,
6342                                unsigned NumSelIdents);
6343  void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
6344                                          unsigned NumProtocols);
6345  void CodeCompleteObjCProtocolDecl(Scope *S);
6346  void CodeCompleteObjCInterfaceDecl(Scope *S);
6347  void CodeCompleteObjCSuperclass(Scope *S,
6348                                  IdentifierInfo *ClassName,
6349                                  SourceLocation ClassNameLoc);
6350  void CodeCompleteObjCImplementationDecl(Scope *S);
6351  void CodeCompleteObjCInterfaceCategory(Scope *S,
6352                                         IdentifierInfo *ClassName,
6353                                         SourceLocation ClassNameLoc);
6354  void CodeCompleteObjCImplementationCategory(Scope *S,
6355                                              IdentifierInfo *ClassName,
6356                                              SourceLocation ClassNameLoc);
6357  void CodeCompleteObjCPropertyDefinition(Scope *S);
6358  void CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
6359                                              IdentifierInfo *PropertyName);
6360  void CodeCompleteObjCMethodDecl(Scope *S,
6361                                  bool IsInstanceMethod,
6362                                  ParsedType ReturnType);
6363  void CodeCompleteObjCMethodDeclSelector(Scope *S,
6364                                          bool IsInstanceMethod,
6365                                          bool AtParameterName,
6366                                          ParsedType ReturnType,
6367                                          IdentifierInfo **SelIdents,
6368                                          unsigned NumSelIdents);
6369  void CodeCompletePreprocessorDirective(bool InConditional);
6370  void CodeCompleteInPreprocessorConditionalExclusion(Scope *S);
6371  void CodeCompletePreprocessorMacroName(bool IsDefinition);
6372  void CodeCompletePreprocessorExpression();
6373  void CodeCompletePreprocessorMacroArgument(Scope *S,
6374                                             IdentifierInfo *Macro,
6375                                             MacroInfo *MacroInfo,
6376                                             unsigned Argument);
6377  void CodeCompleteNaturalLanguage();
6378  void GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
6379                  SmallVectorImpl<CodeCompletionResult> &Results);
6380  //@}
6381
6382  //===--------------------------------------------------------------------===//
6383  // Extra semantic analysis beyond the C type system
6384
6385public:
6386  SourceLocation getLocationOfStringLiteralByte(const StringLiteral *SL,
6387                                                unsigned ByteNo) const;
6388
6389private:
6390  void CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
6391                        const ArraySubscriptExpr *ASE=0,
6392                        bool AllowOnePastEnd=true, bool IndexNegated=false);
6393  void CheckArrayAccess(const Expr *E);
6394  bool CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall);
6395  bool CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation loc,
6396                           Expr **Args, unsigned NumArgs);
6397  bool CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall);
6398
6399  bool CheckObjCString(Expr *Arg);
6400
6401  ExprResult CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall);
6402  bool CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall);
6403
6404  bool SemaBuiltinVAStart(CallExpr *TheCall);
6405  bool SemaBuiltinUnorderedCompare(CallExpr *TheCall);
6406  bool SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs);
6407
6408public:
6409  // Used by C++ template instantiation.
6410  ExprResult SemaBuiltinShuffleVector(CallExpr *TheCall);
6411
6412private:
6413  bool SemaBuiltinPrefetch(CallExpr *TheCall);
6414  bool SemaBuiltinObjectSize(CallExpr *TheCall);
6415  bool SemaBuiltinLongjmp(CallExpr *TheCall);
6416  ExprResult SemaBuiltinAtomicOverloaded(ExprResult TheCallResult);
6417  ExprResult SemaAtomicOpsOverloaded(ExprResult TheCallResult,
6418                                     AtomicExpr::AtomicOp Op);
6419  bool SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
6420                              llvm::APSInt &Result);
6421
6422  enum FormatStringType {
6423    FST_Scanf,
6424    FST_Printf,
6425    FST_NSString,
6426    FST_Strftime,
6427    FST_Strfmon,
6428    FST_Kprintf,
6429    FST_Unknown
6430  };
6431  static FormatStringType GetFormatStringType(const FormatAttr *Format);
6432  bool SemaCheckStringLiteral(const Expr *E, Expr **Args, unsigned NumArgs,
6433                              bool HasVAListArg, unsigned format_idx,
6434                              unsigned firstDataArg, FormatStringType Type,
6435                              bool inFunctionCall = true);
6436
6437  void CheckFormatString(const StringLiteral *FExpr, const Expr *OrigFormatExpr,
6438                         Expr **Args, unsigned NumArgs, bool HasVAListArg,
6439                         unsigned format_idx, unsigned firstDataArg,
6440                         FormatStringType Type, bool inFunctionCall);
6441
6442  void CheckFormatArguments(const FormatAttr *Format, CallExpr *TheCall);
6443  void CheckFormatArguments(const FormatAttr *Format, Expr **Args,
6444                            unsigned NumArgs, bool IsCXXMember,
6445                            SourceLocation Loc, SourceRange Range);
6446  void CheckFormatArguments(Expr **Args, unsigned NumArgs,
6447                            bool HasVAListArg, unsigned format_idx,
6448                            unsigned firstDataArg, FormatStringType Type,
6449                            SourceLocation Loc, SourceRange range);
6450
6451  void CheckNonNullArguments(const NonNullAttr *NonNull,
6452                             const Expr * const *ExprArgs,
6453                             SourceLocation CallSiteLoc);
6454
6455  void CheckMemaccessArguments(const CallExpr *Call,
6456                               unsigned BId,
6457                               IdentifierInfo *FnName);
6458
6459  void CheckStrlcpycatArguments(const CallExpr *Call,
6460                                IdentifierInfo *FnName);
6461
6462  void CheckStrncatArguments(const CallExpr *Call,
6463                             IdentifierInfo *FnName);
6464
6465  void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
6466                            SourceLocation ReturnLoc);
6467  void CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr* RHS);
6468  void CheckImplicitConversions(Expr *E, SourceLocation CC = SourceLocation());
6469
6470  void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field,
6471                                   Expr *Init);
6472
6473  /// \brief The parser's current scope.
6474  ///
6475  /// The parser maintains this state here.
6476  Scope *CurScope;
6477
6478protected:
6479  friend class Parser;
6480  friend class InitializationSequence;
6481  friend class ASTReader;
6482  friend class ASTWriter;
6483
6484public:
6485  /// \brief Retrieve the parser's current scope.
6486  ///
6487  /// This routine must only be used when it is certain that semantic analysis
6488  /// and the parser are in precisely the same context, which is not the case
6489  /// when, e.g., we are performing any kind of template instantiation.
6490  /// Therefore, the only safe places to use this scope are in the parser
6491  /// itself and in routines directly invoked from the parser and *never* from
6492  /// template substitution or instantiation.
6493  Scope *getCurScope() const { return CurScope; }
6494
6495  Decl *getObjCDeclContext() const;
6496
6497  DeclContext *getCurLexicalContext() const {
6498    return OriginalLexicalContext ? OriginalLexicalContext : CurContext;
6499  }
6500
6501  AvailabilityResult getCurContextAvailability() const;
6502};
6503
6504/// \brief RAII object that enters a new expression evaluation context.
6505class EnterExpressionEvaluationContext {
6506  Sema &Actions;
6507
6508public:
6509  EnterExpressionEvaluationContext(Sema &Actions,
6510                                   Sema::ExpressionEvaluationContext NewContext)
6511    : Actions(Actions) {
6512    Actions.PushExpressionEvaluationContext(NewContext);
6513  }
6514
6515  ~EnterExpressionEvaluationContext() {
6516    Actions.PopExpressionEvaluationContext();
6517  }
6518};
6519
6520}  // end namespace clang
6521
6522#endif
6523