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