1 //===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
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 //  This file implements C++ template instantiation for declarations.
10 //
11 //===----------------------------------------------------------------------===/
12 #include "clang/Sema/SemaInternal.h"
13 #include "clang/Sema/Lookup.h"
14 #include "clang/Sema/PrettyDeclStackTrace.h"
15 #include "clang/Sema/Template.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/DeclTemplate.h"
19 #include "clang/AST/DeclVisitor.h"
20 #include "clang/AST/DependentDiagnostic.h"
21 #include "clang/AST/Expr.h"
22 #include "clang/AST/ExprCXX.h"
23 #include "clang/AST/TypeLoc.h"
24 #include "clang/Lex/Preprocessor.h"
25 
26 using namespace clang;
27 
28 bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29                                               DeclaratorDecl *NewDecl) {
30   if (!OldDecl->getQualifierLoc())
31     return false;
32 
33   NestedNameSpecifierLoc NewQualifierLoc
34     = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
35                                           TemplateArgs);
36 
37   if (!NewQualifierLoc)
38     return true;
39 
40   NewDecl->setQualifierInfo(NewQualifierLoc);
41   return false;
42 }
43 
44 bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45                                               TagDecl *NewDecl) {
46   if (!OldDecl->getQualifierLoc())
47     return false;
48 
49   NestedNameSpecifierLoc NewQualifierLoc
50   = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
51                                         TemplateArgs);
52 
53   if (!NewQualifierLoc)
54     return true;
55 
56   NewDecl->setQualifierInfo(NewQualifierLoc);
57   return false;
58 }
59 
60 // FIXME: Is this still too simple?
61 void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
62                             const Decl *Tmpl, Decl *New) {
63   for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
64        i != e; ++i) {
65     const Attr *TmplAttr = *i;
66     // FIXME: This should be generalized to more than just the AlignedAttr.
67     if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
68       if (Aligned->isAlignmentDependent()) {
69         // The alignment expression is not potentially evaluated.
70         EnterExpressionEvaluationContext Unevaluated(*this,
71                                                      Sema::Unevaluated);
72 
73         if (Aligned->isAlignmentExpr()) {
74           ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
75                                         TemplateArgs);
76           if (!Result.isInvalid())
77             AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
78         }
79         else {
80           TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
81                                              TemplateArgs,
82                                              Aligned->getLocation(),
83                                              DeclarationName());
84           if (Result)
85             AddAlignedAttr(Aligned->getLocation(), New, Result);
86         }
87         continue;
88       }
89     }
90 
91     // FIXME: Is cloning correct for all attributes?
92     Attr *NewAttr = TmplAttr->clone(Context);
93     New->addAttr(NewAttr);
94   }
95 }
96 
97 Decl *
98 TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
99   llvm_unreachable("Translation units cannot be instantiated");
100 }
101 
102 Decl *
103 TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
104   LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
105                                       D->getIdentifier());
106   Owner->addDecl(Inst);
107   return Inst;
108 }
109 
110 Decl *
111 TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
112   llvm_unreachable("Namespaces cannot be instantiated");
113 }
114 
115 Decl *
116 TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
117   NamespaceAliasDecl *Inst
118     = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
119                                  D->getNamespaceLoc(),
120                                  D->getAliasLoc(),
121                                  D->getIdentifier(),
122                                  D->getQualifierLoc(),
123                                  D->getTargetNameLoc(),
124                                  D->getNamespace());
125   Owner->addDecl(Inst);
126   return Inst;
127 }
128 
129 Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
130                                                            bool IsTypeAlias) {
131   bool Invalid = false;
132   TypeSourceInfo *DI = D->getTypeSourceInfo();
133   if (DI->getType()->isInstantiationDependentType() ||
134       DI->getType()->isVariablyModifiedType()) {
135     DI = SemaRef.SubstType(DI, TemplateArgs,
136                            D->getLocation(), D->getDeclName());
137     if (!DI) {
138       Invalid = true;
139       DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
140     }
141   } else {
142     SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
143   }
144 
145   // Create the new typedef
146   TypedefNameDecl *Typedef;
147   if (IsTypeAlias)
148     Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
149                                     D->getLocation(), D->getIdentifier(), DI);
150   else
151     Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
152                                   D->getLocation(), D->getIdentifier(), DI);
153   if (Invalid)
154     Typedef->setInvalidDecl();
155 
156   // If the old typedef was the name for linkage purposes of an anonymous
157   // tag decl, re-establish that relationship for the new typedef.
158   if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
159     TagDecl *oldTag = oldTagType->getDecl();
160     if (oldTag->getTypedefNameForAnonDecl() == D) {
161       TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
162       assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
163       newTag->setTypedefNameForAnonDecl(Typedef);
164     }
165   }
166 
167   if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
168     NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
169                                                        TemplateArgs);
170     if (!InstPrev)
171       return 0;
172 
173     Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
174   }
175 
176   SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
177 
178   Typedef->setAccess(D->getAccess());
179 
180   return Typedef;
181 }
182 
183 Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
184   Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
185   Owner->addDecl(Typedef);
186   return Typedef;
187 }
188 
189 Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
190   Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
191   Owner->addDecl(Typedef);
192   return Typedef;
193 }
194 
195 Decl *
196 TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
197   // Create a local instantiation scope for this type alias template, which
198   // will contain the instantiations of the template parameters.
199   LocalInstantiationScope Scope(SemaRef);
200 
201   TemplateParameterList *TempParams = D->getTemplateParameters();
202   TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
203   if (!InstParams)
204     return 0;
205 
206   TypeAliasDecl *Pattern = D->getTemplatedDecl();
207 
208   TypeAliasTemplateDecl *PrevAliasTemplate = 0;
209   if (Pattern->getPreviousDeclaration()) {
210     DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
211     if (Found.first != Found.second) {
212       PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
213     }
214   }
215 
216   TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
217     InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
218   if (!AliasInst)
219     return 0;
220 
221   TypeAliasTemplateDecl *Inst
222     = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
223                                     D->getDeclName(), InstParams, AliasInst);
224   if (PrevAliasTemplate)
225     Inst->setPreviousDeclaration(PrevAliasTemplate);
226 
227   Inst->setAccess(D->getAccess());
228 
229   if (!PrevAliasTemplate)
230     Inst->setInstantiatedFromMemberTemplate(D);
231 
232   Owner->addDecl(Inst);
233 
234   return Inst;
235 }
236 
237 /// \brief Instantiate an initializer, breaking it into separate
238 /// initialization arguments.
239 ///
240 /// \param Init The initializer to instantiate.
241 ///
242 /// \param TemplateArgs Template arguments to be substituted into the
243 /// initializer.
244 ///
245 /// \param NewArgs Will be filled in with the instantiation arguments.
246 ///
247 /// \returns true if an error occurred, false otherwise
248 bool Sema::InstantiateInitializer(Expr *Init,
249                             const MultiLevelTemplateArgumentList &TemplateArgs,
250                                   SourceLocation &LParenLoc,
251                                   ASTOwningVector<Expr*> &NewArgs,
252                                   SourceLocation &RParenLoc) {
253   NewArgs.clear();
254   LParenLoc = SourceLocation();
255   RParenLoc = SourceLocation();
256 
257   if (!Init)
258     return false;
259 
260   if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
261     Init = ExprTemp->getSubExpr();
262 
263   while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
264     Init = Binder->getSubExpr();
265 
266   if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
267     Init = ICE->getSubExprAsWritten();
268 
269   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
270     LParenLoc = ParenList->getLParenLoc();
271     RParenLoc = ParenList->getRParenLoc();
272     return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
273                       true, TemplateArgs, NewArgs);
274   }
275 
276   if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
277     if (!isa<CXXTemporaryObjectExpr>(Construct)) {
278       if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
279                      TemplateArgs, NewArgs))
280         return true;
281 
282       // FIXME: Fake locations!
283       LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
284       RParenLoc = LParenLoc;
285       return false;
286     }
287   }
288 
289   ExprResult Result = SubstExpr(Init, TemplateArgs);
290   if (Result.isInvalid())
291     return true;
292 
293   NewArgs.push_back(Result.takeAs<Expr>());
294   return false;
295 }
296 
297 Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
298   // If this is the variable for an anonymous struct or union,
299   // instantiate the anonymous struct/union type first.
300   if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
301     if (RecordTy->getDecl()->isAnonymousStructOrUnion())
302       if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
303         return 0;
304 
305   // Do substitution on the type of the declaration
306   TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
307                                          TemplateArgs,
308                                          D->getTypeSpecStartLoc(),
309                                          D->getDeclName());
310   if (!DI)
311     return 0;
312 
313   if (DI->getType()->isFunctionType()) {
314     SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
315       << D->isStaticDataMember() << DI->getType();
316     return 0;
317   }
318 
319   // Build the instantiated declaration
320   VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
321                                  D->getInnerLocStart(),
322                                  D->getLocation(), D->getIdentifier(),
323                                  DI->getType(), DI,
324                                  D->getStorageClass(),
325                                  D->getStorageClassAsWritten());
326   Var->setThreadSpecified(D->isThreadSpecified());
327   Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
328   Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
329 
330   // Substitute the nested name specifier, if any.
331   if (SubstQualifier(D, Var))
332     return 0;
333 
334   // If we are instantiating a static data member defined
335   // out-of-line, the instantiation will have the same lexical
336   // context (which will be a namespace scope) as the template.
337   if (D->isOutOfLine())
338     Var->setLexicalDeclContext(D->getLexicalDeclContext());
339 
340   Var->setAccess(D->getAccess());
341 
342   if (!D->isStaticDataMember()) {
343     Var->setUsed(D->isUsed(false));
344     Var->setReferenced(D->isReferenced());
345   }
346 
347   // FIXME: In theory, we could have a previous declaration for variables that
348   // are not static data members.
349   bool Redeclaration = false;
350   // FIXME: having to fake up a LookupResult is dumb.
351   LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
352                         Sema::LookupOrdinaryName, Sema::ForRedeclaration);
353   if (D->isStaticDataMember())
354     SemaRef.LookupQualifiedName(Previous, Owner, false);
355   SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
356 
357   if (D->isOutOfLine()) {
358     if (!D->isStaticDataMember())
359       D->getLexicalDeclContext()->addDecl(Var);
360     Owner->makeDeclVisibleInContext(Var);
361   } else {
362     Owner->addDecl(Var);
363     if (Owner->isFunctionOrMethod())
364       SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
365   }
366   SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
367 
368   // Link instantiations of static data members back to the template from
369   // which they were instantiated.
370   if (Var->isStaticDataMember())
371     SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
372                                                      TSK_ImplicitInstantiation);
373 
374   if (Var->getAnyInitializer()) {
375     // We already have an initializer in the class.
376   } else if (D->getInit()) {
377     if (Var->isStaticDataMember() && !D->isOutOfLine())
378       SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
379     else
380       SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
381 
382     // Instantiate the initializer.
383     SourceLocation LParenLoc, RParenLoc;
384     ASTOwningVector<Expr*> InitArgs(SemaRef);
385     if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
386                                         InitArgs, RParenLoc)) {
387       bool TypeMayContainAuto = true;
388       // Attach the initializer to the declaration, if we have one.
389       if (InitArgs.size() == 0)
390         SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
391       else if (D->hasCXXDirectInitializer()) {
392         // Add the direct initializer to the declaration.
393         SemaRef.AddCXXDirectInitializerToDecl(Var,
394                                               LParenLoc,
395                                               move_arg(InitArgs),
396                                               RParenLoc,
397                                               TypeMayContainAuto);
398       } else {
399         assert(InitArgs.size() == 1);
400         Expr *Init = InitArgs.take()[0];
401         SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
402       }
403     } else {
404       // FIXME: Not too happy about invalidating the declaration
405       // because of a bogus initializer.
406       Var->setInvalidDecl();
407     }
408 
409     SemaRef.PopExpressionEvaluationContext();
410   } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
411              !Var->isCXXForRangeDecl())
412     SemaRef.ActOnUninitializedDecl(Var, false);
413 
414   // Diagnose unused local variables with dependent types, where the diagnostic
415   // will have been deferred.
416   if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
417       D->getType()->isDependentType())
418     SemaRef.DiagnoseUnusedDecl(Var);
419 
420   return Var;
421 }
422 
423 Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
424   AccessSpecDecl* AD
425     = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
426                              D->getAccessSpecifierLoc(), D->getColonLoc());
427   Owner->addHiddenDecl(AD);
428   return AD;
429 }
430 
431 Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
432   bool Invalid = false;
433   TypeSourceInfo *DI = D->getTypeSourceInfo();
434   if (DI->getType()->isInstantiationDependentType() ||
435       DI->getType()->isVariablyModifiedType())  {
436     DI = SemaRef.SubstType(DI, TemplateArgs,
437                            D->getLocation(), D->getDeclName());
438     if (!DI) {
439       DI = D->getTypeSourceInfo();
440       Invalid = true;
441     } else if (DI->getType()->isFunctionType()) {
442       // C++ [temp.arg.type]p3:
443       //   If a declaration acquires a function type through a type
444       //   dependent on a template-parameter and this causes a
445       //   declaration that does not use the syntactic form of a
446       //   function declarator to have function type, the program is
447       //   ill-formed.
448       SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
449         << DI->getType();
450       Invalid = true;
451     }
452   } else {
453     SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
454   }
455 
456   Expr *BitWidth = D->getBitWidth();
457   if (Invalid)
458     BitWidth = 0;
459   else if (BitWidth) {
460     // The bit-width expression is not potentially evaluated.
461     EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
462 
463     ExprResult InstantiatedBitWidth
464       = SemaRef.SubstExpr(BitWidth, TemplateArgs);
465     if (InstantiatedBitWidth.isInvalid()) {
466       Invalid = true;
467       BitWidth = 0;
468     } else
469       BitWidth = InstantiatedBitWidth.takeAs<Expr>();
470   }
471 
472   FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
473                                             DI->getType(), DI,
474                                             cast<RecordDecl>(Owner),
475                                             D->getLocation(),
476                                             D->isMutable(),
477                                             BitWidth,
478                                             D->hasInClassInitializer(),
479                                             D->getTypeSpecStartLoc(),
480                                             D->getAccess(),
481                                             0);
482   if (!Field) {
483     cast<Decl>(Owner)->setInvalidDecl();
484     return 0;
485   }
486 
487   SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
488 
489   if (Invalid)
490     Field->setInvalidDecl();
491 
492   if (!Field->getDeclName()) {
493     // Keep track of where this decl came from.
494     SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
495   }
496   if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
497     if (Parent->isAnonymousStructOrUnion() &&
498         Parent->getRedeclContext()->isFunctionOrMethod())
499       SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
500   }
501 
502   Field->setImplicit(D->isImplicit());
503   Field->setAccess(D->getAccess());
504   Owner->addDecl(Field);
505 
506   return Field;
507 }
508 
509 Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
510   NamedDecl **NamedChain =
511     new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
512 
513   int i = 0;
514   for (IndirectFieldDecl::chain_iterator PI =
515        D->chain_begin(), PE = D->chain_end();
516        PI != PE; ++PI) {
517     NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
518                                               TemplateArgs);
519     if (!Next)
520       return 0;
521 
522     NamedChain[i++] = Next;
523   }
524 
525   QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
526   IndirectFieldDecl* IndirectField
527     = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
528                                 D->getIdentifier(), T,
529                                 NamedChain, D->getChainingSize());
530 
531 
532   IndirectField->setImplicit(D->isImplicit());
533   IndirectField->setAccess(D->getAccess());
534   Owner->addDecl(IndirectField);
535   return IndirectField;
536 }
537 
538 Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
539   // Handle friend type expressions by simply substituting template
540   // parameters into the pattern type and checking the result.
541   if (TypeSourceInfo *Ty = D->getFriendType()) {
542     TypeSourceInfo *InstTy;
543     // If this is an unsupported friend, don't bother substituting template
544     // arguments into it. The actual type referred to won't be used by any
545     // parts of Clang, and may not be valid for instantiating. Just use the
546     // same info for the instantiated friend.
547     if (D->isUnsupportedFriend()) {
548       InstTy = Ty;
549     } else {
550       InstTy = SemaRef.SubstType(Ty, TemplateArgs,
551                                  D->getLocation(), DeclarationName());
552     }
553     if (!InstTy)
554       return 0;
555 
556     FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
557     if (!FD)
558       return 0;
559 
560     FD->setAccess(AS_public);
561     FD->setUnsupportedFriend(D->isUnsupportedFriend());
562     Owner->addDecl(FD);
563     return FD;
564   }
565 
566   NamedDecl *ND = D->getFriendDecl();
567   assert(ND && "friend decl must be a decl or a type!");
568 
569   // All of the Visit implementations for the various potential friend
570   // declarations have to be carefully written to work for friend
571   // objects, with the most important detail being that the target
572   // decl should almost certainly not be placed in Owner.
573   Decl *NewND = Visit(ND);
574   if (!NewND) return 0;
575 
576   FriendDecl *FD =
577     FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
578                        cast<NamedDecl>(NewND), D->getFriendLoc());
579   FD->setAccess(AS_public);
580   FD->setUnsupportedFriend(D->isUnsupportedFriend());
581   Owner->addDecl(FD);
582   return FD;
583 }
584 
585 Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
586   Expr *AssertExpr = D->getAssertExpr();
587 
588   // The expression in a static assertion is not potentially evaluated.
589   EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
590 
591   ExprResult InstantiatedAssertExpr
592     = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
593   if (InstantiatedAssertExpr.isInvalid())
594     return 0;
595 
596   ExprResult Message(D->getMessage());
597   D->getMessage();
598   return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
599                                               InstantiatedAssertExpr.get(),
600                                               Message.get(),
601                                               D->getRParenLoc());
602 }
603 
604 Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
605   EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
606                                     D->getLocation(), D->getIdentifier(),
607                                     /*PrevDecl=*/0, D->isScoped(),
608                                     D->isScopedUsingClassTag(), D->isFixed());
609   if (D->isFixed()) {
610     if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
611       // If we have type source information for the underlying type, it means it
612       // has been explicitly set by the user. Perform substitution on it before
613       // moving on.
614       SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
615       Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
616                                                        TemplateArgs,
617                                                        UnderlyingLoc,
618                                                        DeclarationName()));
619 
620       if (!Enum->getIntegerTypeSourceInfo())
621         Enum->setIntegerType(SemaRef.Context.IntTy);
622     }
623     else {
624       assert(!D->getIntegerType()->isDependentType()
625              && "Dependent type without type source info");
626       Enum->setIntegerType(D->getIntegerType());
627     }
628   }
629 
630   SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
631 
632   Enum->setInstantiationOfMemberEnum(D);
633   Enum->setAccess(D->getAccess());
634   if (SubstQualifier(D, Enum)) return 0;
635   Owner->addDecl(Enum);
636   Enum->startDefinition();
637 
638   if (D->getDeclContext()->isFunctionOrMethod())
639     SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
640 
641   SmallVector<Decl*, 4> Enumerators;
642 
643   EnumConstantDecl *LastEnumConst = 0;
644   for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
645          ECEnd = D->enumerator_end();
646        EC != ECEnd; ++EC) {
647     // The specified value for the enumerator.
648     ExprResult Value = SemaRef.Owned((Expr *)0);
649     if (Expr *UninstValue = EC->getInitExpr()) {
650       // The enumerator's value expression is not potentially evaluated.
651       EnterExpressionEvaluationContext Unevaluated(SemaRef,
652                                                    Sema::Unevaluated);
653 
654       Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
655     }
656 
657     // Drop the initial value and continue.
658     bool isInvalid = false;
659     if (Value.isInvalid()) {
660       Value = SemaRef.Owned((Expr *)0);
661       isInvalid = true;
662     }
663 
664     EnumConstantDecl *EnumConst
665       = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
666                                   EC->getLocation(), EC->getIdentifier(),
667                                   Value.get());
668 
669     if (isInvalid) {
670       if (EnumConst)
671         EnumConst->setInvalidDecl();
672       Enum->setInvalidDecl();
673     }
674 
675     if (EnumConst) {
676       SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
677 
678       EnumConst->setAccess(Enum->getAccess());
679       Enum->addDecl(EnumConst);
680       Enumerators.push_back(EnumConst);
681       LastEnumConst = EnumConst;
682 
683       if (D->getDeclContext()->isFunctionOrMethod()) {
684         // If the enumeration is within a function or method, record the enum
685         // constant as a local.
686         SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
687       }
688     }
689   }
690 
691   // FIXME: Fixup LBraceLoc and RBraceLoc
692   // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
693   SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
694                         Enum,
695                         Enumerators.data(), Enumerators.size(),
696                         0, 0);
697 
698   return Enum;
699 }
700 
701 Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
702   llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
703 }
704 
705 Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
706   bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
707 
708   // Create a local instantiation scope for this class template, which
709   // will contain the instantiations of the template parameters.
710   LocalInstantiationScope Scope(SemaRef);
711   TemplateParameterList *TempParams = D->getTemplateParameters();
712   TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
713   if (!InstParams)
714     return NULL;
715 
716   CXXRecordDecl *Pattern = D->getTemplatedDecl();
717 
718   // Instantiate the qualifier.  We have to do this first in case
719   // we're a friend declaration, because if we are then we need to put
720   // the new declaration in the appropriate context.
721   NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
722   if (QualifierLoc) {
723     QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
724                                                        TemplateArgs);
725     if (!QualifierLoc)
726       return 0;
727   }
728 
729   CXXRecordDecl *PrevDecl = 0;
730   ClassTemplateDecl *PrevClassTemplate = 0;
731 
732   if (!isFriend && Pattern->getPreviousDeclaration()) {
733     DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
734     if (Found.first != Found.second) {
735       PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
736       if (PrevClassTemplate)
737         PrevDecl = PrevClassTemplate->getTemplatedDecl();
738     }
739   }
740 
741   // If this isn't a friend, then it's a member template, in which
742   // case we just want to build the instantiation in the
743   // specialization.  If it is a friend, we want to build it in
744   // the appropriate context.
745   DeclContext *DC = Owner;
746   if (isFriend) {
747     if (QualifierLoc) {
748       CXXScopeSpec SS;
749       SS.Adopt(QualifierLoc);
750       DC = SemaRef.computeDeclContext(SS);
751       if (!DC) return 0;
752     } else {
753       DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
754                                            Pattern->getDeclContext(),
755                                            TemplateArgs);
756     }
757 
758     // Look for a previous declaration of the template in the owning
759     // context.
760     LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
761                    Sema::LookupOrdinaryName, Sema::ForRedeclaration);
762     SemaRef.LookupQualifiedName(R, DC);
763 
764     if (R.isSingleResult()) {
765       PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
766       if (PrevClassTemplate)
767         PrevDecl = PrevClassTemplate->getTemplatedDecl();
768     }
769 
770     if (!PrevClassTemplate && QualifierLoc) {
771       SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
772         << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
773         << QualifierLoc.getSourceRange();
774       return 0;
775     }
776 
777     bool AdoptedPreviousTemplateParams = false;
778     if (PrevClassTemplate) {
779       bool Complain = true;
780 
781       // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
782       // template for struct std::tr1::__detail::_Map_base, where the
783       // template parameters of the friend declaration don't match the
784       // template parameters of the original declaration. In this one
785       // case, we don't complain about the ill-formed friend
786       // declaration.
787       if (isFriend && Pattern->getIdentifier() &&
788           Pattern->getIdentifier()->isStr("_Map_base") &&
789           DC->isNamespace() &&
790           cast<NamespaceDecl>(DC)->getIdentifier() &&
791           cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
792         DeclContext *DCParent = DC->getParent();
793         if (DCParent->isNamespace() &&
794             cast<NamespaceDecl>(DCParent)->getIdentifier() &&
795             cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
796           DeclContext *DCParent2 = DCParent->getParent();
797           if (DCParent2->isNamespace() &&
798               cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
799               cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
800               DCParent2->getParent()->isTranslationUnit())
801             Complain = false;
802         }
803       }
804 
805       TemplateParameterList *PrevParams
806         = PrevClassTemplate->getTemplateParameters();
807 
808       // Make sure the parameter lists match.
809       if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
810                                                   Complain,
811                                                   Sema::TPL_TemplateMatch)) {
812         if (Complain)
813           return 0;
814 
815         AdoptedPreviousTemplateParams = true;
816         InstParams = PrevParams;
817       }
818 
819       // Do some additional validation, then merge default arguments
820       // from the existing declarations.
821       if (!AdoptedPreviousTemplateParams &&
822           SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
823                                              Sema::TPC_ClassTemplate))
824         return 0;
825     }
826   }
827 
828   CXXRecordDecl *RecordInst
829     = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
830                             Pattern->getLocStart(), Pattern->getLocation(),
831                             Pattern->getIdentifier(), PrevDecl,
832                             /*DelayTypeCreation=*/true);
833 
834   if (QualifierLoc)
835     RecordInst->setQualifierInfo(QualifierLoc);
836 
837   ClassTemplateDecl *Inst
838     = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
839                                 D->getIdentifier(), InstParams, RecordInst,
840                                 PrevClassTemplate);
841   RecordInst->setDescribedClassTemplate(Inst);
842 
843   if (isFriend) {
844     if (PrevClassTemplate)
845       Inst->setAccess(PrevClassTemplate->getAccess());
846     else
847       Inst->setAccess(D->getAccess());
848 
849     Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
850     // TODO: do we want to track the instantiation progeny of this
851     // friend target decl?
852   } else {
853     Inst->setAccess(D->getAccess());
854     if (!PrevClassTemplate)
855       Inst->setInstantiatedFromMemberTemplate(D);
856   }
857 
858   // Trigger creation of the type for the instantiation.
859   SemaRef.Context.getInjectedClassNameType(RecordInst,
860                                     Inst->getInjectedClassNameSpecialization());
861 
862   // Finish handling of friends.
863   if (isFriend) {
864     DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
865     return Inst;
866   }
867 
868   Owner->addDecl(Inst);
869 
870   if (!PrevClassTemplate) {
871     // Queue up any out-of-line partial specializations of this member
872     // class template; the client will force their instantiation once
873     // the enclosing class has been instantiated.
874     SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
875     D->getPartialSpecializations(PartialSpecs);
876     for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
877       if (PartialSpecs[I]->isOutOfLine())
878         OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
879   }
880 
881   return Inst;
882 }
883 
884 Decl *
885 TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
886                                    ClassTemplatePartialSpecializationDecl *D) {
887   ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
888 
889   // Lookup the already-instantiated declaration in the instantiation
890   // of the class template and return that.
891   DeclContext::lookup_result Found
892     = Owner->lookup(ClassTemplate->getDeclName());
893   if (Found.first == Found.second)
894     return 0;
895 
896   ClassTemplateDecl *InstClassTemplate
897     = dyn_cast<ClassTemplateDecl>(*Found.first);
898   if (!InstClassTemplate)
899     return 0;
900 
901   if (ClassTemplatePartialSpecializationDecl *Result
902         = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
903     return Result;
904 
905   return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
906 }
907 
908 Decl *
909 TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
910   // Create a local instantiation scope for this function template, which
911   // will contain the instantiations of the template parameters and then get
912   // merged with the local instantiation scope for the function template
913   // itself.
914   LocalInstantiationScope Scope(SemaRef);
915 
916   TemplateParameterList *TempParams = D->getTemplateParameters();
917   TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
918   if (!InstParams)
919     return NULL;
920 
921   FunctionDecl *Instantiated = 0;
922   if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
923     Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
924                                                                  InstParams));
925   else
926     Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
927                                                           D->getTemplatedDecl(),
928                                                                 InstParams));
929 
930   if (!Instantiated)
931     return 0;
932 
933   Instantiated->setAccess(D->getAccess());
934 
935   // Link the instantiated function template declaration to the function
936   // template from which it was instantiated.
937   FunctionTemplateDecl *InstTemplate
938     = Instantiated->getDescribedFunctionTemplate();
939   InstTemplate->setAccess(D->getAccess());
940   assert(InstTemplate &&
941          "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
942 
943   bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
944 
945   // Link the instantiation back to the pattern *unless* this is a
946   // non-definition friend declaration.
947   if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
948       !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
949     InstTemplate->setInstantiatedFromMemberTemplate(D);
950 
951   // Make declarations visible in the appropriate context.
952   if (!isFriend)
953     Owner->addDecl(InstTemplate);
954 
955   return InstTemplate;
956 }
957 
958 Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
959   CXXRecordDecl *PrevDecl = 0;
960   if (D->isInjectedClassName())
961     PrevDecl = cast<CXXRecordDecl>(Owner);
962   else if (D->getPreviousDeclaration()) {
963     NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
964                                                    D->getPreviousDeclaration(),
965                                                    TemplateArgs);
966     if (!Prev) return 0;
967     PrevDecl = cast<CXXRecordDecl>(Prev);
968   }
969 
970   CXXRecordDecl *Record
971     = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
972                             D->getLocStart(), D->getLocation(),
973                             D->getIdentifier(), PrevDecl);
974 
975   // Substitute the nested name specifier, if any.
976   if (SubstQualifier(D, Record))
977     return 0;
978 
979   Record->setImplicit(D->isImplicit());
980   // FIXME: Check against AS_none is an ugly hack to work around the issue that
981   // the tag decls introduced by friend class declarations don't have an access
982   // specifier. Remove once this area of the code gets sorted out.
983   if (D->getAccess() != AS_none)
984     Record->setAccess(D->getAccess());
985   if (!D->isInjectedClassName())
986     Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
987 
988   // If the original function was part of a friend declaration,
989   // inherit its namespace state.
990   if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
991     Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
992 
993   // Make sure that anonymous structs and unions are recorded.
994   if (D->isAnonymousStructOrUnion()) {
995     Record->setAnonymousStructOrUnion(true);
996     if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
997       SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
998   }
999 
1000   Owner->addDecl(Record);
1001   return Record;
1002 }
1003 
1004 /// Normal class members are of more specific types and therefore
1005 /// don't make it here.  This function serves two purposes:
1006 ///   1) instantiating function templates
1007 ///   2) substituting friend declarations
1008 /// FIXME: preserve function definitions in case #2
1009 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
1010                                        TemplateParameterList *TemplateParams) {
1011   // Check whether there is already a function template specialization for
1012   // this declaration.
1013   FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1014   void *InsertPos = 0;
1015   if (FunctionTemplate && !TemplateParams) {
1016     std::pair<const TemplateArgument *, unsigned> Innermost
1017       = TemplateArgs.getInnermost();
1018 
1019     FunctionDecl *SpecFunc
1020       = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1021                                              InsertPos);
1022 
1023     // If we already have a function template specialization, return it.
1024     if (SpecFunc)
1025       return SpecFunc;
1026   }
1027 
1028   bool isFriend;
1029   if (FunctionTemplate)
1030     isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1031   else
1032     isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1033 
1034   bool MergeWithParentScope = (TemplateParams != 0) ||
1035     Owner->isFunctionOrMethod() ||
1036     !(isa<Decl>(Owner) &&
1037       cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
1038   LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
1039 
1040   SmallVector<ParmVarDecl *, 4> Params;
1041   TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1042   TInfo = SubstFunctionType(D, Params);
1043   if (!TInfo)
1044     return 0;
1045   QualType T = TInfo->getType();
1046 
1047   NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1048   if (QualifierLoc) {
1049     QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1050                                                        TemplateArgs);
1051     if (!QualifierLoc)
1052       return 0;
1053   }
1054 
1055   // If we're instantiating a local function declaration, put the result
1056   // in the owner;  otherwise we need to find the instantiated context.
1057   DeclContext *DC;
1058   if (D->getDeclContext()->isFunctionOrMethod())
1059     DC = Owner;
1060   else if (isFriend && QualifierLoc) {
1061     CXXScopeSpec SS;
1062     SS.Adopt(QualifierLoc);
1063     DC = SemaRef.computeDeclContext(SS);
1064     if (!DC) return 0;
1065   } else {
1066     DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1067                                          TemplateArgs);
1068   }
1069 
1070   FunctionDecl *Function =
1071       FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1072                            D->getLocation(), D->getDeclName(), T, TInfo,
1073                            D->getStorageClass(), D->getStorageClassAsWritten(),
1074                            D->isInlineSpecified(), D->hasWrittenPrototype(),
1075                            /*isConstexpr*/ false);
1076 
1077   if (QualifierLoc)
1078     Function->setQualifierInfo(QualifierLoc);
1079 
1080   DeclContext *LexicalDC = Owner;
1081   if (!isFriend && D->isOutOfLine()) {
1082     assert(D->getDeclContext()->isFileContext());
1083     LexicalDC = D->getDeclContext();
1084   }
1085 
1086   Function->setLexicalDeclContext(LexicalDC);
1087 
1088   // Attach the parameters
1089   if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
1090     // Adopt the already-instantiated parameters into our own context.
1091     for (unsigned P = 0; P < Params.size(); ++P)
1092       if (Params[P])
1093         Params[P]->setOwningFunction(Function);
1094   } else {
1095     // Since we were instantiated via a typedef of a function type, create
1096     // new parameters.
1097     const FunctionProtoType *Proto
1098       = Function->getType()->getAs<FunctionProtoType>();
1099     assert(Proto && "No function prototype in template instantiation?");
1100     for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1101          AE = Proto->arg_type_end(); AI != AE; ++AI) {
1102       ParmVarDecl *Param
1103         = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1104                                              *AI);
1105       Param->setScopeInfo(0, Params.size());
1106       Params.push_back(Param);
1107     }
1108   }
1109   Function->setParams(Params);
1110 
1111   SourceLocation InstantiateAtPOI;
1112   if (TemplateParams) {
1113     // Our resulting instantiation is actually a function template, since we
1114     // are substituting only the outer template parameters. For example, given
1115     //
1116     //   template<typename T>
1117     //   struct X {
1118     //     template<typename U> friend void f(T, U);
1119     //   };
1120     //
1121     //   X<int> x;
1122     //
1123     // We are instantiating the friend function template "f" within X<int>,
1124     // which means substituting int for T, but leaving "f" as a friend function
1125     // template.
1126     // Build the function template itself.
1127     FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
1128                                                     Function->getLocation(),
1129                                                     Function->getDeclName(),
1130                                                     TemplateParams, Function);
1131     Function->setDescribedFunctionTemplate(FunctionTemplate);
1132 
1133     FunctionTemplate->setLexicalDeclContext(LexicalDC);
1134 
1135     if (isFriend && D->isThisDeclarationADefinition()) {
1136       // TODO: should we remember this connection regardless of whether
1137       // the friend declaration provided a body?
1138       FunctionTemplate->setInstantiatedFromMemberTemplate(
1139                                            D->getDescribedFunctionTemplate());
1140     }
1141   } else if (FunctionTemplate) {
1142     // Record this function template specialization.
1143     std::pair<const TemplateArgument *, unsigned> Innermost
1144       = TemplateArgs.getInnermost();
1145     Function->setFunctionTemplateSpecialization(FunctionTemplate,
1146                             TemplateArgumentList::CreateCopy(SemaRef.Context,
1147                                                              Innermost.first,
1148                                                              Innermost.second),
1149                                                 InsertPos);
1150   } else if (isFriend) {
1151     // Note, we need this connection even if the friend doesn't have a body.
1152     // Its body may exist but not have been attached yet due to deferred
1153     // parsing.
1154     // FIXME: It might be cleaner to set this when attaching the body to the
1155     // friend function declaration, however that would require finding all the
1156     // instantiations and modifying them.
1157     Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
1158   }
1159 
1160   if (InitFunctionInstantiation(Function, D))
1161     Function->setInvalidDecl();
1162 
1163   bool Redeclaration = false;
1164   bool isExplicitSpecialization = false;
1165 
1166   LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1167                         Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1168 
1169   if (DependentFunctionTemplateSpecializationInfo *Info
1170         = D->getDependentSpecializationInfo()) {
1171     assert(isFriend && "non-friend has dependent specialization info?");
1172 
1173     // This needs to be set now for future sanity.
1174     Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1175 
1176     // Instantiate the explicit template arguments.
1177     TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1178                                           Info->getRAngleLoc());
1179     if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1180                       ExplicitArgs, TemplateArgs))
1181       return 0;
1182 
1183     // Map the candidate templates to their instantiations.
1184     for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1185       Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1186                                                 Info->getTemplate(I),
1187                                                 TemplateArgs);
1188       if (!Temp) return 0;
1189 
1190       Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1191     }
1192 
1193     if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1194                                                     &ExplicitArgs,
1195                                                     Previous))
1196       Function->setInvalidDecl();
1197 
1198     isExplicitSpecialization = true;
1199 
1200   } else if (TemplateParams || !FunctionTemplate) {
1201     // Look only into the namespace where the friend would be declared to
1202     // find a previous declaration. This is the innermost enclosing namespace,
1203     // as described in ActOnFriendFunctionDecl.
1204     SemaRef.LookupQualifiedName(Previous, DC);
1205 
1206     // In C++, the previous declaration we find might be a tag type
1207     // (class or enum). In this case, the new declaration will hide the
1208     // tag type. Note that this does does not apply if we're declaring a
1209     // typedef (C++ [dcl.typedef]p4).
1210     if (Previous.isSingleTagDecl())
1211       Previous.clear();
1212   }
1213 
1214   SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
1215                                    isExplicitSpecialization, Redeclaration);
1216 
1217   NamedDecl *PrincipalDecl = (TemplateParams
1218                               ? cast<NamedDecl>(FunctionTemplate)
1219                               : Function);
1220 
1221   // If the original function was part of a friend declaration,
1222   // inherit its namespace state and add it to the owner.
1223   if (isFriend) {
1224     NamedDecl *PrevDecl;
1225     if (TemplateParams)
1226       PrevDecl = FunctionTemplate->getPreviousDeclaration();
1227     else
1228       PrevDecl = Function->getPreviousDeclaration();
1229 
1230     PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1231     DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
1232 
1233     bool queuedInstantiation = false;
1234 
1235     if (!SemaRef.getLangOptions().CPlusPlus0x &&
1236         D->isThisDeclarationADefinition()) {
1237       // Check for a function body.
1238       const FunctionDecl *Definition = 0;
1239       if (Function->isDefined(Definition) &&
1240           Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1241         SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1242           << Function->getDeclName();
1243         SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1244         Function->setInvalidDecl();
1245       }
1246       // Check for redefinitions due to other instantiations of this or
1247       // a similar friend function.
1248       else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1249                                            REnd = Function->redecls_end();
1250                 R != REnd; ++R) {
1251         if (*R == Function)
1252           continue;
1253         switch (R->getFriendObjectKind()) {
1254         case Decl::FOK_None:
1255           if (!queuedInstantiation && R->isUsed(false)) {
1256             if (MemberSpecializationInfo *MSInfo
1257                 = Function->getMemberSpecializationInfo()) {
1258               if (MSInfo->getPointOfInstantiation().isInvalid()) {
1259                 SourceLocation Loc = R->getLocation(); // FIXME
1260                 MSInfo->setPointOfInstantiation(Loc);
1261                 SemaRef.PendingLocalImplicitInstantiations.push_back(
1262                                                  std::make_pair(Function, Loc));
1263                 queuedInstantiation = true;
1264               }
1265             }
1266           }
1267           break;
1268         default:
1269           if (const FunctionDecl *RPattern
1270               = R->getTemplateInstantiationPattern())
1271             if (RPattern->isDefined(RPattern)) {
1272               SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1273                 << Function->getDeclName();
1274               SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
1275               Function->setInvalidDecl();
1276               break;
1277             }
1278         }
1279       }
1280     }
1281   }
1282 
1283   if (Function->isOverloadedOperator() && !DC->isRecord() &&
1284       PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1285     PrincipalDecl->setNonMemberOperator();
1286 
1287   assert(!D->isDefaulted() && "only methods should be defaulted");
1288   return Function;
1289 }
1290 
1291 Decl *
1292 TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1293                                       TemplateParameterList *TemplateParams,
1294                                       bool IsClassScopeSpecialization) {
1295   FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1296   void *InsertPos = 0;
1297   if (FunctionTemplate && !TemplateParams) {
1298     // We are creating a function template specialization from a function
1299     // template. Check whether there is already a function template
1300     // specialization for this particular set of template arguments.
1301     std::pair<const TemplateArgument *, unsigned> Innermost
1302       = TemplateArgs.getInnermost();
1303 
1304     FunctionDecl *SpecFunc
1305       = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1306                                              InsertPos);
1307 
1308     // If we already have a function template specialization, return it.
1309     if (SpecFunc)
1310       return SpecFunc;
1311   }
1312 
1313   bool isFriend;
1314   if (FunctionTemplate)
1315     isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1316   else
1317     isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1318 
1319   bool MergeWithParentScope = (TemplateParams != 0) ||
1320     !(isa<Decl>(Owner) &&
1321       cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
1322   LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
1323 
1324   // Instantiate enclosing template arguments for friends.
1325   SmallVector<TemplateParameterList *, 4> TempParamLists;
1326   unsigned NumTempParamLists = 0;
1327   if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1328     TempParamLists.set_size(NumTempParamLists);
1329     for (unsigned I = 0; I != NumTempParamLists; ++I) {
1330       TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1331       TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1332       if (!InstParams)
1333         return NULL;
1334       TempParamLists[I] = InstParams;
1335     }
1336   }
1337 
1338   SmallVector<ParmVarDecl *, 4> Params;
1339   TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1340   TInfo = SubstFunctionType(D, Params);
1341   if (!TInfo)
1342     return 0;
1343   QualType T = TInfo->getType();
1344 
1345   // \brief If the type of this function, after ignoring parentheses,
1346   // is not *directly* a function type, then we're instantiating a function
1347   // that was declared via a typedef, e.g.,
1348   //
1349   //   typedef int functype(int, int);
1350   //   functype func;
1351   //
1352   // In this case, we'll just go instantiate the ParmVarDecls that we
1353   // synthesized in the method declaration.
1354   if (!isa<FunctionProtoType>(T.IgnoreParens())) {
1355     assert(!Params.size() && "Instantiating type could not yield parameters");
1356     SmallVector<QualType, 4> ParamTypes;
1357     if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1358                                D->getNumParams(), TemplateArgs, ParamTypes,
1359                                &Params))
1360       return 0;
1361   }
1362 
1363   NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1364   if (QualifierLoc) {
1365     QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1366                                                  TemplateArgs);
1367     if (!QualifierLoc)
1368       return 0;
1369   }
1370 
1371   DeclContext *DC = Owner;
1372   if (isFriend) {
1373     if (QualifierLoc) {
1374       CXXScopeSpec SS;
1375       SS.Adopt(QualifierLoc);
1376       DC = SemaRef.computeDeclContext(SS);
1377 
1378       if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1379         return 0;
1380     } else {
1381       DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1382                                            D->getDeclContext(),
1383                                            TemplateArgs);
1384     }
1385     if (!DC) return 0;
1386   }
1387 
1388   // Build the instantiated method declaration.
1389   CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1390   CXXMethodDecl *Method = 0;
1391 
1392   SourceLocation StartLoc = D->getInnerLocStart();
1393   DeclarationNameInfo NameInfo
1394     = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1395   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1396     Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
1397                                         StartLoc, NameInfo, T, TInfo,
1398                                         Constructor->isExplicit(),
1399                                         Constructor->isInlineSpecified(),
1400                                         false, /*isConstexpr*/ false);
1401   } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
1402     Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
1403                                        StartLoc, NameInfo, T, TInfo,
1404                                        Destructor->isInlineSpecified(),
1405                                        false);
1406   } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
1407     Method = CXXConversionDecl::Create(SemaRef.Context, Record,
1408                                        StartLoc, NameInfo, T, TInfo,
1409                                        Conversion->isInlineSpecified(),
1410                                        Conversion->isExplicit(),
1411                                        /*isConstexpr*/ false,
1412                                        Conversion->getLocEnd());
1413   } else {
1414     Method = CXXMethodDecl::Create(SemaRef.Context, Record,
1415                                    StartLoc, NameInfo, T, TInfo,
1416                                    D->isStatic(),
1417                                    D->getStorageClassAsWritten(),
1418                                    D->isInlineSpecified(),
1419                                    /*isConstexpr*/ false, D->getLocEnd());
1420   }
1421 
1422   if (QualifierLoc)
1423     Method->setQualifierInfo(QualifierLoc);
1424 
1425   if (TemplateParams) {
1426     // Our resulting instantiation is actually a function template, since we
1427     // are substituting only the outer template parameters. For example, given
1428     //
1429     //   template<typename T>
1430     //   struct X {
1431     //     template<typename U> void f(T, U);
1432     //   };
1433     //
1434     //   X<int> x;
1435     //
1436     // We are instantiating the member template "f" within X<int>, which means
1437     // substituting int for T, but leaving "f" as a member function template.
1438     // Build the function template itself.
1439     FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1440                                                     Method->getLocation(),
1441                                                     Method->getDeclName(),
1442                                                     TemplateParams, Method);
1443     if (isFriend) {
1444       FunctionTemplate->setLexicalDeclContext(Owner);
1445       FunctionTemplate->setObjectOfFriendDecl(true);
1446     } else if (D->isOutOfLine())
1447       FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
1448     Method->setDescribedFunctionTemplate(FunctionTemplate);
1449   } else if (FunctionTemplate) {
1450     // Record this function template specialization.
1451     std::pair<const TemplateArgument *, unsigned> Innermost
1452       = TemplateArgs.getInnermost();
1453     Method->setFunctionTemplateSpecialization(FunctionTemplate,
1454                          TemplateArgumentList::CreateCopy(SemaRef.Context,
1455                                                           Innermost.first,
1456                                                           Innermost.second),
1457                                               InsertPos);
1458   } else if (!isFriend) {
1459     // Record that this is an instantiation of a member function.
1460     Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
1461   }
1462 
1463   // If we are instantiating a member function defined
1464   // out-of-line, the instantiation will have the same lexical
1465   // context (which will be a namespace scope) as the template.
1466   if (isFriend) {
1467     if (NumTempParamLists)
1468       Method->setTemplateParameterListsInfo(SemaRef.Context,
1469                                             NumTempParamLists,
1470                                             TempParamLists.data());
1471 
1472     Method->setLexicalDeclContext(Owner);
1473     Method->setObjectOfFriendDecl(true);
1474   } else if (D->isOutOfLine())
1475     Method->setLexicalDeclContext(D->getLexicalDeclContext());
1476 
1477   // Attach the parameters
1478   for (unsigned P = 0; P < Params.size(); ++P)
1479     Params[P]->setOwningFunction(Method);
1480   Method->setParams(Params);
1481 
1482   if (InitMethodInstantiation(Method, D))
1483     Method->setInvalidDecl();
1484 
1485   LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1486                         Sema::ForRedeclaration);
1487 
1488   if (!FunctionTemplate || TemplateParams || isFriend) {
1489     SemaRef.LookupQualifiedName(Previous, Record);
1490 
1491     // In C++, the previous declaration we find might be a tag type
1492     // (class or enum). In this case, the new declaration will hide the
1493     // tag type. Note that this does does not apply if we're declaring a
1494     // typedef (C++ [dcl.typedef]p4).
1495     if (Previous.isSingleTagDecl())
1496       Previous.clear();
1497   }
1498 
1499   bool Redeclaration = false;
1500   if (!IsClassScopeSpecialization)
1501     SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
1502 
1503   if (D->isPure())
1504     SemaRef.CheckPureMethod(Method, SourceRange());
1505 
1506   Method->setAccess(D->getAccess());
1507 
1508   SemaRef.CheckOverrideControl(Method);
1509 
1510   if (FunctionTemplate) {
1511     // If there's a function template, let our caller handle it.
1512   } else if (Method->isInvalidDecl() && !Previous.empty()) {
1513     // Don't hide a (potentially) valid declaration with an invalid one.
1514   } else {
1515     NamedDecl *DeclToAdd = (TemplateParams
1516                             ? cast<NamedDecl>(FunctionTemplate)
1517                             : Method);
1518     if (isFriend)
1519       Record->makeDeclVisibleInContext(DeclToAdd);
1520     else if (!IsClassScopeSpecialization)
1521       Owner->addDecl(DeclToAdd);
1522   }
1523 
1524   if (D->isExplicitlyDefaulted()) {
1525     SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1526   } else {
1527     assert(!D->isDefaulted() &&
1528            "should not implicitly default uninstantiated function");
1529   }
1530 
1531   return Method;
1532 }
1533 
1534 Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
1535   return VisitCXXMethodDecl(D);
1536 }
1537 
1538 Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
1539   return VisitCXXMethodDecl(D);
1540 }
1541 
1542 Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
1543   return VisitCXXMethodDecl(D);
1544 }
1545 
1546 ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
1547   return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1548                                   llvm::Optional<unsigned>());
1549 }
1550 
1551 Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1552                                                     TemplateTypeParmDecl *D) {
1553   // TODO: don't always clone when decls are refcounted.
1554   assert(D->getTypeForDecl()->isTemplateTypeParmType());
1555 
1556   TemplateTypeParmDecl *Inst =
1557     TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1558                                  D->getLocStart(), D->getLocation(),
1559                                  D->getDepth() - TemplateArgs.getNumLevels(),
1560                                  D->getIndex(), D->getIdentifier(),
1561                                  D->wasDeclaredWithTypename(),
1562                                  D->isParameterPack());
1563   Inst->setAccess(AS_public);
1564 
1565   if (D->hasDefaultArgument())
1566     Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1567 
1568   // Introduce this template parameter's instantiation into the instantiation
1569   // scope.
1570   SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1571 
1572   return Inst;
1573 }
1574 
1575 Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1576                                                  NonTypeTemplateParmDecl *D) {
1577   // Substitute into the type of the non-type template parameter.
1578   TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
1579   SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1580   SmallVector<QualType, 4> ExpandedParameterPackTypes;
1581   bool IsExpandedParameterPack = false;
1582   TypeSourceInfo *DI;
1583   QualType T;
1584   bool Invalid = false;
1585 
1586   if (D->isExpandedParameterPack()) {
1587     // The non-type template parameter pack is an already-expanded pack
1588     // expansion of types. Substitute into each of the expanded types.
1589     ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1590     ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1591     for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1592       TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1593                                                TemplateArgs,
1594                                                D->getLocation(),
1595                                                D->getDeclName());
1596       if (!NewDI)
1597         return 0;
1598 
1599       ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1600       QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1601                                                               D->getLocation());
1602       if (NewT.isNull())
1603         return 0;
1604       ExpandedParameterPackTypes.push_back(NewT);
1605     }
1606 
1607     IsExpandedParameterPack = true;
1608     DI = D->getTypeSourceInfo();
1609     T = DI->getType();
1610   } else if (isa<PackExpansionTypeLoc>(TL)) {
1611     // The non-type template parameter pack's type is a pack expansion of types.
1612     // Determine whether we need to expand this parameter pack into separate
1613     // types.
1614     PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1615     TypeLoc Pattern = Expansion.getPatternLoc();
1616     SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1617     SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1618 
1619     // Determine whether the set of unexpanded parameter packs can and should
1620     // be expanded.
1621     bool Expand = true;
1622     bool RetainExpansion = false;
1623     llvm::Optional<unsigned> OrigNumExpansions
1624       = Expansion.getTypePtr()->getNumExpansions();
1625     llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1626     if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1627                                                 Pattern.getSourceRange(),
1628                                                 Unexpanded,
1629                                                 TemplateArgs,
1630                                                 Expand, RetainExpansion,
1631                                                 NumExpansions))
1632       return 0;
1633 
1634     if (Expand) {
1635       for (unsigned I = 0; I != *NumExpansions; ++I) {
1636         Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1637         TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1638                                                   D->getLocation(),
1639                                                   D->getDeclName());
1640         if (!NewDI)
1641           return 0;
1642 
1643         ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1644         QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1645                                                               NewDI->getType(),
1646                                                               D->getLocation());
1647         if (NewT.isNull())
1648           return 0;
1649         ExpandedParameterPackTypes.push_back(NewT);
1650       }
1651 
1652       // Note that we have an expanded parameter pack. The "type" of this
1653       // expanded parameter pack is the original expansion type, but callers
1654       // will end up using the expanded parameter pack types for type-checking.
1655       IsExpandedParameterPack = true;
1656       DI = D->getTypeSourceInfo();
1657       T = DI->getType();
1658     } else {
1659       // We cannot fully expand the pack expansion now, so substitute into the
1660       // pattern and create a new pack expansion type.
1661       Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1662       TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1663                                                      D->getLocation(),
1664                                                      D->getDeclName());
1665       if (!NewPattern)
1666         return 0;
1667 
1668       DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1669                                       NumExpansions);
1670       if (!DI)
1671         return 0;
1672 
1673       T = DI->getType();
1674     }
1675   } else {
1676     // Simple case: substitution into a parameter that is not a parameter pack.
1677     DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1678                            D->getLocation(), D->getDeclName());
1679     if (!DI)
1680       return 0;
1681 
1682     // Check that this type is acceptable for a non-type template parameter.
1683     T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1684                                                   D->getLocation());
1685     if (T.isNull()) {
1686       T = SemaRef.Context.IntTy;
1687       Invalid = true;
1688     }
1689   }
1690 
1691   NonTypeTemplateParmDecl *Param;
1692   if (IsExpandedParameterPack)
1693     Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
1694                                             D->getInnerLocStart(),
1695                                             D->getLocation(),
1696                                     D->getDepth() - TemplateArgs.getNumLevels(),
1697                                             D->getPosition(),
1698                                             D->getIdentifier(), T,
1699                                             DI,
1700                                             ExpandedParameterPackTypes.data(),
1701                                             ExpandedParameterPackTypes.size(),
1702                                     ExpandedParameterPackTypesAsWritten.data());
1703   else
1704     Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
1705                                             D->getInnerLocStart(),
1706                                             D->getLocation(),
1707                                     D->getDepth() - TemplateArgs.getNumLevels(),
1708                                             D->getPosition(),
1709                                             D->getIdentifier(), T,
1710                                             D->isParameterPack(), DI);
1711 
1712   Param->setAccess(AS_public);
1713   if (Invalid)
1714     Param->setInvalidDecl();
1715 
1716   Param->setDefaultArgument(D->getDefaultArgument(), false);
1717 
1718   // Introduce this template parameter's instantiation into the instantiation
1719   // scope.
1720   SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1721   return Param;
1722 }
1723 
1724 Decl *
1725 TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1726                                                   TemplateTemplateParmDecl *D) {
1727   // Instantiate the template parameter list of the template template parameter.
1728   TemplateParameterList *TempParams = D->getTemplateParameters();
1729   TemplateParameterList *InstParams;
1730   {
1731     // Perform the actual substitution of template parameters within a new,
1732     // local instantiation scope.
1733     LocalInstantiationScope Scope(SemaRef);
1734     InstParams = SubstTemplateParams(TempParams);
1735     if (!InstParams)
1736       return NULL;
1737   }
1738 
1739   // Build the template template parameter.
1740   TemplateTemplateParmDecl *Param
1741     = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1742                                    D->getDepth() - TemplateArgs.getNumLevels(),
1743                                        D->getPosition(), D->isParameterPack(),
1744                                        D->getIdentifier(), InstParams);
1745   Param->setDefaultArgument(D->getDefaultArgument(), false);
1746   Param->setAccess(AS_public);
1747 
1748   // Introduce this template parameter's instantiation into the instantiation
1749   // scope.
1750   SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1751 
1752   return Param;
1753 }
1754 
1755 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1756   // Using directives are never dependent (and never contain any types or
1757   // expressions), so they require no explicit instantiation work.
1758 
1759   UsingDirectiveDecl *Inst
1760     = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1761                                  D->getNamespaceKeyLocation(),
1762                                  D->getQualifierLoc(),
1763                                  D->getIdentLocation(),
1764                                  D->getNominatedNamespace(),
1765                                  D->getCommonAncestor());
1766   Owner->addDecl(Inst);
1767   return Inst;
1768 }
1769 
1770 Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1771 
1772   // The nested name specifier may be dependent, for example
1773   //     template <typename T> struct t {
1774   //       struct s1 { T f1(); };
1775   //       struct s2 : s1 { using s1::f1; };
1776   //     };
1777   //     template struct t<int>;
1778   // Here, in using s1::f1, s1 refers to t<T>::s1;
1779   // we need to substitute for t<int>::s1.
1780   NestedNameSpecifierLoc QualifierLoc
1781     = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1782                                           TemplateArgs);
1783   if (!QualifierLoc)
1784     return 0;
1785 
1786   // The name info is non-dependent, so no transformation
1787   // is required.
1788   DeclarationNameInfo NameInfo = D->getNameInfo();
1789 
1790   // We only need to do redeclaration lookups if we're in a class
1791   // scope (in fact, it's not really even possible in non-class
1792   // scopes).
1793   bool CheckRedeclaration = Owner->isRecord();
1794 
1795   LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1796                     Sema::ForRedeclaration);
1797 
1798   UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
1799                                        D->getUsingLocation(),
1800                                        QualifierLoc,
1801                                        NameInfo,
1802                                        D->isTypeName());
1803 
1804   CXXScopeSpec SS;
1805   SS.Adopt(QualifierLoc);
1806   if (CheckRedeclaration) {
1807     Prev.setHideTags(false);
1808     SemaRef.LookupQualifiedName(Prev, Owner);
1809 
1810     // Check for invalid redeclarations.
1811     if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1812                                             D->isTypeName(), SS,
1813                                             D->getLocation(), Prev))
1814       NewUD->setInvalidDecl();
1815 
1816   }
1817 
1818   if (!NewUD->isInvalidDecl() &&
1819       SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
1820                                       D->getLocation()))
1821     NewUD->setInvalidDecl();
1822 
1823   SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1824   NewUD->setAccess(D->getAccess());
1825   Owner->addDecl(NewUD);
1826 
1827   // Don't process the shadow decls for an invalid decl.
1828   if (NewUD->isInvalidDecl())
1829     return NewUD;
1830 
1831   bool isFunctionScope = Owner->isFunctionOrMethod();
1832 
1833   // Process the shadow decls.
1834   for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1835          I != E; ++I) {
1836     UsingShadowDecl *Shadow = *I;
1837     NamedDecl *InstTarget =
1838       cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1839                                                           Shadow->getLocation(),
1840                                                         Shadow->getTargetDecl(),
1841                                                            TemplateArgs));
1842     if (!InstTarget)
1843       return 0;
1844 
1845     if (CheckRedeclaration &&
1846         SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1847       continue;
1848 
1849     UsingShadowDecl *InstShadow
1850       = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1851     SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
1852 
1853     if (isFunctionScope)
1854       SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
1855   }
1856 
1857   return NewUD;
1858 }
1859 
1860 Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
1861   // Ignore these;  we handle them in bulk when processing the UsingDecl.
1862   return 0;
1863 }
1864 
1865 Decl * TemplateDeclInstantiator
1866     ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
1867   NestedNameSpecifierLoc QualifierLoc
1868     = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1869                                           TemplateArgs);
1870   if (!QualifierLoc)
1871     return 0;
1872 
1873   CXXScopeSpec SS;
1874   SS.Adopt(QualifierLoc);
1875 
1876   // Since NameInfo refers to a typename, it cannot be a C++ special name.
1877   // Hence, no tranformation is required for it.
1878   DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
1879   NamedDecl *UD =
1880     SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1881                                   D->getUsingLoc(), SS, NameInfo, 0,
1882                                   /*instantiation*/ true,
1883                                   /*typename*/ true, D->getTypenameLoc());
1884   if (UD)
1885     SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1886 
1887   return UD;
1888 }
1889 
1890 Decl * TemplateDeclInstantiator
1891     ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1892   NestedNameSpecifierLoc QualifierLoc
1893       = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1894   if (!QualifierLoc)
1895     return 0;
1896 
1897   CXXScopeSpec SS;
1898   SS.Adopt(QualifierLoc);
1899 
1900   DeclarationNameInfo NameInfo
1901     = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1902 
1903   NamedDecl *UD =
1904     SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1905                                   D->getUsingLoc(), SS, NameInfo, 0,
1906                                   /*instantiation*/ true,
1907                                   /*typename*/ false, SourceLocation());
1908   if (UD)
1909     SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1910 
1911   return UD;
1912 }
1913 
1914 
1915 Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1916                                      ClassScopeFunctionSpecializationDecl *Decl) {
1917   CXXMethodDecl *OldFD = Decl->getSpecialization();
1918   CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1919 
1920   LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1921                         Sema::ForRedeclaration);
1922 
1923   SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1924   if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1925     NewFD->setInvalidDecl();
1926     return NewFD;
1927   }
1928 
1929   // Associate the specialization with the pattern.
1930   FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1931   assert(Specialization && "Class scope Specialization is null");
1932   SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1933 
1934   return NewFD;
1935 }
1936 
1937 Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
1938                       const MultiLevelTemplateArgumentList &TemplateArgs) {
1939   TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
1940   if (D->isInvalidDecl())
1941     return 0;
1942 
1943   return Instantiator.Visit(D);
1944 }
1945 
1946 /// \brief Instantiates a nested template parameter list in the current
1947 /// instantiation context.
1948 ///
1949 /// \param L The parameter list to instantiate
1950 ///
1951 /// \returns NULL if there was an error
1952 TemplateParameterList *
1953 TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
1954   // Get errors for all the parameters before bailing out.
1955   bool Invalid = false;
1956 
1957   unsigned N = L->size();
1958   typedef SmallVector<NamedDecl *, 8> ParamVector;
1959   ParamVector Params;
1960   Params.reserve(N);
1961   for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1962        PI != PE; ++PI) {
1963     NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
1964     Params.push_back(D);
1965     Invalid = Invalid || !D || D->isInvalidDecl();
1966   }
1967 
1968   // Clean up if we had an error.
1969   if (Invalid)
1970     return NULL;
1971 
1972   TemplateParameterList *InstL
1973     = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1974                                     L->getLAngleLoc(), &Params.front(), N,
1975                                     L->getRAngleLoc());
1976   return InstL;
1977 }
1978 
1979 /// \brief Instantiate the declaration of a class template partial
1980 /// specialization.
1981 ///
1982 /// \param ClassTemplate the (instantiated) class template that is partially
1983 // specialized by the instantiation of \p PartialSpec.
1984 ///
1985 /// \param PartialSpec the (uninstantiated) class template partial
1986 /// specialization that we are instantiating.
1987 ///
1988 /// \returns The instantiated partial specialization, if successful; otherwise,
1989 /// NULL to indicate an error.
1990 ClassTemplatePartialSpecializationDecl *
1991 TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1992                                             ClassTemplateDecl *ClassTemplate,
1993                           ClassTemplatePartialSpecializationDecl *PartialSpec) {
1994   // Create a local instantiation scope for this class template partial
1995   // specialization, which will contain the instantiations of the template
1996   // parameters.
1997   LocalInstantiationScope Scope(SemaRef);
1998 
1999   // Substitute into the template parameters of the class template partial
2000   // specialization.
2001   TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2002   TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2003   if (!InstParams)
2004     return 0;
2005 
2006   // Substitute into the template arguments of the class template partial
2007   // specialization.
2008   TemplateArgumentListInfo InstTemplateArgs; // no angle locations
2009   if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2010                     PartialSpec->getNumTemplateArgsAsWritten(),
2011                     InstTemplateArgs, TemplateArgs))
2012     return 0;
2013 
2014   // Check that the template argument list is well-formed for this
2015   // class template.
2016   SmallVector<TemplateArgument, 4> Converted;
2017   if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
2018                                         PartialSpec->getLocation(),
2019                                         InstTemplateArgs,
2020                                         false,
2021                                         Converted))
2022     return 0;
2023 
2024   // Figure out where to insert this class template partial specialization
2025   // in the member template's set of class template partial specializations.
2026   void *InsertPos = 0;
2027   ClassTemplateSpecializationDecl *PrevDecl
2028     = ClassTemplate->findPartialSpecialization(Converted.data(),
2029                                                Converted.size(), InsertPos);
2030 
2031   // Build the canonical type that describes the converted template
2032   // arguments of the class template partial specialization.
2033   QualType CanonType
2034     = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
2035                                                     Converted.data(),
2036                                                     Converted.size());
2037 
2038   // Build the fully-sugared type for this class template
2039   // specialization as the user wrote in the specialization
2040   // itself. This means that we'll pretty-print the type retrieved
2041   // from the specialization's declaration the way that the user
2042   // actually wrote the specialization, rather than formatting the
2043   // name based on the "canonical" representation used to store the
2044   // template arguments in the specialization.
2045   TypeSourceInfo *WrittenTy
2046     = SemaRef.Context.getTemplateSpecializationTypeInfo(
2047                                                     TemplateName(ClassTemplate),
2048                                                     PartialSpec->getLocation(),
2049                                                     InstTemplateArgs,
2050                                                     CanonType);
2051 
2052   if (PrevDecl) {
2053     // We've already seen a partial specialization with the same template
2054     // parameters and template arguments. This can happen, for example, when
2055     // substituting the outer template arguments ends up causing two
2056     // class template partial specializations of a member class template
2057     // to have identical forms, e.g.,
2058     //
2059     //   template<typename T, typename U>
2060     //   struct Outer {
2061     //     template<typename X, typename Y> struct Inner;
2062     //     template<typename Y> struct Inner<T, Y>;
2063     //     template<typename Y> struct Inner<U, Y>;
2064     //   };
2065     //
2066     //   Outer<int, int> outer; // error: the partial specializations of Inner
2067     //                          // have the same signature.
2068     SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
2069       << WrittenTy->getType();
2070     SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2071       << SemaRef.Context.getTypeDeclType(PrevDecl);
2072     return 0;
2073   }
2074 
2075 
2076   // Create the class template partial specialization declaration.
2077   ClassTemplatePartialSpecializationDecl *InstPartialSpec
2078     = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
2079                                                      PartialSpec->getTagKind(),
2080                                                      Owner,
2081                                                      PartialSpec->getLocStart(),
2082                                                      PartialSpec->getLocation(),
2083                                                      InstParams,
2084                                                      ClassTemplate,
2085                                                      Converted.data(),
2086                                                      Converted.size(),
2087                                                      InstTemplateArgs,
2088                                                      CanonType,
2089                                                      0,
2090                              ClassTemplate->getNextPartialSpecSequenceNumber());
2091   // Substitute the nested name specifier, if any.
2092   if (SubstQualifier(PartialSpec, InstPartialSpec))
2093     return 0;
2094 
2095   InstPartialSpec->setInstantiatedFromMember(PartialSpec);
2096   InstPartialSpec->setTypeAsWritten(WrittenTy);
2097 
2098   // Add this partial specialization to the set of class template partial
2099   // specializations.
2100   ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
2101   return InstPartialSpec;
2102 }
2103 
2104 TypeSourceInfo*
2105 TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
2106                               SmallVectorImpl<ParmVarDecl *> &Params) {
2107   TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2108   assert(OldTInfo && "substituting function without type source info");
2109   assert(Params.empty() && "parameter vector is non-empty at start");
2110   TypeSourceInfo *NewTInfo
2111     = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2112                                     D->getTypeSpecStartLoc(),
2113                                     D->getDeclName());
2114   if (!NewTInfo)
2115     return 0;
2116 
2117   if (NewTInfo != OldTInfo) {
2118     // Get parameters from the new type info.
2119     TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
2120     if (FunctionProtoTypeLoc *OldProtoLoc
2121                                   = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2122       TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
2123       FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2124       assert(NewProtoLoc && "Missing prototype?");
2125       unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2126       for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2127            OldIdx != NumOldParams; ++OldIdx) {
2128         ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2129         if (!OldParam->isParameterPack() ||
2130             (NewIdx < NumNewParams &&
2131              NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2132           // Simple case: normal parameter, or a parameter pack that's
2133           // instantiated to a (still-dependent) parameter pack.
2134           ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2135           Params.push_back(NewParam);
2136           SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2137                                                                NewParam);
2138           continue;
2139         }
2140 
2141         // Parameter pack: make the instantiation an argument pack.
2142         SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2143                                                                       OldParam);
2144         unsigned NumArgumentsInExpansion
2145           = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2146                                                TemplateArgs);
2147         while (NumArgumentsInExpansion--) {
2148           ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2149           Params.push_back(NewParam);
2150           SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2151                                                                       NewParam);
2152         }
2153       }
2154     }
2155   } else {
2156     // The function type itself was not dependent and therefore no
2157     // substitution occurred. However, we still need to instantiate
2158     // the function parameters themselves.
2159     TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
2160     if (FunctionProtoTypeLoc *OldProtoLoc
2161                                     = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2162       for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2163         ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2164         if (!Parm)
2165           return 0;
2166         Params.push_back(Parm);
2167       }
2168     }
2169   }
2170   return NewTInfo;
2171 }
2172 
2173 /// \brief Initializes the common fields of an instantiation function
2174 /// declaration (New) from the corresponding fields of its template (Tmpl).
2175 ///
2176 /// \returns true if there was an error
2177 bool
2178 TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
2179                                                     FunctionDecl *Tmpl) {
2180   if (Tmpl->isDeletedAsWritten())
2181     New->setDeletedAsWritten();
2182 
2183   // If we are performing substituting explicitly-specified template arguments
2184   // or deduced template arguments into a function template and we reach this
2185   // point, we are now past the point where SFINAE applies and have committed
2186   // to keeping the new function template specialization. We therefore
2187   // convert the active template instantiation for the function template
2188   // into a template instantiation for this specific function template
2189   // specialization, which is not a SFINAE context, so that we diagnose any
2190   // further errors in the declaration itself.
2191   typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2192   ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2193   if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2194       ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
2195     if (FunctionTemplateDecl *FunTmpl
2196           = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
2197       assert(FunTmpl->getTemplatedDecl() == Tmpl &&
2198              "Deduction from the wrong function template?");
2199       (void) FunTmpl;
2200       ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2201       ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
2202       --SemaRef.NonInstantiationEntries;
2203     }
2204   }
2205 
2206   const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2207   assert(Proto && "Function template without prototype?");
2208 
2209   if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
2210     // The function has an exception specification or a "noreturn"
2211     // attribute. Substitute into each of the exception types.
2212     SmallVector<QualType, 4> Exceptions;
2213     for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2214       // FIXME: Poor location information!
2215       if (const PackExpansionType *PackExpansion
2216             = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2217         // We have a pack expansion. Instantiate it.
2218         SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2219         SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2220                                                 Unexpanded);
2221         assert(!Unexpanded.empty() &&
2222                "Pack expansion without parameter packs?");
2223 
2224         bool Expand = false;
2225         bool RetainExpansion = false;
2226         llvm::Optional<unsigned> NumExpansions
2227                                           = PackExpansion->getNumExpansions();
2228         if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2229                                                     SourceRange(),
2230                                                     Unexpanded,
2231                                                     TemplateArgs,
2232                                                     Expand,
2233                                                     RetainExpansion,
2234                                                     NumExpansions))
2235           break;
2236 
2237         if (!Expand) {
2238           // We can't expand this pack expansion into separate arguments yet;
2239           // just substitute into the pattern and create a new pack expansion
2240           // type.
2241           Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2242           QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2243                                          TemplateArgs,
2244                                        New->getLocation(), New->getDeclName());
2245           if (T.isNull())
2246             break;
2247 
2248           T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
2249           Exceptions.push_back(T);
2250           continue;
2251         }
2252 
2253         // Substitute into the pack expansion pattern for each template
2254         bool Invalid = false;
2255         for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
2256           Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2257 
2258           QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2259                                          TemplateArgs,
2260                                        New->getLocation(), New->getDeclName());
2261           if (T.isNull()) {
2262             Invalid = true;
2263             break;
2264           }
2265 
2266           Exceptions.push_back(T);
2267         }
2268 
2269         if (Invalid)
2270           break;
2271 
2272         continue;
2273       }
2274 
2275       QualType T
2276         = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2277                             New->getLocation(), New->getDeclName());
2278       if (T.isNull() ||
2279           SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2280         continue;
2281 
2282       Exceptions.push_back(T);
2283     }
2284     Expr *NoexceptExpr = 0;
2285     if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
2286       EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
2287       ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2288       if (E.isUsable())
2289         NoexceptExpr = E.take();
2290     }
2291 
2292     // Rebuild the function type
2293 
2294     FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
2295     EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2296     EPI.NumExceptions = Exceptions.size();
2297     EPI.Exceptions = Exceptions.data();
2298     EPI.NoexceptExpr = NoexceptExpr;
2299     EPI.ExtInfo = Proto->getExtInfo();
2300 
2301     const FunctionProtoType *NewProto
2302       = New->getType()->getAs<FunctionProtoType>();
2303     assert(NewProto && "Template instantiation without function prototype?");
2304     New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2305                                                  NewProto->arg_type_begin(),
2306                                                  NewProto->getNumArgs(),
2307                                                  EPI));
2308   }
2309 
2310   // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2311   // a constexpr function template satisfies the requirements for a constexpr
2312   // function, then it is a constexpr function.
2313   if (Tmpl->isConstexpr() &&
2314       SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2315     New->setConstexpr(true);
2316 
2317   const FunctionDecl* Definition = Tmpl;
2318 
2319   // Get the definition. Leaves the variable unchanged if undefined.
2320   Tmpl->isDefined(Definition);
2321 
2322   SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
2323 
2324   return false;
2325 }
2326 
2327 /// \brief Initializes common fields of an instantiated method
2328 /// declaration (New) from the corresponding fields of its template
2329 /// (Tmpl).
2330 ///
2331 /// \returns true if there was an error
2332 bool
2333 TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
2334                                                   CXXMethodDecl *Tmpl) {
2335   if (InitFunctionInstantiation(New, Tmpl))
2336     return true;
2337 
2338   New->setAccess(Tmpl->getAccess());
2339   if (Tmpl->isVirtualAsWritten())
2340     New->setVirtualAsWritten(true);
2341 
2342   // FIXME: attributes
2343   // FIXME: New needs a pointer to Tmpl
2344   return false;
2345 }
2346 
2347 /// \brief Instantiate the definition of the given function from its
2348 /// template.
2349 ///
2350 /// \param PointOfInstantiation the point at which the instantiation was
2351 /// required. Note that this is not precisely a "point of instantiation"
2352 /// for the function, but it's close.
2353 ///
2354 /// \param Function the already-instantiated declaration of a
2355 /// function template specialization or member function of a class template
2356 /// specialization.
2357 ///
2358 /// \param Recursive if true, recursively instantiates any functions that
2359 /// are required by this instantiation.
2360 ///
2361 /// \param DefinitionRequired if true, then we are performing an explicit
2362 /// instantiation where the body of the function is required. Complain if
2363 /// there is no such body.
2364 void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
2365                                          FunctionDecl *Function,
2366                                          bool Recursive,
2367                                          bool DefinitionRequired) {
2368   if (Function->isInvalidDecl() || Function->isDefined())
2369     return;
2370 
2371   // Never instantiate an explicit specialization except if it is a class scope
2372   // explicit specialization.
2373   if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2374       !Function->getClassScopeSpecializationPattern())
2375     return;
2376 
2377   // Find the function body that we'll be substituting.
2378   const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
2379   assert(PatternDecl && "instantiating a non-template");
2380 
2381   Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2382   assert(PatternDecl && "template definition is not a template");
2383   if (!Pattern) {
2384     // Try to find a defaulted definition
2385     PatternDecl->isDefined(PatternDecl);
2386   }
2387   assert(PatternDecl && "template definition is not a template");
2388 
2389   // Postpone late parsed template instantiations.
2390   if (PatternDecl->isLateTemplateParsed() &&
2391       !LateTemplateParser) {
2392     PendingInstantiations.push_back(
2393       std::make_pair(Function, PointOfInstantiation));
2394     return;
2395   }
2396 
2397   // Call the LateTemplateParser callback if there a need to late parse
2398   // a templated function definition.
2399   if (!Pattern && PatternDecl->isLateTemplateParsed() &&
2400       LateTemplateParser) {
2401     LateTemplateParser(OpaqueParser, PatternDecl);
2402     Pattern = PatternDecl->getBody(PatternDecl);
2403   }
2404 
2405   if (!Pattern && !PatternDecl->isDefaulted()) {
2406     if (DefinitionRequired) {
2407       if (Function->getPrimaryTemplate())
2408         Diag(PointOfInstantiation,
2409              diag::err_explicit_instantiation_undefined_func_template)
2410           << Function->getPrimaryTemplate();
2411       else
2412         Diag(PointOfInstantiation,
2413              diag::err_explicit_instantiation_undefined_member)
2414           << 1 << Function->getDeclName() << Function->getDeclContext();
2415 
2416       if (PatternDecl)
2417         Diag(PatternDecl->getLocation(),
2418              diag::note_explicit_instantiation_here);
2419       Function->setInvalidDecl();
2420     } else if (Function->getTemplateSpecializationKind()
2421                  == TSK_ExplicitInstantiationDefinition) {
2422       PendingInstantiations.push_back(
2423         std::make_pair(Function, PointOfInstantiation));
2424     }
2425 
2426     return;
2427   }
2428 
2429   // C++0x [temp.explicit]p9:
2430   //   Except for inline functions, other explicit instantiation declarations
2431   //   have the effect of suppressing the implicit instantiation of the entity
2432   //   to which they refer.
2433   if (Function->getTemplateSpecializationKind()
2434         == TSK_ExplicitInstantiationDeclaration &&
2435       !PatternDecl->isInlined())
2436     return;
2437 
2438   InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2439   if (Inst)
2440     return;
2441 
2442   // If we're performing recursive template instantiation, create our own
2443   // queue of pending implicit instantiations that we will instantiate later,
2444   // while we're still within our own instantiation context.
2445   SmallVector<VTableUse, 16> SavedVTableUses;
2446   std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
2447   if (Recursive) {
2448     VTableUses.swap(SavedVTableUses);
2449     PendingInstantiations.swap(SavedPendingInstantiations);
2450   }
2451 
2452   EnterExpressionEvaluationContext EvalContext(*this,
2453                                                Sema::PotentiallyEvaluated);
2454   ActOnStartOfFunctionDef(0, Function);
2455 
2456   // Introduce a new scope where local variable instantiations will be
2457   // recorded, unless we're actually a member function within a local
2458   // class, in which case we need to merge our results with the parent
2459   // scope (of the enclosing function).
2460   bool MergeWithParentScope = false;
2461   if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2462     MergeWithParentScope = Rec->isLocalClass();
2463 
2464   LocalInstantiationScope Scope(*this, MergeWithParentScope);
2465 
2466   // Introduce the instantiated function parameters into the local
2467   // instantiation scope, and set the parameter names to those used
2468   // in the template.
2469   unsigned FParamIdx = 0;
2470   for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2471     const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2472     if (!PatternParam->isParameterPack()) {
2473       // Simple case: not a parameter pack.
2474       assert(FParamIdx < Function->getNumParams());
2475       ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2476       FunctionParam->setDeclName(PatternParam->getDeclName());
2477       Scope.InstantiatedLocal(PatternParam, FunctionParam);
2478       ++FParamIdx;
2479       continue;
2480     }
2481 
2482     // Expand the parameter pack.
2483     Scope.MakeInstantiatedLocalArgPack(PatternParam);
2484     for (unsigned NumFParams = Function->getNumParams();
2485          FParamIdx < NumFParams;
2486          ++FParamIdx) {
2487       ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2488       FunctionParam->setDeclName(PatternParam->getDeclName());
2489       Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2490     }
2491   }
2492 
2493   // Enter the scope of this instantiation. We don't use
2494   // PushDeclContext because we don't have a scope.
2495   Sema::ContextRAII savedContext(*this, Function);
2496 
2497   MultiLevelTemplateArgumentList TemplateArgs =
2498     getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2499 
2500   if (PatternDecl->isDefaulted()) {
2501     ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2502 
2503     SetDeclDefaulted(Function, PatternDecl->getLocation());
2504   } else {
2505     // If this is a constructor, instantiate the member initializers.
2506     if (const CXXConstructorDecl *Ctor =
2507           dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2508       InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2509                                  TemplateArgs);
2510     }
2511 
2512     // Instantiate the function body.
2513     StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2514 
2515     if (Body.isInvalid())
2516       Function->setInvalidDecl();
2517 
2518     ActOnFinishFunctionBody(Function, Body.get(),
2519                             /*IsInstantiation=*/true);
2520   }
2521 
2522   PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2523 
2524   savedContext.pop();
2525 
2526   DeclGroupRef DG(Function);
2527   Consumer.HandleTopLevelDecl(DG);
2528 
2529   // This class may have local implicit instantiations that need to be
2530   // instantiation within this scope.
2531   PerformPendingInstantiations(/*LocalOnly=*/true);
2532   Scope.Exit();
2533 
2534   if (Recursive) {
2535     // Define any pending vtables.
2536     DefineUsedVTables();
2537 
2538     // Instantiate any pending implicit instantiations found during the
2539     // instantiation of this template.
2540     PerformPendingInstantiations();
2541 
2542     // Restore the set of pending vtables.
2543     assert(VTableUses.empty() &&
2544            "VTableUses should be empty before it is discarded.");
2545     VTableUses.swap(SavedVTableUses);
2546 
2547     // Restore the set of pending implicit instantiations.
2548     assert(PendingInstantiations.empty() &&
2549            "PendingInstantiations should be empty before it is discarded.");
2550     PendingInstantiations.swap(SavedPendingInstantiations);
2551   }
2552 }
2553 
2554 /// \brief Instantiate the definition of the given variable from its
2555 /// template.
2556 ///
2557 /// \param PointOfInstantiation the point at which the instantiation was
2558 /// required. Note that this is not precisely a "point of instantiation"
2559 /// for the function, but it's close.
2560 ///
2561 /// \param Var the already-instantiated declaration of a static member
2562 /// variable of a class template specialization.
2563 ///
2564 /// \param Recursive if true, recursively instantiates any functions that
2565 /// are required by this instantiation.
2566 ///
2567 /// \param DefinitionRequired if true, then we are performing an explicit
2568 /// instantiation where an out-of-line definition of the member variable
2569 /// is required. Complain if there is no such definition.
2570 void Sema::InstantiateStaticDataMemberDefinition(
2571                                           SourceLocation PointOfInstantiation,
2572                                                  VarDecl *Var,
2573                                                  bool Recursive,
2574                                                  bool DefinitionRequired) {
2575   if (Var->isInvalidDecl())
2576     return;
2577 
2578   // Find the out-of-line definition of this static data member.
2579   VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
2580   assert(Def && "This data member was not instantiated from a template?");
2581   assert(Def->isStaticDataMember() && "Not a static data member?");
2582   Def = Def->getOutOfLineDefinition();
2583 
2584   if (!Def) {
2585     // We did not find an out-of-line definition of this static data member,
2586     // so we won't perform any instantiation. Rather, we rely on the user to
2587     // instantiate this definition (or provide a specialization for it) in
2588     // another translation unit.
2589     if (DefinitionRequired) {
2590       Def = Var->getInstantiatedFromStaticDataMember();
2591       Diag(PointOfInstantiation,
2592            diag::err_explicit_instantiation_undefined_member)
2593         << 2 << Var->getDeclName() << Var->getDeclContext();
2594       Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
2595     } else if (Var->getTemplateSpecializationKind()
2596                  == TSK_ExplicitInstantiationDefinition) {
2597       PendingInstantiations.push_back(
2598         std::make_pair(Var, PointOfInstantiation));
2599     }
2600 
2601     return;
2602   }
2603 
2604   // Never instantiate an explicit specialization.
2605   if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2606     return;
2607 
2608   // C++0x [temp.explicit]p9:
2609   //   Except for inline functions, other explicit instantiation declarations
2610   //   have the effect of suppressing the implicit instantiation of the entity
2611   //   to which they refer.
2612   if (Var->getTemplateSpecializationKind()
2613         == TSK_ExplicitInstantiationDeclaration)
2614     return;
2615 
2616   // If we already have a definition, we're done.
2617   if (Var->getDefinition())
2618     return;
2619 
2620   InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2621   if (Inst)
2622     return;
2623 
2624   // If we're performing recursive template instantiation, create our own
2625   // queue of pending implicit instantiations that we will instantiate later,
2626   // while we're still within our own instantiation context.
2627   SmallVector<VTableUse, 16> SavedVTableUses;
2628   std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
2629   if (Recursive) {
2630     VTableUses.swap(SavedVTableUses);
2631     PendingInstantiations.swap(SavedPendingInstantiations);
2632   }
2633 
2634   // Enter the scope of this instantiation. We don't use
2635   // PushDeclContext because we don't have a scope.
2636   ContextRAII previousContext(*this, Var->getDeclContext());
2637 
2638   VarDecl *OldVar = Var;
2639   Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
2640                                         getTemplateInstantiationArgs(Var)));
2641 
2642   previousContext.pop();
2643 
2644   if (Var) {
2645     MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2646     assert(MSInfo && "Missing member specialization information?");
2647     Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2648                                        MSInfo->getPointOfInstantiation());
2649     DeclGroupRef DG(Var);
2650     Consumer.HandleTopLevelDecl(DG);
2651   }
2652 
2653   if (Recursive) {
2654     // Define any newly required vtables.
2655     DefineUsedVTables();
2656 
2657     // Instantiate any pending implicit instantiations found during the
2658     // instantiation of this template.
2659     PerformPendingInstantiations();
2660 
2661     // Restore the set of pending vtables.
2662     assert(VTableUses.empty() &&
2663            "VTableUses should be empty before it is discarded, "
2664            "while instantiating static data member.");
2665     VTableUses.swap(SavedVTableUses);
2666 
2667     // Restore the set of pending implicit instantiations.
2668     assert(PendingInstantiations.empty() &&
2669            "PendingInstantiations should be empty before it is discarded, "
2670            "while instantiating static data member.");
2671     PendingInstantiations.swap(SavedPendingInstantiations);
2672   }
2673 }
2674 
2675 static MultiInitializer CreateMultiInitializer(
2676                         const SmallVectorImpl<Expr*> &Args,
2677                         const CXXCtorInitializer *Init) {
2678   // FIXME: This is a hack that will do slightly the wrong thing for an
2679   // initializer of the form foo({...}).
2680   // The right thing to do would be to modify InstantiateInitializer to create
2681   // the MultiInitializer.
2682   if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2683     return MultiInitializer(Args[0]);
2684   return MultiInitializer(Init->getLParenLoc(), (Expr **)Args.data(),
2685                           Args.size(), Init->getRParenLoc());
2686 }
2687 
2688 void
2689 Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2690                                  const CXXConstructorDecl *Tmpl,
2691                            const MultiLevelTemplateArgumentList &TemplateArgs) {
2692 
2693   SmallVector<CXXCtorInitializer*, 4> NewInits;
2694   bool AnyErrors = false;
2695 
2696   // Instantiate all the initializers.
2697   for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
2698                                             InitsEnd = Tmpl->init_end();
2699        Inits != InitsEnd; ++Inits) {
2700     CXXCtorInitializer *Init = *Inits;
2701 
2702     // Only instantiate written initializers, let Sema re-construct implicit
2703     // ones.
2704     if (!Init->isWritten())
2705       continue;
2706 
2707     SourceLocation LParenLoc, RParenLoc;
2708     ASTOwningVector<Expr*> NewArgs(*this);
2709 
2710     SourceLocation EllipsisLoc;
2711 
2712     if (Init->isPackExpansion()) {
2713       // This is a pack expansion. We should expand it now.
2714       TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
2715       SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2716       collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2717       bool ShouldExpand = false;
2718       bool RetainExpansion = false;
2719       llvm::Optional<unsigned> NumExpansions;
2720       if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2721                                           BaseTL.getSourceRange(),
2722                                           Unexpanded,
2723                                           TemplateArgs, ShouldExpand,
2724                                           RetainExpansion,
2725                                           NumExpansions)) {
2726         AnyErrors = true;
2727         New->setInvalidDecl();
2728         continue;
2729       }
2730       assert(ShouldExpand && "Partial instantiation of base initializer?");
2731 
2732       // Loop over all of the arguments in the argument pack(s),
2733       for (unsigned I = 0; I != *NumExpansions; ++I) {
2734         Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2735 
2736         // Instantiate the initializer.
2737         if (InstantiateInitializer(Init->getInit(), TemplateArgs,
2738                                    LParenLoc, NewArgs, RParenLoc)) {
2739           AnyErrors = true;
2740           break;
2741         }
2742 
2743         // Instantiate the base type.
2744         TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2745                                               TemplateArgs,
2746                                               Init->getSourceLocation(),
2747                                               New->getDeclName());
2748         if (!BaseTInfo) {
2749           AnyErrors = true;
2750           break;
2751         }
2752 
2753         // Build the initializer.
2754         MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2755         MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2756                                                      BaseTInfo, MultiInit,
2757                                                      New->getParent(),
2758                                                      SourceLocation());
2759         if (NewInit.isInvalid()) {
2760           AnyErrors = true;
2761           break;
2762         }
2763 
2764         NewInits.push_back(NewInit.get());
2765         NewArgs.clear();
2766       }
2767 
2768       continue;
2769     }
2770 
2771     // Instantiate the initializer.
2772     if (InstantiateInitializer(Init->getInit(), TemplateArgs,
2773                                LParenLoc, NewArgs, RParenLoc)) {
2774       AnyErrors = true;
2775       continue;
2776     }
2777 
2778     MemInitResult NewInit;
2779     if (Init->isBaseInitializer()) {
2780       TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2781                                             TemplateArgs,
2782                                             Init->getSourceLocation(),
2783                                             New->getDeclName());
2784       if (!BaseTInfo) {
2785         AnyErrors = true;
2786         New->setInvalidDecl();
2787         continue;
2788       }
2789 
2790       MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2791       NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo, MultiInit,
2792                                      New->getParent(), EllipsisLoc);
2793     } else if (Init->isMemberInitializer()) {
2794       FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
2795                                                      Init->getMemberLocation(),
2796                                                      Init->getMember(),
2797                                                      TemplateArgs));
2798       if (!Member) {
2799         AnyErrors = true;
2800         New->setInvalidDecl();
2801         continue;
2802       }
2803 
2804       MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2805       NewInit = BuildMemberInitializer(Member, MultiInit,
2806                                        Init->getSourceLocation());
2807     } else if (Init->isIndirectMemberInitializer()) {
2808       IndirectFieldDecl *IndirectMember =
2809          cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
2810                                  Init->getMemberLocation(),
2811                                  Init->getIndirectMember(), TemplateArgs));
2812 
2813       if (!IndirectMember) {
2814         AnyErrors = true;
2815         New->setInvalidDecl();
2816         continue;
2817       }
2818 
2819       MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2820       NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2821                                        Init->getSourceLocation());
2822     }
2823 
2824     if (NewInit.isInvalid()) {
2825       AnyErrors = true;
2826       New->setInvalidDecl();
2827     } else {
2828       // FIXME: It would be nice if ASTOwningVector had a release function.
2829       NewArgs.take();
2830 
2831       NewInits.push_back(NewInit.get());
2832     }
2833   }
2834 
2835   // Assign all the initializers to the new constructor.
2836   ActOnMemInitializers(New,
2837                        /*FIXME: ColonLoc */
2838                        SourceLocation(),
2839                        NewInits.data(), NewInits.size(),
2840                        AnyErrors);
2841 }
2842 
2843 // TODO: this could be templated if the various decl types used the
2844 // same method name.
2845 static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2846                               ClassTemplateDecl *Instance) {
2847   Pattern = Pattern->getCanonicalDecl();
2848 
2849   do {
2850     Instance = Instance->getCanonicalDecl();
2851     if (Pattern == Instance) return true;
2852     Instance = Instance->getInstantiatedFromMemberTemplate();
2853   } while (Instance);
2854 
2855   return false;
2856 }
2857 
2858 static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2859                               FunctionTemplateDecl *Instance) {
2860   Pattern = Pattern->getCanonicalDecl();
2861 
2862   do {
2863     Instance = Instance->getCanonicalDecl();
2864     if (Pattern == Instance) return true;
2865     Instance = Instance->getInstantiatedFromMemberTemplate();
2866   } while (Instance);
2867 
2868   return false;
2869 }
2870 
2871 static bool
2872 isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2873                   ClassTemplatePartialSpecializationDecl *Instance) {
2874   Pattern
2875     = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2876   do {
2877     Instance = cast<ClassTemplatePartialSpecializationDecl>(
2878                                                 Instance->getCanonicalDecl());
2879     if (Pattern == Instance)
2880       return true;
2881     Instance = Instance->getInstantiatedFromMember();
2882   } while (Instance);
2883 
2884   return false;
2885 }
2886 
2887 static bool isInstantiationOf(CXXRecordDecl *Pattern,
2888                               CXXRecordDecl *Instance) {
2889   Pattern = Pattern->getCanonicalDecl();
2890 
2891   do {
2892     Instance = Instance->getCanonicalDecl();
2893     if (Pattern == Instance) return true;
2894     Instance = Instance->getInstantiatedFromMemberClass();
2895   } while (Instance);
2896 
2897   return false;
2898 }
2899 
2900 static bool isInstantiationOf(FunctionDecl *Pattern,
2901                               FunctionDecl *Instance) {
2902   Pattern = Pattern->getCanonicalDecl();
2903 
2904   do {
2905     Instance = Instance->getCanonicalDecl();
2906     if (Pattern == Instance) return true;
2907     Instance = Instance->getInstantiatedFromMemberFunction();
2908   } while (Instance);
2909 
2910   return false;
2911 }
2912 
2913 static bool isInstantiationOf(EnumDecl *Pattern,
2914                               EnumDecl *Instance) {
2915   Pattern = Pattern->getCanonicalDecl();
2916 
2917   do {
2918     Instance = Instance->getCanonicalDecl();
2919     if (Pattern == Instance) return true;
2920     Instance = Instance->getInstantiatedFromMemberEnum();
2921   } while (Instance);
2922 
2923   return false;
2924 }
2925 
2926 static bool isInstantiationOf(UsingShadowDecl *Pattern,
2927                               UsingShadowDecl *Instance,
2928                               ASTContext &C) {
2929   return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2930 }
2931 
2932 static bool isInstantiationOf(UsingDecl *Pattern,
2933                               UsingDecl *Instance,
2934                               ASTContext &C) {
2935   return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2936 }
2937 
2938 static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2939                               UsingDecl *Instance,
2940                               ASTContext &C) {
2941   return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2942 }
2943 
2944 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
2945                               UsingDecl *Instance,
2946                               ASTContext &C) {
2947   return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2948 }
2949 
2950 static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2951                                               VarDecl *Instance) {
2952   assert(Instance->isStaticDataMember());
2953 
2954   Pattern = Pattern->getCanonicalDecl();
2955 
2956   do {
2957     Instance = Instance->getCanonicalDecl();
2958     if (Pattern == Instance) return true;
2959     Instance = Instance->getInstantiatedFromStaticDataMember();
2960   } while (Instance);
2961 
2962   return false;
2963 }
2964 
2965 // Other is the prospective instantiation
2966 // D is the prospective pattern
2967 static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
2968   if (D->getKind() != Other->getKind()) {
2969     if (UnresolvedUsingTypenameDecl *UUD
2970           = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2971       if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2972         return isInstantiationOf(UUD, UD, Ctx);
2973       }
2974     }
2975 
2976     if (UnresolvedUsingValueDecl *UUD
2977           = dyn_cast<UnresolvedUsingValueDecl>(D)) {
2978       if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2979         return isInstantiationOf(UUD, UD, Ctx);
2980       }
2981     }
2982 
2983     return false;
2984   }
2985 
2986   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2987     return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
2988 
2989   if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2990     return isInstantiationOf(cast<FunctionDecl>(D), Function);
2991 
2992   if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2993     return isInstantiationOf(cast<EnumDecl>(D), Enum);
2994 
2995   if (VarDecl *Var = dyn_cast<VarDecl>(Other))
2996     if (Var->isStaticDataMember())
2997       return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2998 
2999   if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3000     return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
3001 
3002   if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3003     return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3004 
3005   if (ClassTemplatePartialSpecializationDecl *PartialSpec
3006         = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3007     return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3008                              PartialSpec);
3009 
3010   if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3011     if (!Field->getDeclName()) {
3012       // This is an unnamed field.
3013       return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
3014         cast<FieldDecl>(D);
3015     }
3016   }
3017 
3018   if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3019     return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3020 
3021   if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3022     return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3023 
3024   return D->getDeclName() && isa<NamedDecl>(Other) &&
3025     D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3026 }
3027 
3028 template<typename ForwardIterator>
3029 static NamedDecl *findInstantiationOf(ASTContext &Ctx,
3030                                       NamedDecl *D,
3031                                       ForwardIterator first,
3032                                       ForwardIterator last) {
3033   for (; first != last; ++first)
3034     if (isInstantiationOf(Ctx, D, *first))
3035       return cast<NamedDecl>(*first);
3036 
3037   return 0;
3038 }
3039 
3040 /// \brief Finds the instantiation of the given declaration context
3041 /// within the current instantiation.
3042 ///
3043 /// \returns NULL if there was an error
3044 DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
3045                           const MultiLevelTemplateArgumentList &TemplateArgs) {
3046   if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
3047     Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
3048     return cast_or_null<DeclContext>(ID);
3049   } else return DC;
3050 }
3051 
3052 /// \brief Find the instantiation of the given declaration within the
3053 /// current instantiation.
3054 ///
3055 /// This routine is intended to be used when \p D is a declaration
3056 /// referenced from within a template, that needs to mapped into the
3057 /// corresponding declaration within an instantiation. For example,
3058 /// given:
3059 ///
3060 /// \code
3061 /// template<typename T>
3062 /// struct X {
3063 ///   enum Kind {
3064 ///     KnownValue = sizeof(T)
3065 ///   };
3066 ///
3067 ///   bool getKind() const { return KnownValue; }
3068 /// };
3069 ///
3070 /// template struct X<int>;
3071 /// \endcode
3072 ///
3073 /// In the instantiation of X<int>::getKind(), we need to map the
3074 /// EnumConstantDecl for KnownValue (which refers to
3075 /// X<T>::<Kind>::KnownValue) to its instantiation
3076 /// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3077 /// this mapping from within the instantiation of X<int>.
3078 NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
3079                           const MultiLevelTemplateArgumentList &TemplateArgs) {
3080   DeclContext *ParentDC = D->getDeclContext();
3081   if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
3082       isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
3083       (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
3084     // D is a local of some kind. Look into the map of local
3085     // declarations to their instantiations.
3086     typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3087     llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3088       = CurrentInstantiationScope->findInstantiationOf(D);
3089 
3090     if (Found) {
3091       if (Decl *FD = Found->dyn_cast<Decl *>())
3092         return cast<NamedDecl>(FD);
3093 
3094       unsigned PackIdx = ArgumentPackSubstitutionIndex;
3095       return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3096     }
3097 
3098     // If we didn't find the decl, then we must have a label decl that hasn't
3099     // been found yet.  Lazily instantiate it and return it now.
3100     assert(isa<LabelDecl>(D));
3101 
3102     Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3103     assert(Inst && "Failed to instantiate label??");
3104 
3105     CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3106     return cast<LabelDecl>(Inst);
3107   }
3108 
3109   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3110     if (!Record->isDependentContext())
3111       return D;
3112 
3113     // If the RecordDecl is actually the injected-class-name or a
3114     // "templated" declaration for a class template, class template
3115     // partial specialization, or a member class of a class template,
3116     // substitute into the injected-class-name of the class template
3117     // or partial specialization to find the new DeclContext.
3118     QualType T;
3119     ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
3120 
3121     if (ClassTemplate) {
3122       T = ClassTemplate->getInjectedClassNameSpecialization();
3123     } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3124                  = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
3125       ClassTemplate = PartialSpec->getSpecializedTemplate();
3126 
3127       // If we call SubstType with an InjectedClassNameType here we
3128       // can end up in an infinite loop.
3129       T = Context.getTypeDeclType(Record);
3130       assert(isa<InjectedClassNameType>(T) &&
3131              "type of partial specialization is not an InjectedClassNameType");
3132       T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
3133     }
3134 
3135     if (!T.isNull()) {
3136       // Substitute into the injected-class-name to get the type
3137       // corresponding to the instantiation we want, which may also be
3138       // the current instantiation (if we're in a template
3139       // definition). This substitution should never fail, since we
3140       // know we can instantiate the injected-class-name or we
3141       // wouldn't have gotten to the injected-class-name!
3142 
3143       // FIXME: Can we use the CurrentInstantiationScope to avoid this
3144       // extra instantiation in the common case?
3145       T = SubstType(T, TemplateArgs, Loc, DeclarationName());
3146       assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
3147 
3148       if (!T->isDependentType()) {
3149         assert(T->isRecordType() && "Instantiation must produce a record type");
3150         return T->getAs<RecordType>()->getDecl();
3151       }
3152 
3153       // We are performing "partial" template instantiation to create
3154       // the member declarations for the members of a class template
3155       // specialization. Therefore, D is actually referring to something
3156       // in the current instantiation. Look through the current
3157       // context, which contains actual instantiations, to find the
3158       // instantiation of the "current instantiation" that D refers
3159       // to.
3160       bool SawNonDependentContext = false;
3161       for (DeclContext *DC = CurContext; !DC->isFileContext();
3162            DC = DC->getParent()) {
3163         if (ClassTemplateSpecializationDecl *Spec
3164                           = dyn_cast<ClassTemplateSpecializationDecl>(DC))
3165           if (isInstantiationOf(ClassTemplate,
3166                                 Spec->getSpecializedTemplate()))
3167             return Spec;
3168 
3169         if (!DC->isDependentContext())
3170           SawNonDependentContext = true;
3171       }
3172 
3173       // We're performing "instantiation" of a member of the current
3174       // instantiation while we are type-checking the
3175       // definition. Compute the declaration context and return that.
3176       assert(!SawNonDependentContext &&
3177              "No dependent context while instantiating record");
3178       DeclContext *DC = computeDeclContext(T);
3179       assert(DC &&
3180              "Unable to find declaration for the current instantiation");
3181       return cast<CXXRecordDecl>(DC);
3182     }
3183 
3184     // Fall through to deal with other dependent record types (e.g.,
3185     // anonymous unions in class templates).
3186   }
3187 
3188   if (!ParentDC->isDependentContext())
3189     return D;
3190 
3191   ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
3192   if (!ParentDC)
3193     return 0;
3194 
3195   if (ParentDC != D->getDeclContext()) {
3196     // We performed some kind of instantiation in the parent context,
3197     // so now we need to look into the instantiated parent context to
3198     // find the instantiation of the declaration D.
3199 
3200     // If our context used to be dependent, we may need to instantiate
3201     // it before performing lookup into that context.
3202     bool IsBeingInstantiated = false;
3203     if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
3204       if (!Spec->isDependentContext()) {
3205         QualType T = Context.getTypeDeclType(Spec);
3206         const RecordType *Tag = T->getAs<RecordType>();
3207         assert(Tag && "type of non-dependent record is not a RecordType");
3208         if (Tag->isBeingDefined())
3209           IsBeingInstantiated = true;
3210         if (!Tag->isBeingDefined() &&
3211             RequireCompleteType(Loc, T, diag::err_incomplete_type))
3212           return 0;
3213 
3214         ParentDC = Tag->getDecl();
3215       }
3216     }
3217 
3218     NamedDecl *Result = 0;
3219     if (D->getDeclName()) {
3220       DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
3221       Result = findInstantiationOf(Context, D, Found.first, Found.second);
3222     } else {
3223       // Since we don't have a name for the entity we're looking for,
3224       // our only option is to walk through all of the declarations to
3225       // find that name. This will occur in a few cases:
3226       //
3227       //   - anonymous struct/union within a template
3228       //   - unnamed class/struct/union/enum within a template
3229       //
3230       // FIXME: Find a better way to find these instantiations!
3231       Result = findInstantiationOf(Context, D,
3232                                    ParentDC->decls_begin(),
3233                                    ParentDC->decls_end());
3234     }
3235 
3236     if (!Result) {
3237       if (isa<UsingShadowDecl>(D)) {
3238         // UsingShadowDecls can instantiate to nothing because of using hiding.
3239       } else if (Diags.hasErrorOccurred()) {
3240         // We've already complained about something, so most likely this
3241         // declaration failed to instantiate. There's no point in complaining
3242         // further, since this is normal in invalid code.
3243       } else if (IsBeingInstantiated) {
3244         // The class in which this member exists is currently being
3245         // instantiated, and we haven't gotten around to instantiating this
3246         // member yet. This can happen when the code uses forward declarations
3247         // of member classes, and introduces ordering dependencies via
3248         // template instantiation.
3249         Diag(Loc, diag::err_member_not_yet_instantiated)
3250           << D->getDeclName()
3251           << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3252         Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3253       } else {
3254         // We should have found something, but didn't.
3255         llvm_unreachable("Unable to find instantiation of declaration!");
3256       }
3257     }
3258 
3259     D = Result;
3260   }
3261 
3262   return D;
3263 }
3264 
3265 /// \brief Performs template instantiation for all implicit template
3266 /// instantiations we have seen until this point.
3267 void Sema::PerformPendingInstantiations(bool LocalOnly) {
3268   // Load pending instantiations from the external source.
3269   if (!LocalOnly && ExternalSource) {
3270     SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3271     ExternalSource->ReadPendingInstantiations(Pending);
3272     PendingInstantiations.insert(PendingInstantiations.begin(),
3273                                  Pending.begin(), Pending.end());
3274   }
3275 
3276   while (!PendingLocalImplicitInstantiations.empty() ||
3277          (!LocalOnly && !PendingInstantiations.empty())) {
3278     PendingImplicitInstantiation Inst;
3279 
3280     if (PendingLocalImplicitInstantiations.empty()) {
3281       Inst = PendingInstantiations.front();
3282       PendingInstantiations.pop_front();
3283     } else {
3284       Inst = PendingLocalImplicitInstantiations.front();
3285       PendingLocalImplicitInstantiations.pop_front();
3286     }
3287 
3288     // Instantiate function definitions
3289     if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
3290       PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3291                                           "instantiating function definition");
3292       bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3293                                 TSK_ExplicitInstantiationDefinition;
3294       InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3295                                     DefinitionRequired);
3296       continue;
3297     }
3298 
3299     // Instantiate static data member definitions.
3300     VarDecl *Var = cast<VarDecl>(Inst.first);
3301     assert(Var->isStaticDataMember() && "Not a static data member?");
3302 
3303     // Don't try to instantiate declarations if the most recent redeclaration
3304     // is invalid.
3305     if (Var->getMostRecentDeclaration()->isInvalidDecl())
3306       continue;
3307 
3308     // Check if the most recent declaration has changed the specialization kind
3309     // and removed the need for implicit instantiation.
3310     switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3311     case TSK_Undeclared:
3312       llvm_unreachable("Cannot instantitiate an undeclared specialization.");
3313     case TSK_ExplicitInstantiationDeclaration:
3314     case TSK_ExplicitSpecialization:
3315       continue;  // No longer need to instantiate this type.
3316     case TSK_ExplicitInstantiationDefinition:
3317       // We only need an instantiation if the pending instantiation *is* the
3318       // explicit instantiation.
3319       if (Var != Var->getMostRecentDeclaration()) continue;
3320     case TSK_ImplicitInstantiation:
3321       break;
3322     }
3323 
3324     PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3325                                         "instantiating static data member "
3326                                         "definition");
3327 
3328     bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3329                               TSK_ExplicitInstantiationDefinition;
3330     InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3331                                           DefinitionRequired);
3332   }
3333 }
3334 
3335 void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3336                        const MultiLevelTemplateArgumentList &TemplateArgs) {
3337   for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3338          E = Pattern->ddiag_end(); I != E; ++I) {
3339     DependentDiagnostic *DD = *I;
3340 
3341     switch (DD->getKind()) {
3342     case DependentDiagnostic::Access:
3343       HandleDependentAccessCheck(*DD, TemplateArgs);
3344       break;
3345     }
3346   }
3347 }
3348