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