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