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