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