1 //===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===/
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 semantic analysis for C++ templates.
10 //===----------------------------------------------------------------------===/
11 
12 #include "TreeTransform.h"
13 #include "clang/AST/ASTConsumer.h"
14 #include "clang/AST/ASTContext.h"
15 #include "clang/AST/DeclFriend.h"
16 #include "clang/AST/DeclTemplate.h"
17 #include "clang/AST/Expr.h"
18 #include "clang/AST/ExprCXX.h"
19 #include "clang/AST/RecursiveASTVisitor.h"
20 #include "clang/AST/TypeVisitor.h"
21 #include "clang/Basic/Builtins.h"
22 #include "clang/Basic/LangOptions.h"
23 #include "clang/Basic/PartialDiagnostic.h"
24 #include "clang/Basic/TargetInfo.h"
25 #include "clang/Sema/DeclSpec.h"
26 #include "clang/Sema/Lookup.h"
27 #include "clang/Sema/ParsedTemplate.h"
28 #include "clang/Sema/Scope.h"
29 #include "clang/Sema/SemaInternal.h"
30 #include "clang/Sema/Template.h"
31 #include "clang/Sema/TemplateDeduction.h"
32 #include "llvm/ADT/SmallBitVector.h"
33 #include "llvm/ADT/SmallString.h"
34 #include "llvm/ADT/StringExtras.h"
35 using namespace clang;
36 using namespace sema;
37 
38 // Exported for use by Parser.
39 SourceRange
40 clang::getTemplateParamsRange(TemplateParameterList const * const *Ps,
41                               unsigned N) {
42   if (!N) return SourceRange();
43   return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
44 }
45 
46 /// \brief Determine whether the declaration found is acceptable as the name
47 /// of a template and, if so, return that template declaration. Otherwise,
48 /// returns NULL.
49 static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
50                                            NamedDecl *Orig,
51                                            bool AllowFunctionTemplates) {
52   NamedDecl *D = Orig->getUnderlyingDecl();
53 
54   if (isa<TemplateDecl>(D)) {
55     if (!AllowFunctionTemplates && isa<FunctionTemplateDecl>(D))
56       return nullptr;
57 
58     return Orig;
59   }
60 
61   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
62     // C++ [temp.local]p1:
63     //   Like normal (non-template) classes, class templates have an
64     //   injected-class-name (Clause 9). The injected-class-name
65     //   can be used with or without a template-argument-list. When
66     //   it is used without a template-argument-list, it is
67     //   equivalent to the injected-class-name followed by the
68     //   template-parameters of the class template enclosed in
69     //   <>. When it is used with a template-argument-list, it
70     //   refers to the specified class template specialization,
71     //   which could be the current specialization or another
72     //   specialization.
73     if (Record->isInjectedClassName()) {
74       Record = cast<CXXRecordDecl>(Record->getDeclContext());
75       if (Record->getDescribedClassTemplate())
76         return Record->getDescribedClassTemplate();
77 
78       if (ClassTemplateSpecializationDecl *Spec
79             = dyn_cast<ClassTemplateSpecializationDecl>(Record))
80         return Spec->getSpecializedTemplate();
81     }
82 
83     return nullptr;
84   }
85 
86   return nullptr;
87 }
88 
89 void Sema::FilterAcceptableTemplateNames(LookupResult &R,
90                                          bool AllowFunctionTemplates) {
91   // The set of class templates we've already seen.
92   llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates;
93   LookupResult::Filter filter = R.makeFilter();
94   while (filter.hasNext()) {
95     NamedDecl *Orig = filter.next();
96     NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
97                                                AllowFunctionTemplates);
98     if (!Repl)
99       filter.erase();
100     else if (Repl != Orig) {
101 
102       // C++ [temp.local]p3:
103       //   A lookup that finds an injected-class-name (10.2) can result in an
104       //   ambiguity in certain cases (for example, if it is found in more than
105       //   one base class). If all of the injected-class-names that are found
106       //   refer to specializations of the same class template, and if the name
107       //   is used as a template-name, the reference refers to the class
108       //   template itself and not a specialization thereof, and is not
109       //   ambiguous.
110       if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
111         if (!ClassTemplates.insert(ClassTmpl).second) {
112           filter.erase();
113           continue;
114         }
115 
116       // FIXME: we promote access to public here as a workaround to
117       // the fact that LookupResult doesn't let us remember that we
118       // found this template through a particular injected class name,
119       // which means we end up doing nasty things to the invariants.
120       // Pretending that access is public is *much* safer.
121       filter.replace(Repl, AS_public);
122     }
123   }
124   filter.done();
125 }
126 
127 bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R,
128                                          bool AllowFunctionTemplates) {
129   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I)
130     if (isAcceptableTemplateName(Context, *I, AllowFunctionTemplates))
131       return true;
132 
133   return false;
134 }
135 
136 TemplateNameKind Sema::isTemplateName(Scope *S,
137                                       CXXScopeSpec &SS,
138                                       bool hasTemplateKeyword,
139                                       UnqualifiedId &Name,
140                                       ParsedType ObjectTypePtr,
141                                       bool EnteringContext,
142                                       TemplateTy &TemplateResult,
143                                       bool &MemberOfUnknownSpecialization) {
144   assert(getLangOpts().CPlusPlus && "No template names in C!");
145 
146   DeclarationName TName;
147   MemberOfUnknownSpecialization = false;
148 
149   switch (Name.getKind()) {
150   case UnqualifiedId::IK_Identifier:
151     TName = DeclarationName(Name.Identifier);
152     break;
153 
154   case UnqualifiedId::IK_OperatorFunctionId:
155     TName = Context.DeclarationNames.getCXXOperatorName(
156                                               Name.OperatorFunctionId.Operator);
157     break;
158 
159   case UnqualifiedId::IK_LiteralOperatorId:
160     TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
161     break;
162 
163   default:
164     return TNK_Non_template;
165   }
166 
167   QualType ObjectType = ObjectTypePtr.get();
168 
169   LookupResult R(*this, TName, Name.getLocStart(), LookupOrdinaryName);
170   LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
171                      MemberOfUnknownSpecialization);
172   if (R.empty()) return TNK_Non_template;
173   if (R.isAmbiguous()) {
174     // Suppress diagnostics;  we'll redo this lookup later.
175     R.suppressDiagnostics();
176 
177     // FIXME: we might have ambiguous templates, in which case we
178     // should at least parse them properly!
179     return TNK_Non_template;
180   }
181 
182   TemplateName Template;
183   TemplateNameKind TemplateKind;
184 
185   unsigned ResultCount = R.end() - R.begin();
186   if (ResultCount > 1) {
187     // We assume that we'll preserve the qualifier from a function
188     // template name in other ways.
189     Template = Context.getOverloadedTemplateName(R.begin(), R.end());
190     TemplateKind = TNK_Function_template;
191 
192     // We'll do this lookup again later.
193     R.suppressDiagnostics();
194   } else {
195     TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl());
196 
197     if (SS.isSet() && !SS.isInvalid()) {
198       NestedNameSpecifier *Qualifier = SS.getScopeRep();
199       Template = Context.getQualifiedTemplateName(Qualifier,
200                                                   hasTemplateKeyword, TD);
201     } else {
202       Template = TemplateName(TD);
203     }
204 
205     if (isa<FunctionTemplateDecl>(TD)) {
206       TemplateKind = TNK_Function_template;
207 
208       // We'll do this lookup again later.
209       R.suppressDiagnostics();
210     } else {
211       assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) ||
212              isa<TypeAliasTemplateDecl>(TD) || isa<VarTemplateDecl>(TD) ||
213              isa<BuiltinTemplateDecl>(TD));
214       TemplateKind =
215           isa<VarTemplateDecl>(TD) ? TNK_Var_template : TNK_Type_template;
216     }
217   }
218 
219   TemplateResult = TemplateTy::make(Template);
220   return TemplateKind;
221 }
222 
223 bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II,
224                                        SourceLocation IILoc,
225                                        Scope *S,
226                                        const CXXScopeSpec *SS,
227                                        TemplateTy &SuggestedTemplate,
228                                        TemplateNameKind &SuggestedKind) {
229   // We can't recover unless there's a dependent scope specifier preceding the
230   // template name.
231   // FIXME: Typo correction?
232   if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
233       computeDeclContext(*SS))
234     return false;
235 
236   // The code is missing a 'template' keyword prior to the dependent template
237   // name.
238   NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
239   Diag(IILoc, diag::err_template_kw_missing)
240     << Qualifier << II.getName()
241     << FixItHint::CreateInsertion(IILoc, "template ");
242   SuggestedTemplate
243     = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
244   SuggestedKind = TNK_Dependent_template_name;
245   return true;
246 }
247 
248 void Sema::LookupTemplateName(LookupResult &Found,
249                               Scope *S, CXXScopeSpec &SS,
250                               QualType ObjectType,
251                               bool EnteringContext,
252                               bool &MemberOfUnknownSpecialization) {
253   // Determine where to perform name lookup
254   MemberOfUnknownSpecialization = false;
255   DeclContext *LookupCtx = nullptr;
256   bool isDependent = false;
257   if (!ObjectType.isNull()) {
258     // This nested-name-specifier occurs in a member access expression, e.g.,
259     // x->B::f, and we are looking into the type of the object.
260     assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
261     LookupCtx = computeDeclContext(ObjectType);
262     isDependent = ObjectType->isDependentType();
263     assert((isDependent || !ObjectType->isIncompleteType() ||
264             ObjectType->castAs<TagType>()->isBeingDefined()) &&
265            "Caller should have completed object type");
266 
267     // Template names cannot appear inside an Objective-C class or object type.
268     if (ObjectType->isObjCObjectOrInterfaceType()) {
269       Found.clear();
270       return;
271     }
272   } else if (SS.isSet()) {
273     // This nested-name-specifier occurs after another nested-name-specifier,
274     // so long into the context associated with the prior nested-name-specifier.
275     LookupCtx = computeDeclContext(SS, EnteringContext);
276     isDependent = isDependentScopeSpecifier(SS);
277 
278     // The declaration context must be complete.
279     if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
280       return;
281   }
282 
283   bool ObjectTypeSearchedInScope = false;
284   bool AllowFunctionTemplatesInLookup = true;
285   if (LookupCtx) {
286     // Perform "qualified" name lookup into the declaration context we
287     // computed, which is either the type of the base of a member access
288     // expression or the declaration context associated with a prior
289     // nested-name-specifier.
290     LookupQualifiedName(Found, LookupCtx);
291     if (!ObjectType.isNull() && Found.empty()) {
292       // C++ [basic.lookup.classref]p1:
293       //   In a class member access expression (5.2.5), if the . or -> token is
294       //   immediately followed by an identifier followed by a <, the
295       //   identifier must be looked up to determine whether the < is the
296       //   beginning of a template argument list (14.2) or a less-than operator.
297       //   The identifier is first looked up in the class of the object
298       //   expression. If the identifier is not found, it is then looked up in
299       //   the context of the entire postfix-expression and shall name a class
300       //   or function template.
301       if (S) LookupName(Found, S);
302       ObjectTypeSearchedInScope = true;
303       AllowFunctionTemplatesInLookup = false;
304     }
305   } else if (isDependent && (!S || ObjectType.isNull())) {
306     // We cannot look into a dependent object type or nested nme
307     // specifier.
308     MemberOfUnknownSpecialization = true;
309     return;
310   } else {
311     // Perform unqualified name lookup in the current scope.
312     LookupName(Found, S);
313 
314     if (!ObjectType.isNull())
315       AllowFunctionTemplatesInLookup = false;
316   }
317 
318   if (Found.empty() && !isDependent) {
319     // If we did not find any names, attempt to correct any typos.
320     DeclarationName Name = Found.getLookupName();
321     Found.clear();
322     // Simple filter callback that, for keywords, only accepts the C++ *_cast
323     auto FilterCCC = llvm::make_unique<CorrectionCandidateCallback>();
324     FilterCCC->WantTypeSpecifiers = false;
325     FilterCCC->WantExpressionKeywords = false;
326     FilterCCC->WantRemainingKeywords = false;
327     FilterCCC->WantCXXNamedCasts = true;
328     if (TypoCorrection Corrected = CorrectTypo(
329             Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS,
330             std::move(FilterCCC), CTK_ErrorRecovery, LookupCtx)) {
331       Found.setLookupName(Corrected.getCorrection());
332       if (auto *ND = Corrected.getFoundDecl())
333         Found.addDecl(ND);
334       FilterAcceptableTemplateNames(Found);
335       if (!Found.empty()) {
336         if (LookupCtx) {
337           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
338           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
339                                   Name.getAsString() == CorrectedStr;
340           diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest)
341                                     << Name << LookupCtx << DroppedSpecifier
342                                     << SS.getRange());
343         } else {
344           diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name);
345         }
346       }
347     } else {
348       Found.setLookupName(Name);
349     }
350   }
351 
352   FilterAcceptableTemplateNames(Found, AllowFunctionTemplatesInLookup);
353   if (Found.empty()) {
354     if (isDependent)
355       MemberOfUnknownSpecialization = true;
356     return;
357   }
358 
359   if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope &&
360       !getLangOpts().CPlusPlus11) {
361     // C++03 [basic.lookup.classref]p1:
362     //   [...] If the lookup in the class of the object expression finds a
363     //   template, the name is also looked up in the context of the entire
364     //   postfix-expression and [...]
365     //
366     // Note: C++11 does not perform this second lookup.
367     LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
368                             LookupOrdinaryName);
369     LookupName(FoundOuter, S);
370     FilterAcceptableTemplateNames(FoundOuter, /*AllowFunctionTemplates=*/false);
371 
372     if (FoundOuter.empty()) {
373       //   - if the name is not found, the name found in the class of the
374       //     object expression is used, otherwise
375     } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() ||
376                FoundOuter.isAmbiguous()) {
377       //   - if the name is found in the context of the entire
378       //     postfix-expression and does not name a class template, the name
379       //     found in the class of the object expression is used, otherwise
380       FoundOuter.clear();
381     } else if (!Found.isSuppressingDiagnostics()) {
382       //   - if the name found is a class template, it must refer to the same
383       //     entity as the one found in the class of the object expression,
384       //     otherwise the program is ill-formed.
385       if (!Found.isSingleResult() ||
386           Found.getFoundDecl()->getCanonicalDecl()
387             != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
388         Diag(Found.getNameLoc(),
389              diag::ext_nested_name_member_ref_lookup_ambiguous)
390           << Found.getLookupName()
391           << ObjectType;
392         Diag(Found.getRepresentativeDecl()->getLocation(),
393              diag::note_ambig_member_ref_object_type)
394           << ObjectType;
395         Diag(FoundOuter.getFoundDecl()->getLocation(),
396              diag::note_ambig_member_ref_scope);
397 
398         // Recover by taking the template that we found in the object
399         // expression's type.
400       }
401     }
402   }
403 }
404 
405 /// ActOnDependentIdExpression - Handle a dependent id-expression that
406 /// was just parsed.  This is only possible with an explicit scope
407 /// specifier naming a dependent type.
408 ExprResult
409 Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
410                                  SourceLocation TemplateKWLoc,
411                                  const DeclarationNameInfo &NameInfo,
412                                  bool isAddressOfOperand,
413                            const TemplateArgumentListInfo *TemplateArgs) {
414   DeclContext *DC = getFunctionLevelDeclContext();
415 
416   if (!isAddressOfOperand &&
417       isa<CXXMethodDecl>(DC) &&
418       cast<CXXMethodDecl>(DC)->isInstance()) {
419     QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
420 
421     // Since the 'this' expression is synthesized, we don't need to
422     // perform the double-lookup check.
423     NamedDecl *FirstQualifierInScope = nullptr;
424 
425     return CXXDependentScopeMemberExpr::Create(
426         Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true,
427         /*Op*/ SourceLocation(), SS.getWithLocInContext(Context), TemplateKWLoc,
428         FirstQualifierInScope, NameInfo, TemplateArgs);
429   }
430 
431   return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
432 }
433 
434 ExprResult
435 Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
436                                 SourceLocation TemplateKWLoc,
437                                 const DeclarationNameInfo &NameInfo,
438                                 const TemplateArgumentListInfo *TemplateArgs) {
439   return DependentScopeDeclRefExpr::Create(
440       Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
441       TemplateArgs);
442 }
443 
444 /// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
445 /// that the template parameter 'PrevDecl' is being shadowed by a new
446 /// declaration at location Loc. Returns true to indicate that this is
447 /// an error, and false otherwise.
448 void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
449   assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
450 
451   // Microsoft Visual C++ permits template parameters to be shadowed.
452   if (getLangOpts().MicrosoftExt)
453     return;
454 
455   // C++ [temp.local]p4:
456   //   A template-parameter shall not be redeclared within its
457   //   scope (including nested scopes).
458   Diag(Loc, diag::err_template_param_shadow)
459     << cast<NamedDecl>(PrevDecl)->getDeclName();
460   Diag(PrevDecl->getLocation(), diag::note_template_param_here);
461   return;
462 }
463 
464 /// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
465 /// the parameter D to reference the templated declaration and return a pointer
466 /// to the template declaration. Otherwise, do nothing to D and return null.
467 TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
468   if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
469     D = Temp->getTemplatedDecl();
470     return Temp;
471   }
472   return nullptr;
473 }
474 
475 ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
476                                              SourceLocation EllipsisLoc) const {
477   assert(Kind == Template &&
478          "Only template template arguments can be pack expansions here");
479   assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
480          "Template template argument pack expansion without packs");
481   ParsedTemplateArgument Result(*this);
482   Result.EllipsisLoc = EllipsisLoc;
483   return Result;
484 }
485 
486 static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
487                                             const ParsedTemplateArgument &Arg) {
488 
489   switch (Arg.getKind()) {
490   case ParsedTemplateArgument::Type: {
491     TypeSourceInfo *DI;
492     QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
493     if (!DI)
494       DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
495     return TemplateArgumentLoc(TemplateArgument(T), DI);
496   }
497 
498   case ParsedTemplateArgument::NonType: {
499     Expr *E = static_cast<Expr *>(Arg.getAsExpr());
500     return TemplateArgumentLoc(TemplateArgument(E), E);
501   }
502 
503   case ParsedTemplateArgument::Template: {
504     TemplateName Template = Arg.getAsTemplate().get();
505     TemplateArgument TArg;
506     if (Arg.getEllipsisLoc().isValid())
507       TArg = TemplateArgument(Template, Optional<unsigned int>());
508     else
509       TArg = Template;
510     return TemplateArgumentLoc(TArg,
511                                Arg.getScopeSpec().getWithLocInContext(
512                                                               SemaRef.Context),
513                                Arg.getLocation(),
514                                Arg.getEllipsisLoc());
515   }
516   }
517 
518   llvm_unreachable("Unhandled parsed template argument");
519 }
520 
521 /// \brief Translates template arguments as provided by the parser
522 /// into template arguments used by semantic analysis.
523 void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
524                                       TemplateArgumentListInfo &TemplateArgs) {
525  for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
526    TemplateArgs.addArgument(translateTemplateArgument(*this,
527                                                       TemplateArgsIn[I]));
528 }
529 
530 static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S,
531                                                  SourceLocation Loc,
532                                                  IdentifierInfo *Name) {
533   NamedDecl *PrevDecl = SemaRef.LookupSingleName(
534       S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForRedeclaration);
535   if (PrevDecl && PrevDecl->isTemplateParameter())
536     SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl);
537 }
538 
539 /// ActOnTypeParameter - Called when a C++ template type parameter
540 /// (e.g., "typename T") has been parsed. Typename specifies whether
541 /// the keyword "typename" was used to declare the type parameter
542 /// (otherwise, "class" was used), and KeyLoc is the location of the
543 /// "class" or "typename" keyword. ParamName is the name of the
544 /// parameter (NULL indicates an unnamed template parameter) and
545 /// ParamNameLoc is the location of the parameter name (if any).
546 /// If the type parameter has a default argument, it will be added
547 /// later via ActOnTypeParameterDefault.
548 Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename,
549                                SourceLocation EllipsisLoc,
550                                SourceLocation KeyLoc,
551                                IdentifierInfo *ParamName,
552                                SourceLocation ParamNameLoc,
553                                unsigned Depth, unsigned Position,
554                                SourceLocation EqualLoc,
555                                ParsedType DefaultArg) {
556   assert(S->isTemplateParamScope() &&
557          "Template type parameter not in template parameter scope!");
558   bool Invalid = false;
559 
560   SourceLocation Loc = ParamNameLoc;
561   if (!ParamName)
562     Loc = KeyLoc;
563 
564   bool IsParameterPack = EllipsisLoc.isValid();
565   TemplateTypeParmDecl *Param
566     = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
567                                    KeyLoc, Loc, Depth, Position, ParamName,
568                                    Typename, IsParameterPack);
569   Param->setAccess(AS_public);
570   if (Invalid)
571     Param->setInvalidDecl();
572 
573   if (ParamName) {
574     maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName);
575 
576     // Add the template parameter into the current scope.
577     S->AddDecl(Param);
578     IdResolver.AddDecl(Param);
579   }
580 
581   // C++0x [temp.param]p9:
582   //   A default template-argument may be specified for any kind of
583   //   template-parameter that is not a template parameter pack.
584   if (DefaultArg && IsParameterPack) {
585     Diag(EqualLoc, diag::err_template_param_pack_default_arg);
586     DefaultArg = ParsedType();
587   }
588 
589   // Handle the default argument, if provided.
590   if (DefaultArg) {
591     TypeSourceInfo *DefaultTInfo;
592     GetTypeFromParser(DefaultArg, &DefaultTInfo);
593 
594     assert(DefaultTInfo && "expected source information for type");
595 
596     // Check for unexpanded parameter packs.
597     if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
598                                         UPPC_DefaultArgument))
599       return Param;
600 
601     // Check the template argument itself.
602     if (CheckTemplateArgument(Param, DefaultTInfo)) {
603       Param->setInvalidDecl();
604       return Param;
605     }
606 
607     Param->setDefaultArgument(DefaultTInfo);
608   }
609 
610   return Param;
611 }
612 
613 /// \brief Check that the type of a non-type template parameter is
614 /// well-formed.
615 ///
616 /// \returns the (possibly-promoted) parameter type if valid;
617 /// otherwise, produces a diagnostic and returns a NULL type.
618 QualType
619 Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
620   // We don't allow variably-modified types as the type of non-type template
621   // parameters.
622   if (T->isVariablyModifiedType()) {
623     Diag(Loc, diag::err_variably_modified_nontype_template_param)
624       << T;
625     return QualType();
626   }
627 
628   // C++ [temp.param]p4:
629   //
630   // A non-type template-parameter shall have one of the following
631   // (optionally cv-qualified) types:
632   //
633   //       -- integral or enumeration type,
634   if (T->isIntegralOrEnumerationType() ||
635       //   -- pointer to object or pointer to function,
636       T->isPointerType() ||
637       //   -- reference to object or reference to function,
638       T->isReferenceType() ||
639       //   -- pointer to member,
640       T->isMemberPointerType() ||
641       //   -- std::nullptr_t.
642       T->isNullPtrType() ||
643       // If T is a dependent type, we can't do the check now, so we
644       // assume that it is well-formed.
645       T->isDependentType()) {
646     // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter
647     // are ignored when determining its type.
648     return T.getUnqualifiedType();
649   }
650 
651   // C++ [temp.param]p8:
652   //
653   //   A non-type template-parameter of type "array of T" or
654   //   "function returning T" is adjusted to be of type "pointer to
655   //   T" or "pointer to function returning T", respectively.
656   else if (T->isArrayType() || T->isFunctionType())
657     return Context.getDecayedType(T);
658 
659   Diag(Loc, diag::err_template_nontype_parm_bad_type)
660     << T;
661 
662   return QualType();
663 }
664 
665 Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
666                                           unsigned Depth,
667                                           unsigned Position,
668                                           SourceLocation EqualLoc,
669                                           Expr *Default) {
670   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
671   QualType T = TInfo->getType();
672 
673   assert(S->isTemplateParamScope() &&
674          "Non-type template parameter not in template parameter scope!");
675   bool Invalid = false;
676 
677   T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
678   if (T.isNull()) {
679     T = Context.IntTy; // Recover with an 'int' type.
680     Invalid = true;
681   }
682 
683   IdentifierInfo *ParamName = D.getIdentifier();
684   bool IsParameterPack = D.hasEllipsis();
685   NonTypeTemplateParmDecl *Param
686     = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
687                                       D.getLocStart(),
688                                       D.getIdentifierLoc(),
689                                       Depth, Position, ParamName, T,
690                                       IsParameterPack, TInfo);
691   Param->setAccess(AS_public);
692 
693   if (Invalid)
694     Param->setInvalidDecl();
695 
696   if (ParamName) {
697     maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(),
698                                          ParamName);
699 
700     // Add the template parameter into the current scope.
701     S->AddDecl(Param);
702     IdResolver.AddDecl(Param);
703   }
704 
705   // C++0x [temp.param]p9:
706   //   A default template-argument may be specified for any kind of
707   //   template-parameter that is not a template parameter pack.
708   if (Default && IsParameterPack) {
709     Diag(EqualLoc, diag::err_template_param_pack_default_arg);
710     Default = nullptr;
711   }
712 
713   // Check the well-formedness of the default template argument, if provided.
714   if (Default) {
715     // Check for unexpanded parameter packs.
716     if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
717       return Param;
718 
719     TemplateArgument Converted;
720     ExprResult DefaultRes =
721         CheckTemplateArgument(Param, Param->getType(), Default, Converted);
722     if (DefaultRes.isInvalid()) {
723       Param->setInvalidDecl();
724       return Param;
725     }
726     Default = DefaultRes.get();
727 
728     Param->setDefaultArgument(Default);
729   }
730 
731   return Param;
732 }
733 
734 /// ActOnTemplateTemplateParameter - Called when a C++ template template
735 /// parameter (e.g. T in template <template \<typename> class T> class array)
736 /// has been parsed. S is the current scope.
737 Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
738                                            SourceLocation TmpLoc,
739                                            TemplateParameterList *Params,
740                                            SourceLocation EllipsisLoc,
741                                            IdentifierInfo *Name,
742                                            SourceLocation NameLoc,
743                                            unsigned Depth,
744                                            unsigned Position,
745                                            SourceLocation EqualLoc,
746                                            ParsedTemplateArgument Default) {
747   assert(S->isTemplateParamScope() &&
748          "Template template parameter not in template parameter scope!");
749 
750   // Construct the parameter object.
751   bool IsParameterPack = EllipsisLoc.isValid();
752   TemplateTemplateParmDecl *Param =
753     TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
754                                      NameLoc.isInvalid()? TmpLoc : NameLoc,
755                                      Depth, Position, IsParameterPack,
756                                      Name, Params);
757   Param->setAccess(AS_public);
758 
759   // If the template template parameter has a name, then link the identifier
760   // into the scope and lookup mechanisms.
761   if (Name) {
762     maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
763 
764     S->AddDecl(Param);
765     IdResolver.AddDecl(Param);
766   }
767 
768   if (Params->size() == 0) {
769     Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
770     << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
771     Param->setInvalidDecl();
772   }
773 
774   // C++0x [temp.param]p9:
775   //   A default template-argument may be specified for any kind of
776   //   template-parameter that is not a template parameter pack.
777   if (IsParameterPack && !Default.isInvalid()) {
778     Diag(EqualLoc, diag::err_template_param_pack_default_arg);
779     Default = ParsedTemplateArgument();
780   }
781 
782   if (!Default.isInvalid()) {
783     // Check only that we have a template template argument. We don't want to
784     // try to check well-formedness now, because our template template parameter
785     // might have dependent types in its template parameters, which we wouldn't
786     // be able to match now.
787     //
788     // If none of the template template parameter's template arguments mention
789     // other template parameters, we could actually perform more checking here.
790     // However, it isn't worth doing.
791     TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
792     if (DefaultArg.getArgument().getAsTemplate().isNull()) {
793       Diag(DefaultArg.getLocation(), diag::err_template_arg_not_class_template)
794         << DefaultArg.getSourceRange();
795       return Param;
796     }
797 
798     // Check for unexpanded parameter packs.
799     if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
800                                         DefaultArg.getArgument().getAsTemplate(),
801                                         UPPC_DefaultArgument))
802       return Param;
803 
804     Param->setDefaultArgument(Context, DefaultArg);
805   }
806 
807   return Param;
808 }
809 
810 /// ActOnTemplateParameterList - Builds a TemplateParameterList that
811 /// contains the template parameters in Params/NumParams.
812 TemplateParameterList *
813 Sema::ActOnTemplateParameterList(unsigned Depth,
814                                  SourceLocation ExportLoc,
815                                  SourceLocation TemplateLoc,
816                                  SourceLocation LAngleLoc,
817                                  ArrayRef<Decl *> Params,
818                                  SourceLocation RAngleLoc) {
819   if (ExportLoc.isValid())
820     Diag(ExportLoc, diag::warn_template_export_unsupported);
821 
822   return TemplateParameterList::Create(
823       Context, TemplateLoc, LAngleLoc,
824       llvm::makeArrayRef((NamedDecl *const *)Params.data(), Params.size()),
825       RAngleLoc);
826 }
827 
828 static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
829   if (SS.isSet())
830     T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
831 }
832 
833 DeclResult
834 Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
835                          SourceLocation KWLoc, CXXScopeSpec &SS,
836                          IdentifierInfo *Name, SourceLocation NameLoc,
837                          AttributeList *Attr,
838                          TemplateParameterList *TemplateParams,
839                          AccessSpecifier AS, SourceLocation ModulePrivateLoc,
840                          SourceLocation FriendLoc,
841                          unsigned NumOuterTemplateParamLists,
842                          TemplateParameterList** OuterTemplateParamLists,
843                          SkipBodyInfo *SkipBody) {
844   assert(TemplateParams && TemplateParams->size() > 0 &&
845          "No template parameters");
846   assert(TUK != TUK_Reference && "Can only declare or define class templates");
847   bool Invalid = false;
848 
849   // Check that we can declare a template here.
850   if (CheckTemplateDeclScope(S, TemplateParams))
851     return true;
852 
853   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
854   assert(Kind != TTK_Enum && "can't build template of enumerated type");
855 
856   // There is no such thing as an unnamed class template.
857   if (!Name) {
858     Diag(KWLoc, diag::err_template_unnamed_class);
859     return true;
860   }
861 
862   // Find any previous declaration with this name. For a friend with no
863   // scope explicitly specified, we only look for tag declarations (per
864   // C++11 [basic.lookup.elab]p2).
865   DeclContext *SemanticContext;
866   LookupResult Previous(*this, Name, NameLoc,
867                         (SS.isEmpty() && TUK == TUK_Friend)
868                           ? LookupTagName : LookupOrdinaryName,
869                         ForRedeclaration);
870   if (SS.isNotEmpty() && !SS.isInvalid()) {
871     SemanticContext = computeDeclContext(SS, true);
872     if (!SemanticContext) {
873       // FIXME: Horrible, horrible hack! We can't currently represent this
874       // in the AST, and historically we have just ignored such friend
875       // class templates, so don't complain here.
876       Diag(NameLoc, TUK == TUK_Friend
877                         ? diag::warn_template_qualified_friend_ignored
878                         : diag::err_template_qualified_declarator_no_match)
879           << SS.getScopeRep() << SS.getRange();
880       return TUK != TUK_Friend;
881     }
882 
883     if (RequireCompleteDeclContext(SS, SemanticContext))
884       return true;
885 
886     // If we're adding a template to a dependent context, we may need to
887     // rebuilding some of the types used within the template parameter list,
888     // now that we know what the current instantiation is.
889     if (SemanticContext->isDependentContext()) {
890       ContextRAII SavedContext(*this, SemanticContext);
891       if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
892         Invalid = true;
893     } else if (TUK != TUK_Friend && TUK != TUK_Reference)
894       diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc);
895 
896     LookupQualifiedName(Previous, SemanticContext);
897   } else {
898     SemanticContext = CurContext;
899 
900     // C++14 [class.mem]p14:
901     //   If T is the name of a class, then each of the following shall have a
902     //   name different from T:
903     //    -- every member template of class T
904     if (TUK != TUK_Friend &&
905         DiagnoseClassNameShadow(SemanticContext,
906                                 DeclarationNameInfo(Name, NameLoc)))
907       return true;
908 
909     LookupName(Previous, S);
910   }
911 
912   if (Previous.isAmbiguous())
913     return true;
914 
915   NamedDecl *PrevDecl = nullptr;
916   if (Previous.begin() != Previous.end())
917     PrevDecl = (*Previous.begin())->getUnderlyingDecl();
918 
919   // If there is a previous declaration with the same name, check
920   // whether this is a valid redeclaration.
921   ClassTemplateDecl *PrevClassTemplate
922     = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
923 
924   // We may have found the injected-class-name of a class template,
925   // class template partial specialization, or class template specialization.
926   // In these cases, grab the template that is being defined or specialized.
927   if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
928       cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
929     PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
930     PrevClassTemplate
931       = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
932     if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
933       PrevClassTemplate
934         = cast<ClassTemplateSpecializationDecl>(PrevDecl)
935             ->getSpecializedTemplate();
936     }
937   }
938 
939   if (TUK == TUK_Friend) {
940     // C++ [namespace.memdef]p3:
941     //   [...] When looking for a prior declaration of a class or a function
942     //   declared as a friend, and when the name of the friend class or
943     //   function is neither a qualified name nor a template-id, scopes outside
944     //   the innermost enclosing namespace scope are not considered.
945     if (!SS.isSet()) {
946       DeclContext *OutermostContext = CurContext;
947       while (!OutermostContext->isFileContext())
948         OutermostContext = OutermostContext->getLookupParent();
949 
950       if (PrevDecl &&
951           (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
952            OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
953         SemanticContext = PrevDecl->getDeclContext();
954       } else {
955         // Declarations in outer scopes don't matter. However, the outermost
956         // context we computed is the semantic context for our new
957         // declaration.
958         PrevDecl = PrevClassTemplate = nullptr;
959         SemanticContext = OutermostContext;
960 
961         // Check that the chosen semantic context doesn't already contain a
962         // declaration of this name as a non-tag type.
963         Previous.clear(LookupOrdinaryName);
964         DeclContext *LookupContext = SemanticContext;
965         while (LookupContext->isTransparentContext())
966           LookupContext = LookupContext->getLookupParent();
967         LookupQualifiedName(Previous, LookupContext);
968 
969         if (Previous.isAmbiguous())
970           return true;
971 
972         if (Previous.begin() != Previous.end())
973           PrevDecl = (*Previous.begin())->getUnderlyingDecl();
974       }
975     }
976   } else if (PrevDecl &&
977              !isDeclInScope(Previous.getRepresentativeDecl(), SemanticContext,
978                             S, SS.isValid()))
979     PrevDecl = PrevClassTemplate = nullptr;
980 
981   if (auto *Shadow = dyn_cast_or_null<UsingShadowDecl>(
982           PrevDecl ? Previous.getRepresentativeDecl() : nullptr)) {
983     if (SS.isEmpty() &&
984         !(PrevClassTemplate &&
985           PrevClassTemplate->getDeclContext()->getRedeclContext()->Equals(
986               SemanticContext->getRedeclContext()))) {
987       Diag(KWLoc, diag::err_using_decl_conflict_reverse);
988       Diag(Shadow->getTargetDecl()->getLocation(),
989            diag::note_using_decl_target);
990       Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
991       // Recover by ignoring the old declaration.
992       PrevDecl = PrevClassTemplate = nullptr;
993     }
994   }
995 
996   if (PrevClassTemplate) {
997     // Ensure that the template parameter lists are compatible. Skip this check
998     // for a friend in a dependent context: the template parameter list itself
999     // could be dependent.
1000     if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
1001         !TemplateParameterListsAreEqual(TemplateParams,
1002                                    PrevClassTemplate->getTemplateParameters(),
1003                                         /*Complain=*/true,
1004                                         TPL_TemplateMatch))
1005       return true;
1006 
1007     // C++ [temp.class]p4:
1008     //   In a redeclaration, partial specialization, explicit
1009     //   specialization or explicit instantiation of a class template,
1010     //   the class-key shall agree in kind with the original class
1011     //   template declaration (7.1.5.3).
1012     RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
1013     if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
1014                                       TUK == TUK_Definition,  KWLoc, Name)) {
1015       Diag(KWLoc, diag::err_use_with_wrong_tag)
1016         << Name
1017         << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
1018       Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
1019       Kind = PrevRecordDecl->getTagKind();
1020     }
1021 
1022     // Check for redefinition of this class template.
1023     if (TUK == TUK_Definition) {
1024       if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
1025         // If we have a prior definition that is not visible, treat this as
1026         // simply making that previous definition visible.
1027         NamedDecl *Hidden = nullptr;
1028         if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
1029           SkipBody->ShouldSkip = true;
1030           auto *Tmpl = cast<CXXRecordDecl>(Hidden)->getDescribedClassTemplate();
1031           assert(Tmpl && "original definition of a class template is not a "
1032                          "class template?");
1033           makeMergedDefinitionVisible(Hidden, KWLoc);
1034           makeMergedDefinitionVisible(Tmpl, KWLoc);
1035           return Def;
1036         }
1037 
1038         Diag(NameLoc, diag::err_redefinition) << Name;
1039         Diag(Def->getLocation(), diag::note_previous_definition);
1040         // FIXME: Would it make sense to try to "forget" the previous
1041         // definition, as part of error recovery?
1042         return true;
1043       }
1044     }
1045   } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
1046     // Maybe we will complain about the shadowed template parameter.
1047     DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
1048     // Just pretend that we didn't see the previous declaration.
1049     PrevDecl = nullptr;
1050   } else if (PrevDecl) {
1051     // C++ [temp]p5:
1052     //   A class template shall not have the same name as any other
1053     //   template, class, function, object, enumeration, enumerator,
1054     //   namespace, or type in the same scope (3.3), except as specified
1055     //   in (14.5.4).
1056     Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
1057     Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1058     return true;
1059   }
1060 
1061   // Check the template parameter list of this declaration, possibly
1062   // merging in the template parameter list from the previous class
1063   // template declaration. Skip this check for a friend in a dependent
1064   // context, because the template parameter list might be dependent.
1065   if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
1066       CheckTemplateParameterList(
1067           TemplateParams,
1068           PrevClassTemplate ? PrevClassTemplate->getTemplateParameters()
1069                             : nullptr,
1070           (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1071            SemanticContext->isDependentContext())
1072               ? TPC_ClassTemplateMember
1073               : TUK == TUK_Friend ? TPC_FriendClassTemplate
1074                                   : TPC_ClassTemplate))
1075     Invalid = true;
1076 
1077   if (SS.isSet()) {
1078     // If the name of the template was qualified, we must be defining the
1079     // template out-of-line.
1080     if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) {
1081       Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match
1082                                       : diag::err_member_decl_does_not_match)
1083         << Name << SemanticContext << /*IsDefinition*/true << SS.getRange();
1084       Invalid = true;
1085     }
1086   }
1087 
1088   CXXRecordDecl *NewClass =
1089     CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
1090                           PrevClassTemplate?
1091                             PrevClassTemplate->getTemplatedDecl() : nullptr,
1092                           /*DelayTypeCreation=*/true);
1093   SetNestedNameSpecifier(NewClass, SS);
1094   if (NumOuterTemplateParamLists > 0)
1095     NewClass->setTemplateParameterListsInfo(
1096         Context, llvm::makeArrayRef(OuterTemplateParamLists,
1097                                     NumOuterTemplateParamLists));
1098 
1099   // Add alignment attributes if necessary; these attributes are checked when
1100   // the ASTContext lays out the structure.
1101   if (TUK == TUK_Definition) {
1102     AddAlignmentAttributesForRecord(NewClass);
1103     AddMsStructLayoutForRecord(NewClass);
1104   }
1105 
1106   ClassTemplateDecl *NewTemplate
1107     = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1108                                 DeclarationName(Name), TemplateParams,
1109                                 NewClass, PrevClassTemplate);
1110   NewClass->setDescribedClassTemplate(NewTemplate);
1111 
1112   if (ModulePrivateLoc.isValid())
1113     NewTemplate->setModulePrivate();
1114 
1115   // Build the type for the class template declaration now.
1116   QualType T = NewTemplate->getInjectedClassNameSpecialization();
1117   T = Context.getInjectedClassNameType(NewClass, T);
1118   assert(T->isDependentType() && "Class template type is not dependent?");
1119   (void)T;
1120 
1121   // If we are providing an explicit specialization of a member that is a
1122   // class template, make a note of that.
1123   if (PrevClassTemplate &&
1124       PrevClassTemplate->getInstantiatedFromMemberTemplate())
1125     PrevClassTemplate->setMemberSpecialization();
1126 
1127   // Set the access specifier.
1128   if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord())
1129     SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
1130 
1131   // Set the lexical context of these templates
1132   NewClass->setLexicalDeclContext(CurContext);
1133   NewTemplate->setLexicalDeclContext(CurContext);
1134 
1135   if (TUK == TUK_Definition)
1136     NewClass->startDefinition();
1137 
1138   if (Attr)
1139     ProcessDeclAttributeList(S, NewClass, Attr);
1140 
1141   if (PrevClassTemplate)
1142     mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl());
1143 
1144   AddPushedVisibilityAttribute(NewClass);
1145 
1146   if (TUK != TUK_Friend) {
1147     // Per C++ [basic.scope.temp]p2, skip the template parameter scopes.
1148     Scope *Outer = S;
1149     while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1150       Outer = Outer->getParent();
1151     PushOnScopeChains(NewTemplate, Outer);
1152   } else {
1153     if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
1154       NewTemplate->setAccess(PrevClassTemplate->getAccess());
1155       NewClass->setAccess(PrevClassTemplate->getAccess());
1156     }
1157 
1158     NewTemplate->setObjectOfFriendDecl();
1159 
1160     // Friend templates are visible in fairly strange ways.
1161     if (!CurContext->isDependentContext()) {
1162       DeclContext *DC = SemanticContext->getRedeclContext();
1163       DC->makeDeclVisibleInContext(NewTemplate);
1164       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1165         PushOnScopeChains(NewTemplate, EnclosingScope,
1166                           /* AddToContext = */ false);
1167     }
1168 
1169     FriendDecl *Friend = FriendDecl::Create(
1170         Context, CurContext, NewClass->getLocation(), NewTemplate, FriendLoc);
1171     Friend->setAccess(AS_public);
1172     CurContext->addDecl(Friend);
1173   }
1174 
1175   if (Invalid) {
1176     NewTemplate->setInvalidDecl();
1177     NewClass->setInvalidDecl();
1178   }
1179 
1180   ActOnDocumentableDecl(NewTemplate);
1181 
1182   return NewTemplate;
1183 }
1184 
1185 /// \brief Diagnose the presence of a default template argument on a
1186 /// template parameter, which is ill-formed in certain contexts.
1187 ///
1188 /// \returns true if the default template argument should be dropped.
1189 static bool DiagnoseDefaultTemplateArgument(Sema &S,
1190                                             Sema::TemplateParamListContext TPC,
1191                                             SourceLocation ParamLoc,
1192                                             SourceRange DefArgRange) {
1193   switch (TPC) {
1194   case Sema::TPC_ClassTemplate:
1195   case Sema::TPC_VarTemplate:
1196   case Sema::TPC_TypeAliasTemplate:
1197     return false;
1198 
1199   case Sema::TPC_FunctionTemplate:
1200   case Sema::TPC_FriendFunctionTemplateDefinition:
1201     // C++ [temp.param]p9:
1202     //   A default template-argument shall not be specified in a
1203     //   function template declaration or a function template
1204     //   definition [...]
1205     //   If a friend function template declaration specifies a default
1206     //   template-argument, that declaration shall be a definition and shall be
1207     //   the only declaration of the function template in the translation unit.
1208     // (C++98/03 doesn't have this wording; see DR226).
1209     S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ?
1210          diag::warn_cxx98_compat_template_parameter_default_in_function_template
1211            : diag::ext_template_parameter_default_in_function_template)
1212       << DefArgRange;
1213     return false;
1214 
1215   case Sema::TPC_ClassTemplateMember:
1216     // C++0x [temp.param]p9:
1217     //   A default template-argument shall not be specified in the
1218     //   template-parameter-lists of the definition of a member of a
1219     //   class template that appears outside of the member's class.
1220     S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1221       << DefArgRange;
1222     return true;
1223 
1224   case Sema::TPC_FriendClassTemplate:
1225   case Sema::TPC_FriendFunctionTemplate:
1226     // C++ [temp.param]p9:
1227     //   A default template-argument shall not be specified in a
1228     //   friend template declaration.
1229     S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1230       << DefArgRange;
1231     return true;
1232 
1233     // FIXME: C++0x [temp.param]p9 allows default template-arguments
1234     // for friend function templates if there is only a single
1235     // declaration (and it is a definition). Strange!
1236   }
1237 
1238   llvm_unreachable("Invalid TemplateParamListContext!");
1239 }
1240 
1241 /// \brief Check for unexpanded parameter packs within the template parameters
1242 /// of a template template parameter, recursively.
1243 static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1244                                              TemplateTemplateParmDecl *TTP) {
1245   // A template template parameter which is a parameter pack is also a pack
1246   // expansion.
1247   if (TTP->isParameterPack())
1248     return false;
1249 
1250   TemplateParameterList *Params = TTP->getTemplateParameters();
1251   for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1252     NamedDecl *P = Params->getParam(I);
1253     if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
1254       if (!NTTP->isParameterPack() &&
1255           S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
1256                                             NTTP->getTypeSourceInfo(),
1257                                       Sema::UPPC_NonTypeTemplateParameterType))
1258         return true;
1259 
1260       continue;
1261     }
1262 
1263     if (TemplateTemplateParmDecl *InnerTTP
1264                                         = dyn_cast<TemplateTemplateParmDecl>(P))
1265       if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1266         return true;
1267   }
1268 
1269   return false;
1270 }
1271 
1272 /// \brief Checks the validity of a template parameter list, possibly
1273 /// considering the template parameter list from a previous
1274 /// declaration.
1275 ///
1276 /// If an "old" template parameter list is provided, it must be
1277 /// equivalent (per TemplateParameterListsAreEqual) to the "new"
1278 /// template parameter list.
1279 ///
1280 /// \param NewParams Template parameter list for a new template
1281 /// declaration. This template parameter list will be updated with any
1282 /// default arguments that are carried through from the previous
1283 /// template parameter list.
1284 ///
1285 /// \param OldParams If provided, template parameter list from a
1286 /// previous declaration of the same template. Default template
1287 /// arguments will be merged from the old template parameter list to
1288 /// the new template parameter list.
1289 ///
1290 /// \param TPC Describes the context in which we are checking the given
1291 /// template parameter list.
1292 ///
1293 /// \returns true if an error occurred, false otherwise.
1294 bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
1295                                       TemplateParameterList *OldParams,
1296                                       TemplateParamListContext TPC) {
1297   bool Invalid = false;
1298 
1299   // C++ [temp.param]p10:
1300   //   The set of default template-arguments available for use with a
1301   //   template declaration or definition is obtained by merging the
1302   //   default arguments from the definition (if in scope) and all
1303   //   declarations in scope in the same way default function
1304   //   arguments are (8.3.6).
1305   bool SawDefaultArgument = false;
1306   SourceLocation PreviousDefaultArgLoc;
1307 
1308   // Dummy initialization to avoid warnings.
1309   TemplateParameterList::iterator OldParam = NewParams->end();
1310   if (OldParams)
1311     OldParam = OldParams->begin();
1312 
1313   bool RemoveDefaultArguments = false;
1314   for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1315                                     NewParamEnd = NewParams->end();
1316        NewParam != NewParamEnd; ++NewParam) {
1317     // Variables used to diagnose redundant default arguments
1318     bool RedundantDefaultArg = false;
1319     SourceLocation OldDefaultLoc;
1320     SourceLocation NewDefaultLoc;
1321 
1322     // Variable used to diagnose missing default arguments
1323     bool MissingDefaultArg = false;
1324 
1325     // Variable used to diagnose non-final parameter packs
1326     bool SawParameterPack = false;
1327 
1328     if (TemplateTypeParmDecl *NewTypeParm
1329           = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
1330       // Check the presence of a default argument here.
1331       if (NewTypeParm->hasDefaultArgument() &&
1332           DiagnoseDefaultTemplateArgument(*this, TPC,
1333                                           NewTypeParm->getLocation(),
1334                NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
1335                                                        .getSourceRange()))
1336         NewTypeParm->removeDefaultArgument();
1337 
1338       // Merge default arguments for template type parameters.
1339       TemplateTypeParmDecl *OldTypeParm
1340           = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : nullptr;
1341       if (NewTypeParm->isParameterPack()) {
1342         assert(!NewTypeParm->hasDefaultArgument() &&
1343                "Parameter packs can't have a default argument!");
1344         SawParameterPack = true;
1345       } else if (OldTypeParm && hasVisibleDefaultArgument(OldTypeParm) &&
1346                  NewTypeParm->hasDefaultArgument()) {
1347         OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1348         NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1349         SawDefaultArgument = true;
1350         RedundantDefaultArg = true;
1351         PreviousDefaultArgLoc = NewDefaultLoc;
1352       } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1353         // Merge the default argument from the old declaration to the
1354         // new declaration.
1355         NewTypeParm->setInheritedDefaultArgument(Context, OldTypeParm);
1356         PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1357       } else if (NewTypeParm->hasDefaultArgument()) {
1358         SawDefaultArgument = true;
1359         PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1360       } else if (SawDefaultArgument)
1361         MissingDefaultArg = true;
1362     } else if (NonTypeTemplateParmDecl *NewNonTypeParm
1363                = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
1364       // Check for unexpanded parameter packs.
1365       if (!NewNonTypeParm->isParameterPack() &&
1366           DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
1367                                           NewNonTypeParm->getTypeSourceInfo(),
1368                                           UPPC_NonTypeTemplateParameterType)) {
1369         Invalid = true;
1370         continue;
1371       }
1372 
1373       // Check the presence of a default argument here.
1374       if (NewNonTypeParm->hasDefaultArgument() &&
1375           DiagnoseDefaultTemplateArgument(*this, TPC,
1376                                           NewNonTypeParm->getLocation(),
1377                     NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
1378         NewNonTypeParm->removeDefaultArgument();
1379       }
1380 
1381       // Merge default arguments for non-type template parameters
1382       NonTypeTemplateParmDecl *OldNonTypeParm
1383         = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : nullptr;
1384       if (NewNonTypeParm->isParameterPack()) {
1385         assert(!NewNonTypeParm->hasDefaultArgument() &&
1386                "Parameter packs can't have a default argument!");
1387         if (!NewNonTypeParm->isPackExpansion())
1388           SawParameterPack = true;
1389       } else if (OldNonTypeParm && hasVisibleDefaultArgument(OldNonTypeParm) &&
1390                  NewNonTypeParm->hasDefaultArgument()) {
1391         OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1392         NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1393         SawDefaultArgument = true;
1394         RedundantDefaultArg = true;
1395         PreviousDefaultArgLoc = NewDefaultLoc;
1396       } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1397         // Merge the default argument from the old declaration to the
1398         // new declaration.
1399         NewNonTypeParm->setInheritedDefaultArgument(Context, OldNonTypeParm);
1400         PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1401       } else if (NewNonTypeParm->hasDefaultArgument()) {
1402         SawDefaultArgument = true;
1403         PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1404       } else if (SawDefaultArgument)
1405         MissingDefaultArg = true;
1406     } else {
1407       TemplateTemplateParmDecl *NewTemplateParm
1408         = cast<TemplateTemplateParmDecl>(*NewParam);
1409 
1410       // Check for unexpanded parameter packs, recursively.
1411       if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
1412         Invalid = true;
1413         continue;
1414       }
1415 
1416       // Check the presence of a default argument here.
1417       if (NewTemplateParm->hasDefaultArgument() &&
1418           DiagnoseDefaultTemplateArgument(*this, TPC,
1419                                           NewTemplateParm->getLocation(),
1420                      NewTemplateParm->getDefaultArgument().getSourceRange()))
1421         NewTemplateParm->removeDefaultArgument();
1422 
1423       // Merge default arguments for template template parameters
1424       TemplateTemplateParmDecl *OldTemplateParm
1425         = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : nullptr;
1426       if (NewTemplateParm->isParameterPack()) {
1427         assert(!NewTemplateParm->hasDefaultArgument() &&
1428                "Parameter packs can't have a default argument!");
1429         if (!NewTemplateParm->isPackExpansion())
1430           SawParameterPack = true;
1431       } else if (OldTemplateParm &&
1432                  hasVisibleDefaultArgument(OldTemplateParm) &&
1433                  NewTemplateParm->hasDefaultArgument()) {
1434         OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1435         NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
1436         SawDefaultArgument = true;
1437         RedundantDefaultArg = true;
1438         PreviousDefaultArgLoc = NewDefaultLoc;
1439       } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1440         // Merge the default argument from the old declaration to the
1441         // new declaration.
1442         NewTemplateParm->setInheritedDefaultArgument(Context, OldTemplateParm);
1443         PreviousDefaultArgLoc
1444           = OldTemplateParm->getDefaultArgument().getLocation();
1445       } else if (NewTemplateParm->hasDefaultArgument()) {
1446         SawDefaultArgument = true;
1447         PreviousDefaultArgLoc
1448           = NewTemplateParm->getDefaultArgument().getLocation();
1449       } else if (SawDefaultArgument)
1450         MissingDefaultArg = true;
1451     }
1452 
1453     // C++11 [temp.param]p11:
1454     //   If a template parameter of a primary class template or alias template
1455     //   is a template parameter pack, it shall be the last template parameter.
1456     if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
1457         (TPC == TPC_ClassTemplate || TPC == TPC_VarTemplate ||
1458          TPC == TPC_TypeAliasTemplate)) {
1459       Diag((*NewParam)->getLocation(),
1460            diag::err_template_param_pack_must_be_last_template_parameter);
1461       Invalid = true;
1462     }
1463 
1464     if (RedundantDefaultArg) {
1465       // C++ [temp.param]p12:
1466       //   A template-parameter shall not be given default arguments
1467       //   by two different declarations in the same scope.
1468       Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1469       Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1470       Invalid = true;
1471     } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
1472       // C++ [temp.param]p11:
1473       //   If a template-parameter of a class template has a default
1474       //   template-argument, each subsequent template-parameter shall either
1475       //   have a default template-argument supplied or be a template parameter
1476       //   pack.
1477       Diag((*NewParam)->getLocation(),
1478            diag::err_template_param_default_arg_missing);
1479       Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1480       Invalid = true;
1481       RemoveDefaultArguments = true;
1482     }
1483 
1484     // If we have an old template parameter list that we're merging
1485     // in, move on to the next parameter.
1486     if (OldParams)
1487       ++OldParam;
1488   }
1489 
1490   // We were missing some default arguments at the end of the list, so remove
1491   // all of the default arguments.
1492   if (RemoveDefaultArguments) {
1493     for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1494                                       NewParamEnd = NewParams->end();
1495          NewParam != NewParamEnd; ++NewParam) {
1496       if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1497         TTP->removeDefaultArgument();
1498       else if (NonTypeTemplateParmDecl *NTTP
1499                                 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1500         NTTP->removeDefaultArgument();
1501       else
1502         cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1503     }
1504   }
1505 
1506   return Invalid;
1507 }
1508 
1509 namespace {
1510 
1511 /// A class which looks for a use of a certain level of template
1512 /// parameter.
1513 struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1514   typedef RecursiveASTVisitor<DependencyChecker> super;
1515 
1516   unsigned Depth;
1517   bool Match;
1518   SourceLocation MatchLoc;
1519 
1520   DependencyChecker(unsigned Depth) : Depth(Depth), Match(false) {}
1521 
1522   DependencyChecker(TemplateParameterList *Params) : Match(false) {
1523     NamedDecl *ND = Params->getParam(0);
1524     if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1525       Depth = PD->getDepth();
1526     } else if (NonTypeTemplateParmDecl *PD =
1527                  dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1528       Depth = PD->getDepth();
1529     } else {
1530       Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1531     }
1532   }
1533 
1534   bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
1535     if (ParmDepth >= Depth) {
1536       Match = true;
1537       MatchLoc = Loc;
1538       return true;
1539     }
1540     return false;
1541   }
1542 
1543   bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
1544     return !Matches(TL.getTypePtr()->getDepth(), TL.getNameLoc());
1545   }
1546 
1547   bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1548     return !Matches(T->getDepth());
1549   }
1550 
1551   bool TraverseTemplateName(TemplateName N) {
1552     if (TemplateTemplateParmDecl *PD =
1553           dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
1554       if (Matches(PD->getDepth()))
1555         return false;
1556     return super::TraverseTemplateName(N);
1557   }
1558 
1559   bool VisitDeclRefExpr(DeclRefExpr *E) {
1560     if (NonTypeTemplateParmDecl *PD =
1561           dyn_cast<NonTypeTemplateParmDecl>(E->getDecl()))
1562       if (Matches(PD->getDepth(), E->getExprLoc()))
1563         return false;
1564     return super::VisitDeclRefExpr(E);
1565   }
1566 
1567   bool VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
1568     return TraverseType(T->getReplacementType());
1569   }
1570 
1571   bool
1572   VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) {
1573     return TraverseTemplateArgument(T->getArgumentPack());
1574   }
1575 
1576   bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1577     return TraverseType(T->getInjectedSpecializationType());
1578   }
1579 };
1580 }
1581 
1582 /// Determines whether a given type depends on the given parameter
1583 /// list.
1584 static bool
1585 DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
1586   DependencyChecker Checker(Params);
1587   Checker.TraverseType(T);
1588   return Checker.Match;
1589 }
1590 
1591 // Find the source range corresponding to the named type in the given
1592 // nested-name-specifier, if any.
1593 static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1594                                                        QualType T,
1595                                                        const CXXScopeSpec &SS) {
1596   NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1597   while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1598     if (const Type *CurType = NNS->getAsType()) {
1599       if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1600         return NNSLoc.getTypeLoc().getSourceRange();
1601     } else
1602       break;
1603 
1604     NNSLoc = NNSLoc.getPrefix();
1605   }
1606 
1607   return SourceRange();
1608 }
1609 
1610 /// \brief Match the given template parameter lists to the given scope
1611 /// specifier, returning the template parameter list that applies to the
1612 /// name.
1613 ///
1614 /// \param DeclStartLoc the start of the declaration that has a scope
1615 /// specifier or a template parameter list.
1616 ///
1617 /// \param DeclLoc The location of the declaration itself.
1618 ///
1619 /// \param SS the scope specifier that will be matched to the given template
1620 /// parameter lists. This scope specifier precedes a qualified name that is
1621 /// being declared.
1622 ///
1623 /// \param TemplateId The template-id following the scope specifier, if there
1624 /// is one. Used to check for a missing 'template<>'.
1625 ///
1626 /// \param ParamLists the template parameter lists, from the outermost to the
1627 /// innermost template parameter lists.
1628 ///
1629 /// \param IsFriend Whether to apply the slightly different rules for
1630 /// matching template parameters to scope specifiers in friend
1631 /// declarations.
1632 ///
1633 /// \param IsExplicitSpecialization will be set true if the entity being
1634 /// declared is an explicit specialization, false otherwise.
1635 ///
1636 /// \returns the template parameter list, if any, that corresponds to the
1637 /// name that is preceded by the scope specifier @p SS. This template
1638 /// parameter list may have template parameters (if we're declaring a
1639 /// template) or may have no template parameters (if we're declaring a
1640 /// template specialization), or may be NULL (if what we're declaring isn't
1641 /// itself a template).
1642 TemplateParameterList *Sema::MatchTemplateParametersToScopeSpecifier(
1643     SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS,
1644     TemplateIdAnnotation *TemplateId,
1645     ArrayRef<TemplateParameterList *> ParamLists, bool IsFriend,
1646     bool &IsExplicitSpecialization, bool &Invalid) {
1647   IsExplicitSpecialization = false;
1648   Invalid = false;
1649 
1650   // The sequence of nested types to which we will match up the template
1651   // parameter lists. We first build this list by starting with the type named
1652   // by the nested-name-specifier and walking out until we run out of types.
1653   SmallVector<QualType, 4> NestedTypes;
1654   QualType T;
1655   if (SS.getScopeRep()) {
1656     if (CXXRecordDecl *Record
1657               = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1658       T = Context.getTypeDeclType(Record);
1659     else
1660       T = QualType(SS.getScopeRep()->getAsType(), 0);
1661   }
1662 
1663   // If we found an explicit specialization that prevents us from needing
1664   // 'template<>' headers, this will be set to the location of that
1665   // explicit specialization.
1666   SourceLocation ExplicitSpecLoc;
1667 
1668   while (!T.isNull()) {
1669     NestedTypes.push_back(T);
1670 
1671     // Retrieve the parent of a record type.
1672     if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1673       // If this type is an explicit specialization, we're done.
1674       if (ClassTemplateSpecializationDecl *Spec
1675           = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1676         if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1677             Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1678           ExplicitSpecLoc = Spec->getLocation();
1679           break;
1680         }
1681       } else if (Record->getTemplateSpecializationKind()
1682                                                 == TSK_ExplicitSpecialization) {
1683         ExplicitSpecLoc = Record->getLocation();
1684         break;
1685       }
1686 
1687       if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1688         T = Context.getTypeDeclType(Parent);
1689       else
1690         T = QualType();
1691       continue;
1692     }
1693 
1694     if (const TemplateSpecializationType *TST
1695                                      = T->getAs<TemplateSpecializationType>()) {
1696       if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1697         if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1698           T = Context.getTypeDeclType(Parent);
1699         else
1700           T = QualType();
1701         continue;
1702       }
1703     }
1704 
1705     // Look one step prior in a dependent template specialization type.
1706     if (const DependentTemplateSpecializationType *DependentTST
1707                           = T->getAs<DependentTemplateSpecializationType>()) {
1708       if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1709         T = QualType(NNS->getAsType(), 0);
1710       else
1711         T = QualType();
1712       continue;
1713     }
1714 
1715     // Look one step prior in a dependent name type.
1716     if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1717       if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1718         T = QualType(NNS->getAsType(), 0);
1719       else
1720         T = QualType();
1721       continue;
1722     }
1723 
1724     // Retrieve the parent of an enumeration type.
1725     if (const EnumType *EnumT = T->getAs<EnumType>()) {
1726       // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1727       // check here.
1728       EnumDecl *Enum = EnumT->getDecl();
1729 
1730       // Get to the parent type.
1731       if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1732         T = Context.getTypeDeclType(Parent);
1733       else
1734         T = QualType();
1735       continue;
1736     }
1737 
1738     T = QualType();
1739   }
1740   // Reverse the nested types list, since we want to traverse from the outermost
1741   // to the innermost while checking template-parameter-lists.
1742   std::reverse(NestedTypes.begin(), NestedTypes.end());
1743 
1744   // C++0x [temp.expl.spec]p17:
1745   //   A member or a member template may be nested within many
1746   //   enclosing class templates. In an explicit specialization for
1747   //   such a member, the member declaration shall be preceded by a
1748   //   template<> for each enclosing class template that is
1749   //   explicitly specialized.
1750   bool SawNonEmptyTemplateParameterList = false;
1751 
1752   auto CheckExplicitSpecialization = [&](SourceRange Range, bool Recovery) {
1753     if (SawNonEmptyTemplateParameterList) {
1754       Diag(DeclLoc, diag::err_specialize_member_of_template)
1755         << !Recovery << Range;
1756       Invalid = true;
1757       IsExplicitSpecialization = false;
1758       return true;
1759     }
1760 
1761     return false;
1762   };
1763 
1764   auto DiagnoseMissingExplicitSpecialization = [&] (SourceRange Range) {
1765     // Check that we can have an explicit specialization here.
1766     if (CheckExplicitSpecialization(Range, true))
1767       return true;
1768 
1769     // We don't have a template header, but we should.
1770     SourceLocation ExpectedTemplateLoc;
1771     if (!ParamLists.empty())
1772       ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1773     else
1774       ExpectedTemplateLoc = DeclStartLoc;
1775 
1776     Diag(DeclLoc, diag::err_template_spec_needs_header)
1777       << Range
1778       << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1779     return false;
1780   };
1781 
1782   unsigned ParamIdx = 0;
1783   for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1784        ++TypeIdx) {
1785     T = NestedTypes[TypeIdx];
1786 
1787     // Whether we expect a 'template<>' header.
1788     bool NeedEmptyTemplateHeader = false;
1789 
1790     // Whether we expect a template header with parameters.
1791     bool NeedNonemptyTemplateHeader = false;
1792 
1793     // For a dependent type, the set of template parameters that we
1794     // expect to see.
1795     TemplateParameterList *ExpectedTemplateParams = nullptr;
1796 
1797     // C++0x [temp.expl.spec]p15:
1798     //   A member or a member template may be nested within many enclosing
1799     //   class templates. In an explicit specialization for such a member, the
1800     //   member declaration shall be preceded by a template<> for each
1801     //   enclosing class template that is explicitly specialized.
1802     if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1803       if (ClassTemplatePartialSpecializationDecl *Partial
1804             = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1805         ExpectedTemplateParams = Partial->getTemplateParameters();
1806         NeedNonemptyTemplateHeader = true;
1807       } else if (Record->isDependentType()) {
1808         if (Record->getDescribedClassTemplate()) {
1809           ExpectedTemplateParams = Record->getDescribedClassTemplate()
1810                                                       ->getTemplateParameters();
1811           NeedNonemptyTemplateHeader = true;
1812         }
1813       } else if (ClassTemplateSpecializationDecl *Spec
1814                      = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1815         // C++0x [temp.expl.spec]p4:
1816         //   Members of an explicitly specialized class template are defined
1817         //   in the same manner as members of normal classes, and not using
1818         //   the template<> syntax.
1819         if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1820           NeedEmptyTemplateHeader = true;
1821         else
1822           continue;
1823       } else if (Record->getTemplateSpecializationKind()) {
1824         if (Record->getTemplateSpecializationKind()
1825                                                 != TSK_ExplicitSpecialization &&
1826             TypeIdx == NumTypes - 1)
1827           IsExplicitSpecialization = true;
1828 
1829         continue;
1830       }
1831     } else if (const TemplateSpecializationType *TST
1832                                      = T->getAs<TemplateSpecializationType>()) {
1833       if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1834         ExpectedTemplateParams = Template->getTemplateParameters();
1835         NeedNonemptyTemplateHeader = true;
1836       }
1837     } else if (T->getAs<DependentTemplateSpecializationType>()) {
1838       // FIXME:  We actually could/should check the template arguments here
1839       // against the corresponding template parameter list.
1840       NeedNonemptyTemplateHeader = false;
1841     }
1842 
1843     // C++ [temp.expl.spec]p16:
1844     //   In an explicit specialization declaration for a member of a class
1845     //   template or a member template that ap- pears in namespace scope, the
1846     //   member template and some of its enclosing class templates may remain
1847     //   unspecialized, except that the declaration shall not explicitly
1848     //   specialize a class member template if its en- closing class templates
1849     //   are not explicitly specialized as well.
1850     if (ParamIdx < ParamLists.size()) {
1851       if (ParamLists[ParamIdx]->size() == 0) {
1852         if (CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
1853                                         false))
1854           return nullptr;
1855       } else
1856         SawNonEmptyTemplateParameterList = true;
1857     }
1858 
1859     if (NeedEmptyTemplateHeader) {
1860       // If we're on the last of the types, and we need a 'template<>' header
1861       // here, then it's an explicit specialization.
1862       if (TypeIdx == NumTypes - 1)
1863         IsExplicitSpecialization = true;
1864 
1865       if (ParamIdx < ParamLists.size()) {
1866         if (ParamLists[ParamIdx]->size() > 0) {
1867           // The header has template parameters when it shouldn't. Complain.
1868           Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1869                diag::err_template_param_list_matches_nontemplate)
1870             << T
1871             << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1872                            ParamLists[ParamIdx]->getRAngleLoc())
1873             << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1874           Invalid = true;
1875           return nullptr;
1876         }
1877 
1878         // Consume this template header.
1879         ++ParamIdx;
1880         continue;
1881       }
1882 
1883       if (!IsFriend)
1884         if (DiagnoseMissingExplicitSpecialization(
1885                 getRangeOfTypeInNestedNameSpecifier(Context, T, SS)))
1886           return nullptr;
1887 
1888       continue;
1889     }
1890 
1891     if (NeedNonemptyTemplateHeader) {
1892       // In friend declarations we can have template-ids which don't
1893       // depend on the corresponding template parameter lists.  But
1894       // assume that empty parameter lists are supposed to match this
1895       // template-id.
1896       if (IsFriend && T->isDependentType()) {
1897         if (ParamIdx < ParamLists.size() &&
1898             DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
1899           ExpectedTemplateParams = nullptr;
1900         else
1901           continue;
1902       }
1903 
1904       if (ParamIdx < ParamLists.size()) {
1905         // Check the template parameter list, if we can.
1906         if (ExpectedTemplateParams &&
1907             !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1908                                             ExpectedTemplateParams,
1909                                             true, TPL_TemplateMatch))
1910           Invalid = true;
1911 
1912         if (!Invalid &&
1913             CheckTemplateParameterList(ParamLists[ParamIdx], nullptr,
1914                                        TPC_ClassTemplateMember))
1915           Invalid = true;
1916 
1917         ++ParamIdx;
1918         continue;
1919       }
1920 
1921       Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1922         << T
1923         << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1924       Invalid = true;
1925       continue;
1926     }
1927   }
1928 
1929   // If there were at least as many template-ids as there were template
1930   // parameter lists, then there are no template parameter lists remaining for
1931   // the declaration itself.
1932   if (ParamIdx >= ParamLists.size()) {
1933     if (TemplateId && !IsFriend) {
1934       // We don't have a template header for the declaration itself, but we
1935       // should.
1936       IsExplicitSpecialization = true;
1937       DiagnoseMissingExplicitSpecialization(SourceRange(TemplateId->LAngleLoc,
1938                                                         TemplateId->RAngleLoc));
1939 
1940       // Fabricate an empty template parameter list for the invented header.
1941       return TemplateParameterList::Create(Context, SourceLocation(),
1942                                            SourceLocation(), None,
1943                                            SourceLocation());
1944     }
1945 
1946     return nullptr;
1947   }
1948 
1949   // If there were too many template parameter lists, complain about that now.
1950   if (ParamIdx < ParamLists.size() - 1) {
1951     bool HasAnyExplicitSpecHeader = false;
1952     bool AllExplicitSpecHeaders = true;
1953     for (unsigned I = ParamIdx, E = ParamLists.size() - 1; I != E; ++I) {
1954       if (ParamLists[I]->size() == 0)
1955         HasAnyExplicitSpecHeader = true;
1956       else
1957         AllExplicitSpecHeaders = false;
1958     }
1959 
1960     Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1961          AllExplicitSpecHeaders ? diag::warn_template_spec_extra_headers
1962                                 : diag::err_template_spec_extra_headers)
1963         << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1964                        ParamLists[ParamLists.size() - 2]->getRAngleLoc());
1965 
1966     // If there was a specialization somewhere, such that 'template<>' is
1967     // not required, and there were any 'template<>' headers, note where the
1968     // specialization occurred.
1969     if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1970       Diag(ExplicitSpecLoc,
1971            diag::note_explicit_template_spec_does_not_need_header)
1972         << NestedTypes.back();
1973 
1974     // We have a template parameter list with no corresponding scope, which
1975     // means that the resulting template declaration can't be instantiated
1976     // properly (we'll end up with dependent nodes when we shouldn't).
1977     if (!AllExplicitSpecHeaders)
1978       Invalid = true;
1979   }
1980 
1981   // C++ [temp.expl.spec]p16:
1982   //   In an explicit specialization declaration for a member of a class
1983   //   template or a member template that ap- pears in namespace scope, the
1984   //   member template and some of its enclosing class templates may remain
1985   //   unspecialized, except that the declaration shall not explicitly
1986   //   specialize a class member template if its en- closing class templates
1987   //   are not explicitly specialized as well.
1988   if (ParamLists.back()->size() == 0 &&
1989       CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
1990                                   false))
1991     return nullptr;
1992 
1993   // Return the last template parameter list, which corresponds to the
1994   // entity being declared.
1995   return ParamLists.back();
1996 }
1997 
1998 void Sema::NoteAllFoundTemplates(TemplateName Name) {
1999   if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
2000     Diag(Template->getLocation(), diag::note_template_declared_here)
2001         << (isa<FunctionTemplateDecl>(Template)
2002                 ? 0
2003                 : isa<ClassTemplateDecl>(Template)
2004                       ? 1
2005                       : isa<VarTemplateDecl>(Template)
2006                             ? 2
2007                             : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4)
2008         << Template->getDeclName();
2009     return;
2010   }
2011 
2012   if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
2013     for (OverloadedTemplateStorage::iterator I = OST->begin(),
2014                                           IEnd = OST->end();
2015          I != IEnd; ++I)
2016       Diag((*I)->getLocation(), diag::note_template_declared_here)
2017         << 0 << (*I)->getDeclName();
2018 
2019     return;
2020   }
2021 }
2022 
2023 static QualType
2024 checkBuiltinTemplateIdType(Sema &SemaRef, BuiltinTemplateDecl *BTD,
2025                            const SmallVectorImpl<TemplateArgument> &Converted,
2026                            SourceLocation TemplateLoc,
2027                            TemplateArgumentListInfo &TemplateArgs) {
2028   ASTContext &Context = SemaRef.getASTContext();
2029   switch (BTD->getBuiltinTemplateKind()) {
2030   case BTK__make_integer_seq:
2031     // Specializations of __make_integer_seq<S, T, N> are treated like
2032     // S<T, 0, ..., N-1>.
2033 
2034     // C++14 [inteseq.intseq]p1:
2035     //   T shall be an integer type.
2036     if (!Converted[1].getAsType()->isIntegralType(Context)) {
2037       SemaRef.Diag(TemplateArgs[1].getLocation(),
2038                    diag::err_integer_sequence_integral_element_type);
2039       return QualType();
2040     }
2041 
2042     // C++14 [inteseq.make]p1:
2043     //   If N is negative the program is ill-formed.
2044     TemplateArgument NumArgsArg = Converted[2];
2045     llvm::APSInt NumArgs = NumArgsArg.getAsIntegral();
2046     if (NumArgs < 0) {
2047       SemaRef.Diag(TemplateArgs[2].getLocation(),
2048                    diag::err_integer_sequence_negative_length);
2049       return QualType();
2050     }
2051 
2052     QualType ArgTy = NumArgsArg.getIntegralType();
2053     TemplateArgumentListInfo SyntheticTemplateArgs;
2054     // The type argument gets reused as the first template argument in the
2055     // synthetic template argument list.
2056     SyntheticTemplateArgs.addArgument(TemplateArgs[1]);
2057     // Expand N into 0 ... N-1.
2058     for (llvm::APSInt I(NumArgs.getBitWidth(), NumArgs.isUnsigned());
2059          I < NumArgs; ++I) {
2060       TemplateArgument TA(Context, I, ArgTy);
2061       Expr *E = SemaRef.BuildExpressionFromIntegralTemplateArgument(
2062                            TA, TemplateArgs[2].getLocation())
2063                     .getAs<Expr>();
2064       SyntheticTemplateArgs.addArgument(
2065           TemplateArgumentLoc(TemplateArgument(E), E));
2066     }
2067     // The first template argument will be reused as the template decl that
2068     // our synthetic template arguments will be applied to.
2069     return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(),
2070                                        TemplateLoc, SyntheticTemplateArgs);
2071   }
2072   llvm_unreachable("unexpected BuiltinTemplateDecl!");
2073 }
2074 
2075 QualType Sema::CheckTemplateIdType(TemplateName Name,
2076                                    SourceLocation TemplateLoc,
2077                                    TemplateArgumentListInfo &TemplateArgs) {
2078   DependentTemplateName *DTN
2079     = Name.getUnderlying().getAsDependentTemplateName();
2080   if (DTN && DTN->isIdentifier())
2081     // When building a template-id where the template-name is dependent,
2082     // assume the template is a type template. Either our assumption is
2083     // correct, or the code is ill-formed and will be diagnosed when the
2084     // dependent name is substituted.
2085     return Context.getDependentTemplateSpecializationType(ETK_None,
2086                                                           DTN->getQualifier(),
2087                                                           DTN->getIdentifier(),
2088                                                           TemplateArgs);
2089 
2090   TemplateDecl *Template = Name.getAsTemplateDecl();
2091   if (!Template || isa<FunctionTemplateDecl>(Template) ||
2092       isa<VarTemplateDecl>(Template)) {
2093     // We might have a substituted template template parameter pack. If so,
2094     // build a template specialization type for it.
2095     if (Name.getAsSubstTemplateTemplateParmPack())
2096       return Context.getTemplateSpecializationType(Name, TemplateArgs);
2097 
2098     Diag(TemplateLoc, diag::err_template_id_not_a_type)
2099       << Name;
2100     NoteAllFoundTemplates(Name);
2101     return QualType();
2102   }
2103 
2104   // Check that the template argument list is well-formed for this
2105   // template.
2106   SmallVector<TemplateArgument, 4> Converted;
2107   if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
2108                                 false, Converted))
2109     return QualType();
2110 
2111   QualType CanonType;
2112 
2113   bool InstantiationDependent = false;
2114   if (TypeAliasTemplateDecl *AliasTemplate =
2115           dyn_cast<TypeAliasTemplateDecl>(Template)) {
2116     // Find the canonical type for this type alias template specialization.
2117     TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
2118     if (Pattern->isInvalidDecl())
2119       return QualType();
2120 
2121     TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
2122                                       Converted.data(), Converted.size());
2123 
2124     // Only substitute for the innermost template argument list.
2125     MultiLevelTemplateArgumentList TemplateArgLists;
2126     TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
2127     unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
2128     for (unsigned I = 0; I < Depth; ++I)
2129       TemplateArgLists.addOuterTemplateArguments(None);
2130 
2131     LocalInstantiationScope Scope(*this);
2132     InstantiatingTemplate Inst(*this, TemplateLoc, Template);
2133     if (Inst.isInvalid())
2134       return QualType();
2135 
2136     CanonType = SubstType(Pattern->getUnderlyingType(),
2137                           TemplateArgLists, AliasTemplate->getLocation(),
2138                           AliasTemplate->getDeclName());
2139     if (CanonType.isNull())
2140       return QualType();
2141   } else if (Name.isDependent() ||
2142              TemplateSpecializationType::anyDependentTemplateArguments(
2143                TemplateArgs, InstantiationDependent)) {
2144     // This class template specialization is a dependent
2145     // type. Therefore, its canonical type is another class template
2146     // specialization type that contains all of the converted
2147     // arguments in canonical form. This ensures that, e.g., A<T> and
2148     // A<T, T> have identical types when A is declared as:
2149     //
2150     //   template<typename T, typename U = T> struct A;
2151     TemplateName CanonName = Context.getCanonicalTemplateName(Name);
2152     CanonType = Context.getTemplateSpecializationType(CanonName,
2153                                                       Converted.data(),
2154                                                       Converted.size());
2155 
2156     // FIXME: CanonType is not actually the canonical type, and unfortunately
2157     // it is a TemplateSpecializationType that we will never use again.
2158     // In the future, we need to teach getTemplateSpecializationType to only
2159     // build the canonical type and return that to us.
2160     CanonType = Context.getCanonicalType(CanonType);
2161 
2162     // This might work out to be a current instantiation, in which
2163     // case the canonical type needs to be the InjectedClassNameType.
2164     //
2165     // TODO: in theory this could be a simple hashtable lookup; most
2166     // changes to CurContext don't change the set of current
2167     // instantiations.
2168     if (isa<ClassTemplateDecl>(Template)) {
2169       for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2170         // If we get out to a namespace, we're done.
2171         if (Ctx->isFileContext()) break;
2172 
2173         // If this isn't a record, keep looking.
2174         CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
2175         if (!Record) continue;
2176 
2177         // Look for one of the two cases with InjectedClassNameTypes
2178         // and check whether it's the same template.
2179         if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
2180             !Record->getDescribedClassTemplate())
2181           continue;
2182 
2183         // Fetch the injected class name type and check whether its
2184         // injected type is equal to the type we just built.
2185         QualType ICNT = Context.getTypeDeclType(Record);
2186         QualType Injected = cast<InjectedClassNameType>(ICNT)
2187           ->getInjectedSpecializationType();
2188 
2189         if (CanonType != Injected->getCanonicalTypeInternal())
2190           continue;
2191 
2192         // If so, the canonical type of this TST is the injected
2193         // class name type of the record we just found.
2194         assert(ICNT.isCanonical());
2195         CanonType = ICNT;
2196         break;
2197       }
2198     }
2199   } else if (ClassTemplateDecl *ClassTemplate
2200                = dyn_cast<ClassTemplateDecl>(Template)) {
2201     // Find the class template specialization declaration that
2202     // corresponds to these arguments.
2203     void *InsertPos = nullptr;
2204     ClassTemplateSpecializationDecl *Decl
2205       = ClassTemplate->findSpecialization(Converted, InsertPos);
2206     if (!Decl) {
2207       // This is the first time we have referenced this class template
2208       // specialization. Create the canonical declaration and add it to
2209       // the set of specializations.
2210       Decl = ClassTemplateSpecializationDecl::Create(Context,
2211                             ClassTemplate->getTemplatedDecl()->getTagKind(),
2212                                                 ClassTemplate->getDeclContext(),
2213                             ClassTemplate->getTemplatedDecl()->getLocStart(),
2214                                                 ClassTemplate->getLocation(),
2215                                                      ClassTemplate,
2216                                                      Converted.data(),
2217                                                      Converted.size(), nullptr);
2218       ClassTemplate->AddSpecialization(Decl, InsertPos);
2219       if (ClassTemplate->isOutOfLine())
2220         Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext());
2221     }
2222 
2223     // Diagnose uses of this specialization.
2224     (void)DiagnoseUseOfDecl(Decl, TemplateLoc);
2225 
2226     CanonType = Context.getTypeDeclType(Decl);
2227     assert(isa<RecordType>(CanonType) &&
2228            "type of non-dependent specialization is not a RecordType");
2229   } else if (auto *BTD = dyn_cast<BuiltinTemplateDecl>(Template)) {
2230     CanonType = checkBuiltinTemplateIdType(*this, BTD, Converted, TemplateLoc,
2231                                            TemplateArgs);
2232   }
2233 
2234   // Build the fully-sugared type for this class template
2235   // specialization, which refers back to the class template
2236   // specialization we created or found.
2237   return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
2238 }
2239 
2240 TypeResult
2241 Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
2242                           TemplateTy TemplateD, SourceLocation TemplateLoc,
2243                           SourceLocation LAngleLoc,
2244                           ASTTemplateArgsPtr TemplateArgsIn,
2245                           SourceLocation RAngleLoc,
2246                           bool IsCtorOrDtorName) {
2247   if (SS.isInvalid())
2248     return true;
2249 
2250   TemplateName Template = TemplateD.get();
2251 
2252   // Translate the parser's template argument list in our AST format.
2253   TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2254   translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2255 
2256   if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2257     QualType T
2258       = Context.getDependentTemplateSpecializationType(ETK_None,
2259                                                        DTN->getQualifier(),
2260                                                        DTN->getIdentifier(),
2261                                                        TemplateArgs);
2262     // Build type-source information.
2263     TypeLocBuilder TLB;
2264     DependentTemplateSpecializationTypeLoc SpecTL
2265       = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2266     SpecTL.setElaboratedKeywordLoc(SourceLocation());
2267     SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
2268     SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
2269     SpecTL.setTemplateNameLoc(TemplateLoc);
2270     SpecTL.setLAngleLoc(LAngleLoc);
2271     SpecTL.setRAngleLoc(RAngleLoc);
2272     for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2273       SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2274     return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2275   }
2276 
2277   QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2278 
2279   if (Result.isNull())
2280     return true;
2281 
2282   // Build type-source information.
2283   TypeLocBuilder TLB;
2284   TemplateSpecializationTypeLoc SpecTL
2285     = TLB.push<TemplateSpecializationTypeLoc>(Result);
2286   SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
2287   SpecTL.setTemplateNameLoc(TemplateLoc);
2288   SpecTL.setLAngleLoc(LAngleLoc);
2289   SpecTL.setRAngleLoc(RAngleLoc);
2290   for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2291     SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
2292 
2293   // NOTE: avoid constructing an ElaboratedTypeLoc if this is a
2294   // constructor or destructor name (in such a case, the scope specifier
2295   // will be attached to the enclosing Decl or Expr node).
2296   if (SS.isNotEmpty() && !IsCtorOrDtorName) {
2297     // Create an elaborated-type-specifier containing the nested-name-specifier.
2298     Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2299     ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2300     ElabTL.setElaboratedKeywordLoc(SourceLocation());
2301     ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2302   }
2303 
2304   return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
2305 }
2306 
2307 TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
2308                                         TypeSpecifierType TagSpec,
2309                                         SourceLocation TagLoc,
2310                                         CXXScopeSpec &SS,
2311                                         SourceLocation TemplateKWLoc,
2312                                         TemplateTy TemplateD,
2313                                         SourceLocation TemplateLoc,
2314                                         SourceLocation LAngleLoc,
2315                                         ASTTemplateArgsPtr TemplateArgsIn,
2316                                         SourceLocation RAngleLoc) {
2317   TemplateName Template = TemplateD.get();
2318 
2319   // Translate the parser's template argument list in our AST format.
2320   TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2321   translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2322 
2323   // Determine the tag kind
2324   TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
2325   ElaboratedTypeKeyword Keyword
2326     = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
2327 
2328   if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2329     QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2330                                                           DTN->getQualifier(),
2331                                                           DTN->getIdentifier(),
2332                                                                 TemplateArgs);
2333 
2334     // Build type-source information.
2335     TypeLocBuilder TLB;
2336     DependentTemplateSpecializationTypeLoc SpecTL
2337       = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2338     SpecTL.setElaboratedKeywordLoc(TagLoc);
2339     SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
2340     SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
2341     SpecTL.setTemplateNameLoc(TemplateLoc);
2342     SpecTL.setLAngleLoc(LAngleLoc);
2343     SpecTL.setRAngleLoc(RAngleLoc);
2344     for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2345       SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2346     return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2347   }
2348 
2349   if (TypeAliasTemplateDecl *TAT =
2350         dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2351     // C++0x [dcl.type.elab]p2:
2352     //   If the identifier resolves to a typedef-name or the simple-template-id
2353     //   resolves to an alias template specialization, the
2354     //   elaborated-type-specifier is ill-formed.
2355     Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2356     Diag(TAT->getLocation(), diag::note_declared_at);
2357   }
2358 
2359   QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2360   if (Result.isNull())
2361     return TypeResult(true);
2362 
2363   // Check the tag kind
2364   if (const RecordType *RT = Result->getAs<RecordType>()) {
2365     RecordDecl *D = RT->getDecl();
2366 
2367     IdentifierInfo *Id = D->getIdentifier();
2368     assert(Id && "templated class must have an identifier");
2369 
2370     if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
2371                                       TagLoc, Id)) {
2372       Diag(TagLoc, diag::err_use_with_wrong_tag)
2373         << Result
2374         << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
2375       Diag(D->getLocation(), diag::note_previous_use);
2376     }
2377   }
2378 
2379   // Provide source-location information for the template specialization.
2380   TypeLocBuilder TLB;
2381   TemplateSpecializationTypeLoc SpecTL
2382     = TLB.push<TemplateSpecializationTypeLoc>(Result);
2383   SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
2384   SpecTL.setTemplateNameLoc(TemplateLoc);
2385   SpecTL.setLAngleLoc(LAngleLoc);
2386   SpecTL.setRAngleLoc(RAngleLoc);
2387   for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2388     SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
2389 
2390   // Construct an elaborated type containing the nested-name-specifier (if any)
2391   // and tag keyword.
2392   Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2393   ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
2394   ElabTL.setElaboratedKeywordLoc(TagLoc);
2395   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2396   return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
2397 }
2398 
2399 static bool CheckTemplatePartialSpecializationArgs(
2400     Sema &S, SourceLocation NameLoc, TemplateParameterList *TemplateParams,
2401     unsigned ExplicitArgs, SmallVectorImpl<TemplateArgument> &TemplateArgs);
2402 
2403 static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized,
2404                                              NamedDecl *PrevDecl,
2405                                              SourceLocation Loc,
2406                                              bool IsPartialSpecialization);
2407 
2408 static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D);
2409 
2410 static bool isTemplateArgumentTemplateParameter(
2411     const TemplateArgument &Arg, unsigned Depth, unsigned Index) {
2412   switch (Arg.getKind()) {
2413   case TemplateArgument::Null:
2414   case TemplateArgument::NullPtr:
2415   case TemplateArgument::Integral:
2416   case TemplateArgument::Declaration:
2417   case TemplateArgument::Pack:
2418   case TemplateArgument::TemplateExpansion:
2419     return false;
2420 
2421   case TemplateArgument::Type: {
2422     QualType Type = Arg.getAsType();
2423     const TemplateTypeParmType *TPT =
2424         Arg.getAsType()->getAs<TemplateTypeParmType>();
2425     return TPT && !Type.hasQualifiers() &&
2426            TPT->getDepth() == Depth && TPT->getIndex() == Index;
2427   }
2428 
2429   case TemplateArgument::Expression: {
2430     DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg.getAsExpr());
2431     if (!DRE || !DRE->getDecl())
2432       return false;
2433     const NonTypeTemplateParmDecl *NTTP =
2434         dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
2435     return NTTP && NTTP->getDepth() == Depth && NTTP->getIndex() == Index;
2436   }
2437 
2438   case TemplateArgument::Template:
2439     const TemplateTemplateParmDecl *TTP =
2440         dyn_cast_or_null<TemplateTemplateParmDecl>(
2441             Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl());
2442     return TTP && TTP->getDepth() == Depth && TTP->getIndex() == Index;
2443   }
2444   llvm_unreachable("unexpected kind of template argument");
2445 }
2446 
2447 static bool isSameAsPrimaryTemplate(TemplateParameterList *Params,
2448                                     ArrayRef<TemplateArgument> Args) {
2449   if (Params->size() != Args.size())
2450     return false;
2451 
2452   unsigned Depth = Params->getDepth();
2453 
2454   for (unsigned I = 0, N = Args.size(); I != N; ++I) {
2455     TemplateArgument Arg = Args[I];
2456 
2457     // If the parameter is a pack expansion, the argument must be a pack
2458     // whose only element is a pack expansion.
2459     if (Params->getParam(I)->isParameterPack()) {
2460       if (Arg.getKind() != TemplateArgument::Pack || Arg.pack_size() != 1 ||
2461           !Arg.pack_begin()->isPackExpansion())
2462         return false;
2463       Arg = Arg.pack_begin()->getPackExpansionPattern();
2464     }
2465 
2466     if (!isTemplateArgumentTemplateParameter(Arg, Depth, I))
2467       return false;
2468   }
2469 
2470   return true;
2471 }
2472 
2473 /// Convert the parser's template argument list representation into our form.
2474 static TemplateArgumentListInfo
2475 makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId) {
2476   TemplateArgumentListInfo TemplateArgs(TemplateId.LAngleLoc,
2477                                         TemplateId.RAngleLoc);
2478   ASTTemplateArgsPtr TemplateArgsPtr(TemplateId.getTemplateArgs(),
2479                                      TemplateId.NumArgs);
2480   S.translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
2481   return TemplateArgs;
2482 }
2483 
2484 DeclResult Sema::ActOnVarTemplateSpecialization(
2485     Scope *S, Declarator &D, TypeSourceInfo *DI, SourceLocation TemplateKWLoc,
2486     TemplateParameterList *TemplateParams, StorageClass SC,
2487     bool IsPartialSpecialization) {
2488   // D must be variable template id.
2489   assert(D.getName().getKind() == UnqualifiedId::IK_TemplateId &&
2490          "Variable template specialization is declared with a template it.");
2491 
2492   TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
2493   TemplateArgumentListInfo TemplateArgs =
2494       makeTemplateArgumentListInfo(*this, *TemplateId);
2495   SourceLocation TemplateNameLoc = D.getIdentifierLoc();
2496   SourceLocation LAngleLoc = TemplateId->LAngleLoc;
2497   SourceLocation RAngleLoc = TemplateId->RAngleLoc;
2498 
2499   TemplateName Name = TemplateId->Template.get();
2500 
2501   // The template-id must name a variable template.
2502   VarTemplateDecl *VarTemplate =
2503       dyn_cast_or_null<VarTemplateDecl>(Name.getAsTemplateDecl());
2504   if (!VarTemplate) {
2505     NamedDecl *FnTemplate;
2506     if (auto *OTS = Name.getAsOverloadedTemplate())
2507       FnTemplate = *OTS->begin();
2508     else
2509       FnTemplate = dyn_cast_or_null<FunctionTemplateDecl>(Name.getAsTemplateDecl());
2510     if (FnTemplate)
2511       return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template_but_method)
2512                << FnTemplate->getDeclName();
2513     return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template)
2514              << IsPartialSpecialization;
2515   }
2516 
2517   // Check for unexpanded parameter packs in any of the template arguments.
2518   for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2519     if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
2520                                         UPPC_PartialSpecialization))
2521       return true;
2522 
2523   // Check that the template argument list is well-formed for this
2524   // template.
2525   SmallVector<TemplateArgument, 4> Converted;
2526   if (CheckTemplateArgumentList(VarTemplate, TemplateNameLoc, TemplateArgs,
2527                                 false, Converted))
2528     return true;
2529 
2530   // Find the variable template (partial) specialization declaration that
2531   // corresponds to these arguments.
2532   if (IsPartialSpecialization) {
2533     if (CheckTemplatePartialSpecializationArgs(
2534             *this, TemplateNameLoc, VarTemplate->getTemplateParameters(),
2535             TemplateArgs.size(), Converted))
2536       return true;
2537 
2538     bool InstantiationDependent;
2539     if (!Name.isDependent() &&
2540         !TemplateSpecializationType::anyDependentTemplateArguments(
2541             TemplateArgs.getArgumentArray(), TemplateArgs.size(),
2542             InstantiationDependent)) {
2543       Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
2544           << VarTemplate->getDeclName();
2545       IsPartialSpecialization = false;
2546     }
2547 
2548     if (isSameAsPrimaryTemplate(VarTemplate->getTemplateParameters(),
2549                                 Converted)) {
2550       // C++ [temp.class.spec]p9b3:
2551       //
2552       //   -- The argument list of the specialization shall not be identical
2553       //      to the implicit argument list of the primary template.
2554       Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
2555         << /*variable template*/ 1
2556         << /*is definition*/(SC != SC_Extern && !CurContext->isRecord())
2557         << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
2558       // FIXME: Recover from this by treating the declaration as a redeclaration
2559       // of the primary template.
2560       return true;
2561     }
2562   }
2563 
2564   void *InsertPos = nullptr;
2565   VarTemplateSpecializationDecl *PrevDecl = nullptr;
2566 
2567   if (IsPartialSpecialization)
2568     // FIXME: Template parameter list matters too
2569     PrevDecl = VarTemplate->findPartialSpecialization(Converted, InsertPos);
2570   else
2571     PrevDecl = VarTemplate->findSpecialization(Converted, InsertPos);
2572 
2573   VarTemplateSpecializationDecl *Specialization = nullptr;
2574 
2575   // Check whether we can declare a variable template specialization in
2576   // the current scope.
2577   if (CheckTemplateSpecializationScope(*this, VarTemplate, PrevDecl,
2578                                        TemplateNameLoc,
2579                                        IsPartialSpecialization))
2580     return true;
2581 
2582   if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) {
2583     // Since the only prior variable template specialization with these
2584     // arguments was referenced but not declared,  reuse that
2585     // declaration node as our own, updating its source location and
2586     // the list of outer template parameters to reflect our new declaration.
2587     Specialization = PrevDecl;
2588     Specialization->setLocation(TemplateNameLoc);
2589     PrevDecl = nullptr;
2590   } else if (IsPartialSpecialization) {
2591     // Create a new class template partial specialization declaration node.
2592     VarTemplatePartialSpecializationDecl *PrevPartial =
2593         cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl);
2594     VarTemplatePartialSpecializationDecl *Partial =
2595         VarTemplatePartialSpecializationDecl::Create(
2596             Context, VarTemplate->getDeclContext(), TemplateKWLoc,
2597             TemplateNameLoc, TemplateParams, VarTemplate, DI->getType(), DI, SC,
2598             Converted.data(), Converted.size(), TemplateArgs);
2599 
2600     if (!PrevPartial)
2601       VarTemplate->AddPartialSpecialization(Partial, InsertPos);
2602     Specialization = Partial;
2603 
2604     // If we are providing an explicit specialization of a member variable
2605     // template specialization, make a note of that.
2606     if (PrevPartial && PrevPartial->getInstantiatedFromMember())
2607       PrevPartial->setMemberSpecialization();
2608 
2609     // Check that all of the template parameters of the variable template
2610     // partial specialization are deducible from the template
2611     // arguments. If not, this variable template partial specialization
2612     // will never be used.
2613     llvm::SmallBitVector DeducibleParams(TemplateParams->size());
2614     MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
2615                                TemplateParams->getDepth(), DeducibleParams);
2616 
2617     if (!DeducibleParams.all()) {
2618       unsigned NumNonDeducible =
2619           DeducibleParams.size() - DeducibleParams.count();
2620       Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
2621         << /*variable template*/ 1 << (NumNonDeducible > 1)
2622         << SourceRange(TemplateNameLoc, RAngleLoc);
2623       for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
2624         if (!DeducibleParams[I]) {
2625           NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
2626           if (Param->getDeclName())
2627             Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
2628                 << Param->getDeclName();
2629           else
2630             Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
2631                 << "(anonymous)";
2632         }
2633       }
2634     }
2635   } else {
2636     // Create a new class template specialization declaration node for
2637     // this explicit specialization or friend declaration.
2638     Specialization = VarTemplateSpecializationDecl::Create(
2639         Context, VarTemplate->getDeclContext(), TemplateKWLoc, TemplateNameLoc,
2640         VarTemplate, DI->getType(), DI, SC, Converted.data(), Converted.size());
2641     Specialization->setTemplateArgsInfo(TemplateArgs);
2642 
2643     if (!PrevDecl)
2644       VarTemplate->AddSpecialization(Specialization, InsertPos);
2645   }
2646 
2647   // C++ [temp.expl.spec]p6:
2648   //   If a template, a member template or the member of a class template is
2649   //   explicitly specialized then that specialization shall be declared
2650   //   before the first use of that specialization that would cause an implicit
2651   //   instantiation to take place, in every translation unit in which such a
2652   //   use occurs; no diagnostic is required.
2653   if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
2654     bool Okay = false;
2655     for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
2656       // Is there any previous explicit specialization declaration?
2657       if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
2658         Okay = true;
2659         break;
2660       }
2661     }
2662 
2663     if (!Okay) {
2664       SourceRange Range(TemplateNameLoc, RAngleLoc);
2665       Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
2666           << Name << Range;
2667 
2668       Diag(PrevDecl->getPointOfInstantiation(),
2669            diag::note_instantiation_required_here)
2670           << (PrevDecl->getTemplateSpecializationKind() !=
2671               TSK_ImplicitInstantiation);
2672       return true;
2673     }
2674   }
2675 
2676   Specialization->setTemplateKeywordLoc(TemplateKWLoc);
2677   Specialization->setLexicalDeclContext(CurContext);
2678 
2679   // Add the specialization into its lexical context, so that it can
2680   // be seen when iterating through the list of declarations in that
2681   // context. However, specializations are not found by name lookup.
2682   CurContext->addDecl(Specialization);
2683 
2684   // Note that this is an explicit specialization.
2685   Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
2686 
2687   if (PrevDecl) {
2688     // Check that this isn't a redefinition of this specialization,
2689     // merging with previous declarations.
2690     LookupResult PrevSpec(*this, GetNameForDeclarator(D), LookupOrdinaryName,
2691                           ForRedeclaration);
2692     PrevSpec.addDecl(PrevDecl);
2693     D.setRedeclaration(CheckVariableDeclaration(Specialization, PrevSpec));
2694   } else if (Specialization->isStaticDataMember() &&
2695              Specialization->isOutOfLine()) {
2696     Specialization->setAccess(VarTemplate->getAccess());
2697   }
2698 
2699   // Link instantiations of static data members back to the template from
2700   // which they were instantiated.
2701   if (Specialization->isStaticDataMember())
2702     Specialization->setInstantiationOfStaticDataMember(
2703         VarTemplate->getTemplatedDecl(),
2704         Specialization->getSpecializationKind());
2705 
2706   return Specialization;
2707 }
2708 
2709 namespace {
2710 /// \brief A partial specialization whose template arguments have matched
2711 /// a given template-id.
2712 struct PartialSpecMatchResult {
2713   VarTemplatePartialSpecializationDecl *Partial;
2714   TemplateArgumentList *Args;
2715 };
2716 }
2717 
2718 DeclResult
2719 Sema::CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc,
2720                          SourceLocation TemplateNameLoc,
2721                          const TemplateArgumentListInfo &TemplateArgs) {
2722   assert(Template && "A variable template id without template?");
2723 
2724   // Check that the template argument list is well-formed for this template.
2725   SmallVector<TemplateArgument, 4> Converted;
2726   if (CheckTemplateArgumentList(
2727           Template, TemplateNameLoc,
2728           const_cast<TemplateArgumentListInfo &>(TemplateArgs), false,
2729           Converted))
2730     return true;
2731 
2732   // Find the variable template specialization declaration that
2733   // corresponds to these arguments.
2734   void *InsertPos = nullptr;
2735   if (VarTemplateSpecializationDecl *Spec = Template->findSpecialization(
2736           Converted, InsertPos))
2737     // If we already have a variable template specialization, return it.
2738     return Spec;
2739 
2740   // This is the first time we have referenced this variable template
2741   // specialization. Create the canonical declaration and add it to
2742   // the set of specializations, based on the closest partial specialization
2743   // that it represents. That is,
2744   VarDecl *InstantiationPattern = Template->getTemplatedDecl();
2745   TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack,
2746                                        Converted.data(), Converted.size());
2747   TemplateArgumentList *InstantiationArgs = &TemplateArgList;
2748   bool AmbiguousPartialSpec = false;
2749   typedef PartialSpecMatchResult MatchResult;
2750   SmallVector<MatchResult, 4> Matched;
2751   SourceLocation PointOfInstantiation = TemplateNameLoc;
2752   TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation,
2753                                             /*ForTakingAddress=*/false);
2754 
2755   // 1. Attempt to find the closest partial specialization that this
2756   // specializes, if any.
2757   // If any of the template arguments is dependent, then this is probably
2758   // a placeholder for an incomplete declarative context; which must be
2759   // complete by instantiation time. Thus, do not search through the partial
2760   // specializations yet.
2761   // TODO: Unify with InstantiateClassTemplateSpecialization()?
2762   //       Perhaps better after unification of DeduceTemplateArguments() and
2763   //       getMoreSpecializedPartialSpecialization().
2764   bool InstantiationDependent = false;
2765   if (!TemplateSpecializationType::anyDependentTemplateArguments(
2766           TemplateArgs, InstantiationDependent)) {
2767 
2768     SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
2769     Template->getPartialSpecializations(PartialSpecs);
2770 
2771     for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
2772       VarTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
2773       TemplateDeductionInfo Info(FailedCandidates.getLocation());
2774 
2775       if (TemplateDeductionResult Result =
2776               DeduceTemplateArguments(Partial, TemplateArgList, Info)) {
2777         // Store the failed-deduction information for use in diagnostics, later.
2778         // TODO: Actually use the failed-deduction info?
2779         FailedCandidates.addCandidate()
2780             .set(Partial, MakeDeductionFailureInfo(Context, Result, Info));
2781         (void)Result;
2782       } else {
2783         Matched.push_back(PartialSpecMatchResult());
2784         Matched.back().Partial = Partial;
2785         Matched.back().Args = Info.take();
2786       }
2787     }
2788 
2789     if (Matched.size() >= 1) {
2790       SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
2791       if (Matched.size() == 1) {
2792         //   -- If exactly one matching specialization is found, the
2793         //      instantiation is generated from that specialization.
2794         // We don't need to do anything for this.
2795       } else {
2796         //   -- If more than one matching specialization is found, the
2797         //      partial order rules (14.5.4.2) are used to determine
2798         //      whether one of the specializations is more specialized
2799         //      than the others. If none of the specializations is more
2800         //      specialized than all of the other matching
2801         //      specializations, then the use of the variable template is
2802         //      ambiguous and the program is ill-formed.
2803         for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
2804                                                    PEnd = Matched.end();
2805              P != PEnd; ++P) {
2806           if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
2807                                                       PointOfInstantiation) ==
2808               P->Partial)
2809             Best = P;
2810         }
2811 
2812         // Determine if the best partial specialization is more specialized than
2813         // the others.
2814         for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
2815                                                    PEnd = Matched.end();
2816              P != PEnd; ++P) {
2817           if (P != Best && getMoreSpecializedPartialSpecialization(
2818                                P->Partial, Best->Partial,
2819                                PointOfInstantiation) != Best->Partial) {
2820             AmbiguousPartialSpec = true;
2821             break;
2822           }
2823         }
2824       }
2825 
2826       // Instantiate using the best variable template partial specialization.
2827       InstantiationPattern = Best->Partial;
2828       InstantiationArgs = Best->Args;
2829     } else {
2830       //   -- If no match is found, the instantiation is generated
2831       //      from the primary template.
2832       // InstantiationPattern = Template->getTemplatedDecl();
2833     }
2834   }
2835 
2836   // 2. Create the canonical declaration.
2837   // Note that we do not instantiate the variable just yet, since
2838   // instantiation is handled in DoMarkVarDeclReferenced().
2839   // FIXME: LateAttrs et al.?
2840   VarTemplateSpecializationDecl *Decl = BuildVarTemplateInstantiation(
2841       Template, InstantiationPattern, *InstantiationArgs, TemplateArgs,
2842       Converted, TemplateNameLoc, InsertPos /*, LateAttrs, StartingScope*/);
2843   if (!Decl)
2844     return true;
2845 
2846   if (AmbiguousPartialSpec) {
2847     // Partial ordering did not produce a clear winner. Complain.
2848     Decl->setInvalidDecl();
2849     Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2850         << Decl;
2851 
2852     // Print the matching partial specializations.
2853     for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
2854                                                PEnd = Matched.end();
2855          P != PEnd; ++P)
2856       Diag(P->Partial->getLocation(), diag::note_partial_spec_match)
2857           << getTemplateArgumentBindingsText(
2858                  P->Partial->getTemplateParameters(), *P->Args);
2859     return true;
2860   }
2861 
2862   if (VarTemplatePartialSpecializationDecl *D =
2863           dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern))
2864     Decl->setInstantiationOf(D, InstantiationArgs);
2865 
2866   assert(Decl && "No variable template specialization?");
2867   return Decl;
2868 }
2869 
2870 ExprResult
2871 Sema::CheckVarTemplateId(const CXXScopeSpec &SS,
2872                          const DeclarationNameInfo &NameInfo,
2873                          VarTemplateDecl *Template, SourceLocation TemplateLoc,
2874                          const TemplateArgumentListInfo *TemplateArgs) {
2875 
2876   DeclResult Decl = CheckVarTemplateId(Template, TemplateLoc, NameInfo.getLoc(),
2877                                        *TemplateArgs);
2878   if (Decl.isInvalid())
2879     return ExprError();
2880 
2881   VarDecl *Var = cast<VarDecl>(Decl.get());
2882   if (!Var->getTemplateSpecializationKind())
2883     Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation,
2884                                        NameInfo.getLoc());
2885 
2886   // Build an ordinary singleton decl ref.
2887   return BuildDeclarationNameExpr(SS, NameInfo, Var,
2888                                   /*FoundD=*/nullptr, TemplateArgs);
2889 }
2890 
2891 ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
2892                                      SourceLocation TemplateKWLoc,
2893                                      LookupResult &R,
2894                                      bool RequiresADL,
2895                                  const TemplateArgumentListInfo *TemplateArgs) {
2896   // FIXME: Can we do any checking at this point? I guess we could check the
2897   // template arguments that we have against the template name, if the template
2898   // name refers to a single template. That's not a terribly common case,
2899   // though.
2900   // foo<int> could identify a single function unambiguously
2901   // This approach does NOT work, since f<int>(1);
2902   // gets resolved prior to resorting to overload resolution
2903   // i.e., template<class T> void f(double);
2904   //       vs template<class T, class U> void f(U);
2905 
2906   // These should be filtered out by our callers.
2907   assert(!R.empty() && "empty lookup results when building templateid");
2908   assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2909 
2910   // In C++1y, check variable template ids.
2911   bool InstantiationDependent;
2912   if (R.getAsSingle<VarTemplateDecl>() &&
2913       !TemplateSpecializationType::anyDependentTemplateArguments(
2914            *TemplateArgs, InstantiationDependent)) {
2915     return CheckVarTemplateId(SS, R.getLookupNameInfo(),
2916                               R.getAsSingle<VarTemplateDecl>(),
2917                               TemplateKWLoc, TemplateArgs);
2918   }
2919 
2920   // We don't want lookup warnings at this point.
2921   R.suppressDiagnostics();
2922 
2923   UnresolvedLookupExpr *ULE
2924     = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
2925                                    SS.getWithLocInContext(Context),
2926                                    TemplateKWLoc,
2927                                    R.getLookupNameInfo(),
2928                                    RequiresADL, TemplateArgs,
2929                                    R.begin(), R.end());
2930 
2931   return ULE;
2932 }
2933 
2934 // We actually only call this from template instantiation.
2935 ExprResult
2936 Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
2937                                    SourceLocation TemplateKWLoc,
2938                                    const DeclarationNameInfo &NameInfo,
2939                              const TemplateArgumentListInfo *TemplateArgs) {
2940 
2941   assert(TemplateArgs || TemplateKWLoc.isValid());
2942   DeclContext *DC;
2943   if (!(DC = computeDeclContext(SS, false)) ||
2944       DC->isDependentContext() ||
2945       RequireCompleteDeclContext(SS, DC))
2946     return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
2947 
2948   bool MemberOfUnknownSpecialization;
2949   LookupResult R(*this, NameInfo, LookupOrdinaryName);
2950   LookupTemplateName(R, (Scope*)nullptr, SS, QualType(), /*Entering*/ false,
2951                      MemberOfUnknownSpecialization);
2952 
2953   if (R.isAmbiguous())
2954     return ExprError();
2955 
2956   if (R.empty()) {
2957     Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2958       << NameInfo.getName() << SS.getRange();
2959     return ExprError();
2960   }
2961 
2962   if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
2963     Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
2964       << SS.getScopeRep()
2965       << NameInfo.getName().getAsString() << SS.getRange();
2966     Diag(Temp->getLocation(), diag::note_referenced_class_template);
2967     return ExprError();
2968   }
2969 
2970   return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs);
2971 }
2972 
2973 /// \brief Form a dependent template name.
2974 ///
2975 /// This action forms a dependent template name given the template
2976 /// name and its (presumably dependent) scope specifier. For
2977 /// example, given "MetaFun::template apply", the scope specifier \p
2978 /// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2979 /// of the "template" keyword, and "apply" is the \p Name.
2980 TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
2981                                                   CXXScopeSpec &SS,
2982                                                   SourceLocation TemplateKWLoc,
2983                                                   UnqualifiedId &Name,
2984                                                   ParsedType ObjectType,
2985                                                   bool EnteringContext,
2986                                                   TemplateTy &Result) {
2987   if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent())
2988     Diag(TemplateKWLoc,
2989          getLangOpts().CPlusPlus11 ?
2990            diag::warn_cxx98_compat_template_outside_of_template :
2991            diag::ext_template_outside_of_template)
2992       << FixItHint::CreateRemoval(TemplateKWLoc);
2993 
2994   DeclContext *LookupCtx = nullptr;
2995   if (SS.isSet())
2996     LookupCtx = computeDeclContext(SS, EnteringContext);
2997   if (!LookupCtx && ObjectType)
2998     LookupCtx = computeDeclContext(ObjectType.get());
2999   if (LookupCtx) {
3000     // C++0x [temp.names]p5:
3001     //   If a name prefixed by the keyword template is not the name of
3002     //   a template, the program is ill-formed. [Note: the keyword
3003     //   template may not be applied to non-template members of class
3004     //   templates. -end note ] [ Note: as is the case with the
3005     //   typename prefix, the template prefix is allowed in cases
3006     //   where it is not strictly necessary; i.e., when the
3007     //   nested-name-specifier or the expression on the left of the ->
3008     //   or . is not dependent on a template-parameter, or the use
3009     //   does not appear in the scope of a template. -end note]
3010     //
3011     // Note: C++03 was more strict here, because it banned the use of
3012     // the "template" keyword prior to a template-name that was not a
3013     // dependent name. C++ DR468 relaxed this requirement (the
3014     // "template" keyword is now permitted). We follow the C++0x
3015     // rules, even in C++03 mode with a warning, retroactively applying the DR.
3016     bool MemberOfUnknownSpecialization;
3017     TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name,
3018                                           ObjectType, EnteringContext, Result,
3019                                           MemberOfUnknownSpecialization);
3020     if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
3021         isa<CXXRecordDecl>(LookupCtx) &&
3022         (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
3023          cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
3024       // This is a dependent template. Handle it below.
3025     } else if (TNK == TNK_Non_template) {
3026       Diag(Name.getLocStart(),
3027            diag::err_template_kw_refers_to_non_template)
3028         << GetNameFromUnqualifiedId(Name).getName()
3029         << Name.getSourceRange()
3030         << TemplateKWLoc;
3031       return TNK_Non_template;
3032     } else {
3033       // We found something; return it.
3034       return TNK;
3035     }
3036   }
3037 
3038   NestedNameSpecifier *Qualifier = SS.getScopeRep();
3039 
3040   switch (Name.getKind()) {
3041   case UnqualifiedId::IK_Identifier:
3042     Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
3043                                                               Name.Identifier));
3044     return TNK_Dependent_template_name;
3045 
3046   case UnqualifiedId::IK_OperatorFunctionId:
3047     Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
3048                                              Name.OperatorFunctionId.Operator));
3049     return TNK_Function_template;
3050 
3051   case UnqualifiedId::IK_LiteralOperatorId:
3052     llvm_unreachable("literal operator id cannot have a dependent scope");
3053 
3054   default:
3055     break;
3056   }
3057 
3058   Diag(Name.getLocStart(),
3059        diag::err_template_kw_refers_to_non_template)
3060     << GetNameFromUnqualifiedId(Name).getName()
3061     << Name.getSourceRange()
3062     << TemplateKWLoc;
3063   return TNK_Non_template;
3064 }
3065 
3066 bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
3067                                      TemplateArgumentLoc &AL,
3068                           SmallVectorImpl<TemplateArgument> &Converted) {
3069   const TemplateArgument &Arg = AL.getArgument();
3070   QualType ArgType;
3071   TypeSourceInfo *TSI = nullptr;
3072 
3073   // Check template type parameter.
3074   switch(Arg.getKind()) {
3075   case TemplateArgument::Type:
3076     // C++ [temp.arg.type]p1:
3077     //   A template-argument for a template-parameter which is a
3078     //   type shall be a type-id.
3079     ArgType = Arg.getAsType();
3080     TSI = AL.getTypeSourceInfo();
3081     break;
3082   case TemplateArgument::Template: {
3083     // We have a template type parameter but the template argument
3084     // is a template without any arguments.
3085     SourceRange SR = AL.getSourceRange();
3086     TemplateName Name = Arg.getAsTemplate();
3087     Diag(SR.getBegin(), diag::err_template_missing_args)
3088       << Name << SR;
3089     if (TemplateDecl *Decl = Name.getAsTemplateDecl())
3090       Diag(Decl->getLocation(), diag::note_template_decl_here);
3091 
3092     return true;
3093   }
3094   case TemplateArgument::Expression: {
3095     // We have a template type parameter but the template argument is an
3096     // expression; see if maybe it is missing the "typename" keyword.
3097     CXXScopeSpec SS;
3098     DeclarationNameInfo NameInfo;
3099 
3100     if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) {
3101       SS.Adopt(ArgExpr->getQualifierLoc());
3102       NameInfo = ArgExpr->getNameInfo();
3103     } else if (DependentScopeDeclRefExpr *ArgExpr =
3104                dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) {
3105       SS.Adopt(ArgExpr->getQualifierLoc());
3106       NameInfo = ArgExpr->getNameInfo();
3107     } else if (CXXDependentScopeMemberExpr *ArgExpr =
3108                dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) {
3109       if (ArgExpr->isImplicitAccess()) {
3110         SS.Adopt(ArgExpr->getQualifierLoc());
3111         NameInfo = ArgExpr->getMemberNameInfo();
3112       }
3113     }
3114 
3115     if (auto *II = NameInfo.getName().getAsIdentifierInfo()) {
3116       LookupResult Result(*this, NameInfo, LookupOrdinaryName);
3117       LookupParsedName(Result, CurScope, &SS);
3118 
3119       if (Result.getAsSingle<TypeDecl>() ||
3120           Result.getResultKind() ==
3121               LookupResult::NotFoundInCurrentInstantiation) {
3122         // Suggest that the user add 'typename' before the NNS.
3123         SourceLocation Loc = AL.getSourceRange().getBegin();
3124         Diag(Loc, getLangOpts().MSVCCompat
3125                       ? diag::ext_ms_template_type_arg_missing_typename
3126                       : diag::err_template_arg_must_be_type_suggest)
3127             << FixItHint::CreateInsertion(Loc, "typename ");
3128         Diag(Param->getLocation(), diag::note_template_param_here);
3129 
3130         // Recover by synthesizing a type using the location information that we
3131         // already have.
3132         ArgType =
3133             Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II);
3134         TypeLocBuilder TLB;
3135         DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(ArgType);
3136         TL.setElaboratedKeywordLoc(SourceLocation(/*synthesized*/));
3137         TL.setQualifierLoc(SS.getWithLocInContext(Context));
3138         TL.setNameLoc(NameInfo.getLoc());
3139         TSI = TLB.getTypeSourceInfo(Context, ArgType);
3140 
3141         // Overwrite our input TemplateArgumentLoc so that we can recover
3142         // properly.
3143         AL = TemplateArgumentLoc(TemplateArgument(ArgType),
3144                                  TemplateArgumentLocInfo(TSI));
3145 
3146         break;
3147       }
3148     }
3149     // fallthrough
3150   }
3151   default: {
3152     // We have a template type parameter but the template argument
3153     // is not a type.
3154     SourceRange SR = AL.getSourceRange();
3155     Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
3156     Diag(Param->getLocation(), diag::note_template_param_here);
3157 
3158     return true;
3159   }
3160   }
3161 
3162   if (CheckTemplateArgument(Param, TSI))
3163     return true;
3164 
3165   // Add the converted template type argument.
3166   ArgType = Context.getCanonicalType(ArgType);
3167 
3168   // Objective-C ARC:
3169   //   If an explicitly-specified template argument type is a lifetime type
3170   //   with no lifetime qualifier, the __strong lifetime qualifier is inferred.
3171   if (getLangOpts().ObjCAutoRefCount &&
3172       ArgType->isObjCLifetimeType() &&
3173       !ArgType.getObjCLifetime()) {
3174     Qualifiers Qs;
3175     Qs.setObjCLifetime(Qualifiers::OCL_Strong);
3176     ArgType = Context.getQualifiedType(ArgType, Qs);
3177   }
3178 
3179   Converted.push_back(TemplateArgument(ArgType));
3180   return false;
3181 }
3182 
3183 /// \brief Substitute template arguments into the default template argument for
3184 /// the given template type parameter.
3185 ///
3186 /// \param SemaRef the semantic analysis object for which we are performing
3187 /// the substitution.
3188 ///
3189 /// \param Template the template that we are synthesizing template arguments
3190 /// for.
3191 ///
3192 /// \param TemplateLoc the location of the template name that started the
3193 /// template-id we are checking.
3194 ///
3195 /// \param RAngleLoc the location of the right angle bracket ('>') that
3196 /// terminates the template-id.
3197 ///
3198 /// \param Param the template template parameter whose default we are
3199 /// substituting into.
3200 ///
3201 /// \param Converted the list of template arguments provided for template
3202 /// parameters that precede \p Param in the template parameter list.
3203 /// \returns the substituted template argument, or NULL if an error occurred.
3204 static TypeSourceInfo *
3205 SubstDefaultTemplateArgument(Sema &SemaRef,
3206                              TemplateDecl *Template,
3207                              SourceLocation TemplateLoc,
3208                              SourceLocation RAngleLoc,
3209                              TemplateTypeParmDecl *Param,
3210                          SmallVectorImpl<TemplateArgument> &Converted) {
3211   TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
3212 
3213   // If the argument type is dependent, instantiate it now based
3214   // on the previously-computed template arguments.
3215   if (ArgType->getType()->isDependentType()) {
3216     Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
3217                                      Template, Converted,
3218                                      SourceRange(TemplateLoc, RAngleLoc));
3219     if (Inst.isInvalid())
3220       return nullptr;
3221 
3222     TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3223                                       Converted.data(), Converted.size());
3224 
3225     // Only substitute for the innermost template argument list.
3226     MultiLevelTemplateArgumentList TemplateArgLists;
3227     TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3228     for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3229       TemplateArgLists.addOuterTemplateArguments(None);
3230 
3231     Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
3232     ArgType =
3233         SemaRef.SubstType(ArgType, TemplateArgLists,
3234                           Param->getDefaultArgumentLoc(), Param->getDeclName());
3235   }
3236 
3237   return ArgType;
3238 }
3239 
3240 /// \brief Substitute template arguments into the default template argument for
3241 /// the given non-type template parameter.
3242 ///
3243 /// \param SemaRef the semantic analysis object for which we are performing
3244 /// the substitution.
3245 ///
3246 /// \param Template the template that we are synthesizing template arguments
3247 /// for.
3248 ///
3249 /// \param TemplateLoc the location of the template name that started the
3250 /// template-id we are checking.
3251 ///
3252 /// \param RAngleLoc the location of the right angle bracket ('>') that
3253 /// terminates the template-id.
3254 ///
3255 /// \param Param the non-type template parameter whose default we are
3256 /// substituting into.
3257 ///
3258 /// \param Converted the list of template arguments provided for template
3259 /// parameters that precede \p Param in the template parameter list.
3260 ///
3261 /// \returns the substituted template argument, or NULL if an error occurred.
3262 static ExprResult
3263 SubstDefaultTemplateArgument(Sema &SemaRef,
3264                              TemplateDecl *Template,
3265                              SourceLocation TemplateLoc,
3266                              SourceLocation RAngleLoc,
3267                              NonTypeTemplateParmDecl *Param,
3268                         SmallVectorImpl<TemplateArgument> &Converted) {
3269   Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
3270                                    Template, Converted,
3271                                    SourceRange(TemplateLoc, RAngleLoc));
3272   if (Inst.isInvalid())
3273     return ExprError();
3274 
3275   TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3276                                     Converted.data(), Converted.size());
3277 
3278   // Only substitute for the innermost template argument list.
3279   MultiLevelTemplateArgumentList TemplateArgLists;
3280   TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3281   for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3282     TemplateArgLists.addOuterTemplateArguments(None);
3283 
3284   Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
3285   EnterExpressionEvaluationContext ConstantEvaluated(SemaRef,
3286                                                      Sema::ConstantEvaluated);
3287   return SemaRef.SubstExpr(Param->getDefaultArgument(), TemplateArgLists);
3288 }
3289 
3290 /// \brief Substitute template arguments into the default template argument for
3291 /// the given template template parameter.
3292 ///
3293 /// \param SemaRef the semantic analysis object for which we are performing
3294 /// the substitution.
3295 ///
3296 /// \param Template the template that we are synthesizing template arguments
3297 /// for.
3298 ///
3299 /// \param TemplateLoc the location of the template name that started the
3300 /// template-id we are checking.
3301 ///
3302 /// \param RAngleLoc the location of the right angle bracket ('>') that
3303 /// terminates the template-id.
3304 ///
3305 /// \param Param the template template parameter whose default we are
3306 /// substituting into.
3307 ///
3308 /// \param Converted the list of template arguments provided for template
3309 /// parameters that precede \p Param in the template parameter list.
3310 ///
3311 /// \param QualifierLoc Will be set to the nested-name-specifier (with
3312 /// source-location information) that precedes the template name.
3313 ///
3314 /// \returns the substituted template argument, or NULL if an error occurred.
3315 static TemplateName
3316 SubstDefaultTemplateArgument(Sema &SemaRef,
3317                              TemplateDecl *Template,
3318                              SourceLocation TemplateLoc,
3319                              SourceLocation RAngleLoc,
3320                              TemplateTemplateParmDecl *Param,
3321                        SmallVectorImpl<TemplateArgument> &Converted,
3322                              NestedNameSpecifierLoc &QualifierLoc) {
3323   Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc, Template, Converted,
3324                                    SourceRange(TemplateLoc, RAngleLoc));
3325   if (Inst.isInvalid())
3326     return TemplateName();
3327 
3328   TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3329                                     Converted.data(), Converted.size());
3330 
3331   // Only substitute for the innermost template argument list.
3332   MultiLevelTemplateArgumentList TemplateArgLists;
3333   TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3334   for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3335     TemplateArgLists.addOuterTemplateArguments(None);
3336 
3337   Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
3338   // Substitute into the nested-name-specifier first,
3339   QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
3340   if (QualifierLoc) {
3341     QualifierLoc =
3342         SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgLists);
3343     if (!QualifierLoc)
3344       return TemplateName();
3345   }
3346 
3347   return SemaRef.SubstTemplateName(
3348              QualifierLoc,
3349              Param->getDefaultArgument().getArgument().getAsTemplate(),
3350              Param->getDefaultArgument().getTemplateNameLoc(),
3351              TemplateArgLists);
3352 }
3353 
3354 /// \brief If the given template parameter has a default template
3355 /// argument, substitute into that default template argument and
3356 /// return the corresponding template argument.
3357 TemplateArgumentLoc
3358 Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
3359                                               SourceLocation TemplateLoc,
3360                                               SourceLocation RAngleLoc,
3361                                               Decl *Param,
3362                                               SmallVectorImpl<TemplateArgument>
3363                                                 &Converted,
3364                                               bool &HasDefaultArg) {
3365   HasDefaultArg = false;
3366 
3367   if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
3368     if (!hasVisibleDefaultArgument(TypeParm))
3369       return TemplateArgumentLoc();
3370 
3371     HasDefaultArg = true;
3372     TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
3373                                                       TemplateLoc,
3374                                                       RAngleLoc,
3375                                                       TypeParm,
3376                                                       Converted);
3377     if (DI)
3378       return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
3379 
3380     return TemplateArgumentLoc();
3381   }
3382 
3383   if (NonTypeTemplateParmDecl *NonTypeParm
3384         = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3385     if (!hasVisibleDefaultArgument(NonTypeParm))
3386       return TemplateArgumentLoc();
3387 
3388     HasDefaultArg = true;
3389     ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
3390                                                   TemplateLoc,
3391                                                   RAngleLoc,
3392                                                   NonTypeParm,
3393                                                   Converted);
3394     if (Arg.isInvalid())
3395       return TemplateArgumentLoc();
3396 
3397     Expr *ArgE = Arg.getAs<Expr>();
3398     return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
3399   }
3400 
3401   TemplateTemplateParmDecl *TempTempParm
3402     = cast<TemplateTemplateParmDecl>(Param);
3403   if (!hasVisibleDefaultArgument(TempTempParm))
3404     return TemplateArgumentLoc();
3405 
3406   HasDefaultArg = true;
3407   NestedNameSpecifierLoc QualifierLoc;
3408   TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
3409                                                     TemplateLoc,
3410                                                     RAngleLoc,
3411                                                     TempTempParm,
3412                                                     Converted,
3413                                                     QualifierLoc);
3414   if (TName.isNull())
3415     return TemplateArgumentLoc();
3416 
3417   return TemplateArgumentLoc(TemplateArgument(TName),
3418                 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
3419                 TempTempParm->getDefaultArgument().getTemplateNameLoc());
3420 }
3421 
3422 /// \brief Check that the given template argument corresponds to the given
3423 /// template parameter.
3424 ///
3425 /// \param Param The template parameter against which the argument will be
3426 /// checked.
3427 ///
3428 /// \param Arg The template argument, which may be updated due to conversions.
3429 ///
3430 /// \param Template The template in which the template argument resides.
3431 ///
3432 /// \param TemplateLoc The location of the template name for the template
3433 /// whose argument list we're matching.
3434 ///
3435 /// \param RAngleLoc The location of the right angle bracket ('>') that closes
3436 /// the template argument list.
3437 ///
3438 /// \param ArgumentPackIndex The index into the argument pack where this
3439 /// argument will be placed. Only valid if the parameter is a parameter pack.
3440 ///
3441 /// \param Converted The checked, converted argument will be added to the
3442 /// end of this small vector.
3443 ///
3444 /// \param CTAK Describes how we arrived at this particular template argument:
3445 /// explicitly written, deduced, etc.
3446 ///
3447 /// \returns true on error, false otherwise.
3448 bool Sema::CheckTemplateArgument(NamedDecl *Param,
3449                                  TemplateArgumentLoc &Arg,
3450                                  NamedDecl *Template,
3451                                  SourceLocation TemplateLoc,
3452                                  SourceLocation RAngleLoc,
3453                                  unsigned ArgumentPackIndex,
3454                             SmallVectorImpl<TemplateArgument> &Converted,
3455                                  CheckTemplateArgumentKind CTAK) {
3456   // Check template type parameters.
3457   if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
3458     return CheckTemplateTypeArgument(TTP, Arg, Converted);
3459 
3460   // Check non-type template parameters.
3461   if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3462     // Do substitution on the type of the non-type template parameter
3463     // with the template arguments we've seen thus far.  But if the
3464     // template has a dependent context then we cannot substitute yet.
3465     QualType NTTPType = NTTP->getType();
3466     if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
3467       NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
3468 
3469     if (NTTPType->isDependentType() &&
3470         !isa<TemplateTemplateParmDecl>(Template) &&
3471         !Template->getDeclContext()->isDependentContext()) {
3472       // Do substitution on the type of the non-type template parameter.
3473       InstantiatingTemplate Inst(*this, TemplateLoc, Template,
3474                                  NTTP, Converted,
3475                                  SourceRange(TemplateLoc, RAngleLoc));
3476       if (Inst.isInvalid())
3477         return true;
3478 
3479       TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3480                                         Converted.data(), Converted.size());
3481       NTTPType = SubstType(NTTPType,
3482                            MultiLevelTemplateArgumentList(TemplateArgs),
3483                            NTTP->getLocation(),
3484                            NTTP->getDeclName());
3485       // If that worked, check the non-type template parameter type
3486       // for validity.
3487       if (!NTTPType.isNull())
3488         NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
3489                                                      NTTP->getLocation());
3490       if (NTTPType.isNull())
3491         return true;
3492     }
3493 
3494     switch (Arg.getArgument().getKind()) {
3495     case TemplateArgument::Null:
3496       llvm_unreachable("Should never see a NULL template argument here");
3497 
3498     case TemplateArgument::Expression: {
3499       TemplateArgument Result;
3500       ExprResult Res =
3501         CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
3502                               Result, CTAK);
3503       if (Res.isInvalid())
3504         return true;
3505 
3506       // If the resulting expression is new, then use it in place of the
3507       // old expression in the template argument.
3508       if (Res.get() != Arg.getArgument().getAsExpr()) {
3509         TemplateArgument TA(Res.get());
3510         Arg = TemplateArgumentLoc(TA, Res.get());
3511       }
3512 
3513       Converted.push_back(Result);
3514       break;
3515     }
3516 
3517     case TemplateArgument::Declaration:
3518     case TemplateArgument::Integral:
3519     case TemplateArgument::NullPtr:
3520       // We've already checked this template argument, so just copy
3521       // it to the list of converted arguments.
3522       Converted.push_back(Arg.getArgument());
3523       break;
3524 
3525     case TemplateArgument::Template:
3526     case TemplateArgument::TemplateExpansion:
3527       // We were given a template template argument. It may not be ill-formed;
3528       // see below.
3529       if (DependentTemplateName *DTN
3530             = Arg.getArgument().getAsTemplateOrTemplatePattern()
3531                                               .getAsDependentTemplateName()) {
3532         // We have a template argument such as \c T::template X, which we
3533         // parsed as a template template argument. However, since we now
3534         // know that we need a non-type template argument, convert this
3535         // template name into an expression.
3536 
3537         DeclarationNameInfo NameInfo(DTN->getIdentifier(),
3538                                      Arg.getTemplateNameLoc());
3539 
3540         CXXScopeSpec SS;
3541         SS.Adopt(Arg.getTemplateQualifierLoc());
3542         // FIXME: the template-template arg was a DependentTemplateName,
3543         // so it was provided with a template keyword. However, its source
3544         // location is not stored in the template argument structure.
3545         SourceLocation TemplateKWLoc;
3546         ExprResult E = DependentScopeDeclRefExpr::Create(
3547             Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
3548             nullptr);
3549 
3550         // If we parsed the template argument as a pack expansion, create a
3551         // pack expansion expression.
3552         if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
3553           E = ActOnPackExpansion(E.get(), Arg.getTemplateEllipsisLoc());
3554           if (E.isInvalid())
3555             return true;
3556         }
3557 
3558         TemplateArgument Result;
3559         E = CheckTemplateArgument(NTTP, NTTPType, E.get(), Result);
3560         if (E.isInvalid())
3561           return true;
3562 
3563         Converted.push_back(Result);
3564         break;
3565       }
3566 
3567       // We have a template argument that actually does refer to a class
3568       // template, alias template, or template template parameter, and
3569       // therefore cannot be a non-type template argument.
3570       Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
3571         << Arg.getSourceRange();
3572 
3573       Diag(Param->getLocation(), diag::note_template_param_here);
3574       return true;
3575 
3576     case TemplateArgument::Type: {
3577       // We have a non-type template parameter but the template
3578       // argument is a type.
3579 
3580       // C++ [temp.arg]p2:
3581       //   In a template-argument, an ambiguity between a type-id and
3582       //   an expression is resolved to a type-id, regardless of the
3583       //   form of the corresponding template-parameter.
3584       //
3585       // We warn specifically about this case, since it can be rather
3586       // confusing for users.
3587       QualType T = Arg.getArgument().getAsType();
3588       SourceRange SR = Arg.getSourceRange();
3589       if (T->isFunctionType())
3590         Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
3591       else
3592         Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
3593       Diag(Param->getLocation(), diag::note_template_param_here);
3594       return true;
3595     }
3596 
3597     case TemplateArgument::Pack:
3598       llvm_unreachable("Caller must expand template argument packs");
3599     }
3600 
3601     return false;
3602   }
3603 
3604 
3605   // Check template template parameters.
3606   TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
3607 
3608   // Substitute into the template parameter list of the template
3609   // template parameter, since previously-supplied template arguments
3610   // may appear within the template template parameter.
3611   {
3612     // Set up a template instantiation context.
3613     LocalInstantiationScope Scope(*this);
3614     InstantiatingTemplate Inst(*this, TemplateLoc, Template,
3615                                TempParm, Converted,
3616                                SourceRange(TemplateLoc, RAngleLoc));
3617     if (Inst.isInvalid())
3618       return true;
3619 
3620     TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3621                                       Converted.data(), Converted.size());
3622     TempParm = cast_or_null<TemplateTemplateParmDecl>(
3623                       SubstDecl(TempParm, CurContext,
3624                                 MultiLevelTemplateArgumentList(TemplateArgs)));
3625     if (!TempParm)
3626       return true;
3627   }
3628 
3629   switch (Arg.getArgument().getKind()) {
3630   case TemplateArgument::Null:
3631     llvm_unreachable("Should never see a NULL template argument here");
3632 
3633   case TemplateArgument::Template:
3634   case TemplateArgument::TemplateExpansion:
3635     if (CheckTemplateArgument(TempParm, Arg, ArgumentPackIndex))
3636       return true;
3637 
3638     Converted.push_back(Arg.getArgument());
3639     break;
3640 
3641   case TemplateArgument::Expression:
3642   case TemplateArgument::Type:
3643     // We have a template template parameter but the template
3644     // argument does not refer to a template.
3645     Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
3646       << getLangOpts().CPlusPlus11;
3647     return true;
3648 
3649   case TemplateArgument::Declaration:
3650     llvm_unreachable("Declaration argument with template template parameter");
3651   case TemplateArgument::Integral:
3652     llvm_unreachable("Integral argument with template template parameter");
3653   case TemplateArgument::NullPtr:
3654     llvm_unreachable("Null pointer argument with template template parameter");
3655 
3656   case TemplateArgument::Pack:
3657     llvm_unreachable("Caller must expand template argument packs");
3658   }
3659 
3660   return false;
3661 }
3662 
3663 /// \brief Diagnose an arity mismatch in the
3664 static bool diagnoseArityMismatch(Sema &S, TemplateDecl *Template,
3665                                   SourceLocation TemplateLoc,
3666                                   TemplateArgumentListInfo &TemplateArgs) {
3667   TemplateParameterList *Params = Template->getTemplateParameters();
3668   unsigned NumParams = Params->size();
3669   unsigned NumArgs = TemplateArgs.size();
3670 
3671   SourceRange Range;
3672   if (NumArgs > NumParams)
3673     Range = SourceRange(TemplateArgs[NumParams].getLocation(),
3674                         TemplateArgs.getRAngleLoc());
3675   S.Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3676     << (NumArgs > NumParams)
3677     << (isa<ClassTemplateDecl>(Template)? 0 :
3678         isa<FunctionTemplateDecl>(Template)? 1 :
3679         isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3680     << Template << Range;
3681   S.Diag(Template->getLocation(), diag::note_template_decl_here)
3682     << Params->getSourceRange();
3683   return true;
3684 }
3685 
3686 /// \brief Check whether the template parameter is a pack expansion, and if so,
3687 /// determine the number of parameters produced by that expansion. For instance:
3688 ///
3689 /// \code
3690 /// template<typename ...Ts> struct A {
3691 ///   template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B;
3692 /// };
3693 /// \endcode
3694 ///
3695 /// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us
3696 /// is not a pack expansion, so returns an empty Optional.
3697 static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
3698   if (NonTypeTemplateParmDecl *NTTP
3699         = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3700     if (NTTP->isExpandedParameterPack())
3701       return NTTP->getNumExpansionTypes();
3702   }
3703 
3704   if (TemplateTemplateParmDecl *TTP
3705         = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3706     if (TTP->isExpandedParameterPack())
3707       return TTP->getNumExpansionTemplateParameters();
3708   }
3709 
3710   return None;
3711 }
3712 
3713 /// Diagnose a missing template argument.
3714 template<typename TemplateParmDecl>
3715 static bool diagnoseMissingArgument(Sema &S, SourceLocation Loc,
3716                                     TemplateDecl *TD,
3717                                     const TemplateParmDecl *D,
3718                                     TemplateArgumentListInfo &Args) {
3719   // Dig out the most recent declaration of the template parameter; there may be
3720   // declarations of the template that are more recent than TD.
3721   D = cast<TemplateParmDecl>(cast<TemplateDecl>(TD->getMostRecentDecl())
3722                                  ->getTemplateParameters()
3723                                  ->getParam(D->getIndex()));
3724 
3725   // If there's a default argument that's not visible, diagnose that we're
3726   // missing a module import.
3727   llvm::SmallVector<Module*, 8> Modules;
3728   if (D->hasDefaultArgument() && !S.hasVisibleDefaultArgument(D, &Modules)) {
3729     S.diagnoseMissingImport(Loc, cast<NamedDecl>(TD),
3730                             D->getDefaultArgumentLoc(), Modules,
3731                             Sema::MissingImportKind::DefaultArgument,
3732                             /*Recover*/ true);
3733     return true;
3734   }
3735 
3736   // FIXME: If there's a more recent default argument that *is* visible,
3737   // diagnose that it was declared too late.
3738 
3739   return diagnoseArityMismatch(S, TD, Loc, Args);
3740 }
3741 
3742 /// \brief Check that the given template argument list is well-formed
3743 /// for specializing the given template.
3744 bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
3745                                      SourceLocation TemplateLoc,
3746                                      TemplateArgumentListInfo &TemplateArgs,
3747                                      bool PartialTemplateArgs,
3748                           SmallVectorImpl<TemplateArgument> &Converted) {
3749   // Make a copy of the template arguments for processing.  Only make the
3750   // changes at the end when successful in matching the arguments to the
3751   // template.
3752   TemplateArgumentListInfo NewArgs = TemplateArgs;
3753 
3754   TemplateParameterList *Params = Template->getTemplateParameters();
3755 
3756   SourceLocation RAngleLoc = NewArgs.getRAngleLoc();
3757 
3758   // C++ [temp.arg]p1:
3759   //   [...] The type and form of each template-argument specified in
3760   //   a template-id shall match the type and form specified for the
3761   //   corresponding parameter declared by the template in its
3762   //   template-parameter-list.
3763   bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
3764   SmallVector<TemplateArgument, 2> ArgumentPack;
3765   unsigned ArgIdx = 0, NumArgs = NewArgs.size();
3766   LocalInstantiationScope InstScope(*this, true);
3767   for (TemplateParameterList::iterator Param = Params->begin(),
3768                                        ParamEnd = Params->end();
3769        Param != ParamEnd; /* increment in loop */) {
3770     // If we have an expanded parameter pack, make sure we don't have too
3771     // many arguments.
3772     if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) {
3773       if (*Expansions == ArgumentPack.size()) {
3774         // We're done with this parameter pack. Pack up its arguments and add
3775         // them to the list.
3776         Converted.push_back(
3777             TemplateArgument::CreatePackCopy(Context, ArgumentPack));
3778         ArgumentPack.clear();
3779 
3780         // This argument is assigned to the next parameter.
3781         ++Param;
3782         continue;
3783       } else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
3784         // Not enough arguments for this parameter pack.
3785         Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3786           << false
3787           << (isa<ClassTemplateDecl>(Template)? 0 :
3788               isa<FunctionTemplateDecl>(Template)? 1 :
3789               isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3790           << Template;
3791         Diag(Template->getLocation(), diag::note_template_decl_here)
3792           << Params->getSourceRange();
3793         return true;
3794       }
3795     }
3796 
3797     if (ArgIdx < NumArgs) {
3798       // Check the template argument we were given.
3799       if (CheckTemplateArgument(*Param, NewArgs[ArgIdx], Template,
3800                                 TemplateLoc, RAngleLoc,
3801                                 ArgumentPack.size(), Converted))
3802         return true;
3803 
3804       bool PackExpansionIntoNonPack =
3805           NewArgs[ArgIdx].getArgument().isPackExpansion() &&
3806           (!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param));
3807       if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) {
3808         // Core issue 1430: we have a pack expansion as an argument to an
3809         // alias template, and it's not part of a parameter pack. This
3810         // can't be canonicalized, so reject it now.
3811         Diag(NewArgs[ArgIdx].getLocation(),
3812              diag::err_alias_template_expansion_into_fixed_list)
3813           << NewArgs[ArgIdx].getSourceRange();
3814         Diag((*Param)->getLocation(), diag::note_template_param_here);
3815         return true;
3816       }
3817 
3818       // We're now done with this argument.
3819       ++ArgIdx;
3820 
3821       if ((*Param)->isTemplateParameterPack()) {
3822         // The template parameter was a template parameter pack, so take the
3823         // deduced argument and place it on the argument pack. Note that we
3824         // stay on the same template parameter so that we can deduce more
3825         // arguments.
3826         ArgumentPack.push_back(Converted.pop_back_val());
3827       } else {
3828         // Move to the next template parameter.
3829         ++Param;
3830       }
3831 
3832       // If we just saw a pack expansion into a non-pack, then directly convert
3833       // the remaining arguments, because we don't know what parameters they'll
3834       // match up with.
3835       if (PackExpansionIntoNonPack) {
3836         if (!ArgumentPack.empty()) {
3837           // If we were part way through filling in an expanded parameter pack,
3838           // fall back to just producing individual arguments.
3839           Converted.insert(Converted.end(),
3840                            ArgumentPack.begin(), ArgumentPack.end());
3841           ArgumentPack.clear();
3842         }
3843 
3844         while (ArgIdx < NumArgs) {
3845           Converted.push_back(NewArgs[ArgIdx].getArgument());
3846           ++ArgIdx;
3847         }
3848 
3849         return false;
3850       }
3851 
3852       continue;
3853     }
3854 
3855     // If we're checking a partial template argument list, we're done.
3856     if (PartialTemplateArgs) {
3857       if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
3858         Converted.push_back(
3859             TemplateArgument::CreatePackCopy(Context, ArgumentPack));
3860 
3861       return false;
3862     }
3863 
3864     // If we have a template parameter pack with no more corresponding
3865     // arguments, just break out now and we'll fill in the argument pack below.
3866     if ((*Param)->isTemplateParameterPack()) {
3867       assert(!getExpandedPackSize(*Param) &&
3868              "Should have dealt with this already");
3869 
3870       // A non-expanded parameter pack before the end of the parameter list
3871       // only occurs for an ill-formed template parameter list, unless we've
3872       // got a partial argument list for a function template, so just bail out.
3873       if (Param + 1 != ParamEnd)
3874         return true;
3875 
3876       Converted.push_back(
3877           TemplateArgument::CreatePackCopy(Context, ArgumentPack));
3878       ArgumentPack.clear();
3879 
3880       ++Param;
3881       continue;
3882     }
3883 
3884     // Check whether we have a default argument.
3885     TemplateArgumentLoc Arg;
3886 
3887     // Retrieve the default template argument from the template
3888     // parameter. For each kind of template parameter, we substitute the
3889     // template arguments provided thus far and any "outer" template arguments
3890     // (when the template parameter was part of a nested template) into
3891     // the default argument.
3892     if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
3893       if (!hasVisibleDefaultArgument(TTP))
3894         return diagnoseMissingArgument(*this, TemplateLoc, Template, TTP,
3895                                        NewArgs);
3896 
3897       TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
3898                                                              Template,
3899                                                              TemplateLoc,
3900                                                              RAngleLoc,
3901                                                              TTP,
3902                                                              Converted);
3903       if (!ArgType)
3904         return true;
3905 
3906       Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
3907                                 ArgType);
3908     } else if (NonTypeTemplateParmDecl *NTTP
3909                  = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
3910       if (!hasVisibleDefaultArgument(NTTP))
3911         return diagnoseMissingArgument(*this, TemplateLoc, Template, NTTP,
3912                                        NewArgs);
3913 
3914       ExprResult E = SubstDefaultTemplateArgument(*this, Template,
3915                                                               TemplateLoc,
3916                                                               RAngleLoc,
3917                                                               NTTP,
3918                                                               Converted);
3919       if (E.isInvalid())
3920         return true;
3921 
3922       Expr *Ex = E.getAs<Expr>();
3923       Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
3924     } else {
3925       TemplateTemplateParmDecl *TempParm
3926         = cast<TemplateTemplateParmDecl>(*Param);
3927 
3928       if (!hasVisibleDefaultArgument(TempParm))
3929         return diagnoseMissingArgument(*this, TemplateLoc, Template, TempParm,
3930                                        NewArgs);
3931 
3932       NestedNameSpecifierLoc QualifierLoc;
3933       TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
3934                                                        TemplateLoc,
3935                                                        RAngleLoc,
3936                                                        TempParm,
3937                                                        Converted,
3938                                                        QualifierLoc);
3939       if (Name.isNull())
3940         return true;
3941 
3942       Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
3943                            TempParm->getDefaultArgument().getTemplateNameLoc());
3944     }
3945 
3946     // Introduce an instantiation record that describes where we are using
3947     // the default template argument.
3948     InstantiatingTemplate Inst(*this, RAngleLoc, Template, *Param, Converted,
3949                                SourceRange(TemplateLoc, RAngleLoc));
3950     if (Inst.isInvalid())
3951       return true;
3952 
3953     // Check the default template argument.
3954     if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
3955                               RAngleLoc, 0, Converted))
3956       return true;
3957 
3958     // Core issue 150 (assumed resolution): if this is a template template
3959     // parameter, keep track of the default template arguments from the
3960     // template definition.
3961     if (isTemplateTemplateParameter)
3962       NewArgs.addArgument(Arg);
3963 
3964     // Move to the next template parameter and argument.
3965     ++Param;
3966     ++ArgIdx;
3967   }
3968 
3969   // If we're performing a partial argument substitution, allow any trailing
3970   // pack expansions; they might be empty. This can happen even if
3971   // PartialTemplateArgs is false (the list of arguments is complete but
3972   // still dependent).
3973   if (ArgIdx < NumArgs && CurrentInstantiationScope &&
3974       CurrentInstantiationScope->getPartiallySubstitutedPack()) {
3975     while (ArgIdx < NumArgs && NewArgs[ArgIdx].getArgument().isPackExpansion())
3976       Converted.push_back(NewArgs[ArgIdx++].getArgument());
3977   }
3978 
3979   // If we have any leftover arguments, then there were too many arguments.
3980   // Complain and fail.
3981   if (ArgIdx < NumArgs)
3982     return diagnoseArityMismatch(*this, Template, TemplateLoc, NewArgs);
3983 
3984   // No problems found with the new argument list, propagate changes back
3985   // to caller.
3986   TemplateArgs = std::move(NewArgs);
3987 
3988   return false;
3989 }
3990 
3991 namespace {
3992   class UnnamedLocalNoLinkageFinder
3993     : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
3994   {
3995     Sema &S;
3996     SourceRange SR;
3997 
3998     typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
3999 
4000   public:
4001     UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
4002 
4003     bool Visit(QualType T) {
4004       return inherited::Visit(T.getTypePtr());
4005     }
4006 
4007 #define TYPE(Class, Parent) \
4008     bool Visit##Class##Type(const Class##Type *);
4009 #define ABSTRACT_TYPE(Class, Parent) \
4010     bool Visit##Class##Type(const Class##Type *) { return false; }
4011 #define NON_CANONICAL_TYPE(Class, Parent) \
4012     bool Visit##Class##Type(const Class##Type *) { return false; }
4013 #include "clang/AST/TypeNodes.def"
4014 
4015     bool VisitTagDecl(const TagDecl *Tag);
4016     bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
4017   };
4018 }
4019 
4020 bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
4021   return false;
4022 }
4023 
4024 bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
4025   return Visit(T->getElementType());
4026 }
4027 
4028 bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
4029   return Visit(T->getPointeeType());
4030 }
4031 
4032 bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
4033                                                     const BlockPointerType* T) {
4034   return Visit(T->getPointeeType());
4035 }
4036 
4037 bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
4038                                                 const LValueReferenceType* T) {
4039   return Visit(T->getPointeeType());
4040 }
4041 
4042 bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
4043                                                 const RValueReferenceType* T) {
4044   return Visit(T->getPointeeType());
4045 }
4046 
4047 bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
4048                                                   const MemberPointerType* T) {
4049   return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
4050 }
4051 
4052 bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
4053                                                   const ConstantArrayType* T) {
4054   return Visit(T->getElementType());
4055 }
4056 
4057 bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
4058                                                  const IncompleteArrayType* T) {
4059   return Visit(T->getElementType());
4060 }
4061 
4062 bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
4063                                                    const VariableArrayType* T) {
4064   return Visit(T->getElementType());
4065 }
4066 
4067 bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
4068                                             const DependentSizedArrayType* T) {
4069   return Visit(T->getElementType());
4070 }
4071 
4072 bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
4073                                          const DependentSizedExtVectorType* T) {
4074   return Visit(T->getElementType());
4075 }
4076 
4077 bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
4078   return Visit(T->getElementType());
4079 }
4080 
4081 bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
4082   return Visit(T->getElementType());
4083 }
4084 
4085 bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
4086                                                   const FunctionProtoType* T) {
4087   for (const auto &A : T->param_types()) {
4088     if (Visit(A))
4089       return true;
4090   }
4091 
4092   return Visit(T->getReturnType());
4093 }
4094 
4095 bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
4096                                                const FunctionNoProtoType* T) {
4097   return Visit(T->getReturnType());
4098 }
4099 
4100 bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
4101                                                   const UnresolvedUsingType*) {
4102   return false;
4103 }
4104 
4105 bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
4106   return false;
4107 }
4108 
4109 bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
4110   return Visit(T->getUnderlyingType());
4111 }
4112 
4113 bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
4114   return false;
4115 }
4116 
4117 bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
4118                                                     const UnaryTransformType*) {
4119   return false;
4120 }
4121 
4122 bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
4123   return Visit(T->getDeducedType());
4124 }
4125 
4126 bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
4127   return VisitTagDecl(T->getDecl());
4128 }
4129 
4130 bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
4131   return VisitTagDecl(T->getDecl());
4132 }
4133 
4134 bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
4135                                                  const TemplateTypeParmType*) {
4136   return false;
4137 }
4138 
4139 bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
4140                                         const SubstTemplateTypeParmPackType *) {
4141   return false;
4142 }
4143 
4144 bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
4145                                             const TemplateSpecializationType*) {
4146   return false;
4147 }
4148 
4149 bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
4150                                               const InjectedClassNameType* T) {
4151   return VisitTagDecl(T->getDecl());
4152 }
4153 
4154 bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
4155                                                    const DependentNameType* T) {
4156   return VisitNestedNameSpecifier(T->getQualifier());
4157 }
4158 
4159 bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
4160                                  const DependentTemplateSpecializationType* T) {
4161   return VisitNestedNameSpecifier(T->getQualifier());
4162 }
4163 
4164 bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
4165                                                    const PackExpansionType* T) {
4166   return Visit(T->getPattern());
4167 }
4168 
4169 bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
4170   return false;
4171 }
4172 
4173 bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
4174                                                    const ObjCInterfaceType *) {
4175   return false;
4176 }
4177 
4178 bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
4179                                                 const ObjCObjectPointerType *) {
4180   return false;
4181 }
4182 
4183 bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
4184   return Visit(T->getValueType());
4185 }
4186 
4187 bool UnnamedLocalNoLinkageFinder::VisitPipeType(const PipeType* T) {
4188   return false;
4189 }
4190 
4191 bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
4192   if (Tag->getDeclContext()->isFunctionOrMethod()) {
4193     S.Diag(SR.getBegin(),
4194            S.getLangOpts().CPlusPlus11 ?
4195              diag::warn_cxx98_compat_template_arg_local_type :
4196              diag::ext_template_arg_local_type)
4197       << S.Context.getTypeDeclType(Tag) << SR;
4198     return true;
4199   }
4200 
4201   if (!Tag->hasNameForLinkage()) {
4202     S.Diag(SR.getBegin(),
4203            S.getLangOpts().CPlusPlus11 ?
4204              diag::warn_cxx98_compat_template_arg_unnamed_type :
4205              diag::ext_template_arg_unnamed_type) << SR;
4206     S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
4207     return true;
4208   }
4209 
4210   return false;
4211 }
4212 
4213 bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
4214                                                     NestedNameSpecifier *NNS) {
4215   if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
4216     return true;
4217 
4218   switch (NNS->getKind()) {
4219   case NestedNameSpecifier::Identifier:
4220   case NestedNameSpecifier::Namespace:
4221   case NestedNameSpecifier::NamespaceAlias:
4222   case NestedNameSpecifier::Global:
4223   case NestedNameSpecifier::Super:
4224     return false;
4225 
4226   case NestedNameSpecifier::TypeSpec:
4227   case NestedNameSpecifier::TypeSpecWithTemplate:
4228     return Visit(QualType(NNS->getAsType(), 0));
4229   }
4230   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
4231 }
4232 
4233 
4234 /// \brief Check a template argument against its corresponding
4235 /// template type parameter.
4236 ///
4237 /// This routine implements the semantics of C++ [temp.arg.type]. It
4238 /// returns true if an error occurred, and false otherwise.
4239 bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
4240                                  TypeSourceInfo *ArgInfo) {
4241   assert(ArgInfo && "invalid TypeSourceInfo");
4242   QualType Arg = ArgInfo->getType();
4243   SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
4244 
4245   if (Arg->isVariablyModifiedType()) {
4246     return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
4247   } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
4248     return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
4249   }
4250 
4251   // C++03 [temp.arg.type]p2:
4252   //   A local type, a type with no linkage, an unnamed type or a type
4253   //   compounded from any of these types shall not be used as a
4254   //   template-argument for a template type-parameter.
4255   //
4256   // C++11 allows these, and even in C++03 we allow them as an extension with
4257   // a warning.
4258   bool NeedsCheck;
4259   if (LangOpts.CPlusPlus11)
4260     NeedsCheck =
4261         !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_unnamed_type,
4262                          SR.getBegin()) ||
4263         !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_local_type,
4264                          SR.getBegin());
4265   else
4266     NeedsCheck = Arg->hasUnnamedOrLocalType();
4267 
4268   if (NeedsCheck) {
4269     UnnamedLocalNoLinkageFinder Finder(*this, SR);
4270     (void)Finder.Visit(Context.getCanonicalType(Arg));
4271   }
4272 
4273   return false;
4274 }
4275 
4276 enum NullPointerValueKind {
4277   NPV_NotNullPointer,
4278   NPV_NullPointer,
4279   NPV_Error
4280 };
4281 
4282 /// \brief Determine whether the given template argument is a null pointer
4283 /// value of the appropriate type.
4284 static NullPointerValueKind
4285 isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param,
4286                                    QualType ParamType, Expr *Arg) {
4287   if (Arg->isValueDependent() || Arg->isTypeDependent())
4288     return NPV_NotNullPointer;
4289 
4290   if (!S.isCompleteType(Arg->getExprLoc(), ParamType))
4291     llvm_unreachable(
4292         "Incomplete parameter type in isNullPointerValueTemplateArgument!");
4293 
4294   if (!S.getLangOpts().CPlusPlus11)
4295     return NPV_NotNullPointer;
4296 
4297   // Determine whether we have a constant expression.
4298   ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg);
4299   if (ArgRV.isInvalid())
4300     return NPV_Error;
4301   Arg = ArgRV.get();
4302 
4303   Expr::EvalResult EvalResult;
4304   SmallVector<PartialDiagnosticAt, 8> Notes;
4305   EvalResult.Diag = &Notes;
4306   if (!Arg->EvaluateAsRValue(EvalResult, S.Context) ||
4307       EvalResult.HasSideEffects) {
4308     SourceLocation DiagLoc = Arg->getExprLoc();
4309 
4310     // If our only note is the usual "invalid subexpression" note, just point
4311     // the caret at its location rather than producing an essentially
4312     // redundant note.
4313     if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4314         diag::note_invalid_subexpr_in_const_expr) {
4315       DiagLoc = Notes[0].first;
4316       Notes.clear();
4317     }
4318 
4319     S.Diag(DiagLoc, diag::err_template_arg_not_address_constant)
4320       << Arg->getType() << Arg->getSourceRange();
4321     for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4322       S.Diag(Notes[I].first, Notes[I].second);
4323 
4324     S.Diag(Param->getLocation(), diag::note_template_param_here);
4325     return NPV_Error;
4326   }
4327 
4328   // C++11 [temp.arg.nontype]p1:
4329   //   - an address constant expression of type std::nullptr_t
4330   if (Arg->getType()->isNullPtrType())
4331     return NPV_NullPointer;
4332 
4333   //   - a constant expression that evaluates to a null pointer value (4.10); or
4334   //   - a constant expression that evaluates to a null member pointer value
4335   //     (4.11); or
4336   if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) ||
4337       (EvalResult.Val.isMemberPointer() &&
4338        !EvalResult.Val.getMemberPointerDecl())) {
4339     // If our expression has an appropriate type, we've succeeded.
4340     bool ObjCLifetimeConversion;
4341     if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
4342         S.IsQualificationConversion(Arg->getType(), ParamType, false,
4343                                      ObjCLifetimeConversion))
4344       return NPV_NullPointer;
4345 
4346     // The types didn't match, but we know we got a null pointer; complain,
4347     // then recover as if the types were correct.
4348     S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
4349       << Arg->getType() << ParamType << Arg->getSourceRange();
4350     S.Diag(Param->getLocation(), diag::note_template_param_here);
4351     return NPV_NullPointer;
4352   }
4353 
4354   // If we don't have a null pointer value, but we do have a NULL pointer
4355   // constant, suggest a cast to the appropriate type.
4356   if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) {
4357     std::string Code = "static_cast<" + ParamType.getAsString() + ">(";
4358     S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant)
4359         << ParamType << FixItHint::CreateInsertion(Arg->getLocStart(), Code)
4360         << FixItHint::CreateInsertion(S.getLocForEndOfToken(Arg->getLocEnd()),
4361                                       ")");
4362     S.Diag(Param->getLocation(), diag::note_template_param_here);
4363     return NPV_NullPointer;
4364   }
4365 
4366   // FIXME: If we ever want to support general, address-constant expressions
4367   // as non-type template arguments, we should return the ExprResult here to
4368   // be interpreted by the caller.
4369   return NPV_NotNullPointer;
4370 }
4371 
4372 /// \brief Checks whether the given template argument is compatible with its
4373 /// template parameter.
4374 static bool CheckTemplateArgumentIsCompatibleWithParameter(
4375     Sema &S, NonTypeTemplateParmDecl *Param, QualType ParamType, Expr *ArgIn,
4376     Expr *Arg, QualType ArgType) {
4377   bool ObjCLifetimeConversion;
4378   if (ParamType->isPointerType() &&
4379       !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
4380       S.IsQualificationConversion(ArgType, ParamType, false,
4381                                   ObjCLifetimeConversion)) {
4382     // For pointer-to-object types, qualification conversions are
4383     // permitted.
4384   } else {
4385     if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
4386       if (!ParamRef->getPointeeType()->isFunctionType()) {
4387         // C++ [temp.arg.nontype]p5b3:
4388         //   For a non-type template-parameter of type reference to
4389         //   object, no conversions apply. The type referred to by the
4390         //   reference may be more cv-qualified than the (otherwise
4391         //   identical) type of the template- argument. The
4392         //   template-parameter is bound directly to the
4393         //   template-argument, which shall be an lvalue.
4394 
4395         // FIXME: Other qualifiers?
4396         unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
4397         unsigned ArgQuals = ArgType.getCVRQualifiers();
4398 
4399         if ((ParamQuals | ArgQuals) != ParamQuals) {
4400           S.Diag(Arg->getLocStart(),
4401                  diag::err_template_arg_ref_bind_ignores_quals)
4402             << ParamType << Arg->getType() << Arg->getSourceRange();
4403           S.Diag(Param->getLocation(), diag::note_template_param_here);
4404           return true;
4405         }
4406       }
4407     }
4408 
4409     // At this point, the template argument refers to an object or
4410     // function with external linkage. We now need to check whether the
4411     // argument and parameter types are compatible.
4412     if (!S.Context.hasSameUnqualifiedType(ArgType,
4413                                           ParamType.getNonReferenceType())) {
4414       // We can't perform this conversion or binding.
4415       if (ParamType->isReferenceType())
4416         S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
4417           << ParamType << ArgIn->getType() << Arg->getSourceRange();
4418       else
4419         S.Diag(Arg->getLocStart(),  diag::err_template_arg_not_convertible)
4420           << ArgIn->getType() << ParamType << Arg->getSourceRange();
4421       S.Diag(Param->getLocation(), diag::note_template_param_here);
4422       return true;
4423     }
4424   }
4425 
4426   return false;
4427 }
4428 
4429 /// \brief Checks whether the given template argument is the address
4430 /// of an object or function according to C++ [temp.arg.nontype]p1.
4431 static bool
4432 CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
4433                                                NonTypeTemplateParmDecl *Param,
4434                                                QualType ParamType,
4435                                                Expr *ArgIn,
4436                                                TemplateArgument &Converted) {
4437   bool Invalid = false;
4438   Expr *Arg = ArgIn;
4439   QualType ArgType = Arg->getType();
4440 
4441   bool AddressTaken = false;
4442   SourceLocation AddrOpLoc;
4443   if (S.getLangOpts().MicrosoftExt) {
4444     // Microsoft Visual C++ strips all casts, allows an arbitrary number of
4445     // dereference and address-of operators.
4446     Arg = Arg->IgnoreParenCasts();
4447 
4448     bool ExtWarnMSTemplateArg = false;
4449     UnaryOperatorKind FirstOpKind;
4450     SourceLocation FirstOpLoc;
4451     while (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4452       UnaryOperatorKind UnOpKind = UnOp->getOpcode();
4453       if (UnOpKind == UO_Deref)
4454         ExtWarnMSTemplateArg = true;
4455       if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
4456         Arg = UnOp->getSubExpr()->IgnoreParenCasts();
4457         if (!AddrOpLoc.isValid()) {
4458           FirstOpKind = UnOpKind;
4459           FirstOpLoc = UnOp->getOperatorLoc();
4460         }
4461       } else
4462         break;
4463     }
4464     if (FirstOpLoc.isValid()) {
4465       if (ExtWarnMSTemplateArg)
4466         S.Diag(ArgIn->getLocStart(), diag::ext_ms_deref_template_argument)
4467           << ArgIn->getSourceRange();
4468 
4469       if (FirstOpKind == UO_AddrOf)
4470         AddressTaken = true;
4471       else if (Arg->getType()->isPointerType()) {
4472         // We cannot let pointers get dereferenced here, that is obviously not a
4473         // constant expression.
4474         assert(FirstOpKind == UO_Deref);
4475         S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4476           << Arg->getSourceRange();
4477       }
4478     }
4479   } else {
4480     // See through any implicit casts we added to fix the type.
4481     Arg = Arg->IgnoreImpCasts();
4482 
4483     // C++ [temp.arg.nontype]p1:
4484     //
4485     //   A template-argument for a non-type, non-template
4486     //   template-parameter shall be one of: [...]
4487     //
4488     //     -- the address of an object or function with external
4489     //        linkage, including function templates and function
4490     //        template-ids but excluding non-static class members,
4491     //        expressed as & id-expression where the & is optional if
4492     //        the name refers to a function or array, or if the
4493     //        corresponding template-parameter is a reference; or
4494 
4495     // In C++98/03 mode, give an extension warning on any extra parentheses.
4496     // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4497     bool ExtraParens = false;
4498     while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
4499       if (!Invalid && !ExtraParens) {
4500         S.Diag(Arg->getLocStart(),
4501                S.getLangOpts().CPlusPlus11
4502                    ? diag::warn_cxx98_compat_template_arg_extra_parens
4503                    : diag::ext_template_arg_extra_parens)
4504             << Arg->getSourceRange();
4505         ExtraParens = true;
4506       }
4507 
4508       Arg = Parens->getSubExpr();
4509     }
4510 
4511     while (SubstNonTypeTemplateParmExpr *subst =
4512                dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4513       Arg = subst->getReplacement()->IgnoreImpCasts();
4514 
4515     if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4516       if (UnOp->getOpcode() == UO_AddrOf) {
4517         Arg = UnOp->getSubExpr();
4518         AddressTaken = true;
4519         AddrOpLoc = UnOp->getOperatorLoc();
4520       }
4521     }
4522 
4523     while (SubstNonTypeTemplateParmExpr *subst =
4524                dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4525       Arg = subst->getReplacement()->IgnoreImpCasts();
4526   }
4527 
4528   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
4529   ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr;
4530 
4531   // If our parameter has pointer type, check for a null template value.
4532   if (ParamType->isPointerType() || ParamType->isNullPtrType()) {
4533     NullPointerValueKind NPV;
4534     // dllimport'd entities aren't constant but are available inside of template
4535     // arguments.
4536     if (Entity && Entity->hasAttr<DLLImportAttr>())
4537       NPV = NPV_NotNullPointer;
4538     else
4539       NPV = isNullPointerValueTemplateArgument(S, Param, ParamType, ArgIn);
4540     switch (NPV) {
4541     case NPV_NullPointer:
4542       S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
4543       Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4544                                    /*isNullPtr=*/true);
4545       return false;
4546 
4547     case NPV_Error:
4548       return true;
4549 
4550     case NPV_NotNullPointer:
4551       break;
4552     }
4553   }
4554 
4555   // Stop checking the precise nature of the argument if it is value dependent,
4556   // it should be checked when instantiated.
4557   if (Arg->isValueDependent()) {
4558     Converted = TemplateArgument(ArgIn);
4559     return false;
4560   }
4561 
4562   if (isa<CXXUuidofExpr>(Arg)) {
4563     if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType,
4564                                                        ArgIn, Arg, ArgType))
4565       return true;
4566 
4567     Converted = TemplateArgument(ArgIn);
4568     return false;
4569   }
4570 
4571   if (!DRE) {
4572     S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4573     << Arg->getSourceRange();
4574     S.Diag(Param->getLocation(), diag::note_template_param_here);
4575     return true;
4576   }
4577 
4578   // Cannot refer to non-static data members
4579   if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) {
4580     S.Diag(Arg->getLocStart(), diag::err_template_arg_field)
4581       << Entity << Arg->getSourceRange();
4582     S.Diag(Param->getLocation(), diag::note_template_param_here);
4583     return true;
4584   }
4585 
4586   // Cannot refer to non-static member functions
4587   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
4588     if (!Method->isStatic()) {
4589       S.Diag(Arg->getLocStart(), diag::err_template_arg_method)
4590         << Method << Arg->getSourceRange();
4591       S.Diag(Param->getLocation(), diag::note_template_param_here);
4592       return true;
4593     }
4594   }
4595 
4596   FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity);
4597   VarDecl *Var = dyn_cast<VarDecl>(Entity);
4598 
4599   // A non-type template argument must refer to an object or function.
4600   if (!Func && !Var) {
4601     // We found something, but we don't know specifically what it is.
4602     S.Diag(Arg->getLocStart(), diag::err_template_arg_not_object_or_func)
4603       << Arg->getSourceRange();
4604     S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
4605     return true;
4606   }
4607 
4608   // Address / reference template args must have external linkage in C++98.
4609   if (Entity->getFormalLinkage() == InternalLinkage) {
4610     S.Diag(Arg->getLocStart(), S.getLangOpts().CPlusPlus11 ?
4611              diag::warn_cxx98_compat_template_arg_object_internal :
4612              diag::ext_template_arg_object_internal)
4613       << !Func << Entity << Arg->getSourceRange();
4614     S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4615       << !Func;
4616   } else if (!Entity->hasLinkage()) {
4617     S.Diag(Arg->getLocStart(), diag::err_template_arg_object_no_linkage)
4618       << !Func << Entity << Arg->getSourceRange();
4619     S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4620       << !Func;
4621     return true;
4622   }
4623 
4624   if (Func) {
4625     // If the template parameter has pointer type, the function decays.
4626     if (ParamType->isPointerType() && !AddressTaken)
4627       ArgType = S.Context.getPointerType(Func->getType());
4628     else if (AddressTaken && ParamType->isReferenceType()) {
4629       // If we originally had an address-of operator, but the
4630       // parameter has reference type, complain and (if things look
4631       // like they will work) drop the address-of operator.
4632       if (!S.Context.hasSameUnqualifiedType(Func->getType(),
4633                                             ParamType.getNonReferenceType())) {
4634         S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4635           << ParamType;
4636         S.Diag(Param->getLocation(), diag::note_template_param_here);
4637         return true;
4638       }
4639 
4640       S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4641         << ParamType
4642         << FixItHint::CreateRemoval(AddrOpLoc);
4643       S.Diag(Param->getLocation(), diag::note_template_param_here);
4644 
4645       ArgType = Func->getType();
4646     }
4647   } else {
4648     // A value of reference type is not an object.
4649     if (Var->getType()->isReferenceType()) {
4650       S.Diag(Arg->getLocStart(),
4651              diag::err_template_arg_reference_var)
4652         << Var->getType() << Arg->getSourceRange();
4653       S.Diag(Param->getLocation(), diag::note_template_param_here);
4654       return true;
4655     }
4656 
4657     // A template argument must have static storage duration.
4658     if (Var->getTLSKind()) {
4659       S.Diag(Arg->getLocStart(), diag::err_template_arg_thread_local)
4660         << Arg->getSourceRange();
4661       S.Diag(Var->getLocation(), diag::note_template_arg_refers_here);
4662       return true;
4663     }
4664 
4665     // If the template parameter has pointer type, we must have taken
4666     // the address of this object.
4667     if (ParamType->isReferenceType()) {
4668       if (AddressTaken) {
4669         // If we originally had an address-of operator, but the
4670         // parameter has reference type, complain and (if things look
4671         // like they will work) drop the address-of operator.
4672         if (!S.Context.hasSameUnqualifiedType(Var->getType(),
4673                                             ParamType.getNonReferenceType())) {
4674           S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4675             << ParamType;
4676           S.Diag(Param->getLocation(), diag::note_template_param_here);
4677           return true;
4678         }
4679 
4680         S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4681           << ParamType
4682           << FixItHint::CreateRemoval(AddrOpLoc);
4683         S.Diag(Param->getLocation(), diag::note_template_param_here);
4684 
4685         ArgType = Var->getType();
4686       }
4687     } else if (!AddressTaken && ParamType->isPointerType()) {
4688       if (Var->getType()->isArrayType()) {
4689         // Array-to-pointer decay.
4690         ArgType = S.Context.getArrayDecayedType(Var->getType());
4691       } else {
4692         // If the template parameter has pointer type but the address of
4693         // this object was not taken, complain and (possibly) recover by
4694         // taking the address of the entity.
4695         ArgType = S.Context.getPointerType(Var->getType());
4696         if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
4697           S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4698             << ParamType;
4699           S.Diag(Param->getLocation(), diag::note_template_param_here);
4700           return true;
4701         }
4702 
4703         S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4704           << ParamType
4705           << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
4706 
4707         S.Diag(Param->getLocation(), diag::note_template_param_here);
4708       }
4709     }
4710   }
4711 
4712   if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, ArgIn,
4713                                                      Arg, ArgType))
4714     return true;
4715 
4716   // Create the template argument.
4717   Converted =
4718       TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()), ParamType);
4719   S.MarkAnyDeclReferenced(Arg->getLocStart(), Entity, false);
4720   return false;
4721 }
4722 
4723 /// \brief Checks whether the given template argument is a pointer to
4724 /// member constant according to C++ [temp.arg.nontype]p1.
4725 static bool CheckTemplateArgumentPointerToMember(Sema &S,
4726                                                  NonTypeTemplateParmDecl *Param,
4727                                                  QualType ParamType,
4728                                                  Expr *&ResultArg,
4729                                                  TemplateArgument &Converted) {
4730   bool Invalid = false;
4731 
4732   // Check for a null pointer value.
4733   Expr *Arg = ResultArg;
4734   switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
4735   case NPV_Error:
4736     return true;
4737   case NPV_NullPointer:
4738     S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
4739     Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4740                                  /*isNullPtr*/true);
4741     return false;
4742   case NPV_NotNullPointer:
4743     break;
4744   }
4745 
4746   bool ObjCLifetimeConversion;
4747   if (S.IsQualificationConversion(Arg->getType(),
4748                                   ParamType.getNonReferenceType(),
4749                                   false, ObjCLifetimeConversion)) {
4750     Arg = S.ImpCastExprToType(Arg, ParamType, CK_NoOp,
4751                               Arg->getValueKind()).get();
4752     ResultArg = Arg;
4753   } else if (!S.Context.hasSameUnqualifiedType(Arg->getType(),
4754                 ParamType.getNonReferenceType())) {
4755     // We can't perform this conversion.
4756     S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4757       << Arg->getType() << ParamType << Arg->getSourceRange();
4758     S.Diag(Param->getLocation(), diag::note_template_param_here);
4759     return true;
4760   }
4761 
4762   // See through any implicit casts we added to fix the type.
4763   while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
4764     Arg = Cast->getSubExpr();
4765 
4766   // C++ [temp.arg.nontype]p1:
4767   //
4768   //   A template-argument for a non-type, non-template
4769   //   template-parameter shall be one of: [...]
4770   //
4771   //     -- a pointer to member expressed as described in 5.3.1.
4772   DeclRefExpr *DRE = nullptr;
4773 
4774   // In C++98/03 mode, give an extension warning on any extra parentheses.
4775   // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4776   bool ExtraParens = false;
4777   while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
4778     if (!Invalid && !ExtraParens) {
4779       S.Diag(Arg->getLocStart(),
4780              S.getLangOpts().CPlusPlus11 ?
4781                diag::warn_cxx98_compat_template_arg_extra_parens :
4782                diag::ext_template_arg_extra_parens)
4783         << Arg->getSourceRange();
4784       ExtraParens = true;
4785     }
4786 
4787     Arg = Parens->getSubExpr();
4788   }
4789 
4790   while (SubstNonTypeTemplateParmExpr *subst =
4791            dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4792     Arg = subst->getReplacement()->IgnoreImpCasts();
4793 
4794   // A pointer-to-member constant written &Class::member.
4795   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4796     if (UnOp->getOpcode() == UO_AddrOf) {
4797       DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
4798       if (DRE && !DRE->getQualifier())
4799         DRE = nullptr;
4800     }
4801   }
4802   // A constant of pointer-to-member type.
4803   else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
4804     if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
4805       if (VD->getType()->isMemberPointerType()) {
4806         if (isa<NonTypeTemplateParmDecl>(VD)) {
4807           if (Arg->isTypeDependent() || Arg->isValueDependent()) {
4808             Converted = TemplateArgument(Arg);
4809           } else {
4810             VD = cast<ValueDecl>(VD->getCanonicalDecl());
4811             Converted = TemplateArgument(VD, ParamType);
4812           }
4813           return Invalid;
4814         }
4815       }
4816     }
4817 
4818     DRE = nullptr;
4819   }
4820 
4821   if (!DRE)
4822     return S.Diag(Arg->getLocStart(),
4823                   diag::err_template_arg_not_pointer_to_member_form)
4824       << Arg->getSourceRange();
4825 
4826   if (isa<FieldDecl>(DRE->getDecl()) ||
4827       isa<IndirectFieldDecl>(DRE->getDecl()) ||
4828       isa<CXXMethodDecl>(DRE->getDecl())) {
4829     assert((isa<FieldDecl>(DRE->getDecl()) ||
4830             isa<IndirectFieldDecl>(DRE->getDecl()) ||
4831             !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
4832            "Only non-static member pointers can make it here");
4833 
4834     // Okay: this is the address of a non-static member, and therefore
4835     // a member pointer constant.
4836     if (Arg->isTypeDependent() || Arg->isValueDependent()) {
4837       Converted = TemplateArgument(Arg);
4838     } else {
4839       ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
4840       Converted = TemplateArgument(D, ParamType);
4841     }
4842     return Invalid;
4843   }
4844 
4845   // We found something else, but we don't know specifically what it is.
4846   S.Diag(Arg->getLocStart(),
4847          diag::err_template_arg_not_pointer_to_member_form)
4848     << Arg->getSourceRange();
4849   S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
4850   return true;
4851 }
4852 
4853 /// \brief Check a template argument against its corresponding
4854 /// non-type template parameter.
4855 ///
4856 /// This routine implements the semantics of C++ [temp.arg.nontype].
4857 /// If an error occurred, it returns ExprError(); otherwise, it
4858 /// returns the converted template argument. \p ParamType is the
4859 /// type of the non-type template parameter after it has been instantiated.
4860 ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
4861                                        QualType ParamType, Expr *Arg,
4862                                        TemplateArgument &Converted,
4863                                        CheckTemplateArgumentKind CTAK) {
4864   SourceLocation StartLoc = Arg->getLocStart();
4865 
4866   // If either the parameter has a dependent type or the argument is
4867   // type-dependent, there's nothing we can check now.
4868   if (ParamType->isDependentType() || Arg->isTypeDependent()) {
4869     // FIXME: Produce a cloned, canonical expression?
4870     Converted = TemplateArgument(Arg);
4871     return Arg;
4872   }
4873 
4874   // We should have already dropped all cv-qualifiers by now.
4875   assert(!ParamType.hasQualifiers() &&
4876          "non-type template parameter type cannot be qualified");
4877 
4878   if (CTAK == CTAK_Deduced &&
4879       !Context.hasSameUnqualifiedType(ParamType, Arg->getType())) {
4880     // C++ [temp.deduct.type]p17:
4881     //   If, in the declaration of a function template with a non-type
4882     //   template-parameter, the non-type template-parameter is used
4883     //   in an expression in the function parameter-list and, if the
4884     //   corresponding template-argument is deduced, the
4885     //   template-argument type shall match the type of the
4886     //   template-parameter exactly, except that a template-argument
4887     //   deduced from an array bound may be of any integral type.
4888     Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
4889       << Arg->getType().getUnqualifiedType()
4890       << ParamType.getUnqualifiedType();
4891     Diag(Param->getLocation(), diag::note_template_param_here);
4892     return ExprError();
4893   }
4894 
4895   if (getLangOpts().CPlusPlus1z) {
4896     // FIXME: We can do some limited checking for a value-dependent but not
4897     // type-dependent argument.
4898     if (Arg->isValueDependent()) {
4899       Converted = TemplateArgument(Arg);
4900       return Arg;
4901     }
4902 
4903     // C++1z [temp.arg.nontype]p1:
4904     //   A template-argument for a non-type template parameter shall be
4905     //   a converted constant expression of the type of the template-parameter.
4906     APValue Value;
4907     ExprResult ArgResult = CheckConvertedConstantExpression(
4908         Arg, ParamType, Value, CCEK_TemplateArg);
4909     if (ArgResult.isInvalid())
4910       return ExprError();
4911 
4912     QualType CanonParamType = Context.getCanonicalType(ParamType);
4913 
4914     // Convert the APValue to a TemplateArgument.
4915     switch (Value.getKind()) {
4916     case APValue::Uninitialized:
4917       assert(ParamType->isNullPtrType());
4918       Converted = TemplateArgument(CanonParamType, /*isNullPtr*/true);
4919       break;
4920     case APValue::Int:
4921       assert(ParamType->isIntegralOrEnumerationType());
4922       Converted = TemplateArgument(Context, Value.getInt(), CanonParamType);
4923       break;
4924     case APValue::MemberPointer: {
4925       assert(ParamType->isMemberPointerType());
4926 
4927       // FIXME: We need TemplateArgument representation and mangling for these.
4928       if (!Value.getMemberPointerPath().empty()) {
4929         Diag(Arg->getLocStart(),
4930              diag::err_template_arg_member_ptr_base_derived_not_supported)
4931             << Value.getMemberPointerDecl() << ParamType
4932             << Arg->getSourceRange();
4933         return ExprError();
4934       }
4935 
4936       auto *VD = const_cast<ValueDecl*>(Value.getMemberPointerDecl());
4937       Converted = VD ? TemplateArgument(VD, CanonParamType)
4938                      : TemplateArgument(CanonParamType, /*isNullPtr*/true);
4939       break;
4940     }
4941     case APValue::LValue: {
4942       //   For a non-type template-parameter of pointer or reference type,
4943       //   the value of the constant expression shall not refer to
4944       assert(ParamType->isPointerType() || ParamType->isReferenceType() ||
4945              ParamType->isNullPtrType());
4946       // -- a temporary object
4947       // -- a string literal
4948       // -- the result of a typeid expression, or
4949       // -- a predefind __func__ variable
4950       if (auto *E = Value.getLValueBase().dyn_cast<const Expr*>()) {
4951         if (isa<CXXUuidofExpr>(E)) {
4952           Converted = TemplateArgument(const_cast<Expr*>(E));
4953           break;
4954         }
4955         Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4956           << Arg->getSourceRange();
4957         return ExprError();
4958       }
4959       auto *VD = const_cast<ValueDecl *>(
4960           Value.getLValueBase().dyn_cast<const ValueDecl *>());
4961       // -- a subobject
4962       if (Value.hasLValuePath() && Value.getLValuePath().size() == 1 &&
4963           VD && VD->getType()->isArrayType() &&
4964           Value.getLValuePath()[0].ArrayIndex == 0 &&
4965           !Value.isLValueOnePastTheEnd() && ParamType->isPointerType()) {
4966         // Per defect report (no number yet):
4967         //   ... other than a pointer to the first element of a complete array
4968         //       object.
4969       } else if (!Value.hasLValuePath() || Value.getLValuePath().size() ||
4970                  Value.isLValueOnePastTheEnd()) {
4971         Diag(StartLoc, diag::err_non_type_template_arg_subobject)
4972           << Value.getAsString(Context, ParamType);
4973         return ExprError();
4974       }
4975       assert((VD || !ParamType->isReferenceType()) &&
4976              "null reference should not be a constant expression");
4977       assert((!VD || !ParamType->isNullPtrType()) &&
4978              "non-null value of type nullptr_t?");
4979       Converted = VD ? TemplateArgument(VD, CanonParamType)
4980                      : TemplateArgument(CanonParamType, /*isNullPtr*/true);
4981       break;
4982     }
4983     case APValue::AddrLabelDiff:
4984       return Diag(StartLoc, diag::err_non_type_template_arg_addr_label_diff);
4985     case APValue::Float:
4986     case APValue::ComplexInt:
4987     case APValue::ComplexFloat:
4988     case APValue::Vector:
4989     case APValue::Array:
4990     case APValue::Struct:
4991     case APValue::Union:
4992       llvm_unreachable("invalid kind for template argument");
4993     }
4994 
4995     return ArgResult.get();
4996   }
4997 
4998   // C++ [temp.arg.nontype]p5:
4999   //   The following conversions are performed on each expression used
5000   //   as a non-type template-argument. If a non-type
5001   //   template-argument cannot be converted to the type of the
5002   //   corresponding template-parameter then the program is
5003   //   ill-formed.
5004   if (ParamType->isIntegralOrEnumerationType()) {
5005     // C++11:
5006     //   -- for a non-type template-parameter of integral or
5007     //      enumeration type, conversions permitted in a converted
5008     //      constant expression are applied.
5009     //
5010     // C++98:
5011     //   -- for a non-type template-parameter of integral or
5012     //      enumeration type, integral promotions (4.5) and integral
5013     //      conversions (4.7) are applied.
5014 
5015     if (getLangOpts().CPlusPlus11) {
5016       // We can't check arbitrary value-dependent arguments.
5017       // FIXME: If there's no viable conversion to the template parameter type,
5018       // we should be able to diagnose that prior to instantiation.
5019       if (Arg->isValueDependent()) {
5020         Converted = TemplateArgument(Arg);
5021         return Arg;
5022       }
5023 
5024       // C++ [temp.arg.nontype]p1:
5025       //   A template-argument for a non-type, non-template template-parameter
5026       //   shall be one of:
5027       //
5028       //     -- for a non-type template-parameter of integral or enumeration
5029       //        type, a converted constant expression of the type of the
5030       //        template-parameter; or
5031       llvm::APSInt Value;
5032       ExprResult ArgResult =
5033         CheckConvertedConstantExpression(Arg, ParamType, Value,
5034                                          CCEK_TemplateArg);
5035       if (ArgResult.isInvalid())
5036         return ExprError();
5037 
5038       // Widen the argument value to sizeof(parameter type). This is almost
5039       // always a no-op, except when the parameter type is bool. In
5040       // that case, this may extend the argument from 1 bit to 8 bits.
5041       QualType IntegerType = ParamType;
5042       if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5043         IntegerType = Enum->getDecl()->getIntegerType();
5044       Value = Value.extOrTrunc(Context.getTypeSize(IntegerType));
5045 
5046       Converted = TemplateArgument(Context, Value,
5047                                    Context.getCanonicalType(ParamType));
5048       return ArgResult;
5049     }
5050 
5051     ExprResult ArgResult = DefaultLvalueConversion(Arg);
5052     if (ArgResult.isInvalid())
5053       return ExprError();
5054     Arg = ArgResult.get();
5055 
5056     QualType ArgType = Arg->getType();
5057 
5058     // C++ [temp.arg.nontype]p1:
5059     //   A template-argument for a non-type, non-template
5060     //   template-parameter shall be one of:
5061     //
5062     //     -- an integral constant-expression of integral or enumeration
5063     //        type; or
5064     //     -- the name of a non-type template-parameter; or
5065     SourceLocation NonConstantLoc;
5066     llvm::APSInt Value;
5067     if (!ArgType->isIntegralOrEnumerationType()) {
5068       Diag(Arg->getLocStart(),
5069            diag::err_template_arg_not_integral_or_enumeral)
5070         << ArgType << Arg->getSourceRange();
5071       Diag(Param->getLocation(), diag::note_template_param_here);
5072       return ExprError();
5073     } else if (!Arg->isValueDependent()) {
5074       class TmplArgICEDiagnoser : public VerifyICEDiagnoser {
5075         QualType T;
5076 
5077       public:
5078         TmplArgICEDiagnoser(QualType T) : T(T) { }
5079 
5080         void diagnoseNotICE(Sema &S, SourceLocation Loc,
5081                             SourceRange SR) override {
5082           S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR;
5083         }
5084       } Diagnoser(ArgType);
5085 
5086       Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
5087                                             false).get();
5088       if (!Arg)
5089         return ExprError();
5090     }
5091 
5092     // From here on out, all we care about is the unqualified form
5093     // of the argument type.
5094     ArgType = ArgType.getUnqualifiedType();
5095 
5096     // Try to convert the argument to the parameter's type.
5097     if (Context.hasSameType(ParamType, ArgType)) {
5098       // Okay: no conversion necessary
5099     } else if (ParamType->isBooleanType()) {
5100       // This is an integral-to-boolean conversion.
5101       Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).get();
5102     } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
5103                !ParamType->isEnumeralType()) {
5104       // This is an integral promotion or conversion.
5105       Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).get();
5106     } else {
5107       // We can't perform this conversion.
5108       Diag(Arg->getLocStart(),
5109            diag::err_template_arg_not_convertible)
5110         << Arg->getType() << ParamType << Arg->getSourceRange();
5111       Diag(Param->getLocation(), diag::note_template_param_here);
5112       return ExprError();
5113     }
5114 
5115     // Add the value of this argument to the list of converted
5116     // arguments. We use the bitwidth and signedness of the template
5117     // parameter.
5118     if (Arg->isValueDependent()) {
5119       // The argument is value-dependent. Create a new
5120       // TemplateArgument with the converted expression.
5121       Converted = TemplateArgument(Arg);
5122       return Arg;
5123     }
5124 
5125     QualType IntegerType = Context.getCanonicalType(ParamType);
5126     if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5127       IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
5128 
5129     if (ParamType->isBooleanType()) {
5130       // Value must be zero or one.
5131       Value = Value != 0;
5132       unsigned AllowedBits = Context.getTypeSize(IntegerType);
5133       if (Value.getBitWidth() != AllowedBits)
5134         Value = Value.extOrTrunc(AllowedBits);
5135       Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
5136     } else {
5137       llvm::APSInt OldValue = Value;
5138 
5139       // Coerce the template argument's value to the value it will have
5140       // based on the template parameter's type.
5141       unsigned AllowedBits = Context.getTypeSize(IntegerType);
5142       if (Value.getBitWidth() != AllowedBits)
5143         Value = Value.extOrTrunc(AllowedBits);
5144       Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
5145 
5146       // Complain if an unsigned parameter received a negative value.
5147       if (IntegerType->isUnsignedIntegerOrEnumerationType()
5148                && (OldValue.isSigned() && OldValue.isNegative())) {
5149         Diag(Arg->getLocStart(), diag::warn_template_arg_negative)
5150           << OldValue.toString(10) << Value.toString(10) << Param->getType()
5151           << Arg->getSourceRange();
5152         Diag(Param->getLocation(), diag::note_template_param_here);
5153       }
5154 
5155       // Complain if we overflowed the template parameter's type.
5156       unsigned RequiredBits;
5157       if (IntegerType->isUnsignedIntegerOrEnumerationType())
5158         RequiredBits = OldValue.getActiveBits();
5159       else if (OldValue.isUnsigned())
5160         RequiredBits = OldValue.getActiveBits() + 1;
5161       else
5162         RequiredBits = OldValue.getMinSignedBits();
5163       if (RequiredBits > AllowedBits) {
5164         Diag(Arg->getLocStart(),
5165              diag::warn_template_arg_too_large)
5166           << OldValue.toString(10) << Value.toString(10) << Param->getType()
5167           << Arg->getSourceRange();
5168         Diag(Param->getLocation(), diag::note_template_param_here);
5169       }
5170     }
5171 
5172     Converted = TemplateArgument(Context, Value,
5173                                  ParamType->isEnumeralType()
5174                                    ? Context.getCanonicalType(ParamType)
5175                                    : IntegerType);
5176     return Arg;
5177   }
5178 
5179   QualType ArgType = Arg->getType();
5180   DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
5181 
5182   // Handle pointer-to-function, reference-to-function, and
5183   // pointer-to-member-function all in (roughly) the same way.
5184   if (// -- For a non-type template-parameter of type pointer to
5185       //    function, only the function-to-pointer conversion (4.3) is
5186       //    applied. If the template-argument represents a set of
5187       //    overloaded functions (or a pointer to such), the matching
5188       //    function is selected from the set (13.4).
5189       (ParamType->isPointerType() &&
5190        ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
5191       // -- For a non-type template-parameter of type reference to
5192       //    function, no conversions apply. If the template-argument
5193       //    represents a set of overloaded functions, the matching
5194       //    function is selected from the set (13.4).
5195       (ParamType->isReferenceType() &&
5196        ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
5197       // -- For a non-type template-parameter of type pointer to
5198       //    member function, no conversions apply. If the
5199       //    template-argument represents a set of overloaded member
5200       //    functions, the matching member function is selected from
5201       //    the set (13.4).
5202       (ParamType->isMemberPointerType() &&
5203        ParamType->getAs<MemberPointerType>()->getPointeeType()
5204          ->isFunctionType())) {
5205 
5206     if (Arg->getType() == Context.OverloadTy) {
5207       if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
5208                                                                 true,
5209                                                                 FoundResult)) {
5210         if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
5211           return ExprError();
5212 
5213         Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5214         ArgType = Arg->getType();
5215       } else
5216         return ExprError();
5217     }
5218 
5219     if (!ParamType->isMemberPointerType()) {
5220       if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5221                                                          ParamType,
5222                                                          Arg, Converted))
5223         return ExprError();
5224       return Arg;
5225     }
5226 
5227     if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5228                                              Converted))
5229       return ExprError();
5230     return Arg;
5231   }
5232 
5233   if (ParamType->isPointerType()) {
5234     //   -- for a non-type template-parameter of type pointer to
5235     //      object, qualification conversions (4.4) and the
5236     //      array-to-pointer conversion (4.2) are applied.
5237     // C++0x also allows a value of std::nullptr_t.
5238     assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
5239            "Only object pointers allowed here");
5240 
5241     if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5242                                                        ParamType,
5243                                                        Arg, Converted))
5244       return ExprError();
5245     return Arg;
5246   }
5247 
5248   if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
5249     //   -- For a non-type template-parameter of type reference to
5250     //      object, no conversions apply. The type referred to by the
5251     //      reference may be more cv-qualified than the (otherwise
5252     //      identical) type of the template-argument. The
5253     //      template-parameter is bound directly to the
5254     //      template-argument, which must be an lvalue.
5255     assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
5256            "Only object references allowed here");
5257 
5258     if (Arg->getType() == Context.OverloadTy) {
5259       if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
5260                                                  ParamRefType->getPointeeType(),
5261                                                                 true,
5262                                                                 FoundResult)) {
5263         if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
5264           return ExprError();
5265 
5266         Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5267         ArgType = Arg->getType();
5268       } else
5269         return ExprError();
5270     }
5271 
5272     if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5273                                                        ParamType,
5274                                                        Arg, Converted))
5275       return ExprError();
5276     return Arg;
5277   }
5278 
5279   // Deal with parameters of type std::nullptr_t.
5280   if (ParamType->isNullPtrType()) {
5281     if (Arg->isTypeDependent() || Arg->isValueDependent()) {
5282       Converted = TemplateArgument(Arg);
5283       return Arg;
5284     }
5285 
5286     switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) {
5287     case NPV_NotNullPointer:
5288       Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible)
5289         << Arg->getType() << ParamType;
5290       Diag(Param->getLocation(), diag::note_template_param_here);
5291       return ExprError();
5292 
5293     case NPV_Error:
5294       return ExprError();
5295 
5296     case NPV_NullPointer:
5297       Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
5298       Converted = TemplateArgument(Context.getCanonicalType(ParamType),
5299                                    /*isNullPtr*/true);
5300       return Arg;
5301     }
5302   }
5303 
5304   //     -- For a non-type template-parameter of type pointer to data
5305   //        member, qualification conversions (4.4) are applied.
5306   assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
5307 
5308   if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5309                                            Converted))
5310     return ExprError();
5311   return Arg;
5312 }
5313 
5314 /// \brief Check a template argument against its corresponding
5315 /// template template parameter.
5316 ///
5317 /// This routine implements the semantics of C++ [temp.arg.template].
5318 /// It returns true if an error occurred, and false otherwise.
5319 bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
5320                                  TemplateArgumentLoc &Arg,
5321                                  unsigned ArgumentPackIndex) {
5322   TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern();
5323   TemplateDecl *Template = Name.getAsTemplateDecl();
5324   if (!Template) {
5325     // Any dependent template name is fine.
5326     assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
5327     return false;
5328   }
5329 
5330   // C++0x [temp.arg.template]p1:
5331   //   A template-argument for a template template-parameter shall be
5332   //   the name of a class template or an alias template, expressed as an
5333   //   id-expression. When the template-argument names a class template, only
5334   //   primary class templates are considered when matching the
5335   //   template template argument with the corresponding parameter;
5336   //   partial specializations are not considered even if their
5337   //   parameter lists match that of the template template parameter.
5338   //
5339   // Note that we also allow template template parameters here, which
5340   // will happen when we are dealing with, e.g., class template
5341   // partial specializations.
5342   if (!isa<ClassTemplateDecl>(Template) &&
5343       !isa<TemplateTemplateParmDecl>(Template) &&
5344       !isa<TypeAliasTemplateDecl>(Template)) {
5345     assert(isa<FunctionTemplateDecl>(Template) &&
5346            "Only function templates are possible here");
5347     Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
5348     Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
5349       << Template;
5350   }
5351 
5352   TemplateParameterList *Params = Param->getTemplateParameters();
5353   if (Param->isExpandedParameterPack())
5354     Params = Param->getExpansionTemplateParameters(ArgumentPackIndex);
5355 
5356   return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
5357                                          Params,
5358                                          true,
5359                                          TPL_TemplateTemplateArgumentMatch,
5360                                          Arg.getLocation());
5361 }
5362 
5363 /// \brief Given a non-type template argument that refers to a
5364 /// declaration and the type of its corresponding non-type template
5365 /// parameter, produce an expression that properly refers to that
5366 /// declaration.
5367 ExprResult
5368 Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
5369                                               QualType ParamType,
5370                                               SourceLocation Loc) {
5371   // C++ [temp.param]p8:
5372   //
5373   //   A non-type template-parameter of type "array of T" or
5374   //   "function returning T" is adjusted to be of type "pointer to
5375   //   T" or "pointer to function returning T", respectively.
5376   if (ParamType->isArrayType())
5377     ParamType = Context.getArrayDecayedType(ParamType);
5378   else if (ParamType->isFunctionType())
5379     ParamType = Context.getPointerType(ParamType);
5380 
5381   // For a NULL non-type template argument, return nullptr casted to the
5382   // parameter's type.
5383   if (Arg.getKind() == TemplateArgument::NullPtr) {
5384     return ImpCastExprToType(
5385              new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc),
5386                              ParamType,
5387                              ParamType->getAs<MemberPointerType>()
5388                                ? CK_NullToMemberPointer
5389                                : CK_NullToPointer);
5390   }
5391   assert(Arg.getKind() == TemplateArgument::Declaration &&
5392          "Only declaration template arguments permitted here");
5393 
5394   ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
5395 
5396   if (VD->getDeclContext()->isRecord() &&
5397       (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD) ||
5398        isa<IndirectFieldDecl>(VD))) {
5399     // If the value is a class member, we might have a pointer-to-member.
5400     // Determine whether the non-type template template parameter is of
5401     // pointer-to-member type. If so, we need to build an appropriate
5402     // expression for a pointer-to-member, since a "normal" DeclRefExpr
5403     // would refer to the member itself.
5404     if (ParamType->isMemberPointerType()) {
5405       QualType ClassType
5406         = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
5407       NestedNameSpecifier *Qualifier
5408         = NestedNameSpecifier::Create(Context, nullptr, false,
5409                                       ClassType.getTypePtr());
5410       CXXScopeSpec SS;
5411       SS.MakeTrivial(Context, Qualifier, Loc);
5412 
5413       // The actual value-ness of this is unimportant, but for
5414       // internal consistency's sake, references to instance methods
5415       // are r-values.
5416       ExprValueKind VK = VK_LValue;
5417       if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
5418         VK = VK_RValue;
5419 
5420       ExprResult RefExpr = BuildDeclRefExpr(VD,
5421                                             VD->getType().getNonReferenceType(),
5422                                             VK,
5423                                             Loc,
5424                                             &SS);
5425       if (RefExpr.isInvalid())
5426         return ExprError();
5427 
5428       RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
5429 
5430       // We might need to perform a trailing qualification conversion, since
5431       // the element type on the parameter could be more qualified than the
5432       // element type in the expression we constructed.
5433       bool ObjCLifetimeConversion;
5434       if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
5435                                     ParamType.getUnqualifiedType(), false,
5436                                     ObjCLifetimeConversion))
5437         RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp);
5438 
5439       assert(!RefExpr.isInvalid() &&
5440              Context.hasSameType(((Expr*) RefExpr.get())->getType(),
5441                                  ParamType.getUnqualifiedType()));
5442       return RefExpr;
5443     }
5444   }
5445 
5446   QualType T = VD->getType().getNonReferenceType();
5447 
5448   if (ParamType->isPointerType()) {
5449     // When the non-type template parameter is a pointer, take the
5450     // address of the declaration.
5451     ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
5452     if (RefExpr.isInvalid())
5453       return ExprError();
5454 
5455     if (T->isFunctionType() || T->isArrayType()) {
5456       // Decay functions and arrays.
5457       RefExpr = DefaultFunctionArrayConversion(RefExpr.get());
5458       if (RefExpr.isInvalid())
5459         return ExprError();
5460 
5461       return RefExpr;
5462     }
5463 
5464     // Take the address of everything else
5465     return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
5466   }
5467 
5468   ExprValueKind VK = VK_RValue;
5469 
5470   // If the non-type template parameter has reference type, qualify the
5471   // resulting declaration reference with the extra qualifiers on the
5472   // type that the reference refers to.
5473   if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
5474     VK = VK_LValue;
5475     T = Context.getQualifiedType(T,
5476                               TargetRef->getPointeeType().getQualifiers());
5477   } else if (isa<FunctionDecl>(VD)) {
5478     // References to functions are always lvalues.
5479     VK = VK_LValue;
5480   }
5481 
5482   return BuildDeclRefExpr(VD, T, VK, Loc);
5483 }
5484 
5485 /// \brief Construct a new expression that refers to the given
5486 /// integral template argument with the given source-location
5487 /// information.
5488 ///
5489 /// This routine takes care of the mapping from an integral template
5490 /// argument (which may have any integral type) to the appropriate
5491 /// literal value.
5492 ExprResult
5493 Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
5494                                                   SourceLocation Loc) {
5495   assert(Arg.getKind() == TemplateArgument::Integral &&
5496          "Operation is only valid for integral template arguments");
5497   QualType OrigT = Arg.getIntegralType();
5498 
5499   // If this is an enum type that we're instantiating, we need to use an integer
5500   // type the same size as the enumerator.  We don't want to build an
5501   // IntegerLiteral with enum type.  The integer type of an enum type can be of
5502   // any integral type with C++11 enum classes, make sure we create the right
5503   // type of literal for it.
5504   QualType T = OrigT;
5505   if (const EnumType *ET = OrigT->getAs<EnumType>())
5506     T = ET->getDecl()->getIntegerType();
5507 
5508   Expr *E;
5509   if (T->isAnyCharacterType()) {
5510     // This does not need to handle u8 character literals because those are
5511     // of type char, and so can also be covered by an ASCII character literal.
5512     CharacterLiteral::CharacterKind Kind;
5513     if (T->isWideCharType())
5514       Kind = CharacterLiteral::Wide;
5515     else if (T->isChar16Type())
5516       Kind = CharacterLiteral::UTF16;
5517     else if (T->isChar32Type())
5518       Kind = CharacterLiteral::UTF32;
5519     else
5520       Kind = CharacterLiteral::Ascii;
5521 
5522     E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(),
5523                                        Kind, T, Loc);
5524   } else if (T->isBooleanType()) {
5525     E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
5526                                          T, Loc);
5527   } else if (T->isNullPtrType()) {
5528     E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
5529   } else {
5530     E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc);
5531   }
5532 
5533   if (OrigT->isEnumeralType()) {
5534     // FIXME: This is a hack. We need a better way to handle substituted
5535     // non-type template parameters.
5536     E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
5537                                nullptr,
5538                                Context.getTrivialTypeSourceInfo(OrigT, Loc),
5539                                Loc, Loc);
5540   }
5541 
5542   return E;
5543 }
5544 
5545 /// \brief Match two template parameters within template parameter lists.
5546 static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
5547                                        bool Complain,
5548                                      Sema::TemplateParameterListEqualKind Kind,
5549                                        SourceLocation TemplateArgLoc) {
5550   // Check the actual kind (type, non-type, template).
5551   if (Old->getKind() != New->getKind()) {
5552     if (Complain) {
5553       unsigned NextDiag = diag::err_template_param_different_kind;
5554       if (TemplateArgLoc.isValid()) {
5555         S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5556         NextDiag = diag::note_template_param_different_kind;
5557       }
5558       S.Diag(New->getLocation(), NextDiag)
5559         << (Kind != Sema::TPL_TemplateMatch);
5560       S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
5561         << (Kind != Sema::TPL_TemplateMatch);
5562     }
5563 
5564     return false;
5565   }
5566 
5567   // Check that both are parameter packs are neither are parameter packs.
5568   // However, if we are matching a template template argument to a
5569   // template template parameter, the template template parameter can have
5570   // a parameter pack where the template template argument does not.
5571   if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
5572       !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5573         Old->isTemplateParameterPack())) {
5574     if (Complain) {
5575       unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
5576       if (TemplateArgLoc.isValid()) {
5577         S.Diag(TemplateArgLoc,
5578              diag::err_template_arg_template_params_mismatch);
5579         NextDiag = diag::note_template_parameter_pack_non_pack;
5580       }
5581 
5582       unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
5583                       : isa<NonTypeTemplateParmDecl>(New)? 1
5584                       : 2;
5585       S.Diag(New->getLocation(), NextDiag)
5586         << ParamKind << New->isParameterPack();
5587       S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
5588         << ParamKind << Old->isParameterPack();
5589     }
5590 
5591     return false;
5592   }
5593 
5594   // For non-type template parameters, check the type of the parameter.
5595   if (NonTypeTemplateParmDecl *OldNTTP
5596                                     = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
5597     NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
5598 
5599     // If we are matching a template template argument to a template
5600     // template parameter and one of the non-type template parameter types
5601     // is dependent, then we must wait until template instantiation time
5602     // to actually compare the arguments.
5603     if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5604         (OldNTTP->getType()->isDependentType() ||
5605          NewNTTP->getType()->isDependentType()))
5606       return true;
5607 
5608     if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
5609       if (Complain) {
5610         unsigned NextDiag = diag::err_template_nontype_parm_different_type;
5611         if (TemplateArgLoc.isValid()) {
5612           S.Diag(TemplateArgLoc,
5613                  diag::err_template_arg_template_params_mismatch);
5614           NextDiag = diag::note_template_nontype_parm_different_type;
5615         }
5616         S.Diag(NewNTTP->getLocation(), NextDiag)
5617           << NewNTTP->getType()
5618           << (Kind != Sema::TPL_TemplateMatch);
5619         S.Diag(OldNTTP->getLocation(),
5620                diag::note_template_nontype_parm_prev_declaration)
5621           << OldNTTP->getType();
5622       }
5623 
5624       return false;
5625     }
5626 
5627     return true;
5628   }
5629 
5630   // For template template parameters, check the template parameter types.
5631   // The template parameter lists of template template
5632   // parameters must agree.
5633   if (TemplateTemplateParmDecl *OldTTP
5634                                     = dyn_cast<TemplateTemplateParmDecl>(Old)) {
5635     TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
5636     return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
5637                                             OldTTP->getTemplateParameters(),
5638                                             Complain,
5639                                         (Kind == Sema::TPL_TemplateMatch
5640                                            ? Sema::TPL_TemplateTemplateParmMatch
5641                                            : Kind),
5642                                             TemplateArgLoc);
5643   }
5644 
5645   return true;
5646 }
5647 
5648 /// \brief Diagnose a known arity mismatch when comparing template argument
5649 /// lists.
5650 static
5651 void DiagnoseTemplateParameterListArityMismatch(Sema &S,
5652                                                 TemplateParameterList *New,
5653                                                 TemplateParameterList *Old,
5654                                       Sema::TemplateParameterListEqualKind Kind,
5655                                                 SourceLocation TemplateArgLoc) {
5656   unsigned NextDiag = diag::err_template_param_list_different_arity;
5657   if (TemplateArgLoc.isValid()) {
5658     S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5659     NextDiag = diag::note_template_param_list_different_arity;
5660   }
5661   S.Diag(New->getTemplateLoc(), NextDiag)
5662     << (New->size() > Old->size())
5663     << (Kind != Sema::TPL_TemplateMatch)
5664     << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
5665   S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
5666     << (Kind != Sema::TPL_TemplateMatch)
5667     << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
5668 }
5669 
5670 /// \brief Determine whether the given template parameter lists are
5671 /// equivalent.
5672 ///
5673 /// \param New  The new template parameter list, typically written in the
5674 /// source code as part of a new template declaration.
5675 ///
5676 /// \param Old  The old template parameter list, typically found via
5677 /// name lookup of the template declared with this template parameter
5678 /// list.
5679 ///
5680 /// \param Complain  If true, this routine will produce a diagnostic if
5681 /// the template parameter lists are not equivalent.
5682 ///
5683 /// \param Kind describes how we are to match the template parameter lists.
5684 ///
5685 /// \param TemplateArgLoc If this source location is valid, then we
5686 /// are actually checking the template parameter list of a template
5687 /// argument (New) against the template parameter list of its
5688 /// corresponding template template parameter (Old). We produce
5689 /// slightly different diagnostics in this scenario.
5690 ///
5691 /// \returns True if the template parameter lists are equal, false
5692 /// otherwise.
5693 bool
5694 Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
5695                                      TemplateParameterList *Old,
5696                                      bool Complain,
5697                                      TemplateParameterListEqualKind Kind,
5698                                      SourceLocation TemplateArgLoc) {
5699   if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
5700     if (Complain)
5701       DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5702                                                  TemplateArgLoc);
5703 
5704     return false;
5705   }
5706 
5707   // C++0x [temp.arg.template]p3:
5708   //   A template-argument matches a template template-parameter (call it P)
5709   //   when each of the template parameters in the template-parameter-list of
5710   //   the template-argument's corresponding class template or alias template
5711   //   (call it A) matches the corresponding template parameter in the
5712   //   template-parameter-list of P. [...]
5713   TemplateParameterList::iterator NewParm = New->begin();
5714   TemplateParameterList::iterator NewParmEnd = New->end();
5715   for (TemplateParameterList::iterator OldParm = Old->begin(),
5716                                     OldParmEnd = Old->end();
5717        OldParm != OldParmEnd; ++OldParm) {
5718     if (Kind != TPL_TemplateTemplateArgumentMatch ||
5719         !(*OldParm)->isTemplateParameterPack()) {
5720       if (NewParm == NewParmEnd) {
5721         if (Complain)
5722           DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5723                                                      TemplateArgLoc);
5724 
5725         return false;
5726       }
5727 
5728       if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5729                                       Kind, TemplateArgLoc))
5730         return false;
5731 
5732       ++NewParm;
5733       continue;
5734     }
5735 
5736     // C++0x [temp.arg.template]p3:
5737     //   [...] When P's template- parameter-list contains a template parameter
5738     //   pack (14.5.3), the template parameter pack will match zero or more
5739     //   template parameters or template parameter packs in the
5740     //   template-parameter-list of A with the same type and form as the
5741     //   template parameter pack in P (ignoring whether those template
5742     //   parameters are template parameter packs).
5743     for (; NewParm != NewParmEnd; ++NewParm) {
5744       if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5745                                       Kind, TemplateArgLoc))
5746         return false;
5747     }
5748   }
5749 
5750   // Make sure we exhausted all of the arguments.
5751   if (NewParm != NewParmEnd) {
5752     if (Complain)
5753       DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5754                                                  TemplateArgLoc);
5755 
5756     return false;
5757   }
5758 
5759   return true;
5760 }
5761 
5762 /// \brief Check whether a template can be declared within this scope.
5763 ///
5764 /// If the template declaration is valid in this scope, returns
5765 /// false. Otherwise, issues a diagnostic and returns true.
5766 bool
5767 Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
5768   if (!S)
5769     return false;
5770 
5771   // Find the nearest enclosing declaration scope.
5772   while ((S->getFlags() & Scope::DeclScope) == 0 ||
5773          (S->getFlags() & Scope::TemplateParamScope) != 0)
5774     S = S->getParent();
5775 
5776   // C++ [temp]p4:
5777   //   A template [...] shall not have C linkage.
5778   DeclContext *Ctx = S->getEntity();
5779   if (Ctx && Ctx->isExternCContext())
5780     return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
5781              << TemplateParams->getSourceRange();
5782 
5783   while (Ctx && isa<LinkageSpecDecl>(Ctx))
5784     Ctx = Ctx->getParent();
5785 
5786   // C++ [temp]p2:
5787   //   A template-declaration can appear only as a namespace scope or
5788   //   class scope declaration.
5789   if (Ctx) {
5790     if (Ctx->isFileContext())
5791       return false;
5792     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) {
5793       // C++ [temp.mem]p2:
5794       //   A local class shall not have member templates.
5795       if (RD->isLocalClass())
5796         return Diag(TemplateParams->getTemplateLoc(),
5797                     diag::err_template_inside_local_class)
5798           << TemplateParams->getSourceRange();
5799       else
5800         return false;
5801     }
5802   }
5803 
5804   return Diag(TemplateParams->getTemplateLoc(),
5805               diag::err_template_outside_namespace_or_class_scope)
5806     << TemplateParams->getSourceRange();
5807 }
5808 
5809 /// \brief Determine what kind of template specialization the given declaration
5810 /// is.
5811 static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) {
5812   if (!D)
5813     return TSK_Undeclared;
5814 
5815   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
5816     return Record->getTemplateSpecializationKind();
5817   if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
5818     return Function->getTemplateSpecializationKind();
5819   if (VarDecl *Var = dyn_cast<VarDecl>(D))
5820     return Var->getTemplateSpecializationKind();
5821 
5822   return TSK_Undeclared;
5823 }
5824 
5825 /// \brief Check whether a specialization is well-formed in the current
5826 /// context.
5827 ///
5828 /// This routine determines whether a template specialization can be declared
5829 /// in the current context (C++ [temp.expl.spec]p2).
5830 ///
5831 /// \param S the semantic analysis object for which this check is being
5832 /// performed.
5833 ///
5834 /// \param Specialized the entity being specialized or instantiated, which
5835 /// may be a kind of template (class template, function template, etc.) or
5836 /// a member of a class template (member function, static data member,
5837 /// member class).
5838 ///
5839 /// \param PrevDecl the previous declaration of this entity, if any.
5840 ///
5841 /// \param Loc the location of the explicit specialization or instantiation of
5842 /// this entity.
5843 ///
5844 /// \param IsPartialSpecialization whether this is a partial specialization of
5845 /// a class template.
5846 ///
5847 /// \returns true if there was an error that we cannot recover from, false
5848 /// otherwise.
5849 static bool CheckTemplateSpecializationScope(Sema &S,
5850                                              NamedDecl *Specialized,
5851                                              NamedDecl *PrevDecl,
5852                                              SourceLocation Loc,
5853                                              bool IsPartialSpecialization) {
5854   // Keep these "kind" numbers in sync with the %select statements in the
5855   // various diagnostics emitted by this routine.
5856   int EntityKind = 0;
5857   if (isa<ClassTemplateDecl>(Specialized))
5858     EntityKind = IsPartialSpecialization? 1 : 0;
5859   else if (isa<VarTemplateDecl>(Specialized))
5860     EntityKind = IsPartialSpecialization ? 3 : 2;
5861   else if (isa<FunctionTemplateDecl>(Specialized))
5862     EntityKind = 4;
5863   else if (isa<CXXMethodDecl>(Specialized))
5864     EntityKind = 5;
5865   else if (isa<VarDecl>(Specialized))
5866     EntityKind = 6;
5867   else if (isa<RecordDecl>(Specialized))
5868     EntityKind = 7;
5869   else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11)
5870     EntityKind = 8;
5871   else {
5872     S.Diag(Loc, diag::err_template_spec_unknown_kind)
5873       << S.getLangOpts().CPlusPlus11;
5874     S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
5875     return true;
5876   }
5877 
5878   // C++ [temp.expl.spec]p2:
5879   //   An explicit specialization shall be declared in the namespace
5880   //   of which the template is a member, or, for member templates, in
5881   //   the namespace of which the enclosing class or enclosing class
5882   //   template is a member. An explicit specialization of a member
5883   //   function, member class or static data member of a class
5884   //   template shall be declared in the namespace of which the class
5885   //   template is a member. Such a declaration may also be a
5886   //   definition. If the declaration is not a definition, the
5887   //   specialization may be defined later in the name- space in which
5888   //   the explicit specialization was declared, or in a namespace
5889   //   that encloses the one in which the explicit specialization was
5890   //   declared.
5891   if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
5892     S.Diag(Loc, diag::err_template_spec_decl_function_scope)
5893       << Specialized;
5894     return true;
5895   }
5896 
5897   if (S.CurContext->isRecord() && !IsPartialSpecialization) {
5898     if (S.getLangOpts().MicrosoftExt) {
5899       // Do not warn for class scope explicit specialization during
5900       // instantiation, warning was already emitted during pattern
5901       // semantic analysis.
5902       if (!S.ActiveTemplateInstantiations.size())
5903         S.Diag(Loc, diag::ext_function_specialization_in_class)
5904           << Specialized;
5905     } else {
5906       S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5907         << Specialized;
5908       return true;
5909     }
5910   }
5911 
5912   if (S.CurContext->isRecord() &&
5913       !S.CurContext->Equals(Specialized->getDeclContext())) {
5914     // Make sure that we're specializing in the right record context.
5915     // Otherwise, things can go horribly wrong.
5916     S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5917       << Specialized;
5918     return true;
5919   }
5920 
5921   // C++ [temp.class.spec]p6:
5922   //   A class template partial specialization may be declared or redeclared
5923   //   in any namespace scope in which its definition may be defined (14.5.1
5924   //   and 14.5.2).
5925   DeclContext *SpecializedContext
5926     = Specialized->getDeclContext()->getEnclosingNamespaceContext();
5927   DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
5928 
5929   // Make sure that this redeclaration (or definition) occurs in an enclosing
5930   // namespace.
5931   // Note that HandleDeclarator() performs this check for explicit
5932   // specializations of function templates, static data members, and member
5933   // functions, so we skip the check here for those kinds of entities.
5934   // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
5935   // Should we refactor that check, so that it occurs later?
5936   if (!DC->Encloses(SpecializedContext) &&
5937       !(isa<FunctionTemplateDecl>(Specialized) ||
5938         isa<FunctionDecl>(Specialized) ||
5939         isa<VarTemplateDecl>(Specialized) ||
5940         isa<VarDecl>(Specialized))) {
5941     if (isa<TranslationUnitDecl>(SpecializedContext))
5942       S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
5943         << EntityKind << Specialized;
5944     else if (isa<NamespaceDecl>(SpecializedContext)) {
5945       int Diag = diag::err_template_spec_redecl_out_of_scope;
5946       if (S.getLangOpts().MicrosoftExt)
5947         Diag = diag::ext_ms_template_spec_redecl_out_of_scope;
5948       S.Diag(Loc, Diag) << EntityKind << Specialized
5949                         << cast<NamedDecl>(SpecializedContext);
5950     } else
5951       llvm_unreachable("unexpected namespace context for specialization");
5952 
5953     S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
5954   } else if ((!PrevDecl ||
5955               getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
5956               getTemplateSpecializationKind(PrevDecl) ==
5957                   TSK_ImplicitInstantiation)) {
5958     // C++ [temp.exp.spec]p2:
5959     //   An explicit specialization shall be declared in the namespace of which
5960     //   the template is a member, or, for member templates, in the namespace
5961     //   of which the enclosing class or enclosing class template is a member.
5962     //   An explicit specialization of a member function, member class or
5963     //   static data member of a class template shall be declared in the
5964     //   namespace of which the class template is a member.
5965     //
5966     // C++11 [temp.expl.spec]p2:
5967     //   An explicit specialization shall be declared in a namespace enclosing
5968     //   the specialized template.
5969     // C++11 [temp.explicit]p3:
5970     //   An explicit instantiation shall appear in an enclosing namespace of its
5971     //   template.
5972     if (!DC->InEnclosingNamespaceSetOf(SpecializedContext)) {
5973       bool IsCPlusPlus11Extension = DC->Encloses(SpecializedContext);
5974       if (isa<TranslationUnitDecl>(SpecializedContext)) {
5975         assert(!IsCPlusPlus11Extension &&
5976                "DC encloses TU but isn't in enclosing namespace set");
5977         S.Diag(Loc, diag::err_template_spec_decl_out_of_scope_global)
5978           << EntityKind << Specialized;
5979       } else if (isa<NamespaceDecl>(SpecializedContext)) {
5980         int Diag;
5981         if (!IsCPlusPlus11Extension)
5982           Diag = diag::err_template_spec_decl_out_of_scope;
5983         else if (!S.getLangOpts().CPlusPlus11)
5984           Diag = diag::ext_template_spec_decl_out_of_scope;
5985         else
5986           Diag = diag::warn_cxx98_compat_template_spec_decl_out_of_scope;
5987         S.Diag(Loc, Diag)
5988           << EntityKind << Specialized << cast<NamedDecl>(SpecializedContext);
5989       }
5990 
5991       S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
5992     }
5993   }
5994 
5995   return false;
5996 }
5997 
5998 static SourceRange findTemplateParameter(unsigned Depth, Expr *E) {
5999   if (!E->isInstantiationDependent())
6000     return SourceLocation();
6001   DependencyChecker Checker(Depth);
6002   Checker.TraverseStmt(E);
6003   if (Checker.Match && Checker.MatchLoc.isInvalid())
6004     return E->getSourceRange();
6005   return Checker.MatchLoc;
6006 }
6007 
6008 static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL) {
6009   if (!TL.getType()->isDependentType())
6010     return SourceLocation();
6011   DependencyChecker Checker(Depth);
6012   Checker.TraverseTypeLoc(TL);
6013   if (Checker.Match && Checker.MatchLoc.isInvalid())
6014     return TL.getSourceRange();
6015   return Checker.MatchLoc;
6016 }
6017 
6018 /// \brief Subroutine of Sema::CheckTemplatePartialSpecializationArgs
6019 /// that checks non-type template partial specialization arguments.
6020 static bool CheckNonTypeTemplatePartialSpecializationArgs(
6021     Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param,
6022     const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument) {
6023   for (unsigned I = 0; I != NumArgs; ++I) {
6024     if (Args[I].getKind() == TemplateArgument::Pack) {
6025       if (CheckNonTypeTemplatePartialSpecializationArgs(
6026               S, TemplateNameLoc, Param, Args[I].pack_begin(),
6027               Args[I].pack_size(), IsDefaultArgument))
6028         return true;
6029 
6030       continue;
6031     }
6032 
6033     if (Args[I].getKind() != TemplateArgument::Expression)
6034       continue;
6035 
6036     Expr *ArgExpr = Args[I].getAsExpr();
6037 
6038     // We can have a pack expansion of any of the bullets below.
6039     if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
6040       ArgExpr = Expansion->getPattern();
6041 
6042     // Strip off any implicit casts we added as part of type checking.
6043     while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
6044       ArgExpr = ICE->getSubExpr();
6045 
6046     // C++ [temp.class.spec]p8:
6047     //   A non-type argument is non-specialized if it is the name of a
6048     //   non-type parameter. All other non-type arguments are
6049     //   specialized.
6050     //
6051     // Below, we check the two conditions that only apply to
6052     // specialized non-type arguments, so skip any non-specialized
6053     // arguments.
6054     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
6055       if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
6056         continue;
6057 
6058     // C++ [temp.class.spec]p9:
6059     //   Within the argument list of a class template partial
6060     //   specialization, the following restrictions apply:
6061     //     -- A partially specialized non-type argument expression
6062     //        shall not involve a template parameter of the partial
6063     //        specialization except when the argument expression is a
6064     //        simple identifier.
6065     SourceRange ParamUseRange =
6066         findTemplateParameter(Param->getDepth(), ArgExpr);
6067     if (ParamUseRange.isValid()) {
6068       if (IsDefaultArgument) {
6069         S.Diag(TemplateNameLoc,
6070                diag::err_dependent_non_type_arg_in_partial_spec);
6071         S.Diag(ParamUseRange.getBegin(),
6072                diag::note_dependent_non_type_default_arg_in_partial_spec)
6073           << ParamUseRange;
6074       } else {
6075         S.Diag(ParamUseRange.getBegin(),
6076                diag::err_dependent_non_type_arg_in_partial_spec)
6077           << ParamUseRange;
6078       }
6079       return true;
6080     }
6081 
6082     //     -- The type of a template parameter corresponding to a
6083     //        specialized non-type argument shall not be dependent on a
6084     //        parameter of the specialization.
6085     //
6086     // FIXME: We need to delay this check until instantiation in some cases:
6087     //
6088     //   template<template<typename> class X> struct A {
6089     //     template<typename T, X<T> N> struct B;
6090     //     template<typename T> struct B<T, 0>;
6091     //   };
6092     //   template<typename> using X = int;
6093     //   A<X>::B<int, 0> b;
6094     ParamUseRange = findTemplateParameter(
6095             Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc());
6096     if (ParamUseRange.isValid()) {
6097       S.Diag(IsDefaultArgument ? TemplateNameLoc : ArgExpr->getLocStart(),
6098              diag::err_dependent_typed_non_type_arg_in_partial_spec)
6099         << Param->getType() << ParamUseRange;
6100       S.Diag(Param->getLocation(), diag::note_template_param_here)
6101         << (IsDefaultArgument ? ParamUseRange : SourceRange());
6102       return true;
6103     }
6104   }
6105 
6106   return false;
6107 }
6108 
6109 /// \brief Check the non-type template arguments of a class template
6110 /// partial specialization according to C++ [temp.class.spec]p9.
6111 ///
6112 /// \param TemplateNameLoc the location of the template name.
6113 /// \param TemplateParams the template parameters of the primary class
6114 ///        template.
6115 /// \param NumExplicit the number of explicitly-specified template arguments.
6116 /// \param TemplateArgs the template arguments of the class template
6117 ///        partial specialization.
6118 ///
6119 /// \returns \c true if there was an error, \c false otherwise.
6120 static bool CheckTemplatePartialSpecializationArgs(
6121     Sema &S, SourceLocation TemplateNameLoc,
6122     TemplateParameterList *TemplateParams, unsigned NumExplicit,
6123     SmallVectorImpl<TemplateArgument> &TemplateArgs) {
6124   const TemplateArgument *ArgList = TemplateArgs.data();
6125 
6126   for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6127     NonTypeTemplateParmDecl *Param
6128       = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
6129     if (!Param)
6130       continue;
6131 
6132     if (CheckNonTypeTemplatePartialSpecializationArgs(
6133             S, TemplateNameLoc, Param, &ArgList[I], 1, I >= NumExplicit))
6134       return true;
6135   }
6136 
6137   return false;
6138 }
6139 
6140 DeclResult
6141 Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
6142                                        TagUseKind TUK,
6143                                        SourceLocation KWLoc,
6144                                        SourceLocation ModulePrivateLoc,
6145                                        TemplateIdAnnotation &TemplateId,
6146                                        AttributeList *Attr,
6147                                        MultiTemplateParamsArg
6148                                            TemplateParameterLists,
6149                                        SkipBodyInfo *SkipBody) {
6150   assert(TUK != TUK_Reference && "References are not specializations");
6151 
6152   CXXScopeSpec &SS = TemplateId.SS;
6153 
6154   // NOTE: KWLoc is the location of the tag keyword. This will instead
6155   // store the location of the outermost template keyword in the declaration.
6156   SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
6157     ? TemplateParameterLists[0]->getTemplateLoc() : KWLoc;
6158   SourceLocation TemplateNameLoc = TemplateId.TemplateNameLoc;
6159   SourceLocation LAngleLoc = TemplateId.LAngleLoc;
6160   SourceLocation RAngleLoc = TemplateId.RAngleLoc;
6161 
6162   // Find the class template we're specializing
6163   TemplateName Name = TemplateId.Template.get();
6164   ClassTemplateDecl *ClassTemplate
6165     = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
6166 
6167   if (!ClassTemplate) {
6168     Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
6169       << (Name.getAsTemplateDecl() &&
6170           isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
6171     return true;
6172   }
6173 
6174   bool isExplicitSpecialization = false;
6175   bool isPartialSpecialization = false;
6176 
6177   // Check the validity of the template headers that introduce this
6178   // template.
6179   // FIXME: We probably shouldn't complain about these headers for
6180   // friend declarations.
6181   bool Invalid = false;
6182   TemplateParameterList *TemplateParams =
6183       MatchTemplateParametersToScopeSpecifier(
6184           KWLoc, TemplateNameLoc, SS, &TemplateId,
6185           TemplateParameterLists, TUK == TUK_Friend, isExplicitSpecialization,
6186           Invalid);
6187   if (Invalid)
6188     return true;
6189 
6190   if (TemplateParams && TemplateParams->size() > 0) {
6191     isPartialSpecialization = true;
6192 
6193     if (TUK == TUK_Friend) {
6194       Diag(KWLoc, diag::err_partial_specialization_friend)
6195         << SourceRange(LAngleLoc, RAngleLoc);
6196       return true;
6197     }
6198 
6199     // C++ [temp.class.spec]p10:
6200     //   The template parameter list of a specialization shall not
6201     //   contain default template argument values.
6202     for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
6203       Decl *Param = TemplateParams->getParam(I);
6204       if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
6205         if (TTP->hasDefaultArgument()) {
6206           Diag(TTP->getDefaultArgumentLoc(),
6207                diag::err_default_arg_in_partial_spec);
6208           TTP->removeDefaultArgument();
6209         }
6210       } else if (NonTypeTemplateParmDecl *NTTP
6211                    = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
6212         if (Expr *DefArg = NTTP->getDefaultArgument()) {
6213           Diag(NTTP->getDefaultArgumentLoc(),
6214                diag::err_default_arg_in_partial_spec)
6215             << DefArg->getSourceRange();
6216           NTTP->removeDefaultArgument();
6217         }
6218       } else {
6219         TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
6220         if (TTP->hasDefaultArgument()) {
6221           Diag(TTP->getDefaultArgument().getLocation(),
6222                diag::err_default_arg_in_partial_spec)
6223             << TTP->getDefaultArgument().getSourceRange();
6224           TTP->removeDefaultArgument();
6225         }
6226       }
6227     }
6228   } else if (TemplateParams) {
6229     if (TUK == TUK_Friend)
6230       Diag(KWLoc, diag::err_template_spec_friend)
6231         << FixItHint::CreateRemoval(
6232                                 SourceRange(TemplateParams->getTemplateLoc(),
6233                                             TemplateParams->getRAngleLoc()))
6234         << SourceRange(LAngleLoc, RAngleLoc);
6235     else
6236       isExplicitSpecialization = true;
6237   } else {
6238     assert(TUK == TUK_Friend && "should have a 'template<>' for this decl");
6239   }
6240 
6241   // Check that the specialization uses the same tag kind as the
6242   // original template.
6243   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6244   assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
6245   if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
6246                                     Kind, TUK == TUK_Definition, KWLoc,
6247                                     ClassTemplate->getIdentifier())) {
6248     Diag(KWLoc, diag::err_use_with_wrong_tag)
6249       << ClassTemplate
6250       << FixItHint::CreateReplacement(KWLoc,
6251                             ClassTemplate->getTemplatedDecl()->getKindName());
6252     Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
6253          diag::note_previous_use);
6254     Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
6255   }
6256 
6257   // Translate the parser's template argument list in our AST format.
6258   TemplateArgumentListInfo TemplateArgs =
6259       makeTemplateArgumentListInfo(*this, TemplateId);
6260 
6261   // Check for unexpanded parameter packs in any of the template arguments.
6262   for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6263     if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
6264                                         UPPC_PartialSpecialization))
6265       return true;
6266 
6267   // Check that the template argument list is well-formed for this
6268   // template.
6269   SmallVector<TemplateArgument, 4> Converted;
6270   if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
6271                                 TemplateArgs, false, Converted))
6272     return true;
6273 
6274   // Find the class template (partial) specialization declaration that
6275   // corresponds to these arguments.
6276   if (isPartialSpecialization) {
6277     if (CheckTemplatePartialSpecializationArgs(
6278             *this, TemplateNameLoc, ClassTemplate->getTemplateParameters(),
6279             TemplateArgs.size(), Converted))
6280       return true;
6281 
6282     bool InstantiationDependent;
6283     if (!Name.isDependent() &&
6284         !TemplateSpecializationType::anyDependentTemplateArguments(
6285                                              TemplateArgs.getArgumentArray(),
6286                                                          TemplateArgs.size(),
6287                                                      InstantiationDependent)) {
6288       Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
6289         << ClassTemplate->getDeclName();
6290       isPartialSpecialization = false;
6291     }
6292   }
6293 
6294   void *InsertPos = nullptr;
6295   ClassTemplateSpecializationDecl *PrevDecl = nullptr;
6296 
6297   if (isPartialSpecialization)
6298     // FIXME: Template parameter list matters, too
6299     PrevDecl = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
6300   else
6301     PrevDecl = ClassTemplate->findSpecialization(Converted, InsertPos);
6302 
6303   ClassTemplateSpecializationDecl *Specialization = nullptr;
6304 
6305   // Check whether we can declare a class template specialization in
6306   // the current scope.
6307   if (TUK != TUK_Friend &&
6308       CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
6309                                        TemplateNameLoc,
6310                                        isPartialSpecialization))
6311     return true;
6312 
6313   // The canonical type
6314   QualType CanonType;
6315   if (isPartialSpecialization) {
6316     // Build the canonical type that describes the converted template
6317     // arguments of the class template partial specialization.
6318     TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6319     CanonType = Context.getTemplateSpecializationType(CanonTemplate,
6320                                                       Converted.data(),
6321                                                       Converted.size());
6322 
6323     if (Context.hasSameType(CanonType,
6324                         ClassTemplate->getInjectedClassNameSpecialization())) {
6325       // C++ [temp.class.spec]p9b3:
6326       //
6327       //   -- The argument list of the specialization shall not be identical
6328       //      to the implicit argument list of the primary template.
6329       Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
6330         << /*class template*/0 << (TUK == TUK_Definition)
6331         << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
6332       return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
6333                                 ClassTemplate->getIdentifier(),
6334                                 TemplateNameLoc,
6335                                 Attr,
6336                                 TemplateParams,
6337                                 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
6338                                 /*FriendLoc*/SourceLocation(),
6339                                 TemplateParameterLists.size() - 1,
6340                                 TemplateParameterLists.data());
6341     }
6342 
6343     // Create a new class template partial specialization declaration node.
6344     ClassTemplatePartialSpecializationDecl *PrevPartial
6345       = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
6346     ClassTemplatePartialSpecializationDecl *Partial
6347       = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
6348                                              ClassTemplate->getDeclContext(),
6349                                                        KWLoc, TemplateNameLoc,
6350                                                        TemplateParams,
6351                                                        ClassTemplate,
6352                                                        Converted.data(),
6353                                                        Converted.size(),
6354                                                        TemplateArgs,
6355                                                        CanonType,
6356                                                        PrevPartial);
6357     SetNestedNameSpecifier(Partial, SS);
6358     if (TemplateParameterLists.size() > 1 && SS.isSet()) {
6359       Partial->setTemplateParameterListsInfo(
6360           Context, TemplateParameterLists.drop_back(1));
6361     }
6362 
6363     if (!PrevPartial)
6364       ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
6365     Specialization = Partial;
6366 
6367     // If we are providing an explicit specialization of a member class
6368     // template specialization, make a note of that.
6369     if (PrevPartial && PrevPartial->getInstantiatedFromMember())
6370       PrevPartial->setMemberSpecialization();
6371 
6372     // Check that all of the template parameters of the class template
6373     // partial specialization are deducible from the template
6374     // arguments. If not, this class template partial specialization
6375     // will never be used.
6376     llvm::SmallBitVector DeducibleParams(TemplateParams->size());
6377     MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
6378                                TemplateParams->getDepth(),
6379                                DeducibleParams);
6380 
6381     if (!DeducibleParams.all()) {
6382       unsigned NumNonDeducible = DeducibleParams.size()-DeducibleParams.count();
6383       Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
6384         << /*class template*/0 << (NumNonDeducible > 1)
6385         << SourceRange(TemplateNameLoc, RAngleLoc);
6386       for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
6387         if (!DeducibleParams[I]) {
6388           NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
6389           if (Param->getDeclName())
6390             Diag(Param->getLocation(),
6391                  diag::note_partial_spec_unused_parameter)
6392               << Param->getDeclName();
6393           else
6394             Diag(Param->getLocation(),
6395                  diag::note_partial_spec_unused_parameter)
6396               << "(anonymous)";
6397         }
6398       }
6399     }
6400   } else {
6401     // Create a new class template specialization declaration node for
6402     // this explicit specialization or friend declaration.
6403     Specialization
6404       = ClassTemplateSpecializationDecl::Create(Context, Kind,
6405                                              ClassTemplate->getDeclContext(),
6406                                                 KWLoc, TemplateNameLoc,
6407                                                 ClassTemplate,
6408                                                 Converted.data(),
6409                                                 Converted.size(),
6410                                                 PrevDecl);
6411     SetNestedNameSpecifier(Specialization, SS);
6412     if (TemplateParameterLists.size() > 0) {
6413       Specialization->setTemplateParameterListsInfo(Context,
6414                                                     TemplateParameterLists);
6415     }
6416 
6417     if (!PrevDecl)
6418       ClassTemplate->AddSpecialization(Specialization, InsertPos);
6419 
6420     if (CurContext->isDependentContext()) {
6421       // -fms-extensions permits specialization of nested classes without
6422       // fully specializing the outer class(es).
6423       assert(getLangOpts().MicrosoftExt &&
6424              "Only possible with -fms-extensions!");
6425       TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6426       CanonType = Context.getTemplateSpecializationType(
6427           CanonTemplate, Converted.data(), Converted.size());
6428     } else {
6429       CanonType = Context.getTypeDeclType(Specialization);
6430     }
6431   }
6432 
6433   // C++ [temp.expl.spec]p6:
6434   //   If a template, a member template or the member of a class template is
6435   //   explicitly specialized then that specialization shall be declared
6436   //   before the first use of that specialization that would cause an implicit
6437   //   instantiation to take place, in every translation unit in which such a
6438   //   use occurs; no diagnostic is required.
6439   if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
6440     bool Okay = false;
6441     for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
6442       // Is there any previous explicit specialization declaration?
6443       if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6444         Okay = true;
6445         break;
6446       }
6447     }
6448 
6449     if (!Okay) {
6450       SourceRange Range(TemplateNameLoc, RAngleLoc);
6451       Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
6452         << Context.getTypeDeclType(Specialization) << Range;
6453 
6454       Diag(PrevDecl->getPointOfInstantiation(),
6455            diag::note_instantiation_required_here)
6456         << (PrevDecl->getTemplateSpecializationKind()
6457                                                 != TSK_ImplicitInstantiation);
6458       return true;
6459     }
6460   }
6461 
6462   // If this is not a friend, note that this is an explicit specialization.
6463   if (TUK != TUK_Friend)
6464     Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
6465 
6466   // Check that this isn't a redefinition of this specialization.
6467   if (TUK == TUK_Definition) {
6468     RecordDecl *Def = Specialization->getDefinition();
6469     NamedDecl *Hidden = nullptr;
6470     if (Def && SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
6471       SkipBody->ShouldSkip = true;
6472       makeMergedDefinitionVisible(Hidden, KWLoc);
6473       // From here on out, treat this as just a redeclaration.
6474       TUK = TUK_Declaration;
6475     } else if (Def) {
6476       SourceRange Range(TemplateNameLoc, RAngleLoc);
6477       Diag(TemplateNameLoc, diag::err_redefinition)
6478         << Context.getTypeDeclType(Specialization) << Range;
6479       Diag(Def->getLocation(), diag::note_previous_definition);
6480       Specialization->setInvalidDecl();
6481       return true;
6482     }
6483   }
6484 
6485   if (Attr)
6486     ProcessDeclAttributeList(S, Specialization, Attr);
6487 
6488   // Add alignment attributes if necessary; these attributes are checked when
6489   // the ASTContext lays out the structure.
6490   if (TUK == TUK_Definition) {
6491     AddAlignmentAttributesForRecord(Specialization);
6492     AddMsStructLayoutForRecord(Specialization);
6493   }
6494 
6495   if (ModulePrivateLoc.isValid())
6496     Diag(Specialization->getLocation(), diag::err_module_private_specialization)
6497       << (isPartialSpecialization? 1 : 0)
6498       << FixItHint::CreateRemoval(ModulePrivateLoc);
6499 
6500   // Build the fully-sugared type for this class template
6501   // specialization as the user wrote in the specialization
6502   // itself. This means that we'll pretty-print the type retrieved
6503   // from the specialization's declaration the way that the user
6504   // actually wrote the specialization, rather than formatting the
6505   // name based on the "canonical" representation used to store the
6506   // template arguments in the specialization.
6507   TypeSourceInfo *WrittenTy
6508     = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
6509                                                 TemplateArgs, CanonType);
6510   if (TUK != TUK_Friend) {
6511     Specialization->setTypeAsWritten(WrittenTy);
6512     Specialization->setTemplateKeywordLoc(TemplateKWLoc);
6513   }
6514 
6515   // C++ [temp.expl.spec]p9:
6516   //   A template explicit specialization is in the scope of the
6517   //   namespace in which the template was defined.
6518   //
6519   // We actually implement this paragraph where we set the semantic
6520   // context (in the creation of the ClassTemplateSpecializationDecl),
6521   // but we also maintain the lexical context where the actual
6522   // definition occurs.
6523   Specialization->setLexicalDeclContext(CurContext);
6524 
6525   // We may be starting the definition of this specialization.
6526   if (TUK == TUK_Definition)
6527     Specialization->startDefinition();
6528 
6529   if (TUK == TUK_Friend) {
6530     FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
6531                                             TemplateNameLoc,
6532                                             WrittenTy,
6533                                             /*FIXME:*/KWLoc);
6534     Friend->setAccess(AS_public);
6535     CurContext->addDecl(Friend);
6536   } else {
6537     // Add the specialization into its lexical context, so that it can
6538     // be seen when iterating through the list of declarations in that
6539     // context. However, specializations are not found by name lookup.
6540     CurContext->addDecl(Specialization);
6541   }
6542   return Specialization;
6543 }
6544 
6545 Decl *Sema::ActOnTemplateDeclarator(Scope *S,
6546                               MultiTemplateParamsArg TemplateParameterLists,
6547                                     Declarator &D) {
6548   Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
6549   ActOnDocumentableDecl(NewDecl);
6550   return NewDecl;
6551 }
6552 
6553 /// \brief Strips various properties off an implicit instantiation
6554 /// that has just been explicitly specialized.
6555 static void StripImplicitInstantiation(NamedDecl *D) {
6556   D->dropAttr<DLLImportAttr>();
6557   D->dropAttr<DLLExportAttr>();
6558 
6559   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
6560     FD->setInlineSpecified(false);
6561 }
6562 
6563 /// \brief Compute the diagnostic location for an explicit instantiation
6564 //  declaration or definition.
6565 static SourceLocation DiagLocForExplicitInstantiation(
6566     NamedDecl* D, SourceLocation PointOfInstantiation) {
6567   // Explicit instantiations following a specialization have no effect and
6568   // hence no PointOfInstantiation. In that case, walk decl backwards
6569   // until a valid name loc is found.
6570   SourceLocation PrevDiagLoc = PointOfInstantiation;
6571   for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid();
6572        Prev = Prev->getPreviousDecl()) {
6573     PrevDiagLoc = Prev->getLocation();
6574   }
6575   assert(PrevDiagLoc.isValid() &&
6576          "Explicit instantiation without point of instantiation?");
6577   return PrevDiagLoc;
6578 }
6579 
6580 /// \brief Diagnose cases where we have an explicit template specialization
6581 /// before/after an explicit template instantiation, producing diagnostics
6582 /// for those cases where they are required and determining whether the
6583 /// new specialization/instantiation will have any effect.
6584 ///
6585 /// \param NewLoc the location of the new explicit specialization or
6586 /// instantiation.
6587 ///
6588 /// \param NewTSK the kind of the new explicit specialization or instantiation.
6589 ///
6590 /// \param PrevDecl the previous declaration of the entity.
6591 ///
6592 /// \param PrevTSK the kind of the old explicit specialization or instantiatin.
6593 ///
6594 /// \param PrevPointOfInstantiation if valid, indicates where the previus
6595 /// declaration was instantiated (either implicitly or explicitly).
6596 ///
6597 /// \param HasNoEffect will be set to true to indicate that the new
6598 /// specialization or instantiation has no effect and should be ignored.
6599 ///
6600 /// \returns true if there was an error that should prevent the introduction of
6601 /// the new declaration into the AST, false otherwise.
6602 bool
6603 Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
6604                                              TemplateSpecializationKind NewTSK,
6605                                              NamedDecl *PrevDecl,
6606                                              TemplateSpecializationKind PrevTSK,
6607                                         SourceLocation PrevPointOfInstantiation,
6608                                              bool &HasNoEffect) {
6609   HasNoEffect = false;
6610 
6611   switch (NewTSK) {
6612   case TSK_Undeclared:
6613   case TSK_ImplicitInstantiation:
6614     assert(
6615         (PrevTSK == TSK_Undeclared || PrevTSK == TSK_ImplicitInstantiation) &&
6616         "previous declaration must be implicit!");
6617     return false;
6618 
6619   case TSK_ExplicitSpecialization:
6620     switch (PrevTSK) {
6621     case TSK_Undeclared:
6622     case TSK_ExplicitSpecialization:
6623       // Okay, we're just specializing something that is either already
6624       // explicitly specialized or has merely been mentioned without any
6625       // instantiation.
6626       return false;
6627 
6628     case TSK_ImplicitInstantiation:
6629       if (PrevPointOfInstantiation.isInvalid()) {
6630         // The declaration itself has not actually been instantiated, so it is
6631         // still okay to specialize it.
6632         StripImplicitInstantiation(PrevDecl);
6633         return false;
6634       }
6635       // Fall through
6636 
6637     case TSK_ExplicitInstantiationDeclaration:
6638     case TSK_ExplicitInstantiationDefinition:
6639       assert((PrevTSK == TSK_ImplicitInstantiation ||
6640               PrevPointOfInstantiation.isValid()) &&
6641              "Explicit instantiation without point of instantiation?");
6642 
6643       // C++ [temp.expl.spec]p6:
6644       //   If a template, a member template or the member of a class template
6645       //   is explicitly specialized then that specialization shall be declared
6646       //   before the first use of that specialization that would cause an
6647       //   implicit instantiation to take place, in every translation unit in
6648       //   which such a use occurs; no diagnostic is required.
6649       for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
6650         // Is there any previous explicit specialization declaration?
6651         if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
6652           return false;
6653       }
6654 
6655       Diag(NewLoc, diag::err_specialization_after_instantiation)
6656         << PrevDecl;
6657       Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
6658         << (PrevTSK != TSK_ImplicitInstantiation);
6659 
6660       return true;
6661     }
6662 
6663   case TSK_ExplicitInstantiationDeclaration:
6664     switch (PrevTSK) {
6665     case TSK_ExplicitInstantiationDeclaration:
6666       // This explicit instantiation declaration is redundant (that's okay).
6667       HasNoEffect = true;
6668       return false;
6669 
6670     case TSK_Undeclared:
6671     case TSK_ImplicitInstantiation:
6672       // We're explicitly instantiating something that may have already been
6673       // implicitly instantiated; that's fine.
6674       return false;
6675 
6676     case TSK_ExplicitSpecialization:
6677       // C++0x [temp.explicit]p4:
6678       //   For a given set of template parameters, if an explicit instantiation
6679       //   of a template appears after a declaration of an explicit
6680       //   specialization for that template, the explicit instantiation has no
6681       //   effect.
6682       HasNoEffect = true;
6683       return false;
6684 
6685     case TSK_ExplicitInstantiationDefinition:
6686       // C++0x [temp.explicit]p10:
6687       //   If an entity is the subject of both an explicit instantiation
6688       //   declaration and an explicit instantiation definition in the same
6689       //   translation unit, the definition shall follow the declaration.
6690       Diag(NewLoc,
6691            diag::err_explicit_instantiation_declaration_after_definition);
6692 
6693       // Explicit instantiations following a specialization have no effect and
6694       // hence no PrevPointOfInstantiation. In that case, walk decl backwards
6695       // until a valid name loc is found.
6696       Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
6697            diag::note_explicit_instantiation_definition_here);
6698       HasNoEffect = true;
6699       return false;
6700     }
6701 
6702   case TSK_ExplicitInstantiationDefinition:
6703     switch (PrevTSK) {
6704     case TSK_Undeclared:
6705     case TSK_ImplicitInstantiation:
6706       // We're explicitly instantiating something that may have already been
6707       // implicitly instantiated; that's fine.
6708       return false;
6709 
6710     case TSK_ExplicitSpecialization:
6711       // C++ DR 259, C++0x [temp.explicit]p4:
6712       //   For a given set of template parameters, if an explicit
6713       //   instantiation of a template appears after a declaration of
6714       //   an explicit specialization for that template, the explicit
6715       //   instantiation has no effect.
6716       //
6717       // In C++98/03 mode, we only give an extension warning here, because it
6718       // is not harmful to try to explicitly instantiate something that
6719       // has been explicitly specialized.
6720       Diag(NewLoc, getLangOpts().CPlusPlus11 ?
6721            diag::warn_cxx98_compat_explicit_instantiation_after_specialization :
6722            diag::ext_explicit_instantiation_after_specialization)
6723         << PrevDecl;
6724       Diag(PrevDecl->getLocation(),
6725            diag::note_previous_template_specialization);
6726       HasNoEffect = true;
6727       return false;
6728 
6729     case TSK_ExplicitInstantiationDeclaration:
6730       // We're explicity instantiating a definition for something for which we
6731       // were previously asked to suppress instantiations. That's fine.
6732 
6733       // C++0x [temp.explicit]p4:
6734       //   For a given set of template parameters, if an explicit instantiation
6735       //   of a template appears after a declaration of an explicit
6736       //   specialization for that template, the explicit instantiation has no
6737       //   effect.
6738       for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
6739         // Is there any previous explicit specialization declaration?
6740         if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6741           HasNoEffect = true;
6742           break;
6743         }
6744       }
6745 
6746       return false;
6747 
6748     case TSK_ExplicitInstantiationDefinition:
6749       // C++0x [temp.spec]p5:
6750       //   For a given template and a given set of template-arguments,
6751       //     - an explicit instantiation definition shall appear at most once
6752       //       in a program,
6753 
6754       // MSVCCompat: MSVC silently ignores duplicate explicit instantiations.
6755       Diag(NewLoc, (getLangOpts().MSVCCompat)
6756                        ? diag::ext_explicit_instantiation_duplicate
6757                        : diag::err_explicit_instantiation_duplicate)
6758           << PrevDecl;
6759       Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
6760            diag::note_previous_explicit_instantiation);
6761       HasNoEffect = true;
6762       return false;
6763     }
6764   }
6765 
6766   llvm_unreachable("Missing specialization/instantiation case?");
6767 }
6768 
6769 /// \brief Perform semantic analysis for the given dependent function
6770 /// template specialization.
6771 ///
6772 /// The only possible way to get a dependent function template specialization
6773 /// is with a friend declaration, like so:
6774 ///
6775 /// \code
6776 ///   template \<class T> void foo(T);
6777 ///   template \<class T> class A {
6778 ///     friend void foo<>(T);
6779 ///   };
6780 /// \endcode
6781 ///
6782 /// There really isn't any useful analysis we can do here, so we
6783 /// just store the information.
6784 bool
6785 Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
6786                    const TemplateArgumentListInfo &ExplicitTemplateArgs,
6787                                                    LookupResult &Previous) {
6788   // Remove anything from Previous that isn't a function template in
6789   // the correct context.
6790   DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
6791   LookupResult::Filter F = Previous.makeFilter();
6792   while (F.hasNext()) {
6793     NamedDecl *D = F.next()->getUnderlyingDecl();
6794     if (!isa<FunctionTemplateDecl>(D) ||
6795         !FDLookupContext->InEnclosingNamespaceSetOf(
6796                               D->getDeclContext()->getRedeclContext()))
6797       F.erase();
6798   }
6799   F.done();
6800 
6801   // Should this be diagnosed here?
6802   if (Previous.empty()) return true;
6803 
6804   FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
6805                                          ExplicitTemplateArgs);
6806   return false;
6807 }
6808 
6809 /// \brief Perform semantic analysis for the given function template
6810 /// specialization.
6811 ///
6812 /// This routine performs all of the semantic analysis required for an
6813 /// explicit function template specialization. On successful completion,
6814 /// the function declaration \p FD will become a function template
6815 /// specialization.
6816 ///
6817 /// \param FD the function declaration, which will be updated to become a
6818 /// function template specialization.
6819 ///
6820 /// \param ExplicitTemplateArgs the explicitly-provided template arguments,
6821 /// if any. Note that this may be valid info even when 0 arguments are
6822 /// explicitly provided as in, e.g., \c void sort<>(char*, char*);
6823 /// as it anyway contains info on the angle brackets locations.
6824 ///
6825 /// \param Previous the set of declarations that may be specialized by
6826 /// this function specialization.
6827 bool Sema::CheckFunctionTemplateSpecialization(
6828     FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs,
6829     LookupResult &Previous) {
6830   // The set of function template specializations that could match this
6831   // explicit function template specialization.
6832   UnresolvedSet<8> Candidates;
6833   TemplateSpecCandidateSet FailedCandidates(FD->getLocation(),
6834                                             /*ForTakingAddress=*/false);
6835 
6836   llvm::SmallDenseMap<FunctionDecl *, TemplateArgumentListInfo, 8>
6837       ConvertedTemplateArgs;
6838 
6839   DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
6840   for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6841          I != E; ++I) {
6842     NamedDecl *Ovl = (*I)->getUnderlyingDecl();
6843     if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
6844       // Only consider templates found within the same semantic lookup scope as
6845       // FD.
6846       if (!FDLookupContext->InEnclosingNamespaceSetOf(
6847                                 Ovl->getDeclContext()->getRedeclContext()))
6848         continue;
6849 
6850       // When matching a constexpr member function template specialization
6851       // against the primary template, we don't yet know whether the
6852       // specialization has an implicit 'const' (because we don't know whether
6853       // it will be a static member function until we know which template it
6854       // specializes), so adjust it now assuming it specializes this template.
6855       QualType FT = FD->getType();
6856       if (FD->isConstexpr()) {
6857         CXXMethodDecl *OldMD =
6858           dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
6859         if (OldMD && OldMD->isConst()) {
6860           const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
6861           FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
6862           EPI.TypeQuals |= Qualifiers::Const;
6863           FT = Context.getFunctionType(FPT->getReturnType(),
6864                                        FPT->getParamTypes(), EPI);
6865         }
6866       }
6867 
6868       TemplateArgumentListInfo Args;
6869       if (ExplicitTemplateArgs)
6870         Args = *ExplicitTemplateArgs;
6871 
6872       // C++ [temp.expl.spec]p11:
6873       //   A trailing template-argument can be left unspecified in the
6874       //   template-id naming an explicit function template specialization
6875       //   provided it can be deduced from the function argument type.
6876       // Perform template argument deduction to determine whether we may be
6877       // specializing this template.
6878       // FIXME: It is somewhat wasteful to build
6879       TemplateDeductionInfo Info(FailedCandidates.getLocation());
6880       FunctionDecl *Specialization = nullptr;
6881       if (TemplateDeductionResult TDK = DeduceTemplateArguments(
6882               cast<FunctionTemplateDecl>(FunTmpl->getFirstDecl()),
6883               ExplicitTemplateArgs ? &Args : nullptr, FT, Specialization, Info)) {
6884         // Template argument deduction failed; record why it failed, so
6885         // that we can provide nifty diagnostics.
6886         FailedCandidates.addCandidate()
6887             .set(FunTmpl->getTemplatedDecl(),
6888                  MakeDeductionFailureInfo(Context, TDK, Info));
6889         (void)TDK;
6890         continue;
6891       }
6892 
6893       // Record this candidate.
6894       if (ExplicitTemplateArgs)
6895         ConvertedTemplateArgs[Specialization] = std::move(Args);
6896       Candidates.addDecl(Specialization, I.getAccess());
6897     }
6898   }
6899 
6900   // Find the most specialized function template.
6901   UnresolvedSetIterator Result = getMostSpecialized(
6902       Candidates.begin(), Candidates.end(), FailedCandidates,
6903       FD->getLocation(),
6904       PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(),
6905       PDiag(diag::err_function_template_spec_ambiguous)
6906           << FD->getDeclName() << (ExplicitTemplateArgs != nullptr),
6907       PDiag(diag::note_function_template_spec_matched));
6908 
6909   if (Result == Candidates.end())
6910     return true;
6911 
6912   // Ignore access information;  it doesn't figure into redeclaration checking.
6913   FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
6914 
6915   FunctionTemplateSpecializationInfo *SpecInfo
6916     = Specialization->getTemplateSpecializationInfo();
6917   assert(SpecInfo && "Function template specialization info missing?");
6918 
6919   // Note: do not overwrite location info if previous template
6920   // specialization kind was explicit.
6921   TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
6922   if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) {
6923     Specialization->setLocation(FD->getLocation());
6924     // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr
6925     // function can differ from the template declaration with respect to
6926     // the constexpr specifier.
6927     Specialization->setConstexpr(FD->isConstexpr());
6928   }
6929 
6930   // FIXME: Check if the prior specialization has a point of instantiation.
6931   // If so, we have run afoul of .
6932 
6933   // If this is a friend declaration, then we're not really declaring
6934   // an explicit specialization.
6935   bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
6936 
6937   // Check the scope of this explicit specialization.
6938   if (!isFriend &&
6939       CheckTemplateSpecializationScope(*this,
6940                                        Specialization->getPrimaryTemplate(),
6941                                        Specialization, FD->getLocation(),
6942                                        false))
6943     return true;
6944 
6945   // C++ [temp.expl.spec]p6:
6946   //   If a template, a member template or the member of a class template is
6947   //   explicitly specialized then that specialization shall be declared
6948   //   before the first use of that specialization that would cause an implicit
6949   //   instantiation to take place, in every translation unit in which such a
6950   //   use occurs; no diagnostic is required.
6951   bool HasNoEffect = false;
6952   if (!isFriend &&
6953       CheckSpecializationInstantiationRedecl(FD->getLocation(),
6954                                              TSK_ExplicitSpecialization,
6955                                              Specialization,
6956                                    SpecInfo->getTemplateSpecializationKind(),
6957                                          SpecInfo->getPointOfInstantiation(),
6958                                              HasNoEffect))
6959     return true;
6960 
6961   // Mark the prior declaration as an explicit specialization, so that later
6962   // clients know that this is an explicit specialization.
6963   if (!isFriend) {
6964     SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
6965     MarkUnusedFileScopedDecl(Specialization);
6966   }
6967 
6968   // Turn the given function declaration into a function template
6969   // specialization, with the template arguments from the previous
6970   // specialization.
6971   // Take copies of (semantic and syntactic) template argument lists.
6972   const TemplateArgumentList* TemplArgs = new (Context)
6973     TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
6974   FD->setFunctionTemplateSpecialization(
6975       Specialization->getPrimaryTemplate(), TemplArgs, /*InsertPos=*/nullptr,
6976       SpecInfo->getTemplateSpecializationKind(),
6977       ExplicitTemplateArgs ? &ConvertedTemplateArgs[Specialization] : nullptr);
6978 
6979   // The "previous declaration" for this function template specialization is
6980   // the prior function template specialization.
6981   Previous.clear();
6982   Previous.addDecl(Specialization);
6983   return false;
6984 }
6985 
6986 /// \brief Perform semantic analysis for the given non-template member
6987 /// specialization.
6988 ///
6989 /// This routine performs all of the semantic analysis required for an
6990 /// explicit member function specialization. On successful completion,
6991 /// the function declaration \p FD will become a member function
6992 /// specialization.
6993 ///
6994 /// \param Member the member declaration, which will be updated to become a
6995 /// specialization.
6996 ///
6997 /// \param Previous the set of declarations, one of which may be specialized
6998 /// by this function specialization;  the set will be modified to contain the
6999 /// redeclared member.
7000 bool
7001 Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
7002   assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
7003 
7004   // Try to find the member we are instantiating.
7005   NamedDecl *Instantiation = nullptr;
7006   NamedDecl *InstantiatedFrom = nullptr;
7007   MemberSpecializationInfo *MSInfo = nullptr;
7008 
7009   if (Previous.empty()) {
7010     // Nowhere to look anyway.
7011   } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
7012     for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7013            I != E; ++I) {
7014       NamedDecl *D = (*I)->getUnderlyingDecl();
7015       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
7016         QualType Adjusted = Function->getType();
7017         if (!hasExplicitCallingConv(Adjusted))
7018           Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
7019         if (Context.hasSameType(Adjusted, Method->getType())) {
7020           Instantiation = Method;
7021           InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
7022           MSInfo = Method->getMemberSpecializationInfo();
7023           break;
7024         }
7025       }
7026     }
7027   } else if (isa<VarDecl>(Member)) {
7028     VarDecl *PrevVar;
7029     if (Previous.isSingleResult() &&
7030         (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
7031       if (PrevVar->isStaticDataMember()) {
7032         Instantiation = PrevVar;
7033         InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
7034         MSInfo = PrevVar->getMemberSpecializationInfo();
7035       }
7036   } else if (isa<RecordDecl>(Member)) {
7037     CXXRecordDecl *PrevRecord;
7038     if (Previous.isSingleResult() &&
7039         (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
7040       Instantiation = PrevRecord;
7041       InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
7042       MSInfo = PrevRecord->getMemberSpecializationInfo();
7043     }
7044   } else if (isa<EnumDecl>(Member)) {
7045     EnumDecl *PrevEnum;
7046     if (Previous.isSingleResult() &&
7047         (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) {
7048       Instantiation = PrevEnum;
7049       InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum();
7050       MSInfo = PrevEnum->getMemberSpecializationInfo();
7051     }
7052   }
7053 
7054   if (!Instantiation) {
7055     // There is no previous declaration that matches. Since member
7056     // specializations are always out-of-line, the caller will complain about
7057     // this mismatch later.
7058     return false;
7059   }
7060 
7061   // If this is a friend, just bail out here before we start turning
7062   // things into explicit specializations.
7063   if (Member->getFriendObjectKind() != Decl::FOK_None) {
7064     // Preserve instantiation information.
7065     if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
7066       cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
7067                                       cast<CXXMethodDecl>(InstantiatedFrom),
7068         cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
7069     } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
7070       cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
7071                                       cast<CXXRecordDecl>(InstantiatedFrom),
7072         cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
7073     }
7074 
7075     Previous.clear();
7076     Previous.addDecl(Instantiation);
7077     return false;
7078   }
7079 
7080   // Make sure that this is a specialization of a member.
7081   if (!InstantiatedFrom) {
7082     Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
7083       << Member;
7084     Diag(Instantiation->getLocation(), diag::note_specialized_decl);
7085     return true;
7086   }
7087 
7088   // C++ [temp.expl.spec]p6:
7089   //   If a template, a member template or the member of a class template is
7090   //   explicitly specialized then that specialization shall be declared
7091   //   before the first use of that specialization that would cause an implicit
7092   //   instantiation to take place, in every translation unit in which such a
7093   //   use occurs; no diagnostic is required.
7094   assert(MSInfo && "Member specialization info missing?");
7095 
7096   bool HasNoEffect = false;
7097   if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
7098                                              TSK_ExplicitSpecialization,
7099                                              Instantiation,
7100                                      MSInfo->getTemplateSpecializationKind(),
7101                                            MSInfo->getPointOfInstantiation(),
7102                                              HasNoEffect))
7103     return true;
7104 
7105   // Check the scope of this explicit specialization.
7106   if (CheckTemplateSpecializationScope(*this,
7107                                        InstantiatedFrom,
7108                                        Instantiation, Member->getLocation(),
7109                                        false))
7110     return true;
7111 
7112   // Note that this is an explicit instantiation of a member.
7113   // the original declaration to note that it is an explicit specialization
7114   // (if it was previously an implicit instantiation). This latter step
7115   // makes bookkeeping easier.
7116   if (isa<FunctionDecl>(Member)) {
7117     FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
7118     if (InstantiationFunction->getTemplateSpecializationKind() ==
7119           TSK_ImplicitInstantiation) {
7120       InstantiationFunction->setTemplateSpecializationKind(
7121                                                   TSK_ExplicitSpecialization);
7122       InstantiationFunction->setLocation(Member->getLocation());
7123     }
7124 
7125     cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
7126                                         cast<CXXMethodDecl>(InstantiatedFrom),
7127                                                   TSK_ExplicitSpecialization);
7128     MarkUnusedFileScopedDecl(InstantiationFunction);
7129   } else if (isa<VarDecl>(Member)) {
7130     VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
7131     if (InstantiationVar->getTemplateSpecializationKind() ==
7132           TSK_ImplicitInstantiation) {
7133       InstantiationVar->setTemplateSpecializationKind(
7134                                                   TSK_ExplicitSpecialization);
7135       InstantiationVar->setLocation(Member->getLocation());
7136     }
7137 
7138     cast<VarDecl>(Member)->setInstantiationOfStaticDataMember(
7139         cast<VarDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
7140     MarkUnusedFileScopedDecl(InstantiationVar);
7141   } else if (isa<CXXRecordDecl>(Member)) {
7142     CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
7143     if (InstantiationClass->getTemplateSpecializationKind() ==
7144           TSK_ImplicitInstantiation) {
7145       InstantiationClass->setTemplateSpecializationKind(
7146                                                    TSK_ExplicitSpecialization);
7147       InstantiationClass->setLocation(Member->getLocation());
7148     }
7149 
7150     cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
7151                                         cast<CXXRecordDecl>(InstantiatedFrom),
7152                                                    TSK_ExplicitSpecialization);
7153   } else {
7154     assert(isa<EnumDecl>(Member) && "Only member enums remain");
7155     EnumDecl *InstantiationEnum = cast<EnumDecl>(Instantiation);
7156     if (InstantiationEnum->getTemplateSpecializationKind() ==
7157           TSK_ImplicitInstantiation) {
7158       InstantiationEnum->setTemplateSpecializationKind(
7159                                                    TSK_ExplicitSpecialization);
7160       InstantiationEnum->setLocation(Member->getLocation());
7161     }
7162 
7163     cast<EnumDecl>(Member)->setInstantiationOfMemberEnum(
7164         cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
7165   }
7166 
7167   // Save the caller the trouble of having to figure out which declaration
7168   // this specialization matches.
7169   Previous.clear();
7170   Previous.addDecl(Instantiation);
7171   return false;
7172 }
7173 
7174 /// \brief Check the scope of an explicit instantiation.
7175 ///
7176 /// \returns true if a serious error occurs, false otherwise.
7177 static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
7178                                             SourceLocation InstLoc,
7179                                             bool WasQualifiedName) {
7180   DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
7181   DeclContext *CurContext = S.CurContext->getRedeclContext();
7182 
7183   if (CurContext->isRecord()) {
7184     S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
7185       << D;
7186     return true;
7187   }
7188 
7189   // C++11 [temp.explicit]p3:
7190   //   An explicit instantiation shall appear in an enclosing namespace of its
7191   //   template. If the name declared in the explicit instantiation is an
7192   //   unqualified name, the explicit instantiation shall appear in the
7193   //   namespace where its template is declared or, if that namespace is inline
7194   //   (7.3.1), any namespace from its enclosing namespace set.
7195   //
7196   // This is DR275, which we do not retroactively apply to C++98/03.
7197   if (WasQualifiedName) {
7198     if (CurContext->Encloses(OrigContext))
7199       return false;
7200   } else {
7201     if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
7202       return false;
7203   }
7204 
7205   if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
7206     if (WasQualifiedName)
7207       S.Diag(InstLoc,
7208              S.getLangOpts().CPlusPlus11?
7209                diag::err_explicit_instantiation_out_of_scope :
7210                diag::warn_explicit_instantiation_out_of_scope_0x)
7211         << D << NS;
7212     else
7213       S.Diag(InstLoc,
7214              S.getLangOpts().CPlusPlus11?
7215                diag::err_explicit_instantiation_unqualified_wrong_namespace :
7216                diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
7217         << D << NS;
7218   } else
7219     S.Diag(InstLoc,
7220            S.getLangOpts().CPlusPlus11?
7221              diag::err_explicit_instantiation_must_be_global :
7222              diag::warn_explicit_instantiation_must_be_global_0x)
7223       << D;
7224   S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
7225   return false;
7226 }
7227 
7228 /// \brief Determine whether the given scope specifier has a template-id in it.
7229 static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
7230   if (!SS.isSet())
7231     return false;
7232 
7233   // C++11 [temp.explicit]p3:
7234   //   If the explicit instantiation is for a member function, a member class
7235   //   or a static data member of a class template specialization, the name of
7236   //   the class template specialization in the qualified-id for the member
7237   //   name shall be a simple-template-id.
7238   //
7239   // C++98 has the same restriction, just worded differently.
7240   for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS;
7241        NNS = NNS->getPrefix())
7242     if (const Type *T = NNS->getAsType())
7243       if (isa<TemplateSpecializationType>(T))
7244         return true;
7245 
7246   return false;
7247 }
7248 
7249 // Explicit instantiation of a class template specialization
7250 DeclResult
7251 Sema::ActOnExplicitInstantiation(Scope *S,
7252                                  SourceLocation ExternLoc,
7253                                  SourceLocation TemplateLoc,
7254                                  unsigned TagSpec,
7255                                  SourceLocation KWLoc,
7256                                  const CXXScopeSpec &SS,
7257                                  TemplateTy TemplateD,
7258                                  SourceLocation TemplateNameLoc,
7259                                  SourceLocation LAngleLoc,
7260                                  ASTTemplateArgsPtr TemplateArgsIn,
7261                                  SourceLocation RAngleLoc,
7262                                  AttributeList *Attr) {
7263   // Find the class template we're specializing
7264   TemplateName Name = TemplateD.get();
7265   TemplateDecl *TD = Name.getAsTemplateDecl();
7266   // Check that the specialization uses the same tag kind as the
7267   // original template.
7268   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7269   assert(Kind != TTK_Enum &&
7270          "Invalid enum tag in class template explicit instantiation!");
7271 
7272   if (isa<TypeAliasTemplateDecl>(TD)) {
7273       Diag(KWLoc, diag::err_tag_reference_non_tag) << Kind;
7274       Diag(TD->getTemplatedDecl()->getLocation(),
7275            diag::note_previous_use);
7276     return true;
7277   }
7278 
7279   ClassTemplateDecl *ClassTemplate = cast<ClassTemplateDecl>(TD);
7280 
7281   if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
7282                                     Kind, /*isDefinition*/false, KWLoc,
7283                                     ClassTemplate->getIdentifier())) {
7284     Diag(KWLoc, diag::err_use_with_wrong_tag)
7285       << ClassTemplate
7286       << FixItHint::CreateReplacement(KWLoc,
7287                             ClassTemplate->getTemplatedDecl()->getKindName());
7288     Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
7289          diag::note_previous_use);
7290     Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7291   }
7292 
7293   // C++0x [temp.explicit]p2:
7294   //   There are two forms of explicit instantiation: an explicit instantiation
7295   //   definition and an explicit instantiation declaration. An explicit
7296   //   instantiation declaration begins with the extern keyword. [...]
7297   TemplateSpecializationKind TSK = ExternLoc.isInvalid()
7298                                        ? TSK_ExplicitInstantiationDefinition
7299                                        : TSK_ExplicitInstantiationDeclaration;
7300 
7301   if (TSK == TSK_ExplicitInstantiationDeclaration) {
7302     // Check for dllexport class template instantiation declarations.
7303     for (AttributeList *A = Attr; A; A = A->getNext()) {
7304       if (A->getKind() == AttributeList::AT_DLLExport) {
7305         Diag(ExternLoc,
7306              diag::warn_attribute_dllexport_explicit_instantiation_decl);
7307         Diag(A->getLoc(), diag::note_attribute);
7308         break;
7309       }
7310     }
7311 
7312     if (auto *A = ClassTemplate->getTemplatedDecl()->getAttr<DLLExportAttr>()) {
7313       Diag(ExternLoc,
7314            diag::warn_attribute_dllexport_explicit_instantiation_decl);
7315       Diag(A->getLocation(), diag::note_attribute);
7316     }
7317   }
7318 
7319   // Translate the parser's template argument list in our AST format.
7320   TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
7321   translateTemplateArguments(TemplateArgsIn, TemplateArgs);
7322 
7323   // Check that the template argument list is well-formed for this
7324   // template.
7325   SmallVector<TemplateArgument, 4> Converted;
7326   if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
7327                                 TemplateArgs, false, Converted))
7328     return true;
7329 
7330   // Find the class template specialization declaration that
7331   // corresponds to these arguments.
7332   void *InsertPos = nullptr;
7333   ClassTemplateSpecializationDecl *PrevDecl
7334     = ClassTemplate->findSpecialization(Converted, InsertPos);
7335 
7336   TemplateSpecializationKind PrevDecl_TSK
7337     = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
7338 
7339   // C++0x [temp.explicit]p2:
7340   //   [...] An explicit instantiation shall appear in an enclosing
7341   //   namespace of its template. [...]
7342   //
7343   // This is C++ DR 275.
7344   if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
7345                                       SS.isSet()))
7346     return true;
7347 
7348   ClassTemplateSpecializationDecl *Specialization = nullptr;
7349 
7350   bool HasNoEffect = false;
7351   if (PrevDecl) {
7352     if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
7353                                                PrevDecl, PrevDecl_TSK,
7354                                             PrevDecl->getPointOfInstantiation(),
7355                                                HasNoEffect))
7356       return PrevDecl;
7357 
7358     // Even though HasNoEffect == true means that this explicit instantiation
7359     // has no effect on semantics, we go on to put its syntax in the AST.
7360 
7361     if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
7362         PrevDecl_TSK == TSK_Undeclared) {
7363       // Since the only prior class template specialization with these
7364       // arguments was referenced but not declared, reuse that
7365       // declaration node as our own, updating the source location
7366       // for the template name to reflect our new declaration.
7367       // (Other source locations will be updated later.)
7368       Specialization = PrevDecl;
7369       Specialization->setLocation(TemplateNameLoc);
7370       PrevDecl = nullptr;
7371     }
7372   }
7373 
7374   if (!Specialization) {
7375     // Create a new class template specialization declaration node for
7376     // this explicit specialization.
7377     Specialization
7378       = ClassTemplateSpecializationDecl::Create(Context, Kind,
7379                                              ClassTemplate->getDeclContext(),
7380                                                 KWLoc, TemplateNameLoc,
7381                                                 ClassTemplate,
7382                                                 Converted.data(),
7383                                                 Converted.size(),
7384                                                 PrevDecl);
7385     SetNestedNameSpecifier(Specialization, SS);
7386 
7387     if (!HasNoEffect && !PrevDecl) {
7388       // Insert the new specialization.
7389       ClassTemplate->AddSpecialization(Specialization, InsertPos);
7390     }
7391   }
7392 
7393   // Build the fully-sugared type for this explicit instantiation as
7394   // the user wrote in the explicit instantiation itself. This means
7395   // that we'll pretty-print the type retrieved from the
7396   // specialization's declaration the way that the user actually wrote
7397   // the explicit instantiation, rather than formatting the name based
7398   // on the "canonical" representation used to store the template
7399   // arguments in the specialization.
7400   TypeSourceInfo *WrittenTy
7401     = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
7402                                                 TemplateArgs,
7403                                   Context.getTypeDeclType(Specialization));
7404   Specialization->setTypeAsWritten(WrittenTy);
7405 
7406   // Set source locations for keywords.
7407   Specialization->setExternLoc(ExternLoc);
7408   Specialization->setTemplateKeywordLoc(TemplateLoc);
7409   Specialization->setRBraceLoc(SourceLocation());
7410 
7411   if (Attr)
7412     ProcessDeclAttributeList(S, Specialization, Attr);
7413 
7414   // Add the explicit instantiation into its lexical context. However,
7415   // since explicit instantiations are never found by name lookup, we
7416   // just put it into the declaration context directly.
7417   Specialization->setLexicalDeclContext(CurContext);
7418   CurContext->addDecl(Specialization);
7419 
7420   // Syntax is now OK, so return if it has no other effect on semantics.
7421   if (HasNoEffect) {
7422     // Set the template specialization kind.
7423     Specialization->setTemplateSpecializationKind(TSK);
7424     return Specialization;
7425   }
7426 
7427   // C++ [temp.explicit]p3:
7428   //   A definition of a class template or class member template
7429   //   shall be in scope at the point of the explicit instantiation of
7430   //   the class template or class member template.
7431   //
7432   // This check comes when we actually try to perform the
7433   // instantiation.
7434   ClassTemplateSpecializationDecl *Def
7435     = cast_or_null<ClassTemplateSpecializationDecl>(
7436                                               Specialization->getDefinition());
7437   if (!Def)
7438     InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
7439   else if (TSK == TSK_ExplicitInstantiationDefinition) {
7440     MarkVTableUsed(TemplateNameLoc, Specialization, true);
7441     Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
7442   }
7443 
7444   // Instantiate the members of this class template specialization.
7445   Def = cast_or_null<ClassTemplateSpecializationDecl>(
7446                                        Specialization->getDefinition());
7447   if (Def) {
7448     TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
7449 
7450     // Fix a TSK_ExplicitInstantiationDeclaration followed by a
7451     // TSK_ExplicitInstantiationDefinition
7452     if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
7453         TSK == TSK_ExplicitInstantiationDefinition) {
7454       // FIXME: Need to notify the ASTMutationListener that we did this.
7455       Def->setTemplateSpecializationKind(TSK);
7456 
7457       if (!getDLLAttr(Def) && getDLLAttr(Specialization) &&
7458           Context.getTargetInfo().getCXXABI().isMicrosoft()) {
7459         // In the MS ABI, an explicit instantiation definition can add a dll
7460         // attribute to a template with a previous instantiation declaration.
7461         // MinGW doesn't allow this.
7462         auto *A = cast<InheritableAttr>(
7463             getDLLAttr(Specialization)->clone(getASTContext()));
7464         A->setInherited(true);
7465         Def->addAttr(A);
7466         checkClassLevelDLLAttribute(Def);
7467 
7468         // Propagate attribute to base class templates.
7469         for (auto &B : Def->bases()) {
7470           if (auto *BT = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
7471                   B.getType()->getAsCXXRecordDecl()))
7472             propagateDLLAttrToBaseClassTemplate(Def, A, BT, B.getLocStart());
7473         }
7474       }
7475     }
7476 
7477     // Set the template specialization kind. Make sure it is set before
7478     // instantiating the members which will trigger ASTConsumer callbacks.
7479     Specialization->setTemplateSpecializationKind(TSK);
7480     InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
7481   } else {
7482 
7483     // Set the template specialization kind.
7484     Specialization->setTemplateSpecializationKind(TSK);
7485   }
7486 
7487   return Specialization;
7488 }
7489 
7490 // Explicit instantiation of a member class of a class template.
7491 DeclResult
7492 Sema::ActOnExplicitInstantiation(Scope *S,
7493                                  SourceLocation ExternLoc,
7494                                  SourceLocation TemplateLoc,
7495                                  unsigned TagSpec,
7496                                  SourceLocation KWLoc,
7497                                  CXXScopeSpec &SS,
7498                                  IdentifierInfo *Name,
7499                                  SourceLocation NameLoc,
7500                                  AttributeList *Attr) {
7501 
7502   bool Owned = false;
7503   bool IsDependent = false;
7504   Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
7505                         KWLoc, SS, Name, NameLoc, Attr, AS_none,
7506                         /*ModulePrivateLoc=*/SourceLocation(),
7507                         MultiTemplateParamsArg(), Owned, IsDependent,
7508                         SourceLocation(), false, TypeResult(),
7509                         /*IsTypeSpecifier*/false);
7510   assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
7511 
7512   if (!TagD)
7513     return true;
7514 
7515   TagDecl *Tag = cast<TagDecl>(TagD);
7516   assert(!Tag->isEnum() && "shouldn't see enumerations here");
7517 
7518   if (Tag->isInvalidDecl())
7519     return true;
7520 
7521   CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
7522   CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
7523   if (!Pattern) {
7524     Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
7525       << Context.getTypeDeclType(Record);
7526     Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
7527     return true;
7528   }
7529 
7530   // C++0x [temp.explicit]p2:
7531   //   If the explicit instantiation is for a class or member class, the
7532   //   elaborated-type-specifier in the declaration shall include a
7533   //   simple-template-id.
7534   //
7535   // C++98 has the same restriction, just worded differently.
7536   if (!ScopeSpecifierHasTemplateId(SS))
7537     Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
7538       << Record << SS.getRange();
7539 
7540   // C++0x [temp.explicit]p2:
7541   //   There are two forms of explicit instantiation: an explicit instantiation
7542   //   definition and an explicit instantiation declaration. An explicit
7543   //   instantiation declaration begins with the extern keyword. [...]
7544   TemplateSpecializationKind TSK
7545     = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7546                            : TSK_ExplicitInstantiationDeclaration;
7547 
7548   // C++0x [temp.explicit]p2:
7549   //   [...] An explicit instantiation shall appear in an enclosing
7550   //   namespace of its template. [...]
7551   //
7552   // This is C++ DR 275.
7553   CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
7554 
7555   // Verify that it is okay to explicitly instantiate here.
7556   CXXRecordDecl *PrevDecl
7557     = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl());
7558   if (!PrevDecl && Record->getDefinition())
7559     PrevDecl = Record;
7560   if (PrevDecl) {
7561     MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
7562     bool HasNoEffect = false;
7563     assert(MSInfo && "No member specialization information?");
7564     if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
7565                                                PrevDecl,
7566                                         MSInfo->getTemplateSpecializationKind(),
7567                                              MSInfo->getPointOfInstantiation(),
7568                                                HasNoEffect))
7569       return true;
7570     if (HasNoEffect)
7571       return TagD;
7572   }
7573 
7574   CXXRecordDecl *RecordDef
7575     = cast_or_null<CXXRecordDecl>(Record->getDefinition());
7576   if (!RecordDef) {
7577     // C++ [temp.explicit]p3:
7578     //   A definition of a member class of a class template shall be in scope
7579     //   at the point of an explicit instantiation of the member class.
7580     CXXRecordDecl *Def
7581       = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
7582     if (!Def) {
7583       Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
7584         << 0 << Record->getDeclName() << Record->getDeclContext();
7585       Diag(Pattern->getLocation(), diag::note_forward_declaration)
7586         << Pattern;
7587       return true;
7588     } else {
7589       if (InstantiateClass(NameLoc, Record, Def,
7590                            getTemplateInstantiationArgs(Record),
7591                            TSK))
7592         return true;
7593 
7594       RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
7595       if (!RecordDef)
7596         return true;
7597     }
7598   }
7599 
7600   // Instantiate all of the members of the class.
7601   InstantiateClassMembers(NameLoc, RecordDef,
7602                           getTemplateInstantiationArgs(Record), TSK);
7603 
7604   if (TSK == TSK_ExplicitInstantiationDefinition)
7605     MarkVTableUsed(NameLoc, RecordDef, true);
7606 
7607   // FIXME: We don't have any representation for explicit instantiations of
7608   // member classes. Such a representation is not needed for compilation, but it
7609   // should be available for clients that want to see all of the declarations in
7610   // the source code.
7611   return TagD;
7612 }
7613 
7614 DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
7615                                             SourceLocation ExternLoc,
7616                                             SourceLocation TemplateLoc,
7617                                             Declarator &D) {
7618   // Explicit instantiations always require a name.
7619   // TODO: check if/when DNInfo should replace Name.
7620   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7621   DeclarationName Name = NameInfo.getName();
7622   if (!Name) {
7623     if (!D.isInvalidType())
7624       Diag(D.getDeclSpec().getLocStart(),
7625            diag::err_explicit_instantiation_requires_name)
7626         << D.getDeclSpec().getSourceRange()
7627         << D.getSourceRange();
7628 
7629     return true;
7630   }
7631 
7632   // The scope passed in may not be a decl scope.  Zip up the scope tree until
7633   // we find one that is.
7634   while ((S->getFlags() & Scope::DeclScope) == 0 ||
7635          (S->getFlags() & Scope::TemplateParamScope) != 0)
7636     S = S->getParent();
7637 
7638   // Determine the type of the declaration.
7639   TypeSourceInfo *T = GetTypeForDeclarator(D, S);
7640   QualType R = T->getType();
7641   if (R.isNull())
7642     return true;
7643 
7644   // C++ [dcl.stc]p1:
7645   //   A storage-class-specifier shall not be specified in [...] an explicit
7646   //   instantiation (14.7.2) directive.
7647   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
7648     Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
7649       << Name;
7650     return true;
7651   } else if (D.getDeclSpec().getStorageClassSpec()
7652                                                 != DeclSpec::SCS_unspecified) {
7653     // Complain about then remove the storage class specifier.
7654     Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
7655       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7656 
7657     D.getMutableDeclSpec().ClearStorageClassSpecs();
7658   }
7659 
7660   // C++0x [temp.explicit]p1:
7661   //   [...] An explicit instantiation of a function template shall not use the
7662   //   inline or constexpr specifiers.
7663   // Presumably, this also applies to member functions of class templates as
7664   // well.
7665   if (D.getDeclSpec().isInlineSpecified())
7666     Diag(D.getDeclSpec().getInlineSpecLoc(),
7667          getLangOpts().CPlusPlus11 ?
7668            diag::err_explicit_instantiation_inline :
7669            diag::warn_explicit_instantiation_inline_0x)
7670       << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
7671   if (D.getDeclSpec().isConstexprSpecified() && R->isFunctionType())
7672     // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is
7673     // not already specified.
7674     Diag(D.getDeclSpec().getConstexprSpecLoc(),
7675          diag::err_explicit_instantiation_constexpr);
7676 
7677   // C++0x [temp.explicit]p2:
7678   //   There are two forms of explicit instantiation: an explicit instantiation
7679   //   definition and an explicit instantiation declaration. An explicit
7680   //   instantiation declaration begins with the extern keyword. [...]
7681   TemplateSpecializationKind TSK
7682     = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7683                            : TSK_ExplicitInstantiationDeclaration;
7684 
7685   LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
7686   LookupParsedName(Previous, S, &D.getCXXScopeSpec());
7687 
7688   if (!R->isFunctionType()) {
7689     // C++ [temp.explicit]p1:
7690     //   A [...] static data member of a class template can be explicitly
7691     //   instantiated from the member definition associated with its class
7692     //   template.
7693     // C++1y [temp.explicit]p1:
7694     //   A [...] variable [...] template specialization can be explicitly
7695     //   instantiated from its template.
7696     if (Previous.isAmbiguous())
7697       return true;
7698 
7699     VarDecl *Prev = Previous.getAsSingle<VarDecl>();
7700     VarTemplateDecl *PrevTemplate = Previous.getAsSingle<VarTemplateDecl>();
7701 
7702     if (!PrevTemplate) {
7703       if (!Prev || !Prev->isStaticDataMember()) {
7704         // We expect to see a data data member here.
7705         Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
7706             << Name;
7707         for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
7708              P != PEnd; ++P)
7709           Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
7710         return true;
7711       }
7712 
7713       if (!Prev->getInstantiatedFromStaticDataMember()) {
7714         // FIXME: Check for explicit specialization?
7715         Diag(D.getIdentifierLoc(),
7716              diag::err_explicit_instantiation_data_member_not_instantiated)
7717             << Prev;
7718         Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
7719         // FIXME: Can we provide a note showing where this was declared?
7720         return true;
7721       }
7722     } else {
7723       // Explicitly instantiate a variable template.
7724 
7725       // C++1y [dcl.spec.auto]p6:
7726       //   ... A program that uses auto or decltype(auto) in a context not
7727       //   explicitly allowed in this section is ill-formed.
7728       //
7729       // This includes auto-typed variable template instantiations.
7730       if (R->isUndeducedType()) {
7731         Diag(T->getTypeLoc().getLocStart(),
7732              diag::err_auto_not_allowed_var_inst);
7733         return true;
7734       }
7735 
7736       if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
7737         // C++1y [temp.explicit]p3:
7738         //   If the explicit instantiation is for a variable, the unqualified-id
7739         //   in the declaration shall be a template-id.
7740         Diag(D.getIdentifierLoc(),
7741              diag::err_explicit_instantiation_without_template_id)
7742           << PrevTemplate;
7743         Diag(PrevTemplate->getLocation(),
7744              diag::note_explicit_instantiation_here);
7745         return true;
7746       }
7747 
7748       // Translate the parser's template argument list into our AST format.
7749       TemplateArgumentListInfo TemplateArgs =
7750           makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
7751 
7752       DeclResult Res = CheckVarTemplateId(PrevTemplate, TemplateLoc,
7753                                           D.getIdentifierLoc(), TemplateArgs);
7754       if (Res.isInvalid())
7755         return true;
7756 
7757       // Ignore access control bits, we don't need them for redeclaration
7758       // checking.
7759       Prev = cast<VarDecl>(Res.get());
7760     }
7761 
7762     // C++0x [temp.explicit]p2:
7763     //   If the explicit instantiation is for a member function, a member class
7764     //   or a static data member of a class template specialization, the name of
7765     //   the class template specialization in the qualified-id for the member
7766     //   name shall be a simple-template-id.
7767     //
7768     // C++98 has the same restriction, just worded differently.
7769     //
7770     // This does not apply to variable template specializations, where the
7771     // template-id is in the unqualified-id instead.
7772     if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()) && !PrevTemplate)
7773       Diag(D.getIdentifierLoc(),
7774            diag::ext_explicit_instantiation_without_qualified_id)
7775         << Prev << D.getCXXScopeSpec().getRange();
7776 
7777     // Check the scope of this explicit instantiation.
7778     CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
7779 
7780     // Verify that it is okay to explicitly instantiate here.
7781     TemplateSpecializationKind PrevTSK = Prev->getTemplateSpecializationKind();
7782     SourceLocation POI = Prev->getPointOfInstantiation();
7783     bool HasNoEffect = false;
7784     if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
7785                                                PrevTSK, POI, HasNoEffect))
7786       return true;
7787 
7788     if (!HasNoEffect) {
7789       // Instantiate static data member or variable template.
7790 
7791       Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
7792       if (PrevTemplate) {
7793         // Merge attributes.
7794         if (AttributeList *Attr = D.getDeclSpec().getAttributes().getList())
7795           ProcessDeclAttributeList(S, Prev, Attr);
7796       }
7797       if (TSK == TSK_ExplicitInstantiationDefinition)
7798         InstantiateVariableDefinition(D.getIdentifierLoc(), Prev);
7799     }
7800 
7801     // Check the new variable specialization against the parsed input.
7802     if (PrevTemplate && Prev && !Context.hasSameType(Prev->getType(), R)) {
7803       Diag(T->getTypeLoc().getLocStart(),
7804            diag::err_invalid_var_template_spec_type)
7805           << 0 << PrevTemplate << R << Prev->getType();
7806       Diag(PrevTemplate->getLocation(), diag::note_template_declared_here)
7807           << 2 << PrevTemplate->getDeclName();
7808       return true;
7809     }
7810 
7811     // FIXME: Create an ExplicitInstantiation node?
7812     return (Decl*) nullptr;
7813   }
7814 
7815   // If the declarator is a template-id, translate the parser's template
7816   // argument list into our AST format.
7817   bool HasExplicitTemplateArgs = false;
7818   TemplateArgumentListInfo TemplateArgs;
7819   if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
7820     TemplateArgs = makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
7821     HasExplicitTemplateArgs = true;
7822   }
7823 
7824   // C++ [temp.explicit]p1:
7825   //   A [...] function [...] can be explicitly instantiated from its template.
7826   //   A member function [...] of a class template can be explicitly
7827   //  instantiated from the member definition associated with its class
7828   //  template.
7829   UnresolvedSet<8> Matches;
7830   TemplateSpecCandidateSet FailedCandidates(D.getIdentifierLoc());
7831   for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
7832        P != PEnd; ++P) {
7833     NamedDecl *Prev = *P;
7834     if (!HasExplicitTemplateArgs) {
7835       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
7836         QualType Adjusted = adjustCCAndNoReturn(R, Method->getType());
7837         if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
7838           Matches.clear();
7839 
7840           Matches.addDecl(Method, P.getAccess());
7841           if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
7842             break;
7843         }
7844       }
7845     }
7846 
7847     FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
7848     if (!FunTmpl)
7849       continue;
7850 
7851     TemplateDeductionInfo Info(FailedCandidates.getLocation());
7852     FunctionDecl *Specialization = nullptr;
7853     if (TemplateDeductionResult TDK
7854           = DeduceTemplateArguments(FunTmpl,
7855                                (HasExplicitTemplateArgs ? &TemplateArgs
7856                                                         : nullptr),
7857                                     R, Specialization, Info)) {
7858       // Keep track of almost-matches.
7859       FailedCandidates.addCandidate()
7860           .set(FunTmpl->getTemplatedDecl(),
7861                MakeDeductionFailureInfo(Context, TDK, Info));
7862       (void)TDK;
7863       continue;
7864     }
7865 
7866     Matches.addDecl(Specialization, P.getAccess());
7867   }
7868 
7869   // Find the most specialized function template specialization.
7870   UnresolvedSetIterator Result = getMostSpecialized(
7871       Matches.begin(), Matches.end(), FailedCandidates,
7872       D.getIdentifierLoc(),
7873       PDiag(diag::err_explicit_instantiation_not_known) << Name,
7874       PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
7875       PDiag(diag::note_explicit_instantiation_candidate));
7876 
7877   if (Result == Matches.end())
7878     return true;
7879 
7880   // Ignore access control bits, we don't need them for redeclaration checking.
7881   FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
7882 
7883   // C++11 [except.spec]p4
7884   // In an explicit instantiation an exception-specification may be specified,
7885   // but is not required.
7886   // If an exception-specification is specified in an explicit instantiation
7887   // directive, it shall be compatible with the exception-specifications of
7888   // other declarations of that function.
7889   if (auto *FPT = R->getAs<FunctionProtoType>())
7890     if (FPT->hasExceptionSpec()) {
7891       unsigned DiagID =
7892           diag::err_mismatched_exception_spec_explicit_instantiation;
7893       if (getLangOpts().MicrosoftExt)
7894         DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation;
7895       bool Result = CheckEquivalentExceptionSpec(
7896           PDiag(DiagID) << Specialization->getType(),
7897           PDiag(diag::note_explicit_instantiation_here),
7898           Specialization->getType()->getAs<FunctionProtoType>(),
7899           Specialization->getLocation(), FPT, D.getLocStart());
7900       // In Microsoft mode, mismatching exception specifications just cause a
7901       // warning.
7902       if (!getLangOpts().MicrosoftExt && Result)
7903         return true;
7904     }
7905 
7906   if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
7907     Diag(D.getIdentifierLoc(),
7908          diag::err_explicit_instantiation_member_function_not_instantiated)
7909       << Specialization
7910       << (Specialization->getTemplateSpecializationKind() ==
7911           TSK_ExplicitSpecialization);
7912     Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
7913     return true;
7914   }
7915 
7916   FunctionDecl *PrevDecl = Specialization->getPreviousDecl();
7917   if (!PrevDecl && Specialization->isThisDeclarationADefinition())
7918     PrevDecl = Specialization;
7919 
7920   if (PrevDecl) {
7921     bool HasNoEffect = false;
7922     if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
7923                                                PrevDecl,
7924                                      PrevDecl->getTemplateSpecializationKind(),
7925                                           PrevDecl->getPointOfInstantiation(),
7926                                                HasNoEffect))
7927       return true;
7928 
7929     // FIXME: We may still want to build some representation of this
7930     // explicit specialization.
7931     if (HasNoEffect)
7932       return (Decl*) nullptr;
7933   }
7934 
7935   Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
7936   AttributeList *Attr = D.getDeclSpec().getAttributes().getList();
7937   if (Attr)
7938     ProcessDeclAttributeList(S, Specialization, Attr);
7939 
7940   if (Specialization->isDefined()) {
7941     // Let the ASTConsumer know that this function has been explicitly
7942     // instantiated now, and its linkage might have changed.
7943     Consumer.HandleTopLevelDecl(DeclGroupRef(Specialization));
7944   } else if (TSK == TSK_ExplicitInstantiationDefinition)
7945     InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
7946 
7947   // C++0x [temp.explicit]p2:
7948   //   If the explicit instantiation is for a member function, a member class
7949   //   or a static data member of a class template specialization, the name of
7950   //   the class template specialization in the qualified-id for the member
7951   //   name shall be a simple-template-id.
7952   //
7953   // C++98 has the same restriction, just worded differently.
7954   FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
7955   if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
7956       D.getCXXScopeSpec().isSet() &&
7957       !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
7958     Diag(D.getIdentifierLoc(),
7959          diag::ext_explicit_instantiation_without_qualified_id)
7960     << Specialization << D.getCXXScopeSpec().getRange();
7961 
7962   CheckExplicitInstantiationScope(*this,
7963                    FunTmpl? (NamedDecl *)FunTmpl
7964                           : Specialization->getInstantiatedFromMemberFunction(),
7965                                   D.getIdentifierLoc(),
7966                                   D.getCXXScopeSpec().isSet());
7967 
7968   // FIXME: Create some kind of ExplicitInstantiationDecl here.
7969   return (Decl*) nullptr;
7970 }
7971 
7972 TypeResult
7973 Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
7974                         const CXXScopeSpec &SS, IdentifierInfo *Name,
7975                         SourceLocation TagLoc, SourceLocation NameLoc) {
7976   // This has to hold, because SS is expected to be defined.
7977   assert(Name && "Expected a name in a dependent tag");
7978 
7979   NestedNameSpecifier *NNS = SS.getScopeRep();
7980   if (!NNS)
7981     return true;
7982 
7983   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7984 
7985   if (TUK == TUK_Declaration || TUK == TUK_Definition) {
7986     Diag(NameLoc, diag::err_dependent_tag_decl)
7987       << (TUK == TUK_Definition) << Kind << SS.getRange();
7988     return true;
7989   }
7990 
7991   // Create the resulting type.
7992   ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7993   QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
7994 
7995   // Create type-source location information for this type.
7996   TypeLocBuilder TLB;
7997   DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
7998   TL.setElaboratedKeywordLoc(TagLoc);
7999   TL.setQualifierLoc(SS.getWithLocInContext(Context));
8000   TL.setNameLoc(NameLoc);
8001   return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
8002 }
8003 
8004 TypeResult
8005 Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
8006                         const CXXScopeSpec &SS, const IdentifierInfo &II,
8007                         SourceLocation IdLoc) {
8008   if (SS.isInvalid())
8009     return true;
8010 
8011   if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8012     Diag(TypenameLoc,
8013          getLangOpts().CPlusPlus11 ?
8014            diag::warn_cxx98_compat_typename_outside_of_template :
8015            diag::ext_typename_outside_of_template)
8016       << FixItHint::CreateRemoval(TypenameLoc);
8017 
8018   NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
8019   QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
8020                                  TypenameLoc, QualifierLoc, II, IdLoc);
8021   if (T.isNull())
8022     return true;
8023 
8024   TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
8025   if (isa<DependentNameType>(T)) {
8026     DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
8027     TL.setElaboratedKeywordLoc(TypenameLoc);
8028     TL.setQualifierLoc(QualifierLoc);
8029     TL.setNameLoc(IdLoc);
8030   } else {
8031     ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
8032     TL.setElaboratedKeywordLoc(TypenameLoc);
8033     TL.setQualifierLoc(QualifierLoc);
8034     TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
8035   }
8036 
8037   return CreateParsedType(T, TSI);
8038 }
8039 
8040 TypeResult
8041 Sema::ActOnTypenameType(Scope *S,
8042                         SourceLocation TypenameLoc,
8043                         const CXXScopeSpec &SS,
8044                         SourceLocation TemplateKWLoc,
8045                         TemplateTy TemplateIn,
8046                         SourceLocation TemplateNameLoc,
8047                         SourceLocation LAngleLoc,
8048                         ASTTemplateArgsPtr TemplateArgsIn,
8049                         SourceLocation RAngleLoc) {
8050   if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
8051     Diag(TypenameLoc,
8052          getLangOpts().CPlusPlus11 ?
8053            diag::warn_cxx98_compat_typename_outside_of_template :
8054            diag::ext_typename_outside_of_template)
8055       << FixItHint::CreateRemoval(TypenameLoc);
8056 
8057   // Translate the parser's template argument list in our AST format.
8058   TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
8059   translateTemplateArguments(TemplateArgsIn, TemplateArgs);
8060 
8061   TemplateName Template = TemplateIn.get();
8062   if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
8063     // Construct a dependent template specialization type.
8064     assert(DTN && "dependent template has non-dependent name?");
8065     assert(DTN->getQualifier() == SS.getScopeRep());
8066     QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
8067                                                           DTN->getQualifier(),
8068                                                           DTN->getIdentifier(),
8069                                                                 TemplateArgs);
8070 
8071     // Create source-location information for this type.
8072     TypeLocBuilder Builder;
8073     DependentTemplateSpecializationTypeLoc SpecTL
8074     = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
8075     SpecTL.setElaboratedKeywordLoc(TypenameLoc);
8076     SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
8077     SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
8078     SpecTL.setTemplateNameLoc(TemplateNameLoc);
8079     SpecTL.setLAngleLoc(LAngleLoc);
8080     SpecTL.setRAngleLoc(RAngleLoc);
8081     for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8082       SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
8083     return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
8084   }
8085 
8086   QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
8087   if (T.isNull())
8088     return true;
8089 
8090   // Provide source-location information for the template specialization type.
8091   TypeLocBuilder Builder;
8092   TemplateSpecializationTypeLoc SpecTL
8093     = Builder.push<TemplateSpecializationTypeLoc>(T);
8094   SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
8095   SpecTL.setTemplateNameLoc(TemplateNameLoc);
8096   SpecTL.setLAngleLoc(LAngleLoc);
8097   SpecTL.setRAngleLoc(RAngleLoc);
8098   for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
8099     SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
8100 
8101   T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
8102   ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
8103   TL.setElaboratedKeywordLoc(TypenameLoc);
8104   TL.setQualifierLoc(SS.getWithLocInContext(Context));
8105 
8106   TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
8107   return CreateParsedType(T, TSI);
8108 }
8109 
8110 
8111 /// Determine whether this failed name lookup should be treated as being
8112 /// disabled by a usage of std::enable_if.
8113 static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
8114                        SourceRange &CondRange) {
8115   // We must be looking for a ::type...
8116   if (!II.isStr("type"))
8117     return false;
8118 
8119   // ... within an explicitly-written template specialization...
8120   if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
8121     return false;
8122   TypeLoc EnableIfTy = NNS.getTypeLoc();
8123   TemplateSpecializationTypeLoc EnableIfTSTLoc =
8124       EnableIfTy.getAs<TemplateSpecializationTypeLoc>();
8125   if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
8126     return false;
8127   const TemplateSpecializationType *EnableIfTST =
8128     cast<TemplateSpecializationType>(EnableIfTSTLoc.getTypePtr());
8129 
8130   // ... which names a complete class template declaration...
8131   const TemplateDecl *EnableIfDecl =
8132     EnableIfTST->getTemplateName().getAsTemplateDecl();
8133   if (!EnableIfDecl || EnableIfTST->isIncompleteType())
8134     return false;
8135 
8136   // ... called "enable_if".
8137   const IdentifierInfo *EnableIfII =
8138     EnableIfDecl->getDeclName().getAsIdentifierInfo();
8139   if (!EnableIfII || !EnableIfII->isStr("enable_if"))
8140     return false;
8141 
8142   // Assume the first template argument is the condition.
8143   CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
8144   return true;
8145 }
8146 
8147 /// \brief Build the type that describes a C++ typename specifier,
8148 /// e.g., "typename T::type".
8149 QualType
8150 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
8151                         SourceLocation KeywordLoc,
8152                         NestedNameSpecifierLoc QualifierLoc,
8153                         const IdentifierInfo &II,
8154                         SourceLocation IILoc) {
8155   CXXScopeSpec SS;
8156   SS.Adopt(QualifierLoc);
8157 
8158   DeclContext *Ctx = computeDeclContext(SS);
8159   if (!Ctx) {
8160     // If the nested-name-specifier is dependent and couldn't be
8161     // resolved to a type, build a typename type.
8162     assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
8163     return Context.getDependentNameType(Keyword,
8164                                         QualifierLoc.getNestedNameSpecifier(),
8165                                         &II);
8166   }
8167 
8168   // If the nested-name-specifier refers to the current instantiation,
8169   // the "typename" keyword itself is superfluous. In C++03, the
8170   // program is actually ill-formed. However, DR 382 (in C++0x CD1)
8171   // allows such extraneous "typename" keywords, and we retroactively
8172   // apply this DR to C++03 code with only a warning. In any case we continue.
8173 
8174   if (RequireCompleteDeclContext(SS, Ctx))
8175     return QualType();
8176 
8177   DeclarationName Name(&II);
8178   LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
8179   LookupQualifiedName(Result, Ctx, SS);
8180   unsigned DiagID = 0;
8181   Decl *Referenced = nullptr;
8182   switch (Result.getResultKind()) {
8183   case LookupResult::NotFound: {
8184     // If we're looking up 'type' within a template named 'enable_if', produce
8185     // a more specific diagnostic.
8186     SourceRange CondRange;
8187     if (isEnableIf(QualifierLoc, II, CondRange)) {
8188       Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if)
8189         << Ctx << CondRange;
8190       return QualType();
8191     }
8192 
8193     DiagID = diag::err_typename_nested_not_found;
8194     break;
8195   }
8196 
8197   case LookupResult::FoundUnresolvedValue: {
8198     // We found a using declaration that is a value. Most likely, the using
8199     // declaration itself is meant to have the 'typename' keyword.
8200     SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8201                           IILoc);
8202     Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
8203       << Name << Ctx << FullRange;
8204     if (UnresolvedUsingValueDecl *Using
8205           = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
8206       SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
8207       Diag(Loc, diag::note_using_value_decl_missing_typename)
8208         << FixItHint::CreateInsertion(Loc, "typename ");
8209     }
8210   }
8211   // Fall through to create a dependent typename type, from which we can recover
8212   // better.
8213 
8214   case LookupResult::NotFoundInCurrentInstantiation:
8215     // Okay, it's a member of an unknown instantiation.
8216     return Context.getDependentNameType(Keyword,
8217                                         QualifierLoc.getNestedNameSpecifier(),
8218                                         &II);
8219 
8220   case LookupResult::Found:
8221     if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
8222       // We found a type. Build an ElaboratedType, since the
8223       // typename-specifier was just sugar.
8224       MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
8225       return Context.getElaboratedType(ETK_Typename,
8226                                        QualifierLoc.getNestedNameSpecifier(),
8227                                        Context.getTypeDeclType(Type));
8228     }
8229 
8230     DiagID = diag::err_typename_nested_not_type;
8231     Referenced = Result.getFoundDecl();
8232     break;
8233 
8234   case LookupResult::FoundOverloaded:
8235     DiagID = diag::err_typename_nested_not_type;
8236     Referenced = *Result.begin();
8237     break;
8238 
8239   case LookupResult::Ambiguous:
8240     return QualType();
8241   }
8242 
8243   // If we get here, it's because name lookup did not find a
8244   // type. Emit an appropriate diagnostic and return an error.
8245   SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
8246                         IILoc);
8247   Diag(IILoc, DiagID) << FullRange << Name << Ctx;
8248   if (Referenced)
8249     Diag(Referenced->getLocation(), diag::note_typename_refers_here)
8250       << Name;
8251   return QualType();
8252 }
8253 
8254 namespace {
8255   // See Sema::RebuildTypeInCurrentInstantiation
8256   class CurrentInstantiationRebuilder
8257     : public TreeTransform<CurrentInstantiationRebuilder> {
8258     SourceLocation Loc;
8259     DeclarationName Entity;
8260 
8261   public:
8262     typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
8263 
8264     CurrentInstantiationRebuilder(Sema &SemaRef,
8265                                   SourceLocation Loc,
8266                                   DeclarationName Entity)
8267     : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
8268       Loc(Loc), Entity(Entity) { }
8269 
8270     /// \brief Determine whether the given type \p T has already been
8271     /// transformed.
8272     ///
8273     /// For the purposes of type reconstruction, a type has already been
8274     /// transformed if it is NULL or if it is not dependent.
8275     bool AlreadyTransformed(QualType T) {
8276       return T.isNull() || !T->isDependentType();
8277     }
8278 
8279     /// \brief Returns the location of the entity whose type is being
8280     /// rebuilt.
8281     SourceLocation getBaseLocation() { return Loc; }
8282 
8283     /// \brief Returns the name of the entity whose type is being rebuilt.
8284     DeclarationName getBaseEntity() { return Entity; }
8285 
8286     /// \brief Sets the "base" location and entity when that
8287     /// information is known based on another transformation.
8288     void setBase(SourceLocation Loc, DeclarationName Entity) {
8289       this->Loc = Loc;
8290       this->Entity = Entity;
8291     }
8292 
8293     ExprResult TransformLambdaExpr(LambdaExpr *E) {
8294       // Lambdas never need to be transformed.
8295       return E;
8296     }
8297   };
8298 }
8299 
8300 /// \brief Rebuilds a type within the context of the current instantiation.
8301 ///
8302 /// The type \p T is part of the type of an out-of-line member definition of
8303 /// a class template (or class template partial specialization) that was parsed
8304 /// and constructed before we entered the scope of the class template (or
8305 /// partial specialization thereof). This routine will rebuild that type now
8306 /// that we have entered the declarator's scope, which may produce different
8307 /// canonical types, e.g.,
8308 ///
8309 /// \code
8310 /// template<typename T>
8311 /// struct X {
8312 ///   typedef T* pointer;
8313 ///   pointer data();
8314 /// };
8315 ///
8316 /// template<typename T>
8317 /// typename X<T>::pointer X<T>::data() { ... }
8318 /// \endcode
8319 ///
8320 /// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
8321 /// since we do not know that we can look into X<T> when we parsed the type.
8322 /// This function will rebuild the type, performing the lookup of "pointer"
8323 /// in X<T> and returning an ElaboratedType whose canonical type is the same
8324 /// as the canonical type of T*, allowing the return types of the out-of-line
8325 /// definition and the declaration to match.
8326 TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
8327                                                         SourceLocation Loc,
8328                                                         DeclarationName Name) {
8329   if (!T || !T->getType()->isDependentType())
8330     return T;
8331 
8332   CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
8333   return Rebuilder.TransformType(T);
8334 }
8335 
8336 ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
8337   CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
8338                                           DeclarationName());
8339   return Rebuilder.TransformExpr(E);
8340 }
8341 
8342 bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
8343   if (SS.isInvalid())
8344     return true;
8345 
8346   NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
8347   CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
8348                                           DeclarationName());
8349   NestedNameSpecifierLoc Rebuilt
8350     = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
8351   if (!Rebuilt)
8352     return true;
8353 
8354   SS.Adopt(Rebuilt);
8355   return false;
8356 }
8357 
8358 /// \brief Rebuild the template parameters now that we know we're in a current
8359 /// instantiation.
8360 bool Sema::RebuildTemplateParamsInCurrentInstantiation(
8361                                                TemplateParameterList *Params) {
8362   for (unsigned I = 0, N = Params->size(); I != N; ++I) {
8363     Decl *Param = Params->getParam(I);
8364 
8365     // There is nothing to rebuild in a type parameter.
8366     if (isa<TemplateTypeParmDecl>(Param))
8367       continue;
8368 
8369     // Rebuild the template parameter list of a template template parameter.
8370     if (TemplateTemplateParmDecl *TTP
8371         = dyn_cast<TemplateTemplateParmDecl>(Param)) {
8372       if (RebuildTemplateParamsInCurrentInstantiation(
8373             TTP->getTemplateParameters()))
8374         return true;
8375 
8376       continue;
8377     }
8378 
8379     // Rebuild the type of a non-type template parameter.
8380     NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
8381     TypeSourceInfo *NewTSI
8382       = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
8383                                           NTTP->getLocation(),
8384                                           NTTP->getDeclName());
8385     if (!NewTSI)
8386       return true;
8387 
8388     if (NewTSI != NTTP->getTypeSourceInfo()) {
8389       NTTP->setTypeSourceInfo(NewTSI);
8390       NTTP->setType(NewTSI->getType());
8391     }
8392   }
8393 
8394   return false;
8395 }
8396 
8397 /// \brief Produces a formatted string that describes the binding of
8398 /// template parameters to template arguments.
8399 std::string
8400 Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8401                                       const TemplateArgumentList &Args) {
8402   return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
8403 }
8404 
8405 std::string
8406 Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8407                                       const TemplateArgument *Args,
8408                                       unsigned NumArgs) {
8409   SmallString<128> Str;
8410   llvm::raw_svector_ostream Out(Str);
8411 
8412   if (!Params || Params->size() == 0 || NumArgs == 0)
8413     return std::string();
8414 
8415   for (unsigned I = 0, N = Params->size(); I != N; ++I) {
8416     if (I >= NumArgs)
8417       break;
8418 
8419     if (I == 0)
8420       Out << "[with ";
8421     else
8422       Out << ", ";
8423 
8424     if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
8425       Out << Id->getName();
8426     } else {
8427       Out << '$' << I;
8428     }
8429 
8430     Out << " = ";
8431     Args[I].print(getPrintingPolicy(), Out);
8432   }
8433 
8434   Out << ']';
8435   return Out.str();
8436 }
8437 
8438 void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD,
8439                                     CachedTokens &Toks) {
8440   if (!FD)
8441     return;
8442 
8443   LateParsedTemplate *LPT = new LateParsedTemplate;
8444 
8445   // Take tokens to avoid allocations
8446   LPT->Toks.swap(Toks);
8447   LPT->D = FnD;
8448   LateParsedTemplateMap.insert(std::make_pair(FD, LPT));
8449 
8450   FD->setLateTemplateParsed(true);
8451 }
8452 
8453 void Sema::UnmarkAsLateParsedTemplate(FunctionDecl *FD) {
8454   if (!FD)
8455     return;
8456   FD->setLateTemplateParsed(false);
8457 }
8458 
8459 bool Sema::IsInsideALocalClassWithinATemplateFunction() {
8460   DeclContext *DC = CurContext;
8461 
8462   while (DC) {
8463     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
8464       const FunctionDecl *FD = RD->isLocalClass();
8465       return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
8466     } else if (DC->isTranslationUnit() || DC->isNamespace())
8467       return false;
8468 
8469     DC = DC->getParent();
8470   }
8471   return false;
8472 }
8473