1 //===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/ 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 C++ template instantiation for declarations. 10 // 11 //===----------------------------------------------------------------------===/ 12 #include "clang/Sema/SemaInternal.h" 13 #include "clang/AST/ASTConsumer.h" 14 #include "clang/AST/ASTContext.h" 15 #include "clang/AST/ASTMutationListener.h" 16 #include "clang/AST/DeclTemplate.h" 17 #include "clang/AST/DeclVisitor.h" 18 #include "clang/AST/DependentDiagnostic.h" 19 #include "clang/AST/Expr.h" 20 #include "clang/AST/ExprCXX.h" 21 #include "clang/AST/TypeLoc.h" 22 #include "clang/Sema/Lookup.h" 23 #include "clang/Sema/PrettyDeclStackTrace.h" 24 #include "clang/Sema/Template.h" 25 26 using namespace clang; 27 28 static bool isDeclWithinFunction(const Decl *D) { 29 const DeclContext *DC = D->getDeclContext(); 30 if (DC->isFunctionOrMethod()) 31 return true; 32 33 if (DC->isRecord()) 34 return cast<CXXRecordDecl>(DC)->isLocalClass(); 35 36 return false; 37 } 38 39 template<typename DeclT> 40 static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl, 41 const MultiLevelTemplateArgumentList &TemplateArgs) { 42 if (!OldDecl->getQualifierLoc()) 43 return false; 44 45 assert((NewDecl->getFriendObjectKind() || 46 !OldDecl->getLexicalDeclContext()->isDependentContext()) && 47 "non-friend with qualified name defined in dependent context"); 48 Sema::ContextRAII SavedContext( 49 SemaRef, 50 const_cast<DeclContext *>(NewDecl->getFriendObjectKind() 51 ? NewDecl->getLexicalDeclContext() 52 : OldDecl->getLexicalDeclContext())); 53 54 NestedNameSpecifierLoc NewQualifierLoc 55 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(), 56 TemplateArgs); 57 58 if (!NewQualifierLoc) 59 return true; 60 61 NewDecl->setQualifierInfo(NewQualifierLoc); 62 return false; 63 } 64 65 bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl, 66 DeclaratorDecl *NewDecl) { 67 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs); 68 } 69 70 bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl, 71 TagDecl *NewDecl) { 72 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs); 73 } 74 75 // Include attribute instantiation code. 76 #include "clang/Sema/AttrTemplateInstantiate.inc" 77 78 static void instantiateDependentAlignedAttr( 79 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, 80 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) { 81 if (Aligned->isAlignmentExpr()) { 82 // The alignment expression is a constant expression. 83 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated); 84 ExprResult Result = S.SubstExpr(Aligned->getAlignmentExpr(), TemplateArgs); 85 if (!Result.isInvalid()) 86 S.AddAlignedAttr(Aligned->getLocation(), New, Result.getAs<Expr>(), 87 Aligned->getSpellingListIndex(), IsPackExpansion); 88 } else { 89 TypeSourceInfo *Result = S.SubstType(Aligned->getAlignmentType(), 90 TemplateArgs, Aligned->getLocation(), 91 DeclarationName()); 92 if (Result) 93 S.AddAlignedAttr(Aligned->getLocation(), New, Result, 94 Aligned->getSpellingListIndex(), IsPackExpansion); 95 } 96 } 97 98 static void instantiateDependentAlignedAttr( 99 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, 100 const AlignedAttr *Aligned, Decl *New) { 101 if (!Aligned->isPackExpansion()) { 102 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false); 103 return; 104 } 105 106 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 107 if (Aligned->isAlignmentExpr()) 108 S.collectUnexpandedParameterPacks(Aligned->getAlignmentExpr(), 109 Unexpanded); 110 else 111 S.collectUnexpandedParameterPacks(Aligned->getAlignmentType()->getTypeLoc(), 112 Unexpanded); 113 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?"); 114 115 // Determine whether we can expand this attribute pack yet. 116 bool Expand = true, RetainExpansion = false; 117 Optional<unsigned> NumExpansions; 118 // FIXME: Use the actual location of the ellipsis. 119 SourceLocation EllipsisLoc = Aligned->getLocation(); 120 if (S.CheckParameterPacksForExpansion(EllipsisLoc, Aligned->getRange(), 121 Unexpanded, TemplateArgs, Expand, 122 RetainExpansion, NumExpansions)) 123 return; 124 125 if (!Expand) { 126 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, -1); 127 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, true); 128 } else { 129 for (unsigned I = 0; I != *NumExpansions; ++I) { 130 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, I); 131 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false); 132 } 133 } 134 } 135 136 static void instantiateDependentAssumeAlignedAttr( 137 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, 138 const AssumeAlignedAttr *Aligned, Decl *New) { 139 // The alignment expression is a constant expression. 140 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated); 141 142 Expr *E, *OE = nullptr; 143 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs); 144 if (Result.isInvalid()) 145 return; 146 E = Result.getAs<Expr>(); 147 148 if (Aligned->getOffset()) { 149 Result = S.SubstExpr(Aligned->getOffset(), TemplateArgs); 150 if (Result.isInvalid()) 151 return; 152 OE = Result.getAs<Expr>(); 153 } 154 155 S.AddAssumeAlignedAttr(Aligned->getLocation(), New, E, OE, 156 Aligned->getSpellingListIndex()); 157 } 158 159 static void instantiateDependentAlignValueAttr( 160 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, 161 const AlignValueAttr *Aligned, Decl *New) { 162 // The alignment expression is a constant expression. 163 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated); 164 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs); 165 if (!Result.isInvalid()) 166 S.AddAlignValueAttr(Aligned->getLocation(), New, Result.getAs<Expr>(), 167 Aligned->getSpellingListIndex()); 168 } 169 170 static void instantiateDependentEnableIfAttr( 171 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, 172 const EnableIfAttr *A, const Decl *Tmpl, Decl *New) { 173 Expr *Cond = nullptr; 174 { 175 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated); 176 ExprResult Result = S.SubstExpr(A->getCond(), TemplateArgs); 177 if (Result.isInvalid()) 178 return; 179 Cond = Result.getAs<Expr>(); 180 } 181 if (A->getCond()->isTypeDependent() && !Cond->isTypeDependent()) { 182 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); 183 if (Converted.isInvalid()) 184 return; 185 Cond = Converted.get(); 186 } 187 188 SmallVector<PartialDiagnosticAt, 8> Diags; 189 if (A->getCond()->isValueDependent() && !Cond->isValueDependent() && 190 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(Tmpl), 191 Diags)) { 192 S.Diag(A->getLocation(), diag::err_enable_if_never_constant_expr); 193 for (int I = 0, N = Diags.size(); I != N; ++I) 194 S.Diag(Diags[I].first, Diags[I].second); 195 return; 196 } 197 198 EnableIfAttr *EIA = new (S.getASTContext()) 199 EnableIfAttr(A->getLocation(), S.getASTContext(), Cond, 200 A->getMessage(), 201 A->getSpellingListIndex()); 202 New->addAttr(EIA); 203 } 204 205 void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs, 206 const Decl *Tmpl, Decl *New, 207 LateInstantiatedAttrVec *LateAttrs, 208 LocalInstantiationScope *OuterMostScope) { 209 for (const auto *TmplAttr : Tmpl->attrs()) { 210 // FIXME: This should be generalized to more than just the AlignedAttr. 211 const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr); 212 if (Aligned && Aligned->isAlignmentDependent()) { 213 instantiateDependentAlignedAttr(*this, TemplateArgs, Aligned, New); 214 continue; 215 } 216 217 const AssumeAlignedAttr *AssumeAligned = dyn_cast<AssumeAlignedAttr>(TmplAttr); 218 if (AssumeAligned) { 219 instantiateDependentAssumeAlignedAttr(*this, TemplateArgs, AssumeAligned, New); 220 continue; 221 } 222 223 const AlignValueAttr *AlignValue = dyn_cast<AlignValueAttr>(TmplAttr); 224 if (AlignValue) { 225 instantiateDependentAlignValueAttr(*this, TemplateArgs, AlignValue, New); 226 continue; 227 } 228 229 const EnableIfAttr *EnableIf = dyn_cast<EnableIfAttr>(TmplAttr); 230 if (EnableIf && EnableIf->getCond()->isValueDependent()) { 231 instantiateDependentEnableIfAttr(*this, TemplateArgs, EnableIf, Tmpl, 232 New); 233 continue; 234 } 235 236 // Existing DLL attribute on the instantiation takes precedence. 237 if (TmplAttr->getKind() == attr::DLLExport || 238 TmplAttr->getKind() == attr::DLLImport) { 239 if (New->hasAttr<DLLExportAttr>() || New->hasAttr<DLLImportAttr>()) { 240 continue; 241 } 242 } 243 244 assert(!TmplAttr->isPackExpansion()); 245 if (TmplAttr->isLateParsed() && LateAttrs) { 246 // Late parsed attributes must be instantiated and attached after the 247 // enclosing class has been instantiated. See Sema::InstantiateClass. 248 LocalInstantiationScope *Saved = nullptr; 249 if (CurrentInstantiationScope) 250 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope); 251 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New)); 252 } else { 253 // Allow 'this' within late-parsed attributes. 254 NamedDecl *ND = dyn_cast<NamedDecl>(New); 255 CXXRecordDecl *ThisContext = 256 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext()); 257 CXXThisScopeRAII ThisScope(*this, ThisContext, /*TypeQuals*/0, 258 ND && ND->isCXXInstanceMember()); 259 260 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context, 261 *this, TemplateArgs); 262 if (NewAttr) 263 New->addAttr(NewAttr); 264 } 265 } 266 } 267 268 /// Get the previous declaration of a declaration for the purposes of template 269 /// instantiation. If this finds a previous declaration, then the previous 270 /// declaration of the instantiation of D should be an instantiation of the 271 /// result of this function. 272 template<typename DeclT> 273 static DeclT *getPreviousDeclForInstantiation(DeclT *D) { 274 DeclT *Result = D->getPreviousDecl(); 275 276 // If the declaration is within a class, and the previous declaration was 277 // merged from a different definition of that class, then we don't have a 278 // previous declaration for the purpose of template instantiation. 279 if (Result && isa<CXXRecordDecl>(D->getDeclContext()) && 280 D->getLexicalDeclContext() != Result->getLexicalDeclContext()) 281 return nullptr; 282 283 return Result; 284 } 285 286 Decl * 287 TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) { 288 llvm_unreachable("Translation units cannot be instantiated"); 289 } 290 291 Decl * 292 TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) { 293 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(), 294 D->getIdentifier()); 295 Owner->addDecl(Inst); 296 return Inst; 297 } 298 299 Decl * 300 TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) { 301 llvm_unreachable("Namespaces cannot be instantiated"); 302 } 303 304 Decl * 305 TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) { 306 NamespaceAliasDecl *Inst 307 = NamespaceAliasDecl::Create(SemaRef.Context, Owner, 308 D->getNamespaceLoc(), 309 D->getAliasLoc(), 310 D->getIdentifier(), 311 D->getQualifierLoc(), 312 D->getTargetNameLoc(), 313 D->getNamespace()); 314 Owner->addDecl(Inst); 315 return Inst; 316 } 317 318 Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D, 319 bool IsTypeAlias) { 320 bool Invalid = false; 321 TypeSourceInfo *DI = D->getTypeSourceInfo(); 322 if (DI->getType()->isInstantiationDependentType() || 323 DI->getType()->isVariablyModifiedType()) { 324 DI = SemaRef.SubstType(DI, TemplateArgs, 325 D->getLocation(), D->getDeclName()); 326 if (!DI) { 327 Invalid = true; 328 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy); 329 } 330 } else { 331 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType()); 332 } 333 334 // HACK: g++ has a bug where it gets the value kind of ?: wrong. 335 // libstdc++ relies upon this bug in its implementation of common_type. 336 // If we happen to be processing that implementation, fake up the g++ ?: 337 // semantics. See LWG issue 2141 for more information on the bug. 338 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>(); 339 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext()); 340 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && 341 DT->isReferenceType() && 342 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() && 343 RD->getIdentifier() && RD->getIdentifier()->isStr("common_type") && 344 D->getIdentifier() && D->getIdentifier()->isStr("type") && 345 SemaRef.getSourceManager().isInSystemHeader(D->getLocStart())) 346 // Fold it to the (non-reference) type which g++ would have produced. 347 DI = SemaRef.Context.getTrivialTypeSourceInfo( 348 DI->getType().getNonReferenceType()); 349 350 // Create the new typedef 351 TypedefNameDecl *Typedef; 352 if (IsTypeAlias) 353 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(), 354 D->getLocation(), D->getIdentifier(), DI); 355 else 356 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(), 357 D->getLocation(), D->getIdentifier(), DI); 358 if (Invalid) 359 Typedef->setInvalidDecl(); 360 361 // If the old typedef was the name for linkage purposes of an anonymous 362 // tag decl, re-establish that relationship for the new typedef. 363 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) { 364 TagDecl *oldTag = oldTagType->getDecl(); 365 if (oldTag->getTypedefNameForAnonDecl() == D && !Invalid) { 366 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl(); 367 assert(!newTag->hasNameForLinkage()); 368 newTag->setTypedefNameForAnonDecl(Typedef); 369 } 370 } 371 372 if (TypedefNameDecl *Prev = getPreviousDeclForInstantiation(D)) { 373 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev, 374 TemplateArgs); 375 if (!InstPrev) 376 return nullptr; 377 378 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev); 379 380 // If the typedef types are not identical, reject them. 381 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef); 382 383 Typedef->setPreviousDecl(InstPrevTypedef); 384 } 385 386 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef); 387 388 Typedef->setAccess(D->getAccess()); 389 390 return Typedef; 391 } 392 393 Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) { 394 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false); 395 if (Typedef) 396 Owner->addDecl(Typedef); 397 return Typedef; 398 } 399 400 Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) { 401 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true); 402 if (Typedef) 403 Owner->addDecl(Typedef); 404 return Typedef; 405 } 406 407 Decl * 408 TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) { 409 // Create a local instantiation scope for this type alias template, which 410 // will contain the instantiations of the template parameters. 411 LocalInstantiationScope Scope(SemaRef); 412 413 TemplateParameterList *TempParams = D->getTemplateParameters(); 414 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 415 if (!InstParams) 416 return nullptr; 417 418 TypeAliasDecl *Pattern = D->getTemplatedDecl(); 419 420 TypeAliasTemplateDecl *PrevAliasTemplate = nullptr; 421 if (getPreviousDeclForInstantiation<TypedefNameDecl>(Pattern)) { 422 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); 423 if (!Found.empty()) { 424 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front()); 425 } 426 } 427 428 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>( 429 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true)); 430 if (!AliasInst) 431 return nullptr; 432 433 TypeAliasTemplateDecl *Inst 434 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(), 435 D->getDeclName(), InstParams, AliasInst); 436 AliasInst->setDescribedAliasTemplate(Inst); 437 if (PrevAliasTemplate) 438 Inst->setPreviousDecl(PrevAliasTemplate); 439 440 Inst->setAccess(D->getAccess()); 441 442 if (!PrevAliasTemplate) 443 Inst->setInstantiatedFromMemberTemplate(D); 444 445 Owner->addDecl(Inst); 446 447 return Inst; 448 } 449 450 Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) { 451 return VisitVarDecl(D, /*InstantiatingVarTemplate=*/false); 452 } 453 454 Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D, 455 bool InstantiatingVarTemplate) { 456 457 // If this is the variable for an anonymous struct or union, 458 // instantiate the anonymous struct/union type first. 459 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>()) 460 if (RecordTy->getDecl()->isAnonymousStructOrUnion()) 461 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl()))) 462 return nullptr; 463 464 // Do substitution on the type of the declaration 465 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(), 466 TemplateArgs, 467 D->getTypeSpecStartLoc(), 468 D->getDeclName()); 469 if (!DI) 470 return nullptr; 471 472 if (DI->getType()->isFunctionType()) { 473 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function) 474 << D->isStaticDataMember() << DI->getType(); 475 return nullptr; 476 } 477 478 DeclContext *DC = Owner; 479 if (D->isLocalExternDecl()) 480 SemaRef.adjustContextForLocalExternDecl(DC); 481 482 // Build the instantiated declaration. 483 VarDecl *Var = VarDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), 484 D->getLocation(), D->getIdentifier(), 485 DI->getType(), DI, D->getStorageClass()); 486 487 // In ARC, infer 'retaining' for variables of retainable type. 488 if (SemaRef.getLangOpts().ObjCAutoRefCount && 489 SemaRef.inferObjCARCLifetime(Var)) 490 Var->setInvalidDecl(); 491 492 // Substitute the nested name specifier, if any. 493 if (SubstQualifier(D, Var)) 494 return nullptr; 495 496 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner, 497 StartingScope, InstantiatingVarTemplate); 498 499 if (D->isNRVOVariable()) { 500 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType(); 501 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, false)) 502 Var->setNRVOVariable(true); 503 } 504 505 Var->setImplicit(D->isImplicit()); 506 507 return Var; 508 } 509 510 Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) { 511 AccessSpecDecl* AD 512 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner, 513 D->getAccessSpecifierLoc(), D->getColonLoc()); 514 Owner->addHiddenDecl(AD); 515 return AD; 516 } 517 518 Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) { 519 bool Invalid = false; 520 TypeSourceInfo *DI = D->getTypeSourceInfo(); 521 if (DI->getType()->isInstantiationDependentType() || 522 DI->getType()->isVariablyModifiedType()) { 523 DI = SemaRef.SubstType(DI, TemplateArgs, 524 D->getLocation(), D->getDeclName()); 525 if (!DI) { 526 DI = D->getTypeSourceInfo(); 527 Invalid = true; 528 } else if (DI->getType()->isFunctionType()) { 529 // C++ [temp.arg.type]p3: 530 // If a declaration acquires a function type through a type 531 // dependent on a template-parameter and this causes a 532 // declaration that does not use the syntactic form of a 533 // function declarator to have function type, the program is 534 // ill-formed. 535 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function) 536 << DI->getType(); 537 Invalid = true; 538 } 539 } else { 540 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType()); 541 } 542 543 Expr *BitWidth = D->getBitWidth(); 544 if (Invalid) 545 BitWidth = nullptr; 546 else if (BitWidth) { 547 // The bit-width expression is a constant expression. 548 EnterExpressionEvaluationContext Unevaluated(SemaRef, 549 Sema::ConstantEvaluated); 550 551 ExprResult InstantiatedBitWidth 552 = SemaRef.SubstExpr(BitWidth, TemplateArgs); 553 if (InstantiatedBitWidth.isInvalid()) { 554 Invalid = true; 555 BitWidth = nullptr; 556 } else 557 BitWidth = InstantiatedBitWidth.getAs<Expr>(); 558 } 559 560 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), 561 DI->getType(), DI, 562 cast<RecordDecl>(Owner), 563 D->getLocation(), 564 D->isMutable(), 565 BitWidth, 566 D->getInClassInitStyle(), 567 D->getInnerLocStart(), 568 D->getAccess(), 569 nullptr); 570 if (!Field) { 571 cast<Decl>(Owner)->setInvalidDecl(); 572 return nullptr; 573 } 574 575 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope); 576 577 if (Field->hasAttrs()) 578 SemaRef.CheckAlignasUnderalignment(Field); 579 580 if (Invalid) 581 Field->setInvalidDecl(); 582 583 if (!Field->getDeclName()) { 584 // Keep track of where this decl came from. 585 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D); 586 } 587 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) { 588 if (Parent->isAnonymousStructOrUnion() && 589 Parent->getRedeclContext()->isFunctionOrMethod()) 590 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field); 591 } 592 593 Field->setImplicit(D->isImplicit()); 594 Field->setAccess(D->getAccess()); 595 Owner->addDecl(Field); 596 597 return Field; 598 } 599 600 Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) { 601 bool Invalid = false; 602 TypeSourceInfo *DI = D->getTypeSourceInfo(); 603 604 if (DI->getType()->isVariablyModifiedType()) { 605 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified) 606 << D; 607 Invalid = true; 608 } else if (DI->getType()->isInstantiationDependentType()) { 609 DI = SemaRef.SubstType(DI, TemplateArgs, 610 D->getLocation(), D->getDeclName()); 611 if (!DI) { 612 DI = D->getTypeSourceInfo(); 613 Invalid = true; 614 } else if (DI->getType()->isFunctionType()) { 615 // C++ [temp.arg.type]p3: 616 // If a declaration acquires a function type through a type 617 // dependent on a template-parameter and this causes a 618 // declaration that does not use the syntactic form of a 619 // function declarator to have function type, the program is 620 // ill-formed. 621 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function) 622 << DI->getType(); 623 Invalid = true; 624 } 625 } else { 626 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType()); 627 } 628 629 MSPropertyDecl *Property = MSPropertyDecl::Create( 630 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(), 631 DI, D->getLocStart(), D->getGetterId(), D->getSetterId()); 632 633 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs, 634 StartingScope); 635 636 if (Invalid) 637 Property->setInvalidDecl(); 638 639 Property->setAccess(D->getAccess()); 640 Owner->addDecl(Property); 641 642 return Property; 643 } 644 645 Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) { 646 NamedDecl **NamedChain = 647 new (SemaRef.Context)NamedDecl*[D->getChainingSize()]; 648 649 int i = 0; 650 for (auto *PI : D->chain()) { 651 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI, 652 TemplateArgs); 653 if (!Next) 654 return nullptr; 655 656 NamedChain[i++] = Next; 657 } 658 659 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType(); 660 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( 661 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T, 662 NamedChain, D->getChainingSize()); 663 664 for (const auto *Attr : D->attrs()) 665 IndirectField->addAttr(Attr->clone(SemaRef.Context)); 666 667 IndirectField->setImplicit(D->isImplicit()); 668 IndirectField->setAccess(D->getAccess()); 669 Owner->addDecl(IndirectField); 670 return IndirectField; 671 } 672 673 Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) { 674 // Handle friend type expressions by simply substituting template 675 // parameters into the pattern type and checking the result. 676 if (TypeSourceInfo *Ty = D->getFriendType()) { 677 TypeSourceInfo *InstTy; 678 // If this is an unsupported friend, don't bother substituting template 679 // arguments into it. The actual type referred to won't be used by any 680 // parts of Clang, and may not be valid for instantiating. Just use the 681 // same info for the instantiated friend. 682 if (D->isUnsupportedFriend()) { 683 InstTy = Ty; 684 } else { 685 InstTy = SemaRef.SubstType(Ty, TemplateArgs, 686 D->getLocation(), DeclarationName()); 687 } 688 if (!InstTy) 689 return nullptr; 690 691 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(), 692 D->getFriendLoc(), InstTy); 693 if (!FD) 694 return nullptr; 695 696 FD->setAccess(AS_public); 697 FD->setUnsupportedFriend(D->isUnsupportedFriend()); 698 Owner->addDecl(FD); 699 return FD; 700 } 701 702 NamedDecl *ND = D->getFriendDecl(); 703 assert(ND && "friend decl must be a decl or a type!"); 704 705 // All of the Visit implementations for the various potential friend 706 // declarations have to be carefully written to work for friend 707 // objects, with the most important detail being that the target 708 // decl should almost certainly not be placed in Owner. 709 Decl *NewND = Visit(ND); 710 if (!NewND) return nullptr; 711 712 FriendDecl *FD = 713 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), 714 cast<NamedDecl>(NewND), D->getFriendLoc()); 715 FD->setAccess(AS_public); 716 FD->setUnsupportedFriend(D->isUnsupportedFriend()); 717 Owner->addDecl(FD); 718 return FD; 719 } 720 721 Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) { 722 Expr *AssertExpr = D->getAssertExpr(); 723 724 // The expression in a static assertion is a constant expression. 725 EnterExpressionEvaluationContext Unevaluated(SemaRef, 726 Sema::ConstantEvaluated); 727 728 ExprResult InstantiatedAssertExpr 729 = SemaRef.SubstExpr(AssertExpr, TemplateArgs); 730 if (InstantiatedAssertExpr.isInvalid()) 731 return nullptr; 732 733 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(), 734 InstantiatedAssertExpr.get(), 735 D->getMessage(), 736 D->getRParenLoc(), 737 D->isFailed()); 738 } 739 740 Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) { 741 EnumDecl *PrevDecl = nullptr; 742 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) { 743 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(), 744 PatternPrev, 745 TemplateArgs); 746 if (!Prev) return nullptr; 747 PrevDecl = cast<EnumDecl>(Prev); 748 } 749 750 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(), 751 D->getLocation(), D->getIdentifier(), 752 PrevDecl, D->isScoped(), 753 D->isScopedUsingClassTag(), D->isFixed()); 754 if (D->isFixed()) { 755 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) { 756 // If we have type source information for the underlying type, it means it 757 // has been explicitly set by the user. Perform substitution on it before 758 // moving on. 759 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 760 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc, 761 DeclarationName()); 762 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI)) 763 Enum->setIntegerType(SemaRef.Context.IntTy); 764 else 765 Enum->setIntegerTypeSourceInfo(NewTI); 766 } else { 767 assert(!D->getIntegerType()->isDependentType() 768 && "Dependent type without type source info"); 769 Enum->setIntegerType(D->getIntegerType()); 770 } 771 } 772 773 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum); 774 775 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation); 776 Enum->setAccess(D->getAccess()); 777 // Forward the mangling number from the template to the instantiated decl. 778 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D)); 779 if (SubstQualifier(D, Enum)) return nullptr; 780 Owner->addDecl(Enum); 781 782 EnumDecl *Def = D->getDefinition(); 783 if (Def && Def != D) { 784 // If this is an out-of-line definition of an enum member template, check 785 // that the underlying types match in the instantiation of both 786 // declarations. 787 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) { 788 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 789 QualType DefnUnderlying = 790 SemaRef.SubstType(TI->getType(), TemplateArgs, 791 UnderlyingLoc, DeclarationName()); 792 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(), 793 DefnUnderlying, Enum); 794 } 795 } 796 797 // C++11 [temp.inst]p1: The implicit instantiation of a class template 798 // specialization causes the implicit instantiation of the declarations, but 799 // not the definitions of scoped member enumerations. 800 // 801 // DR1484 clarifies that enumeration definitions inside of a template 802 // declaration aren't considered entities that can be separately instantiated 803 // from the rest of the entity they are declared inside of. 804 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) { 805 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum); 806 InstantiateEnumDefinition(Enum, Def); 807 } 808 809 return Enum; 810 } 811 812 void TemplateDeclInstantiator::InstantiateEnumDefinition( 813 EnumDecl *Enum, EnumDecl *Pattern) { 814 Enum->startDefinition(); 815 816 // Update the location to refer to the definition. 817 Enum->setLocation(Pattern->getLocation()); 818 819 SmallVector<Decl*, 4> Enumerators; 820 821 EnumConstantDecl *LastEnumConst = nullptr; 822 for (auto *EC : Pattern->enumerators()) { 823 // The specified value for the enumerator. 824 ExprResult Value((Expr *)nullptr); 825 if (Expr *UninstValue = EC->getInitExpr()) { 826 // The enumerator's value expression is a constant expression. 827 EnterExpressionEvaluationContext Unevaluated(SemaRef, 828 Sema::ConstantEvaluated); 829 830 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs); 831 } 832 833 // Drop the initial value and continue. 834 bool isInvalid = false; 835 if (Value.isInvalid()) { 836 Value = nullptr; 837 isInvalid = true; 838 } 839 840 EnumConstantDecl *EnumConst 841 = SemaRef.CheckEnumConstant(Enum, LastEnumConst, 842 EC->getLocation(), EC->getIdentifier(), 843 Value.get()); 844 845 if (isInvalid) { 846 if (EnumConst) 847 EnumConst->setInvalidDecl(); 848 Enum->setInvalidDecl(); 849 } 850 851 if (EnumConst) { 852 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst); 853 854 EnumConst->setAccess(Enum->getAccess()); 855 Enum->addDecl(EnumConst); 856 Enumerators.push_back(EnumConst); 857 LastEnumConst = EnumConst; 858 859 if (Pattern->getDeclContext()->isFunctionOrMethod() && 860 !Enum->isScoped()) { 861 // If the enumeration is within a function or method, record the enum 862 // constant as a local. 863 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst); 864 } 865 } 866 } 867 868 // FIXME: Fixup LBraceLoc 869 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), 870 Enum->getRBraceLoc(), Enum, 871 Enumerators, 872 nullptr, nullptr); 873 } 874 875 Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) { 876 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls."); 877 } 878 879 Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) { 880 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None); 881 882 // Create a local instantiation scope for this class template, which 883 // will contain the instantiations of the template parameters. 884 LocalInstantiationScope Scope(SemaRef); 885 TemplateParameterList *TempParams = D->getTemplateParameters(); 886 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 887 if (!InstParams) 888 return nullptr; 889 890 CXXRecordDecl *Pattern = D->getTemplatedDecl(); 891 892 // Instantiate the qualifier. We have to do this first in case 893 // we're a friend declaration, because if we are then we need to put 894 // the new declaration in the appropriate context. 895 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc(); 896 if (QualifierLoc) { 897 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, 898 TemplateArgs); 899 if (!QualifierLoc) 900 return nullptr; 901 } 902 903 CXXRecordDecl *PrevDecl = nullptr; 904 ClassTemplateDecl *PrevClassTemplate = nullptr; 905 906 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) { 907 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); 908 if (!Found.empty()) { 909 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front()); 910 if (PrevClassTemplate) 911 PrevDecl = PrevClassTemplate->getTemplatedDecl(); 912 } 913 } 914 915 // If this isn't a friend, then it's a member template, in which 916 // case we just want to build the instantiation in the 917 // specialization. If it is a friend, we want to build it in 918 // the appropriate context. 919 DeclContext *DC = Owner; 920 if (isFriend) { 921 if (QualifierLoc) { 922 CXXScopeSpec SS; 923 SS.Adopt(QualifierLoc); 924 DC = SemaRef.computeDeclContext(SS); 925 if (!DC) return nullptr; 926 } else { 927 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(), 928 Pattern->getDeclContext(), 929 TemplateArgs); 930 } 931 932 // Look for a previous declaration of the template in the owning 933 // context. 934 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(), 935 Sema::LookupOrdinaryName, Sema::ForRedeclaration); 936 SemaRef.LookupQualifiedName(R, DC); 937 938 if (R.isSingleResult()) { 939 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>(); 940 if (PrevClassTemplate) 941 PrevDecl = PrevClassTemplate->getTemplatedDecl(); 942 } 943 944 if (!PrevClassTemplate && QualifierLoc) { 945 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope) 946 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC 947 << QualifierLoc.getSourceRange(); 948 return nullptr; 949 } 950 951 bool AdoptedPreviousTemplateParams = false; 952 if (PrevClassTemplate) { 953 bool Complain = true; 954 955 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class 956 // template for struct std::tr1::__detail::_Map_base, where the 957 // template parameters of the friend declaration don't match the 958 // template parameters of the original declaration. In this one 959 // case, we don't complain about the ill-formed friend 960 // declaration. 961 if (isFriend && Pattern->getIdentifier() && 962 Pattern->getIdentifier()->isStr("_Map_base") && 963 DC->isNamespace() && 964 cast<NamespaceDecl>(DC)->getIdentifier() && 965 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) { 966 DeclContext *DCParent = DC->getParent(); 967 if (DCParent->isNamespace() && 968 cast<NamespaceDecl>(DCParent)->getIdentifier() && 969 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) { 970 if (cast<Decl>(DCParent)->isInStdNamespace()) 971 Complain = false; 972 } 973 } 974 975 TemplateParameterList *PrevParams 976 = PrevClassTemplate->getTemplateParameters(); 977 978 // Make sure the parameter lists match. 979 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams, 980 Complain, 981 Sema::TPL_TemplateMatch)) { 982 if (Complain) 983 return nullptr; 984 985 AdoptedPreviousTemplateParams = true; 986 InstParams = PrevParams; 987 } 988 989 // Do some additional validation, then merge default arguments 990 // from the existing declarations. 991 if (!AdoptedPreviousTemplateParams && 992 SemaRef.CheckTemplateParameterList(InstParams, PrevParams, 993 Sema::TPC_ClassTemplate)) 994 return nullptr; 995 } 996 } 997 998 CXXRecordDecl *RecordInst 999 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC, 1000 Pattern->getLocStart(), Pattern->getLocation(), 1001 Pattern->getIdentifier(), PrevDecl, 1002 /*DelayTypeCreation=*/true); 1003 1004 if (QualifierLoc) 1005 RecordInst->setQualifierInfo(QualifierLoc); 1006 1007 ClassTemplateDecl *Inst 1008 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(), 1009 D->getIdentifier(), InstParams, RecordInst, 1010 PrevClassTemplate); 1011 RecordInst->setDescribedClassTemplate(Inst); 1012 1013 if (isFriend) { 1014 if (PrevClassTemplate) 1015 Inst->setAccess(PrevClassTemplate->getAccess()); 1016 else 1017 Inst->setAccess(D->getAccess()); 1018 1019 Inst->setObjectOfFriendDecl(); 1020 // TODO: do we want to track the instantiation progeny of this 1021 // friend target decl? 1022 } else { 1023 Inst->setAccess(D->getAccess()); 1024 if (!PrevClassTemplate) 1025 Inst->setInstantiatedFromMemberTemplate(D); 1026 } 1027 1028 // Trigger creation of the type for the instantiation. 1029 SemaRef.Context.getInjectedClassNameType(RecordInst, 1030 Inst->getInjectedClassNameSpecialization()); 1031 1032 // Finish handling of friends. 1033 if (isFriend) { 1034 DC->makeDeclVisibleInContext(Inst); 1035 Inst->setLexicalDeclContext(Owner); 1036 RecordInst->setLexicalDeclContext(Owner); 1037 return Inst; 1038 } 1039 1040 if (D->isOutOfLine()) { 1041 Inst->setLexicalDeclContext(D->getLexicalDeclContext()); 1042 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext()); 1043 } 1044 1045 Owner->addDecl(Inst); 1046 1047 if (!PrevClassTemplate) { 1048 // Queue up any out-of-line partial specializations of this member 1049 // class template; the client will force their instantiation once 1050 // the enclosing class has been instantiated. 1051 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs; 1052 D->getPartialSpecializations(PartialSpecs); 1053 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) 1054 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine()) 1055 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I])); 1056 } 1057 1058 return Inst; 1059 } 1060 1061 Decl * 1062 TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl( 1063 ClassTemplatePartialSpecializationDecl *D) { 1064 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate(); 1065 1066 // Lookup the already-instantiated declaration in the instantiation 1067 // of the class template and return that. 1068 DeclContext::lookup_result Found 1069 = Owner->lookup(ClassTemplate->getDeclName()); 1070 if (Found.empty()) 1071 return nullptr; 1072 1073 ClassTemplateDecl *InstClassTemplate 1074 = dyn_cast<ClassTemplateDecl>(Found.front()); 1075 if (!InstClassTemplate) 1076 return nullptr; 1077 1078 if (ClassTemplatePartialSpecializationDecl *Result 1079 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D)) 1080 return Result; 1081 1082 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D); 1083 } 1084 1085 Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) { 1086 assert(D->getTemplatedDecl()->isStaticDataMember() && 1087 "Only static data member templates are allowed."); 1088 1089 // Create a local instantiation scope for this variable template, which 1090 // will contain the instantiations of the template parameters. 1091 LocalInstantiationScope Scope(SemaRef); 1092 TemplateParameterList *TempParams = D->getTemplateParameters(); 1093 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 1094 if (!InstParams) 1095 return nullptr; 1096 1097 VarDecl *Pattern = D->getTemplatedDecl(); 1098 VarTemplateDecl *PrevVarTemplate = nullptr; 1099 1100 if (getPreviousDeclForInstantiation(Pattern)) { 1101 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); 1102 if (!Found.empty()) 1103 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front()); 1104 } 1105 1106 VarDecl *VarInst = 1107 cast_or_null<VarDecl>(VisitVarDecl(Pattern, 1108 /*InstantiatingVarTemplate=*/true)); 1109 1110 DeclContext *DC = Owner; 1111 1112 VarTemplateDecl *Inst = VarTemplateDecl::Create( 1113 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams, 1114 VarInst); 1115 VarInst->setDescribedVarTemplate(Inst); 1116 Inst->setPreviousDecl(PrevVarTemplate); 1117 1118 Inst->setAccess(D->getAccess()); 1119 if (!PrevVarTemplate) 1120 Inst->setInstantiatedFromMemberTemplate(D); 1121 1122 if (D->isOutOfLine()) { 1123 Inst->setLexicalDeclContext(D->getLexicalDeclContext()); 1124 VarInst->setLexicalDeclContext(D->getLexicalDeclContext()); 1125 } 1126 1127 Owner->addDecl(Inst); 1128 1129 if (!PrevVarTemplate) { 1130 // Queue up any out-of-line partial specializations of this member 1131 // variable template; the client will force their instantiation once 1132 // the enclosing class has been instantiated. 1133 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs; 1134 D->getPartialSpecializations(PartialSpecs); 1135 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) 1136 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine()) 1137 OutOfLineVarPartialSpecs.push_back( 1138 std::make_pair(Inst, PartialSpecs[I])); 1139 } 1140 1141 return Inst; 1142 } 1143 1144 Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl( 1145 VarTemplatePartialSpecializationDecl *D) { 1146 assert(D->isStaticDataMember() && 1147 "Only static data member templates are allowed."); 1148 1149 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate(); 1150 1151 // Lookup the already-instantiated declaration and return that. 1152 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName()); 1153 assert(!Found.empty() && "Instantiation found nothing?"); 1154 1155 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front()); 1156 assert(InstVarTemplate && "Instantiation did not find a variable template?"); 1157 1158 if (VarTemplatePartialSpecializationDecl *Result = 1159 InstVarTemplate->findPartialSpecInstantiatedFromMember(D)) 1160 return Result; 1161 1162 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D); 1163 } 1164 1165 Decl * 1166 TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) { 1167 // Create a local instantiation scope for this function template, which 1168 // will contain the instantiations of the template parameters and then get 1169 // merged with the local instantiation scope for the function template 1170 // itself. 1171 LocalInstantiationScope Scope(SemaRef); 1172 1173 TemplateParameterList *TempParams = D->getTemplateParameters(); 1174 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 1175 if (!InstParams) 1176 return nullptr; 1177 1178 FunctionDecl *Instantiated = nullptr; 1179 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl())) 1180 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod, 1181 InstParams)); 1182 else 1183 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl( 1184 D->getTemplatedDecl(), 1185 InstParams)); 1186 1187 if (!Instantiated) 1188 return nullptr; 1189 1190 // Link the instantiated function template declaration to the function 1191 // template from which it was instantiated. 1192 FunctionTemplateDecl *InstTemplate 1193 = Instantiated->getDescribedFunctionTemplate(); 1194 InstTemplate->setAccess(D->getAccess()); 1195 assert(InstTemplate && 1196 "VisitFunctionDecl/CXXMethodDecl didn't create a template!"); 1197 1198 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None); 1199 1200 // Link the instantiation back to the pattern *unless* this is a 1201 // non-definition friend declaration. 1202 if (!InstTemplate->getInstantiatedFromMemberTemplate() && 1203 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition())) 1204 InstTemplate->setInstantiatedFromMemberTemplate(D); 1205 1206 // Make declarations visible in the appropriate context. 1207 if (!isFriend) { 1208 Owner->addDecl(InstTemplate); 1209 } else if (InstTemplate->getDeclContext()->isRecord() && 1210 !getPreviousDeclForInstantiation(D)) { 1211 SemaRef.CheckFriendAccess(InstTemplate); 1212 } 1213 1214 return InstTemplate; 1215 } 1216 1217 Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) { 1218 CXXRecordDecl *PrevDecl = nullptr; 1219 if (D->isInjectedClassName()) 1220 PrevDecl = cast<CXXRecordDecl>(Owner); 1221 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) { 1222 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(), 1223 PatternPrev, 1224 TemplateArgs); 1225 if (!Prev) return nullptr; 1226 PrevDecl = cast<CXXRecordDecl>(Prev); 1227 } 1228 1229 CXXRecordDecl *Record 1230 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner, 1231 D->getLocStart(), D->getLocation(), 1232 D->getIdentifier(), PrevDecl); 1233 1234 // Substitute the nested name specifier, if any. 1235 if (SubstQualifier(D, Record)) 1236 return nullptr; 1237 1238 Record->setImplicit(D->isImplicit()); 1239 // FIXME: Check against AS_none is an ugly hack to work around the issue that 1240 // the tag decls introduced by friend class declarations don't have an access 1241 // specifier. Remove once this area of the code gets sorted out. 1242 if (D->getAccess() != AS_none) 1243 Record->setAccess(D->getAccess()); 1244 if (!D->isInjectedClassName()) 1245 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation); 1246 1247 // If the original function was part of a friend declaration, 1248 // inherit its namespace state. 1249 if (D->getFriendObjectKind()) 1250 Record->setObjectOfFriendDecl(); 1251 1252 // Make sure that anonymous structs and unions are recorded. 1253 if (D->isAnonymousStructOrUnion()) 1254 Record->setAnonymousStructOrUnion(true); 1255 1256 if (D->isLocalClass()) 1257 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record); 1258 1259 // Forward the mangling number from the template to the instantiated decl. 1260 SemaRef.Context.setManglingNumber(Record, 1261 SemaRef.Context.getManglingNumber(D)); 1262 1263 Owner->addDecl(Record); 1264 1265 // DR1484 clarifies that the members of a local class are instantiated as part 1266 // of the instantiation of their enclosing entity. 1267 if (D->isCompleteDefinition() && D->isLocalClass()) { 1268 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs, 1269 TSK_ImplicitInstantiation, 1270 /*Complain=*/true); 1271 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs, 1272 TSK_ImplicitInstantiation); 1273 } 1274 1275 SemaRef.DiagnoseUnusedNestedTypedefs(Record); 1276 1277 return Record; 1278 } 1279 1280 /// \brief Adjust the given function type for an instantiation of the 1281 /// given declaration, to cope with modifications to the function's type that 1282 /// aren't reflected in the type-source information. 1283 /// 1284 /// \param D The declaration we're instantiating. 1285 /// \param TInfo The already-instantiated type. 1286 static QualType adjustFunctionTypeForInstantiation(ASTContext &Context, 1287 FunctionDecl *D, 1288 TypeSourceInfo *TInfo) { 1289 const FunctionProtoType *OrigFunc 1290 = D->getType()->castAs<FunctionProtoType>(); 1291 const FunctionProtoType *NewFunc 1292 = TInfo->getType()->castAs<FunctionProtoType>(); 1293 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo()) 1294 return TInfo->getType(); 1295 1296 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo(); 1297 NewEPI.ExtInfo = OrigFunc->getExtInfo(); 1298 return Context.getFunctionType(NewFunc->getReturnType(), 1299 NewFunc->getParamTypes(), NewEPI); 1300 } 1301 1302 /// Normal class members are of more specific types and therefore 1303 /// don't make it here. This function serves two purposes: 1304 /// 1) instantiating function templates 1305 /// 2) substituting friend declarations 1306 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D, 1307 TemplateParameterList *TemplateParams) { 1308 // Check whether there is already a function template specialization for 1309 // this declaration. 1310 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate(); 1311 if (FunctionTemplate && !TemplateParams) { 1312 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost(); 1313 1314 void *InsertPos = nullptr; 1315 FunctionDecl *SpecFunc 1316 = FunctionTemplate->findSpecialization(Innermost, InsertPos); 1317 1318 // If we already have a function template specialization, return it. 1319 if (SpecFunc) 1320 return SpecFunc; 1321 } 1322 1323 bool isFriend; 1324 if (FunctionTemplate) 1325 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None); 1326 else 1327 isFriend = (D->getFriendObjectKind() != Decl::FOK_None); 1328 1329 bool MergeWithParentScope = (TemplateParams != nullptr) || 1330 Owner->isFunctionOrMethod() || 1331 !(isa<Decl>(Owner) && 1332 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod()); 1333 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope); 1334 1335 SmallVector<ParmVarDecl *, 4> Params; 1336 TypeSourceInfo *TInfo = SubstFunctionType(D, Params); 1337 if (!TInfo) 1338 return nullptr; 1339 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo); 1340 1341 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc(); 1342 if (QualifierLoc) { 1343 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, 1344 TemplateArgs); 1345 if (!QualifierLoc) 1346 return nullptr; 1347 } 1348 1349 // If we're instantiating a local function declaration, put the result 1350 // in the enclosing namespace; otherwise we need to find the instantiated 1351 // context. 1352 DeclContext *DC; 1353 if (D->isLocalExternDecl()) { 1354 DC = Owner; 1355 SemaRef.adjustContextForLocalExternDecl(DC); 1356 } else if (isFriend && QualifierLoc) { 1357 CXXScopeSpec SS; 1358 SS.Adopt(QualifierLoc); 1359 DC = SemaRef.computeDeclContext(SS); 1360 if (!DC) return nullptr; 1361 } else { 1362 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(), 1363 TemplateArgs); 1364 } 1365 1366 FunctionDecl *Function = 1367 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), 1368 D->getNameInfo(), T, TInfo, 1369 D->getCanonicalDecl()->getStorageClass(), 1370 D->isInlineSpecified(), D->hasWrittenPrototype(), 1371 D->isConstexpr()); 1372 Function->setRangeEnd(D->getSourceRange().getEnd()); 1373 1374 if (D->isInlined()) 1375 Function->setImplicitlyInline(); 1376 1377 if (QualifierLoc) 1378 Function->setQualifierInfo(QualifierLoc); 1379 1380 if (D->isLocalExternDecl()) 1381 Function->setLocalExternDecl(); 1382 1383 DeclContext *LexicalDC = Owner; 1384 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) { 1385 assert(D->getDeclContext()->isFileContext()); 1386 LexicalDC = D->getDeclContext(); 1387 } 1388 1389 Function->setLexicalDeclContext(LexicalDC); 1390 1391 // Attach the parameters 1392 for (unsigned P = 0; P < Params.size(); ++P) 1393 if (Params[P]) 1394 Params[P]->setOwningFunction(Function); 1395 Function->setParams(Params); 1396 1397 SourceLocation InstantiateAtPOI; 1398 if (TemplateParams) { 1399 // Our resulting instantiation is actually a function template, since we 1400 // are substituting only the outer template parameters. For example, given 1401 // 1402 // template<typename T> 1403 // struct X { 1404 // template<typename U> friend void f(T, U); 1405 // }; 1406 // 1407 // X<int> x; 1408 // 1409 // We are instantiating the friend function template "f" within X<int>, 1410 // which means substituting int for T, but leaving "f" as a friend function 1411 // template. 1412 // Build the function template itself. 1413 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC, 1414 Function->getLocation(), 1415 Function->getDeclName(), 1416 TemplateParams, Function); 1417 Function->setDescribedFunctionTemplate(FunctionTemplate); 1418 1419 FunctionTemplate->setLexicalDeclContext(LexicalDC); 1420 1421 if (isFriend && D->isThisDeclarationADefinition()) { 1422 // TODO: should we remember this connection regardless of whether 1423 // the friend declaration provided a body? 1424 FunctionTemplate->setInstantiatedFromMemberTemplate( 1425 D->getDescribedFunctionTemplate()); 1426 } 1427 } else if (FunctionTemplate) { 1428 // Record this function template specialization. 1429 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost(); 1430 Function->setFunctionTemplateSpecialization(FunctionTemplate, 1431 TemplateArgumentList::CreateCopy(SemaRef.Context, 1432 Innermost.begin(), 1433 Innermost.size()), 1434 /*InsertPos=*/nullptr); 1435 } else if (isFriend) { 1436 // Note, we need this connection even if the friend doesn't have a body. 1437 // Its body may exist but not have been attached yet due to deferred 1438 // parsing. 1439 // FIXME: It might be cleaner to set this when attaching the body to the 1440 // friend function declaration, however that would require finding all the 1441 // instantiations and modifying them. 1442 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation); 1443 } 1444 1445 if (InitFunctionInstantiation(Function, D)) 1446 Function->setInvalidDecl(); 1447 1448 bool isExplicitSpecialization = false; 1449 1450 LookupResult Previous( 1451 SemaRef, Function->getDeclName(), SourceLocation(), 1452 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage 1453 : Sema::LookupOrdinaryName, 1454 Sema::ForRedeclaration); 1455 1456 if (DependentFunctionTemplateSpecializationInfo *Info 1457 = D->getDependentSpecializationInfo()) { 1458 assert(isFriend && "non-friend has dependent specialization info?"); 1459 1460 // This needs to be set now for future sanity. 1461 Function->setObjectOfFriendDecl(); 1462 1463 // Instantiate the explicit template arguments. 1464 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(), 1465 Info->getRAngleLoc()); 1466 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(), 1467 ExplicitArgs, TemplateArgs)) 1468 return nullptr; 1469 1470 // Map the candidate templates to their instantiations. 1471 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) { 1472 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(), 1473 Info->getTemplate(I), 1474 TemplateArgs); 1475 if (!Temp) return nullptr; 1476 1477 Previous.addDecl(cast<FunctionTemplateDecl>(Temp)); 1478 } 1479 1480 if (SemaRef.CheckFunctionTemplateSpecialization(Function, 1481 &ExplicitArgs, 1482 Previous)) 1483 Function->setInvalidDecl(); 1484 1485 isExplicitSpecialization = true; 1486 1487 } else if (TemplateParams || !FunctionTemplate) { 1488 // Look only into the namespace where the friend would be declared to 1489 // find a previous declaration. This is the innermost enclosing namespace, 1490 // as described in ActOnFriendFunctionDecl. 1491 SemaRef.LookupQualifiedName(Previous, DC); 1492 1493 // In C++, the previous declaration we find might be a tag type 1494 // (class or enum). In this case, the new declaration will hide the 1495 // tag type. Note that this does does not apply if we're declaring a 1496 // typedef (C++ [dcl.typedef]p4). 1497 if (Previous.isSingleTagDecl()) 1498 Previous.clear(); 1499 } 1500 1501 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous, 1502 isExplicitSpecialization); 1503 1504 NamedDecl *PrincipalDecl = (TemplateParams 1505 ? cast<NamedDecl>(FunctionTemplate) 1506 : Function); 1507 1508 // If the original function was part of a friend declaration, 1509 // inherit its namespace state and add it to the owner. 1510 if (isFriend) { 1511 PrincipalDecl->setObjectOfFriendDecl(); 1512 DC->makeDeclVisibleInContext(PrincipalDecl); 1513 1514 bool QueuedInstantiation = false; 1515 1516 // C++11 [temp.friend]p4 (DR329): 1517 // When a function is defined in a friend function declaration in a class 1518 // template, the function is instantiated when the function is odr-used. 1519 // The same restrictions on multiple declarations and definitions that 1520 // apply to non-template function declarations and definitions also apply 1521 // to these implicit definitions. 1522 if (D->isThisDeclarationADefinition()) { 1523 // Check for a function body. 1524 const FunctionDecl *Definition = nullptr; 1525 if (Function->isDefined(Definition) && 1526 Definition->getTemplateSpecializationKind() == TSK_Undeclared) { 1527 SemaRef.Diag(Function->getLocation(), diag::err_redefinition) 1528 << Function->getDeclName(); 1529 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition); 1530 } 1531 // Check for redefinitions due to other instantiations of this or 1532 // a similar friend function. 1533 else for (auto R : Function->redecls()) { 1534 if (R == Function) 1535 continue; 1536 1537 // If some prior declaration of this function has been used, we need 1538 // to instantiate its definition. 1539 if (!QueuedInstantiation && R->isUsed(false)) { 1540 if (MemberSpecializationInfo *MSInfo = 1541 Function->getMemberSpecializationInfo()) { 1542 if (MSInfo->getPointOfInstantiation().isInvalid()) { 1543 SourceLocation Loc = R->getLocation(); // FIXME 1544 MSInfo->setPointOfInstantiation(Loc); 1545 SemaRef.PendingLocalImplicitInstantiations.push_back( 1546 std::make_pair(Function, Loc)); 1547 QueuedInstantiation = true; 1548 } 1549 } 1550 } 1551 1552 // If some prior declaration of this function was a friend with an 1553 // uninstantiated definition, reject it. 1554 if (R->getFriendObjectKind()) { 1555 if (const FunctionDecl *RPattern = 1556 R->getTemplateInstantiationPattern()) { 1557 if (RPattern->isDefined(RPattern)) { 1558 SemaRef.Diag(Function->getLocation(), diag::err_redefinition) 1559 << Function->getDeclName(); 1560 SemaRef.Diag(R->getLocation(), diag::note_previous_definition); 1561 break; 1562 } 1563 } 1564 } 1565 } 1566 } 1567 } 1568 1569 if (Function->isLocalExternDecl() && !Function->getPreviousDecl()) 1570 DC->makeDeclVisibleInContext(PrincipalDecl); 1571 1572 if (Function->isOverloadedOperator() && !DC->isRecord() && 1573 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) 1574 PrincipalDecl->setNonMemberOperator(); 1575 1576 assert(!D->isDefaulted() && "only methods should be defaulted"); 1577 return Function; 1578 } 1579 1580 Decl * 1581 TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D, 1582 TemplateParameterList *TemplateParams, 1583 bool IsClassScopeSpecialization) { 1584 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate(); 1585 if (FunctionTemplate && !TemplateParams) { 1586 // We are creating a function template specialization from a function 1587 // template. Check whether there is already a function template 1588 // specialization for this particular set of template arguments. 1589 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost(); 1590 1591 void *InsertPos = nullptr; 1592 FunctionDecl *SpecFunc 1593 = FunctionTemplate->findSpecialization(Innermost, InsertPos); 1594 1595 // If we already have a function template specialization, return it. 1596 if (SpecFunc) 1597 return SpecFunc; 1598 } 1599 1600 bool isFriend; 1601 if (FunctionTemplate) 1602 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None); 1603 else 1604 isFriend = (D->getFriendObjectKind() != Decl::FOK_None); 1605 1606 bool MergeWithParentScope = (TemplateParams != nullptr) || 1607 !(isa<Decl>(Owner) && 1608 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod()); 1609 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope); 1610 1611 // Instantiate enclosing template arguments for friends. 1612 SmallVector<TemplateParameterList *, 4> TempParamLists; 1613 unsigned NumTempParamLists = 0; 1614 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) { 1615 TempParamLists.set_size(NumTempParamLists); 1616 for (unsigned I = 0; I != NumTempParamLists; ++I) { 1617 TemplateParameterList *TempParams = D->getTemplateParameterList(I); 1618 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 1619 if (!InstParams) 1620 return nullptr; 1621 TempParamLists[I] = InstParams; 1622 } 1623 } 1624 1625 SmallVector<ParmVarDecl *, 4> Params; 1626 TypeSourceInfo *TInfo = SubstFunctionType(D, Params); 1627 if (!TInfo) 1628 return nullptr; 1629 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo); 1630 1631 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc(); 1632 if (QualifierLoc) { 1633 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, 1634 TemplateArgs); 1635 if (!QualifierLoc) 1636 return nullptr; 1637 } 1638 1639 DeclContext *DC = Owner; 1640 if (isFriend) { 1641 if (QualifierLoc) { 1642 CXXScopeSpec SS; 1643 SS.Adopt(QualifierLoc); 1644 DC = SemaRef.computeDeclContext(SS); 1645 1646 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC)) 1647 return nullptr; 1648 } else { 1649 DC = SemaRef.FindInstantiatedContext(D->getLocation(), 1650 D->getDeclContext(), 1651 TemplateArgs); 1652 } 1653 if (!DC) return nullptr; 1654 } 1655 1656 // Build the instantiated method declaration. 1657 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 1658 CXXMethodDecl *Method = nullptr; 1659 1660 SourceLocation StartLoc = D->getInnerLocStart(); 1661 DeclarationNameInfo NameInfo 1662 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs); 1663 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 1664 Method = CXXConstructorDecl::Create(SemaRef.Context, Record, 1665 StartLoc, NameInfo, T, TInfo, 1666 Constructor->isExplicit(), 1667 Constructor->isInlineSpecified(), 1668 false, Constructor->isConstexpr()); 1669 1670 // Claim that the instantiation of a constructor or constructor template 1671 // inherits the same constructor that the template does. 1672 if (CXXConstructorDecl *Inh = const_cast<CXXConstructorDecl *>( 1673 Constructor->getInheritedConstructor())) { 1674 // If we're instantiating a specialization of a function template, our 1675 // "inherited constructor" will actually itself be a function template. 1676 // Instantiate a declaration of it, too. 1677 if (FunctionTemplate) { 1678 assert(!TemplateParams && Inh->getDescribedFunctionTemplate() && 1679 !Inh->getParent()->isDependentContext() && 1680 "inheriting constructor template in dependent context?"); 1681 Sema::InstantiatingTemplate Inst(SemaRef, Constructor->getLocation(), 1682 Inh); 1683 if (Inst.isInvalid()) 1684 return nullptr; 1685 Sema::ContextRAII SavedContext(SemaRef, Inh->getDeclContext()); 1686 LocalInstantiationScope LocalScope(SemaRef); 1687 1688 // Use the same template arguments that we deduced for the inheriting 1689 // constructor. There's no way they could be deduced differently. 1690 MultiLevelTemplateArgumentList InheritedArgs; 1691 InheritedArgs.addOuterTemplateArguments(TemplateArgs.getInnermost()); 1692 Inh = cast_or_null<CXXConstructorDecl>( 1693 SemaRef.SubstDecl(Inh, Inh->getDeclContext(), InheritedArgs)); 1694 if (!Inh) 1695 return nullptr; 1696 } 1697 cast<CXXConstructorDecl>(Method)->setInheritedConstructor(Inh); 1698 } 1699 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { 1700 Method = CXXDestructorDecl::Create(SemaRef.Context, Record, 1701 StartLoc, NameInfo, T, TInfo, 1702 Destructor->isInlineSpecified(), 1703 false); 1704 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) { 1705 Method = CXXConversionDecl::Create(SemaRef.Context, Record, 1706 StartLoc, NameInfo, T, TInfo, 1707 Conversion->isInlineSpecified(), 1708 Conversion->isExplicit(), 1709 Conversion->isConstexpr(), 1710 Conversion->getLocEnd()); 1711 } else { 1712 StorageClass SC = D->isStatic() ? SC_Static : SC_None; 1713 Method = CXXMethodDecl::Create(SemaRef.Context, Record, 1714 StartLoc, NameInfo, T, TInfo, 1715 SC, D->isInlineSpecified(), 1716 D->isConstexpr(), D->getLocEnd()); 1717 } 1718 1719 if (D->isInlined()) 1720 Method->setImplicitlyInline(); 1721 1722 if (QualifierLoc) 1723 Method->setQualifierInfo(QualifierLoc); 1724 1725 if (TemplateParams) { 1726 // Our resulting instantiation is actually a function template, since we 1727 // are substituting only the outer template parameters. For example, given 1728 // 1729 // template<typename T> 1730 // struct X { 1731 // template<typename U> void f(T, U); 1732 // }; 1733 // 1734 // X<int> x; 1735 // 1736 // We are instantiating the member template "f" within X<int>, which means 1737 // substituting int for T, but leaving "f" as a member function template. 1738 // Build the function template itself. 1739 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record, 1740 Method->getLocation(), 1741 Method->getDeclName(), 1742 TemplateParams, Method); 1743 if (isFriend) { 1744 FunctionTemplate->setLexicalDeclContext(Owner); 1745 FunctionTemplate->setObjectOfFriendDecl(); 1746 } else if (D->isOutOfLine()) 1747 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext()); 1748 Method->setDescribedFunctionTemplate(FunctionTemplate); 1749 } else if (FunctionTemplate) { 1750 // Record this function template specialization. 1751 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost(); 1752 Method->setFunctionTemplateSpecialization(FunctionTemplate, 1753 TemplateArgumentList::CreateCopy(SemaRef.Context, 1754 Innermost.begin(), 1755 Innermost.size()), 1756 /*InsertPos=*/nullptr); 1757 } else if (!isFriend) { 1758 // Record that this is an instantiation of a member function. 1759 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation); 1760 } 1761 1762 // If we are instantiating a member function defined 1763 // out-of-line, the instantiation will have the same lexical 1764 // context (which will be a namespace scope) as the template. 1765 if (isFriend) { 1766 if (NumTempParamLists) 1767 Method->setTemplateParameterListsInfo(SemaRef.Context, 1768 NumTempParamLists, 1769 TempParamLists.data()); 1770 1771 Method->setLexicalDeclContext(Owner); 1772 Method->setObjectOfFriendDecl(); 1773 } else if (D->isOutOfLine()) 1774 Method->setLexicalDeclContext(D->getLexicalDeclContext()); 1775 1776 // Attach the parameters 1777 for (unsigned P = 0; P < Params.size(); ++P) 1778 Params[P]->setOwningFunction(Method); 1779 Method->setParams(Params); 1780 1781 if (InitMethodInstantiation(Method, D)) 1782 Method->setInvalidDecl(); 1783 1784 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName, 1785 Sema::ForRedeclaration); 1786 1787 if (!FunctionTemplate || TemplateParams || isFriend) { 1788 SemaRef.LookupQualifiedName(Previous, Record); 1789 1790 // In C++, the previous declaration we find might be a tag type 1791 // (class or enum). In this case, the new declaration will hide the 1792 // tag type. Note that this does does not apply if we're declaring a 1793 // typedef (C++ [dcl.typedef]p4). 1794 if (Previous.isSingleTagDecl()) 1795 Previous.clear(); 1796 } 1797 1798 if (!IsClassScopeSpecialization) 1799 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false); 1800 1801 if (D->isPure()) 1802 SemaRef.CheckPureMethod(Method, SourceRange()); 1803 1804 // Propagate access. For a non-friend declaration, the access is 1805 // whatever we're propagating from. For a friend, it should be the 1806 // previous declaration we just found. 1807 if (isFriend && Method->getPreviousDecl()) 1808 Method->setAccess(Method->getPreviousDecl()->getAccess()); 1809 else 1810 Method->setAccess(D->getAccess()); 1811 if (FunctionTemplate) 1812 FunctionTemplate->setAccess(Method->getAccess()); 1813 1814 SemaRef.CheckOverrideControl(Method); 1815 1816 // If a function is defined as defaulted or deleted, mark it as such now. 1817 if (D->isExplicitlyDefaulted()) 1818 SemaRef.SetDeclDefaulted(Method, Method->getLocation()); 1819 if (D->isDeletedAsWritten()) 1820 SemaRef.SetDeclDeleted(Method, Method->getLocation()); 1821 1822 // If there's a function template, let our caller handle it. 1823 if (FunctionTemplate) { 1824 // do nothing 1825 1826 // Don't hide a (potentially) valid declaration with an invalid one. 1827 } else if (Method->isInvalidDecl() && !Previous.empty()) { 1828 // do nothing 1829 1830 // Otherwise, check access to friends and make them visible. 1831 } else if (isFriend) { 1832 // We only need to re-check access for methods which we didn't 1833 // manage to match during parsing. 1834 if (!D->getPreviousDecl()) 1835 SemaRef.CheckFriendAccess(Method); 1836 1837 Record->makeDeclVisibleInContext(Method); 1838 1839 // Otherwise, add the declaration. We don't need to do this for 1840 // class-scope specializations because we'll have matched them with 1841 // the appropriate template. 1842 } else if (!IsClassScopeSpecialization) { 1843 Owner->addDecl(Method); 1844 } 1845 1846 return Method; 1847 } 1848 1849 Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) { 1850 return VisitCXXMethodDecl(D); 1851 } 1852 1853 Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) { 1854 return VisitCXXMethodDecl(D); 1855 } 1856 1857 Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) { 1858 return VisitCXXMethodDecl(D); 1859 } 1860 1861 Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) { 1862 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None, 1863 /*ExpectParameterPack=*/ false); 1864 } 1865 1866 Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl( 1867 TemplateTypeParmDecl *D) { 1868 // TODO: don't always clone when decls are refcounted. 1869 assert(D->getTypeForDecl()->isTemplateTypeParmType()); 1870 1871 TemplateTypeParmDecl *Inst = 1872 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, 1873 D->getLocStart(), D->getLocation(), 1874 D->getDepth() - TemplateArgs.getNumLevels(), 1875 D->getIndex(), D->getIdentifier(), 1876 D->wasDeclaredWithTypename(), 1877 D->isParameterPack()); 1878 Inst->setAccess(AS_public); 1879 1880 if (D->hasDefaultArgument()) { 1881 TypeSourceInfo *InstantiatedDefaultArg = 1882 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs, 1883 D->getDefaultArgumentLoc(), D->getDeclName()); 1884 if (InstantiatedDefaultArg) 1885 Inst->setDefaultArgument(InstantiatedDefaultArg, false); 1886 } 1887 1888 // Introduce this template parameter's instantiation into the instantiation 1889 // scope. 1890 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst); 1891 1892 return Inst; 1893 } 1894 1895 Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl( 1896 NonTypeTemplateParmDecl *D) { 1897 // Substitute into the type of the non-type template parameter. 1898 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc(); 1899 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten; 1900 SmallVector<QualType, 4> ExpandedParameterPackTypes; 1901 bool IsExpandedParameterPack = false; 1902 TypeSourceInfo *DI; 1903 QualType T; 1904 bool Invalid = false; 1905 1906 if (D->isExpandedParameterPack()) { 1907 // The non-type template parameter pack is an already-expanded pack 1908 // expansion of types. Substitute into each of the expanded types. 1909 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes()); 1910 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes()); 1911 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) { 1912 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), 1913 TemplateArgs, 1914 D->getLocation(), 1915 D->getDeclName()); 1916 if (!NewDI) 1917 return nullptr; 1918 1919 ExpandedParameterPackTypesAsWritten.push_back(NewDI); 1920 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(), 1921 D->getLocation()); 1922 if (NewT.isNull()) 1923 return nullptr; 1924 ExpandedParameterPackTypes.push_back(NewT); 1925 } 1926 1927 IsExpandedParameterPack = true; 1928 DI = D->getTypeSourceInfo(); 1929 T = DI->getType(); 1930 } else if (D->isPackExpansion()) { 1931 // The non-type template parameter pack's type is a pack expansion of types. 1932 // Determine whether we need to expand this parameter pack into separate 1933 // types. 1934 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>(); 1935 TypeLoc Pattern = Expansion.getPatternLoc(); 1936 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 1937 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded); 1938 1939 // Determine whether the set of unexpanded parameter packs can and should 1940 // be expanded. 1941 bool Expand = true; 1942 bool RetainExpansion = false; 1943 Optional<unsigned> OrigNumExpansions 1944 = Expansion.getTypePtr()->getNumExpansions(); 1945 Optional<unsigned> NumExpansions = OrigNumExpansions; 1946 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(), 1947 Pattern.getSourceRange(), 1948 Unexpanded, 1949 TemplateArgs, 1950 Expand, RetainExpansion, 1951 NumExpansions)) 1952 return nullptr; 1953 1954 if (Expand) { 1955 for (unsigned I = 0; I != *NumExpansions; ++I) { 1956 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I); 1957 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, 1958 D->getLocation(), 1959 D->getDeclName()); 1960 if (!NewDI) 1961 return nullptr; 1962 1963 ExpandedParameterPackTypesAsWritten.push_back(NewDI); 1964 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType( 1965 NewDI->getType(), 1966 D->getLocation()); 1967 if (NewT.isNull()) 1968 return nullptr; 1969 ExpandedParameterPackTypes.push_back(NewT); 1970 } 1971 1972 // Note that we have an expanded parameter pack. The "type" of this 1973 // expanded parameter pack is the original expansion type, but callers 1974 // will end up using the expanded parameter pack types for type-checking. 1975 IsExpandedParameterPack = true; 1976 DI = D->getTypeSourceInfo(); 1977 T = DI->getType(); 1978 } else { 1979 // We cannot fully expand the pack expansion now, so substitute into the 1980 // pattern and create a new pack expansion type. 1981 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1); 1982 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs, 1983 D->getLocation(), 1984 D->getDeclName()); 1985 if (!NewPattern) 1986 return nullptr; 1987 1988 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(), 1989 NumExpansions); 1990 if (!DI) 1991 return nullptr; 1992 1993 T = DI->getType(); 1994 } 1995 } else { 1996 // Simple case: substitution into a parameter that is not a parameter pack. 1997 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs, 1998 D->getLocation(), D->getDeclName()); 1999 if (!DI) 2000 return nullptr; 2001 2002 // Check that this type is acceptable for a non-type template parameter. 2003 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(), 2004 D->getLocation()); 2005 if (T.isNull()) { 2006 T = SemaRef.Context.IntTy; 2007 Invalid = true; 2008 } 2009 } 2010 2011 NonTypeTemplateParmDecl *Param; 2012 if (IsExpandedParameterPack) 2013 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, 2014 D->getInnerLocStart(), 2015 D->getLocation(), 2016 D->getDepth() - TemplateArgs.getNumLevels(), 2017 D->getPosition(), 2018 D->getIdentifier(), T, 2019 DI, 2020 ExpandedParameterPackTypes.data(), 2021 ExpandedParameterPackTypes.size(), 2022 ExpandedParameterPackTypesAsWritten.data()); 2023 else 2024 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, 2025 D->getInnerLocStart(), 2026 D->getLocation(), 2027 D->getDepth() - TemplateArgs.getNumLevels(), 2028 D->getPosition(), 2029 D->getIdentifier(), T, 2030 D->isParameterPack(), DI); 2031 2032 Param->setAccess(AS_public); 2033 if (Invalid) 2034 Param->setInvalidDecl(); 2035 2036 if (D->hasDefaultArgument()) { 2037 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs); 2038 if (!Value.isInvalid()) 2039 Param->setDefaultArgument(Value.get(), false); 2040 } 2041 2042 // Introduce this template parameter's instantiation into the instantiation 2043 // scope. 2044 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param); 2045 return Param; 2046 } 2047 2048 static void collectUnexpandedParameterPacks( 2049 Sema &S, 2050 TemplateParameterList *Params, 2051 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) { 2052 for (TemplateParameterList::const_iterator I = Params->begin(), 2053 E = Params->end(); I != E; ++I) { 2054 if ((*I)->isTemplateParameterPack()) 2055 continue; 2056 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*I)) 2057 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(), 2058 Unexpanded); 2059 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(*I)) 2060 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(), 2061 Unexpanded); 2062 } 2063 } 2064 2065 Decl * 2066 TemplateDeclInstantiator::VisitTemplateTemplateParmDecl( 2067 TemplateTemplateParmDecl *D) { 2068 // Instantiate the template parameter list of the template template parameter. 2069 TemplateParameterList *TempParams = D->getTemplateParameters(); 2070 TemplateParameterList *InstParams; 2071 SmallVector<TemplateParameterList*, 8> ExpandedParams; 2072 2073 bool IsExpandedParameterPack = false; 2074 2075 if (D->isExpandedParameterPack()) { 2076 // The template template parameter pack is an already-expanded pack 2077 // expansion of template parameters. Substitute into each of the expanded 2078 // parameters. 2079 ExpandedParams.reserve(D->getNumExpansionTemplateParameters()); 2080 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters(); 2081 I != N; ++I) { 2082 LocalInstantiationScope Scope(SemaRef); 2083 TemplateParameterList *Expansion = 2084 SubstTemplateParams(D->getExpansionTemplateParameters(I)); 2085 if (!Expansion) 2086 return nullptr; 2087 ExpandedParams.push_back(Expansion); 2088 } 2089 2090 IsExpandedParameterPack = true; 2091 InstParams = TempParams; 2092 } else if (D->isPackExpansion()) { 2093 // The template template parameter pack expands to a pack of template 2094 // template parameters. Determine whether we need to expand this parameter 2095 // pack into separate parameters. 2096 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 2097 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(), 2098 Unexpanded); 2099 2100 // Determine whether the set of unexpanded parameter packs can and should 2101 // be expanded. 2102 bool Expand = true; 2103 bool RetainExpansion = false; 2104 Optional<unsigned> NumExpansions; 2105 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(), 2106 TempParams->getSourceRange(), 2107 Unexpanded, 2108 TemplateArgs, 2109 Expand, RetainExpansion, 2110 NumExpansions)) 2111 return nullptr; 2112 2113 if (Expand) { 2114 for (unsigned I = 0; I != *NumExpansions; ++I) { 2115 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I); 2116 LocalInstantiationScope Scope(SemaRef); 2117 TemplateParameterList *Expansion = SubstTemplateParams(TempParams); 2118 if (!Expansion) 2119 return nullptr; 2120 ExpandedParams.push_back(Expansion); 2121 } 2122 2123 // Note that we have an expanded parameter pack. The "type" of this 2124 // expanded parameter pack is the original expansion type, but callers 2125 // will end up using the expanded parameter pack types for type-checking. 2126 IsExpandedParameterPack = true; 2127 InstParams = TempParams; 2128 } else { 2129 // We cannot fully expand the pack expansion now, so just substitute 2130 // into the pattern. 2131 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1); 2132 2133 LocalInstantiationScope Scope(SemaRef); 2134 InstParams = SubstTemplateParams(TempParams); 2135 if (!InstParams) 2136 return nullptr; 2137 } 2138 } else { 2139 // Perform the actual substitution of template parameters within a new, 2140 // local instantiation scope. 2141 LocalInstantiationScope Scope(SemaRef); 2142 InstParams = SubstTemplateParams(TempParams); 2143 if (!InstParams) 2144 return nullptr; 2145 } 2146 2147 // Build the template template parameter. 2148 TemplateTemplateParmDecl *Param; 2149 if (IsExpandedParameterPack) 2150 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, 2151 D->getLocation(), 2152 D->getDepth() - TemplateArgs.getNumLevels(), 2153 D->getPosition(), 2154 D->getIdentifier(), InstParams, 2155 ExpandedParams); 2156 else 2157 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, 2158 D->getLocation(), 2159 D->getDepth() - TemplateArgs.getNumLevels(), 2160 D->getPosition(), 2161 D->isParameterPack(), 2162 D->getIdentifier(), InstParams); 2163 if (D->hasDefaultArgument()) { 2164 NestedNameSpecifierLoc QualifierLoc = 2165 D->getDefaultArgument().getTemplateQualifierLoc(); 2166 QualifierLoc = 2167 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs); 2168 TemplateName TName = SemaRef.SubstTemplateName( 2169 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(), 2170 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs); 2171 if (!TName.isNull()) 2172 Param->setDefaultArgument( 2173 TemplateArgumentLoc(TemplateArgument(TName), 2174 D->getDefaultArgument().getTemplateQualifierLoc(), 2175 D->getDefaultArgument().getTemplateNameLoc()), 2176 false); 2177 } 2178 Param->setAccess(AS_public); 2179 2180 // Introduce this template parameter's instantiation into the instantiation 2181 // scope. 2182 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param); 2183 2184 return Param; 2185 } 2186 2187 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { 2188 // Using directives are never dependent (and never contain any types or 2189 // expressions), so they require no explicit instantiation work. 2190 2191 UsingDirectiveDecl *Inst 2192 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), 2193 D->getNamespaceKeyLocation(), 2194 D->getQualifierLoc(), 2195 D->getIdentLocation(), 2196 D->getNominatedNamespace(), 2197 D->getCommonAncestor()); 2198 2199 // Add the using directive to its declaration context 2200 // only if this is not a function or method. 2201 if (!Owner->isFunctionOrMethod()) 2202 Owner->addDecl(Inst); 2203 2204 return Inst; 2205 } 2206 2207 Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) { 2208 2209 // The nested name specifier may be dependent, for example 2210 // template <typename T> struct t { 2211 // struct s1 { T f1(); }; 2212 // struct s2 : s1 { using s1::f1; }; 2213 // }; 2214 // template struct t<int>; 2215 // Here, in using s1::f1, s1 refers to t<T>::s1; 2216 // we need to substitute for t<int>::s1. 2217 NestedNameSpecifierLoc QualifierLoc 2218 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), 2219 TemplateArgs); 2220 if (!QualifierLoc) 2221 return nullptr; 2222 2223 // The name info is non-dependent, so no transformation 2224 // is required. 2225 DeclarationNameInfo NameInfo = D->getNameInfo(); 2226 2227 // We only need to do redeclaration lookups if we're in a class 2228 // scope (in fact, it's not really even possible in non-class 2229 // scopes). 2230 bool CheckRedeclaration = Owner->isRecord(); 2231 2232 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName, 2233 Sema::ForRedeclaration); 2234 2235 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner, 2236 D->getUsingLoc(), 2237 QualifierLoc, 2238 NameInfo, 2239 D->hasTypename()); 2240 2241 CXXScopeSpec SS; 2242 SS.Adopt(QualifierLoc); 2243 if (CheckRedeclaration) { 2244 Prev.setHideTags(false); 2245 SemaRef.LookupQualifiedName(Prev, Owner); 2246 2247 // Check for invalid redeclarations. 2248 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(), 2249 D->hasTypename(), SS, 2250 D->getLocation(), Prev)) 2251 NewUD->setInvalidDecl(); 2252 2253 } 2254 2255 if (!NewUD->isInvalidDecl() && 2256 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), SS, NameInfo, 2257 D->getLocation())) 2258 NewUD->setInvalidDecl(); 2259 2260 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D); 2261 NewUD->setAccess(D->getAccess()); 2262 Owner->addDecl(NewUD); 2263 2264 // Don't process the shadow decls for an invalid decl. 2265 if (NewUD->isInvalidDecl()) 2266 return NewUD; 2267 2268 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) { 2269 SemaRef.CheckInheritingConstructorUsingDecl(NewUD); 2270 return NewUD; 2271 } 2272 2273 bool isFunctionScope = Owner->isFunctionOrMethod(); 2274 2275 // Process the shadow decls. 2276 for (auto *Shadow : D->shadows()) { 2277 NamedDecl *InstTarget = 2278 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl( 2279 Shadow->getLocation(), Shadow->getTargetDecl(), TemplateArgs)); 2280 if (!InstTarget) 2281 return nullptr; 2282 2283 UsingShadowDecl *PrevDecl = nullptr; 2284 if (CheckRedeclaration) { 2285 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl)) 2286 continue; 2287 } else if (UsingShadowDecl *OldPrev = 2288 getPreviousDeclForInstantiation(Shadow)) { 2289 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl( 2290 Shadow->getLocation(), OldPrev, TemplateArgs)); 2291 } 2292 2293 UsingShadowDecl *InstShadow = 2294 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget, 2295 PrevDecl); 2296 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow); 2297 2298 if (isFunctionScope) 2299 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow); 2300 } 2301 2302 return NewUD; 2303 } 2304 2305 Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) { 2306 // Ignore these; we handle them in bulk when processing the UsingDecl. 2307 return nullptr; 2308 } 2309 2310 Decl * TemplateDeclInstantiator 2311 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { 2312 NestedNameSpecifierLoc QualifierLoc 2313 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), 2314 TemplateArgs); 2315 if (!QualifierLoc) 2316 return nullptr; 2317 2318 CXXScopeSpec SS; 2319 SS.Adopt(QualifierLoc); 2320 2321 // Since NameInfo refers to a typename, it cannot be a C++ special name. 2322 // Hence, no transformation is required for it. 2323 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation()); 2324 NamedDecl *UD = 2325 SemaRef.BuildUsingDeclaration(/*Scope*/ nullptr, D->getAccess(), 2326 D->getUsingLoc(), SS, NameInfo, nullptr, 2327 /*instantiation*/ true, 2328 /*typename*/ true, D->getTypenameLoc()); 2329 if (UD) 2330 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); 2331 2332 return UD; 2333 } 2334 2335 Decl * TemplateDeclInstantiator 2336 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { 2337 NestedNameSpecifierLoc QualifierLoc 2338 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs); 2339 if (!QualifierLoc) 2340 return nullptr; 2341 2342 CXXScopeSpec SS; 2343 SS.Adopt(QualifierLoc); 2344 2345 DeclarationNameInfo NameInfo 2346 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs); 2347 2348 NamedDecl *UD = 2349 SemaRef.BuildUsingDeclaration(/*Scope*/ nullptr, D->getAccess(), 2350 D->getUsingLoc(), SS, NameInfo, nullptr, 2351 /*instantiation*/ true, 2352 /*typename*/ false, SourceLocation()); 2353 if (UD) 2354 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); 2355 2356 return UD; 2357 } 2358 2359 2360 Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl( 2361 ClassScopeFunctionSpecializationDecl *Decl) { 2362 CXXMethodDecl *OldFD = Decl->getSpecialization(); 2363 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 2364 nullptr, true)); 2365 2366 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName, 2367 Sema::ForRedeclaration); 2368 2369 TemplateArgumentListInfo TemplateArgs; 2370 TemplateArgumentListInfo *TemplateArgsPtr = nullptr; 2371 if (Decl->hasExplicitTemplateArgs()) { 2372 TemplateArgs = Decl->templateArgs(); 2373 TemplateArgsPtr = &TemplateArgs; 2374 } 2375 2376 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext); 2377 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr, 2378 Previous)) { 2379 NewFD->setInvalidDecl(); 2380 return NewFD; 2381 } 2382 2383 // Associate the specialization with the pattern. 2384 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl()); 2385 assert(Specialization && "Class scope Specialization is null"); 2386 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD); 2387 2388 return NewFD; 2389 } 2390 2391 Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl( 2392 OMPThreadPrivateDecl *D) { 2393 SmallVector<Expr *, 5> Vars; 2394 for (auto *I : D->varlists()) { 2395 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get(); 2396 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr"); 2397 Vars.push_back(Var); 2398 } 2399 2400 OMPThreadPrivateDecl *TD = 2401 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars); 2402 2403 TD->setAccess(AS_public); 2404 Owner->addDecl(TD); 2405 2406 return TD; 2407 } 2408 2409 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) { 2410 return VisitFunctionDecl(D, nullptr); 2411 } 2412 2413 Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) { 2414 return VisitCXXMethodDecl(D, nullptr); 2415 } 2416 2417 Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) { 2418 llvm_unreachable("There are only CXXRecordDecls in C++"); 2419 } 2420 2421 Decl * 2422 TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl( 2423 ClassTemplateSpecializationDecl *D) { 2424 // As a MS extension, we permit class-scope explicit specialization 2425 // of member class templates. 2426 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate(); 2427 assert(ClassTemplate->getDeclContext()->isRecord() && 2428 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 2429 "can only instantiate an explicit specialization " 2430 "for a member class template"); 2431 2432 // Lookup the already-instantiated declaration in the instantiation 2433 // of the class template. FIXME: Diagnose or assert if this fails? 2434 DeclContext::lookup_result Found 2435 = Owner->lookup(ClassTemplate->getDeclName()); 2436 if (Found.empty()) 2437 return nullptr; 2438 ClassTemplateDecl *InstClassTemplate 2439 = dyn_cast<ClassTemplateDecl>(Found.front()); 2440 if (!InstClassTemplate) 2441 return nullptr; 2442 2443 // Substitute into the template arguments of the class template explicit 2444 // specialization. 2445 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc(). 2446 castAs<TemplateSpecializationTypeLoc>(); 2447 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(), 2448 Loc.getRAngleLoc()); 2449 SmallVector<TemplateArgumentLoc, 4> ArgLocs; 2450 for (unsigned I = 0; I != Loc.getNumArgs(); ++I) 2451 ArgLocs.push_back(Loc.getArgLoc(I)); 2452 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(), 2453 InstTemplateArgs, TemplateArgs)) 2454 return nullptr; 2455 2456 // Check that the template argument list is well-formed for this 2457 // class template. 2458 SmallVector<TemplateArgument, 4> Converted; 2459 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate, 2460 D->getLocation(), 2461 InstTemplateArgs, 2462 false, 2463 Converted)) 2464 return nullptr; 2465 2466 // Figure out where to insert this class template explicit specialization 2467 // in the member template's set of class template explicit specializations. 2468 void *InsertPos = nullptr; 2469 ClassTemplateSpecializationDecl *PrevDecl = 2470 InstClassTemplate->findSpecialization(Converted, InsertPos); 2471 2472 // Check whether we've already seen a conflicting instantiation of this 2473 // declaration (for instance, if there was a prior implicit instantiation). 2474 bool Ignored; 2475 if (PrevDecl && 2476 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(), 2477 D->getSpecializationKind(), 2478 PrevDecl, 2479 PrevDecl->getSpecializationKind(), 2480 PrevDecl->getPointOfInstantiation(), 2481 Ignored)) 2482 return nullptr; 2483 2484 // If PrevDecl was a definition and D is also a definition, diagnose. 2485 // This happens in cases like: 2486 // 2487 // template<typename T, typename U> 2488 // struct Outer { 2489 // template<typename X> struct Inner; 2490 // template<> struct Inner<T> {}; 2491 // template<> struct Inner<U> {}; 2492 // }; 2493 // 2494 // Outer<int, int> outer; // error: the explicit specializations of Inner 2495 // // have the same signature. 2496 if (PrevDecl && PrevDecl->getDefinition() && 2497 D->isThisDeclarationADefinition()) { 2498 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl; 2499 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(), 2500 diag::note_previous_definition); 2501 return nullptr; 2502 } 2503 2504 // Create the class template partial specialization declaration. 2505 ClassTemplateSpecializationDecl *InstD 2506 = ClassTemplateSpecializationDecl::Create(SemaRef.Context, 2507 D->getTagKind(), 2508 Owner, 2509 D->getLocStart(), 2510 D->getLocation(), 2511 InstClassTemplate, 2512 Converted.data(), 2513 Converted.size(), 2514 PrevDecl); 2515 2516 // Add this partial specialization to the set of class template partial 2517 // specializations. 2518 if (!PrevDecl) 2519 InstClassTemplate->AddSpecialization(InstD, InsertPos); 2520 2521 // Substitute the nested name specifier, if any. 2522 if (SubstQualifier(D, InstD)) 2523 return nullptr; 2524 2525 // Build the canonical type that describes the converted template 2526 // arguments of the class template explicit specialization. 2527 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( 2528 TemplateName(InstClassTemplate), Converted.data(), Converted.size(), 2529 SemaRef.Context.getRecordType(InstD)); 2530 2531 // Build the fully-sugared type for this class template 2532 // specialization as the user wrote in the specialization 2533 // itself. This means that we'll pretty-print the type retrieved 2534 // from the specialization's declaration the way that the user 2535 // actually wrote the specialization, rather than formatting the 2536 // name based on the "canonical" representation used to store the 2537 // template arguments in the specialization. 2538 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo( 2539 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs, 2540 CanonType); 2541 2542 InstD->setAccess(D->getAccess()); 2543 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation); 2544 InstD->setSpecializationKind(D->getSpecializationKind()); 2545 InstD->setTypeAsWritten(WrittenTy); 2546 InstD->setExternLoc(D->getExternLoc()); 2547 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc()); 2548 2549 Owner->addDecl(InstD); 2550 2551 // Instantiate the members of the class-scope explicit specialization eagerly. 2552 // We don't have support for lazy instantiation of an explicit specialization 2553 // yet, and MSVC eagerly instantiates in this case. 2554 if (D->isThisDeclarationADefinition() && 2555 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs, 2556 TSK_ImplicitInstantiation, 2557 /*Complain=*/true)) 2558 return nullptr; 2559 2560 return InstD; 2561 } 2562 2563 Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl( 2564 VarTemplateSpecializationDecl *D) { 2565 2566 TemplateArgumentListInfo VarTemplateArgsInfo; 2567 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate(); 2568 assert(VarTemplate && 2569 "A template specialization without specialized template?"); 2570 2571 // Substitute the current template arguments. 2572 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo(); 2573 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc()); 2574 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc()); 2575 2576 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(), 2577 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs)) 2578 return nullptr; 2579 2580 // Check that the template argument list is well-formed for this template. 2581 SmallVector<TemplateArgument, 4> Converted; 2582 if (SemaRef.CheckTemplateArgumentList( 2583 VarTemplate, VarTemplate->getLocStart(), 2584 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false, 2585 Converted)) 2586 return nullptr; 2587 2588 // Find the variable template specialization declaration that 2589 // corresponds to these arguments. 2590 void *InsertPos = nullptr; 2591 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization( 2592 Converted, InsertPos)) 2593 // If we already have a variable template specialization, return it. 2594 return VarSpec; 2595 2596 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos, 2597 VarTemplateArgsInfo, Converted); 2598 } 2599 2600 Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl( 2601 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos, 2602 const TemplateArgumentListInfo &TemplateArgsInfo, 2603 ArrayRef<TemplateArgument> Converted) { 2604 2605 // If this is the variable for an anonymous struct or union, 2606 // instantiate the anonymous struct/union type first. 2607 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>()) 2608 if (RecordTy->getDecl()->isAnonymousStructOrUnion()) 2609 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl()))) 2610 return nullptr; 2611 2612 // Do substitution on the type of the declaration 2613 TypeSourceInfo *DI = 2614 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs, 2615 D->getTypeSpecStartLoc(), D->getDeclName()); 2616 if (!DI) 2617 return nullptr; 2618 2619 if (DI->getType()->isFunctionType()) { 2620 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function) 2621 << D->isStaticDataMember() << DI->getType(); 2622 return nullptr; 2623 } 2624 2625 // Build the instantiated declaration 2626 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create( 2627 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(), 2628 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted.data(), 2629 Converted.size()); 2630 Var->setTemplateArgsInfo(TemplateArgsInfo); 2631 if (InsertPos) 2632 VarTemplate->AddSpecialization(Var, InsertPos); 2633 2634 // Substitute the nested name specifier, if any. 2635 if (SubstQualifier(D, Var)) 2636 return nullptr; 2637 2638 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, 2639 Owner, StartingScope); 2640 2641 return Var; 2642 } 2643 2644 Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) { 2645 llvm_unreachable("@defs is not supported in Objective-C++"); 2646 } 2647 2648 Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) { 2649 // FIXME: We need to be able to instantiate FriendTemplateDecls. 2650 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID( 2651 DiagnosticsEngine::Error, 2652 "cannot instantiate %0 yet"); 2653 SemaRef.Diag(D->getLocation(), DiagID) 2654 << D->getDeclKindName(); 2655 2656 return nullptr; 2657 } 2658 2659 Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) { 2660 llvm_unreachable("Unexpected decl"); 2661 } 2662 2663 Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner, 2664 const MultiLevelTemplateArgumentList &TemplateArgs) { 2665 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs); 2666 if (D->isInvalidDecl()) 2667 return nullptr; 2668 2669 return Instantiator.Visit(D); 2670 } 2671 2672 /// \brief Instantiates a nested template parameter list in the current 2673 /// instantiation context. 2674 /// 2675 /// \param L The parameter list to instantiate 2676 /// 2677 /// \returns NULL if there was an error 2678 TemplateParameterList * 2679 TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) { 2680 // Get errors for all the parameters before bailing out. 2681 bool Invalid = false; 2682 2683 unsigned N = L->size(); 2684 typedef SmallVector<NamedDecl *, 8> ParamVector; 2685 ParamVector Params; 2686 Params.reserve(N); 2687 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end(); 2688 PI != PE; ++PI) { 2689 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI)); 2690 Params.push_back(D); 2691 Invalid = Invalid || !D || D->isInvalidDecl(); 2692 } 2693 2694 // Clean up if we had an error. 2695 if (Invalid) 2696 return nullptr; 2697 2698 TemplateParameterList *InstL 2699 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(), 2700 L->getLAngleLoc(), &Params.front(), N, 2701 L->getRAngleLoc()); 2702 return InstL; 2703 } 2704 2705 /// \brief Instantiate the declaration of a class template partial 2706 /// specialization. 2707 /// 2708 /// \param ClassTemplate the (instantiated) class template that is partially 2709 // specialized by the instantiation of \p PartialSpec. 2710 /// 2711 /// \param PartialSpec the (uninstantiated) class template partial 2712 /// specialization that we are instantiating. 2713 /// 2714 /// \returns The instantiated partial specialization, if successful; otherwise, 2715 /// NULL to indicate an error. 2716 ClassTemplatePartialSpecializationDecl * 2717 TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization( 2718 ClassTemplateDecl *ClassTemplate, 2719 ClassTemplatePartialSpecializationDecl *PartialSpec) { 2720 // Create a local instantiation scope for this class template partial 2721 // specialization, which will contain the instantiations of the template 2722 // parameters. 2723 LocalInstantiationScope Scope(SemaRef); 2724 2725 // Substitute into the template parameters of the class template partial 2726 // specialization. 2727 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters(); 2728 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 2729 if (!InstParams) 2730 return nullptr; 2731 2732 // Substitute into the template arguments of the class template partial 2733 // specialization. 2734 const ASTTemplateArgumentListInfo *TemplArgInfo 2735 = PartialSpec->getTemplateArgsAsWritten(); 2736 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, 2737 TemplArgInfo->RAngleLoc); 2738 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(), 2739 TemplArgInfo->NumTemplateArgs, 2740 InstTemplateArgs, TemplateArgs)) 2741 return nullptr; 2742 2743 // Check that the template argument list is well-formed for this 2744 // class template. 2745 SmallVector<TemplateArgument, 4> Converted; 2746 if (SemaRef.CheckTemplateArgumentList(ClassTemplate, 2747 PartialSpec->getLocation(), 2748 InstTemplateArgs, 2749 false, 2750 Converted)) 2751 return nullptr; 2752 2753 // Figure out where to insert this class template partial specialization 2754 // in the member template's set of class template partial specializations. 2755 void *InsertPos = nullptr; 2756 ClassTemplateSpecializationDecl *PrevDecl 2757 = ClassTemplate->findPartialSpecialization(Converted, InsertPos); 2758 2759 // Build the canonical type that describes the converted template 2760 // arguments of the class template partial specialization. 2761 QualType CanonType 2762 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate), 2763 Converted.data(), 2764 Converted.size()); 2765 2766 // Build the fully-sugared type for this class template 2767 // specialization as the user wrote in the specialization 2768 // itself. This means that we'll pretty-print the type retrieved 2769 // from the specialization's declaration the way that the user 2770 // actually wrote the specialization, rather than formatting the 2771 // name based on the "canonical" representation used to store the 2772 // template arguments in the specialization. 2773 TypeSourceInfo *WrittenTy 2774 = SemaRef.Context.getTemplateSpecializationTypeInfo( 2775 TemplateName(ClassTemplate), 2776 PartialSpec->getLocation(), 2777 InstTemplateArgs, 2778 CanonType); 2779 2780 if (PrevDecl) { 2781 // We've already seen a partial specialization with the same template 2782 // parameters and template arguments. This can happen, for example, when 2783 // substituting the outer template arguments ends up causing two 2784 // class template partial specializations of a member class template 2785 // to have identical forms, e.g., 2786 // 2787 // template<typename T, typename U> 2788 // struct Outer { 2789 // template<typename X, typename Y> struct Inner; 2790 // template<typename Y> struct Inner<T, Y>; 2791 // template<typename Y> struct Inner<U, Y>; 2792 // }; 2793 // 2794 // Outer<int, int> outer; // error: the partial specializations of Inner 2795 // // have the same signature. 2796 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared) 2797 << WrittenTy->getType(); 2798 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here) 2799 << SemaRef.Context.getTypeDeclType(PrevDecl); 2800 return nullptr; 2801 } 2802 2803 2804 // Create the class template partial specialization declaration. 2805 ClassTemplatePartialSpecializationDecl *InstPartialSpec 2806 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, 2807 PartialSpec->getTagKind(), 2808 Owner, 2809 PartialSpec->getLocStart(), 2810 PartialSpec->getLocation(), 2811 InstParams, 2812 ClassTemplate, 2813 Converted.data(), 2814 Converted.size(), 2815 InstTemplateArgs, 2816 CanonType, 2817 nullptr); 2818 // Substitute the nested name specifier, if any. 2819 if (SubstQualifier(PartialSpec, InstPartialSpec)) 2820 return nullptr; 2821 2822 InstPartialSpec->setInstantiatedFromMember(PartialSpec); 2823 InstPartialSpec->setTypeAsWritten(WrittenTy); 2824 2825 // Add this partial specialization to the set of class template partial 2826 // specializations. 2827 ClassTemplate->AddPartialSpecialization(InstPartialSpec, 2828 /*InsertPos=*/nullptr); 2829 return InstPartialSpec; 2830 } 2831 2832 /// \brief Instantiate the declaration of a variable template partial 2833 /// specialization. 2834 /// 2835 /// \param VarTemplate the (instantiated) variable template that is partially 2836 /// specialized by the instantiation of \p PartialSpec. 2837 /// 2838 /// \param PartialSpec the (uninstantiated) variable template partial 2839 /// specialization that we are instantiating. 2840 /// 2841 /// \returns The instantiated partial specialization, if successful; otherwise, 2842 /// NULL to indicate an error. 2843 VarTemplatePartialSpecializationDecl * 2844 TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization( 2845 VarTemplateDecl *VarTemplate, 2846 VarTemplatePartialSpecializationDecl *PartialSpec) { 2847 // Create a local instantiation scope for this variable template partial 2848 // specialization, which will contain the instantiations of the template 2849 // parameters. 2850 LocalInstantiationScope Scope(SemaRef); 2851 2852 // Substitute into the template parameters of the variable template partial 2853 // specialization. 2854 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters(); 2855 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 2856 if (!InstParams) 2857 return nullptr; 2858 2859 // Substitute into the template arguments of the variable template partial 2860 // specialization. 2861 const ASTTemplateArgumentListInfo *TemplArgInfo 2862 = PartialSpec->getTemplateArgsAsWritten(); 2863 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, 2864 TemplArgInfo->RAngleLoc); 2865 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(), 2866 TemplArgInfo->NumTemplateArgs, 2867 InstTemplateArgs, TemplateArgs)) 2868 return nullptr; 2869 2870 // Check that the template argument list is well-formed for this 2871 // class template. 2872 SmallVector<TemplateArgument, 4> Converted; 2873 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(), 2874 InstTemplateArgs, false, Converted)) 2875 return nullptr; 2876 2877 // Figure out where to insert this variable template partial specialization 2878 // in the member template's set of variable template partial specializations. 2879 void *InsertPos = nullptr; 2880 VarTemplateSpecializationDecl *PrevDecl = 2881 VarTemplate->findPartialSpecialization(Converted, InsertPos); 2882 2883 // Build the canonical type that describes the converted template 2884 // arguments of the variable template partial specialization. 2885 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( 2886 TemplateName(VarTemplate), Converted.data(), Converted.size()); 2887 2888 // Build the fully-sugared type for this variable template 2889 // specialization as the user wrote in the specialization 2890 // itself. This means that we'll pretty-print the type retrieved 2891 // from the specialization's declaration the way that the user 2892 // actually wrote the specialization, rather than formatting the 2893 // name based on the "canonical" representation used to store the 2894 // template arguments in the specialization. 2895 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo( 2896 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs, 2897 CanonType); 2898 2899 if (PrevDecl) { 2900 // We've already seen a partial specialization with the same template 2901 // parameters and template arguments. This can happen, for example, when 2902 // substituting the outer template arguments ends up causing two 2903 // variable template partial specializations of a member variable template 2904 // to have identical forms, e.g., 2905 // 2906 // template<typename T, typename U> 2907 // struct Outer { 2908 // template<typename X, typename Y> pair<X,Y> p; 2909 // template<typename Y> pair<T, Y> p; 2910 // template<typename Y> pair<U, Y> p; 2911 // }; 2912 // 2913 // Outer<int, int> outer; // error: the partial specializations of Inner 2914 // // have the same signature. 2915 SemaRef.Diag(PartialSpec->getLocation(), 2916 diag::err_var_partial_spec_redeclared) 2917 << WrittenTy->getType(); 2918 SemaRef.Diag(PrevDecl->getLocation(), 2919 diag::note_var_prev_partial_spec_here); 2920 return nullptr; 2921 } 2922 2923 // Do substitution on the type of the declaration 2924 TypeSourceInfo *DI = SemaRef.SubstType( 2925 PartialSpec->getTypeSourceInfo(), TemplateArgs, 2926 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName()); 2927 if (!DI) 2928 return nullptr; 2929 2930 if (DI->getType()->isFunctionType()) { 2931 SemaRef.Diag(PartialSpec->getLocation(), 2932 diag::err_variable_instantiates_to_function) 2933 << PartialSpec->isStaticDataMember() << DI->getType(); 2934 return nullptr; 2935 } 2936 2937 // Create the variable template partial specialization declaration. 2938 VarTemplatePartialSpecializationDecl *InstPartialSpec = 2939 VarTemplatePartialSpecializationDecl::Create( 2940 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(), 2941 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(), 2942 DI, PartialSpec->getStorageClass(), Converted.data(), 2943 Converted.size(), InstTemplateArgs); 2944 2945 // Substitute the nested name specifier, if any. 2946 if (SubstQualifier(PartialSpec, InstPartialSpec)) 2947 return nullptr; 2948 2949 InstPartialSpec->setInstantiatedFromMember(PartialSpec); 2950 InstPartialSpec->setTypeAsWritten(WrittenTy); 2951 2952 // Add this partial specialization to the set of variable template partial 2953 // specializations. The instantiation of the initializer is not necessary. 2954 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr); 2955 2956 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs, 2957 LateAttrs, Owner, StartingScope); 2958 2959 return InstPartialSpec; 2960 } 2961 2962 TypeSourceInfo* 2963 TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D, 2964 SmallVectorImpl<ParmVarDecl *> &Params) { 2965 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo(); 2966 assert(OldTInfo && "substituting function without type source info"); 2967 assert(Params.empty() && "parameter vector is non-empty at start"); 2968 2969 CXXRecordDecl *ThisContext = nullptr; 2970 unsigned ThisTypeQuals = 0; 2971 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 2972 ThisContext = cast<CXXRecordDecl>(Owner); 2973 ThisTypeQuals = Method->getTypeQualifiers(); 2974 } 2975 2976 TypeSourceInfo *NewTInfo 2977 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs, 2978 D->getTypeSpecStartLoc(), 2979 D->getDeclName(), 2980 ThisContext, ThisTypeQuals); 2981 if (!NewTInfo) 2982 return nullptr; 2983 2984 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens(); 2985 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) { 2986 if (NewTInfo != OldTInfo) { 2987 // Get parameters from the new type info. 2988 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens(); 2989 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>(); 2990 unsigned NewIdx = 0; 2991 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams(); 2992 OldIdx != NumOldParams; ++OldIdx) { 2993 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx); 2994 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope; 2995 2996 Optional<unsigned> NumArgumentsInExpansion; 2997 if (OldParam->isParameterPack()) 2998 NumArgumentsInExpansion = 2999 SemaRef.getNumArgumentsInExpansion(OldParam->getType(), 3000 TemplateArgs); 3001 if (!NumArgumentsInExpansion) { 3002 // Simple case: normal parameter, or a parameter pack that's 3003 // instantiated to a (still-dependent) parameter pack. 3004 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++); 3005 Params.push_back(NewParam); 3006 Scope->InstantiatedLocal(OldParam, NewParam); 3007 } else { 3008 // Parameter pack expansion: make the instantiation an argument pack. 3009 Scope->MakeInstantiatedLocalArgPack(OldParam); 3010 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) { 3011 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++); 3012 Params.push_back(NewParam); 3013 Scope->InstantiatedLocalPackArg(OldParam, NewParam); 3014 } 3015 } 3016 } 3017 } else { 3018 // The function type itself was not dependent and therefore no 3019 // substitution occurred. However, we still need to instantiate 3020 // the function parameters themselves. 3021 const FunctionProtoType *OldProto = 3022 cast<FunctionProtoType>(OldProtoLoc.getType()); 3023 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end; 3024 ++i) { 3025 ParmVarDecl *OldParam = OldProtoLoc.getParam(i); 3026 if (!OldParam) { 3027 Params.push_back(SemaRef.BuildParmVarDeclForTypedef( 3028 D, D->getLocation(), OldProto->getParamType(i))); 3029 continue; 3030 } 3031 3032 ParmVarDecl *Parm = 3033 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam)); 3034 if (!Parm) 3035 return nullptr; 3036 Params.push_back(Parm); 3037 } 3038 } 3039 } else { 3040 // If the type of this function, after ignoring parentheses, is not 3041 // *directly* a function type, then we're instantiating a function that 3042 // was declared via a typedef or with attributes, e.g., 3043 // 3044 // typedef int functype(int, int); 3045 // functype func; 3046 // int __cdecl meth(int, int); 3047 // 3048 // In this case, we'll just go instantiate the ParmVarDecls that we 3049 // synthesized in the method declaration. 3050 SmallVector<QualType, 4> ParamTypes; 3051 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(), 3052 D->getNumParams(), TemplateArgs, ParamTypes, 3053 &Params)) 3054 return nullptr; 3055 } 3056 3057 return NewTInfo; 3058 } 3059 3060 /// Introduce the instantiated function parameters into the local 3061 /// instantiation scope, and set the parameter names to those used 3062 /// in the template. 3063 static void addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function, 3064 const FunctionDecl *PatternDecl, 3065 LocalInstantiationScope &Scope, 3066 const MultiLevelTemplateArgumentList &TemplateArgs) { 3067 unsigned FParamIdx = 0; 3068 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) { 3069 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I); 3070 if (!PatternParam->isParameterPack()) { 3071 // Simple case: not a parameter pack. 3072 assert(FParamIdx < Function->getNumParams()); 3073 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx); 3074 // If the parameter's type is not dependent, update it to match the type 3075 // in the pattern. They can differ in top-level cv-qualifiers, and we want 3076 // the pattern's type here. If the type is dependent, they can't differ, 3077 // per core issue 1668. 3078 // FIXME: Updating the type to work around this is at best fragile. 3079 if (!PatternDecl->getType()->isDependentType()) 3080 FunctionParam->setType(PatternParam->getType()); 3081 3082 FunctionParam->setDeclName(PatternParam->getDeclName()); 3083 Scope.InstantiatedLocal(PatternParam, FunctionParam); 3084 ++FParamIdx; 3085 continue; 3086 } 3087 3088 // Expand the parameter pack. 3089 Scope.MakeInstantiatedLocalArgPack(PatternParam); 3090 Optional<unsigned> NumArgumentsInExpansion 3091 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs); 3092 assert(NumArgumentsInExpansion && 3093 "should only be called when all template arguments are known"); 3094 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) { 3095 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx); 3096 if (!PatternDecl->getType()->isDependentType()) 3097 FunctionParam->setType(PatternParam->getType()); 3098 3099 FunctionParam->setDeclName(PatternParam->getDeclName()); 3100 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam); 3101 ++FParamIdx; 3102 } 3103 } 3104 } 3105 3106 static void InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New, 3107 const FunctionProtoType *Proto, 3108 const MultiLevelTemplateArgumentList &TemplateArgs) { 3109 assert(Proto->getExceptionSpecType() != EST_Uninstantiated); 3110 3111 // C++11 [expr.prim.general]p3: 3112 // If a declaration declares a member function or member function 3113 // template of a class X, the expression this is a prvalue of type 3114 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq 3115 // and the end of the function-definition, member-declarator, or 3116 // declarator. 3117 CXXRecordDecl *ThisContext = nullptr; 3118 unsigned ThisTypeQuals = 0; 3119 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) { 3120 ThisContext = Method->getParent(); 3121 ThisTypeQuals = Method->getTypeQualifiers(); 3122 } 3123 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals, 3124 SemaRef.getLangOpts().CPlusPlus11); 3125 3126 // The function has an exception specification or a "noreturn" 3127 // attribute. Substitute into each of the exception types. 3128 SmallVector<QualType, 4> Exceptions; 3129 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) { 3130 // FIXME: Poor location information! 3131 if (const PackExpansionType *PackExpansion 3132 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) { 3133 // We have a pack expansion. Instantiate it. 3134 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 3135 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(), 3136 Unexpanded); 3137 assert(!Unexpanded.empty() && 3138 "Pack expansion without parameter packs?"); 3139 3140 bool Expand = false; 3141 bool RetainExpansion = false; 3142 Optional<unsigned> NumExpansions = PackExpansion->getNumExpansions(); 3143 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(), 3144 SourceRange(), 3145 Unexpanded, 3146 TemplateArgs, 3147 Expand, 3148 RetainExpansion, 3149 NumExpansions)) 3150 break; 3151 3152 if (!Expand) { 3153 // We can't expand this pack expansion into separate arguments yet; 3154 // just substitute into the pattern and create a new pack expansion 3155 // type. 3156 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1); 3157 QualType T = SemaRef.SubstType(PackExpansion->getPattern(), 3158 TemplateArgs, 3159 New->getLocation(), New->getDeclName()); 3160 if (T.isNull()) 3161 break; 3162 3163 T = SemaRef.Context.getPackExpansionType(T, NumExpansions); 3164 Exceptions.push_back(T); 3165 continue; 3166 } 3167 3168 // Substitute into the pack expansion pattern for each template 3169 bool Invalid = false; 3170 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) { 3171 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx); 3172 3173 QualType T = SemaRef.SubstType(PackExpansion->getPattern(), 3174 TemplateArgs, 3175 New->getLocation(), New->getDeclName()); 3176 if (T.isNull()) { 3177 Invalid = true; 3178 break; 3179 } 3180 3181 Exceptions.push_back(T); 3182 } 3183 3184 if (Invalid) 3185 break; 3186 3187 continue; 3188 } 3189 3190 QualType T 3191 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs, 3192 New->getLocation(), New->getDeclName()); 3193 if (T.isNull() || 3194 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation())) 3195 continue; 3196 3197 Exceptions.push_back(T); 3198 } 3199 Expr *NoexceptExpr = nullptr; 3200 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) { 3201 EnterExpressionEvaluationContext Unevaluated(SemaRef, 3202 Sema::ConstantEvaluated); 3203 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs); 3204 if (E.isUsable()) 3205 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart()); 3206 3207 if (E.isUsable()) { 3208 NoexceptExpr = E.get(); 3209 if (!NoexceptExpr->isTypeDependent() && 3210 !NoexceptExpr->isValueDependent()) 3211 NoexceptExpr 3212 = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr, 3213 nullptr, diag::err_noexcept_needs_constant_expression, 3214 /*AllowFold*/ false).get(); 3215 } 3216 } 3217 3218 FunctionProtoType::ExceptionSpecInfo ESI; 3219 ESI.Type = Proto->getExceptionSpecType(); 3220 ESI.Exceptions = Exceptions; 3221 ESI.NoexceptExpr = NoexceptExpr; 3222 3223 SemaRef.UpdateExceptionSpec(New, ESI); 3224 } 3225 3226 void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation, 3227 FunctionDecl *Decl) { 3228 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>(); 3229 if (Proto->getExceptionSpecType() != EST_Uninstantiated) 3230 return; 3231 3232 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl, 3233 InstantiatingTemplate::ExceptionSpecification()); 3234 if (Inst.isInvalid()) { 3235 // We hit the instantiation depth limit. Clear the exception specification 3236 // so that our callers don't have to cope with EST_Uninstantiated. 3237 UpdateExceptionSpec(Decl, EST_None); 3238 return; 3239 } 3240 3241 // Enter the scope of this instantiation. We don't use 3242 // PushDeclContext because we don't have a scope. 3243 Sema::ContextRAII savedContext(*this, Decl); 3244 LocalInstantiationScope Scope(*this); 3245 3246 MultiLevelTemplateArgumentList TemplateArgs = 3247 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true); 3248 3249 FunctionDecl *Template = Proto->getExceptionSpecTemplate(); 3250 addInstantiatedParametersToScope(*this, Decl, Template, Scope, TemplateArgs); 3251 3252 ::InstantiateExceptionSpec(*this, Decl, 3253 Template->getType()->castAs<FunctionProtoType>(), 3254 TemplateArgs); 3255 } 3256 3257 /// \brief Initializes the common fields of an instantiation function 3258 /// declaration (New) from the corresponding fields of its template (Tmpl). 3259 /// 3260 /// \returns true if there was an error 3261 bool 3262 TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New, 3263 FunctionDecl *Tmpl) { 3264 if (Tmpl->isDeleted()) 3265 New->setDeletedAsWritten(); 3266 3267 // Forward the mangling number from the template to the instantiated decl. 3268 SemaRef.Context.setManglingNumber(New, 3269 SemaRef.Context.getManglingNumber(Tmpl)); 3270 3271 // If we are performing substituting explicitly-specified template arguments 3272 // or deduced template arguments into a function template and we reach this 3273 // point, we are now past the point where SFINAE applies and have committed 3274 // to keeping the new function template specialization. We therefore 3275 // convert the active template instantiation for the function template 3276 // into a template instantiation for this specific function template 3277 // specialization, which is not a SFINAE context, so that we diagnose any 3278 // further errors in the declaration itself. 3279 typedef Sema::ActiveTemplateInstantiation ActiveInstType; 3280 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back(); 3281 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution || 3282 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) { 3283 if (FunctionTemplateDecl *FunTmpl 3284 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) { 3285 assert(FunTmpl->getTemplatedDecl() == Tmpl && 3286 "Deduction from the wrong function template?"); 3287 (void) FunTmpl; 3288 ActiveInst.Kind = ActiveInstType::TemplateInstantiation; 3289 ActiveInst.Entity = New; 3290 } 3291 } 3292 3293 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>(); 3294 assert(Proto && "Function template without prototype?"); 3295 3296 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) { 3297 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 3298 3299 // DR1330: In C++11, defer instantiation of a non-trivial 3300 // exception specification. 3301 if (SemaRef.getLangOpts().CPlusPlus11 && 3302 EPI.ExceptionSpec.Type != EST_None && 3303 EPI.ExceptionSpec.Type != EST_DynamicNone && 3304 EPI.ExceptionSpec.Type != EST_BasicNoexcept) { 3305 FunctionDecl *ExceptionSpecTemplate = Tmpl; 3306 if (EPI.ExceptionSpec.Type == EST_Uninstantiated) 3307 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate; 3308 ExceptionSpecificationType NewEST = EST_Uninstantiated; 3309 if (EPI.ExceptionSpec.Type == EST_Unevaluated) 3310 NewEST = EST_Unevaluated; 3311 3312 // Mark the function has having an uninstantiated exception specification. 3313 const FunctionProtoType *NewProto 3314 = New->getType()->getAs<FunctionProtoType>(); 3315 assert(NewProto && "Template instantiation without function prototype?"); 3316 EPI = NewProto->getExtProtoInfo(); 3317 EPI.ExceptionSpec.Type = NewEST; 3318 EPI.ExceptionSpec.SourceDecl = New; 3319 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate; 3320 New->setType(SemaRef.Context.getFunctionType( 3321 NewProto->getReturnType(), NewProto->getParamTypes(), EPI)); 3322 } else { 3323 ::InstantiateExceptionSpec(SemaRef, New, Proto, TemplateArgs); 3324 } 3325 } 3326 3327 // Get the definition. Leaves the variable unchanged if undefined. 3328 const FunctionDecl *Definition = Tmpl; 3329 Tmpl->isDefined(Definition); 3330 3331 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New, 3332 LateAttrs, StartingScope); 3333 3334 return false; 3335 } 3336 3337 /// \brief Initializes common fields of an instantiated method 3338 /// declaration (New) from the corresponding fields of its template 3339 /// (Tmpl). 3340 /// 3341 /// \returns true if there was an error 3342 bool 3343 TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New, 3344 CXXMethodDecl *Tmpl) { 3345 if (InitFunctionInstantiation(New, Tmpl)) 3346 return true; 3347 3348 New->setAccess(Tmpl->getAccess()); 3349 if (Tmpl->isVirtualAsWritten()) 3350 New->setVirtualAsWritten(true); 3351 3352 // FIXME: New needs a pointer to Tmpl 3353 return false; 3354 } 3355 3356 /// \brief Instantiate the definition of the given function from its 3357 /// template. 3358 /// 3359 /// \param PointOfInstantiation the point at which the instantiation was 3360 /// required. Note that this is not precisely a "point of instantiation" 3361 /// for the function, but it's close. 3362 /// 3363 /// \param Function the already-instantiated declaration of a 3364 /// function template specialization or member function of a class template 3365 /// specialization. 3366 /// 3367 /// \param Recursive if true, recursively instantiates any functions that 3368 /// are required by this instantiation. 3369 /// 3370 /// \param DefinitionRequired if true, then we are performing an explicit 3371 /// instantiation where the body of the function is required. Complain if 3372 /// there is no such body. 3373 void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, 3374 FunctionDecl *Function, 3375 bool Recursive, 3376 bool DefinitionRequired) { 3377 if (Function->isInvalidDecl() || Function->isDefined()) 3378 return; 3379 3380 // Never instantiate an explicit specialization except if it is a class scope 3381 // explicit specialization. 3382 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 3383 !Function->getClassScopeSpecializationPattern()) 3384 return; 3385 3386 // Find the function body that we'll be substituting. 3387 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern(); 3388 assert(PatternDecl && "instantiating a non-template"); 3389 3390 Stmt *Pattern = PatternDecl->getBody(PatternDecl); 3391 assert(PatternDecl && "template definition is not a template"); 3392 if (!Pattern) { 3393 // Try to find a defaulted definition 3394 PatternDecl->isDefined(PatternDecl); 3395 } 3396 assert(PatternDecl && "template definition is not a template"); 3397 3398 // Postpone late parsed template instantiations. 3399 if (PatternDecl->isLateTemplateParsed() && 3400 !LateTemplateParser) { 3401 PendingInstantiations.push_back( 3402 std::make_pair(Function, PointOfInstantiation)); 3403 return; 3404 } 3405 3406 // If we're performing recursive template instantiation, create our own 3407 // queue of pending implicit instantiations that we will instantiate later, 3408 // while we're still within our own instantiation context. 3409 // This has to happen before LateTemplateParser below is called, so that 3410 // it marks vtables used in late parsed templates as used. 3411 SavePendingLocalImplicitInstantiationsRAII 3412 SavedPendingLocalImplicitInstantiations(*this); 3413 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII> 3414 SavePendingInstantiationsAndVTableUses; 3415 if (Recursive) { 3416 SavePendingInstantiationsAndVTableUses.reset( 3417 new SavePendingInstantiationsAndVTableUsesRAII(*this)); 3418 } 3419 3420 // Call the LateTemplateParser callback if there is a need to late parse 3421 // a templated function definition. 3422 if (!Pattern && PatternDecl->isLateTemplateParsed() && 3423 LateTemplateParser) { 3424 // FIXME: Optimize to allow individual templates to be deserialized. 3425 if (PatternDecl->isFromASTFile()) 3426 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap); 3427 3428 LateParsedTemplate *LPT = LateParsedTemplateMap.lookup(PatternDecl); 3429 assert(LPT && "missing LateParsedTemplate"); 3430 LateTemplateParser(OpaqueParser, *LPT); 3431 Pattern = PatternDecl->getBody(PatternDecl); 3432 } 3433 3434 if (!Pattern && !PatternDecl->isDefaulted()) { 3435 if (DefinitionRequired) { 3436 if (Function->getPrimaryTemplate()) 3437 Diag(PointOfInstantiation, 3438 diag::err_explicit_instantiation_undefined_func_template) 3439 << Function->getPrimaryTemplate(); 3440 else 3441 Diag(PointOfInstantiation, 3442 diag::err_explicit_instantiation_undefined_member) 3443 << 1 << Function->getDeclName() << Function->getDeclContext(); 3444 3445 if (PatternDecl) 3446 Diag(PatternDecl->getLocation(), 3447 diag::note_explicit_instantiation_here); 3448 Function->setInvalidDecl(); 3449 } else if (Function->getTemplateSpecializationKind() 3450 == TSK_ExplicitInstantiationDefinition) { 3451 assert(!Recursive); 3452 PendingInstantiations.push_back( 3453 std::make_pair(Function, PointOfInstantiation)); 3454 } 3455 3456 return; 3457 } 3458 3459 // C++1y [temp.explicit]p10: 3460 // Except for inline functions, declarations with types deduced from their 3461 // initializer or return value, and class template specializations, other 3462 // explicit instantiation declarations have the effect of suppressing the 3463 // implicit instantiation of the entity to which they refer. 3464 if (Function->getTemplateSpecializationKind() == 3465 TSK_ExplicitInstantiationDeclaration && 3466 !PatternDecl->isInlined() && 3467 !PatternDecl->getReturnType()->getContainedAutoType()) 3468 return; 3469 3470 if (PatternDecl->isInlined()) { 3471 // Function, and all later redeclarations of it (from imported modules, 3472 // for instance), are now implicitly inline. 3473 for (auto *D = Function->getMostRecentDecl(); /**/; 3474 D = D->getPreviousDecl()) { 3475 D->setImplicitlyInline(); 3476 if (D == Function) 3477 break; 3478 } 3479 } 3480 3481 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function); 3482 if (Inst.isInvalid()) 3483 return; 3484 3485 // Copy the inner loc start from the pattern. 3486 Function->setInnerLocStart(PatternDecl->getInnerLocStart()); 3487 3488 EnterExpressionEvaluationContext EvalContext(*this, 3489 Sema::PotentiallyEvaluated); 3490 3491 // Introduce a new scope where local variable instantiations will be 3492 // recorded, unless we're actually a member function within a local 3493 // class, in which case we need to merge our results with the parent 3494 // scope (of the enclosing function). 3495 bool MergeWithParentScope = false; 3496 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext())) 3497 MergeWithParentScope = Rec->isLocalClass(); 3498 3499 LocalInstantiationScope Scope(*this, MergeWithParentScope); 3500 3501 if (PatternDecl->isDefaulted()) 3502 SetDeclDefaulted(Function, PatternDecl->getLocation()); 3503 else { 3504 MultiLevelTemplateArgumentList TemplateArgs = 3505 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl); 3506 3507 // Substitute into the qualifier; we can get a substitution failure here 3508 // through evil use of alias templates. 3509 // FIXME: Is CurContext correct for this? Should we go to the (instantiation 3510 // of the) lexical context of the pattern? 3511 SubstQualifier(*this, PatternDecl, Function, TemplateArgs); 3512 3513 ActOnStartOfFunctionDef(nullptr, Function); 3514 3515 // Enter the scope of this instantiation. We don't use 3516 // PushDeclContext because we don't have a scope. 3517 Sema::ContextRAII savedContext(*this, Function); 3518 3519 addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope, 3520 TemplateArgs); 3521 3522 // If this is a constructor, instantiate the member initializers. 3523 if (const CXXConstructorDecl *Ctor = 3524 dyn_cast<CXXConstructorDecl>(PatternDecl)) { 3525 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor, 3526 TemplateArgs); 3527 } 3528 3529 // Instantiate the function body. 3530 StmtResult Body = SubstStmt(Pattern, TemplateArgs); 3531 3532 if (Body.isInvalid()) 3533 Function->setInvalidDecl(); 3534 3535 ActOnFinishFunctionBody(Function, Body.get(), 3536 /*IsInstantiation=*/true); 3537 3538 PerformDependentDiagnostics(PatternDecl, TemplateArgs); 3539 3540 if (auto *Listener = getASTMutationListener()) 3541 Listener->FunctionDefinitionInstantiated(Function); 3542 3543 savedContext.pop(); 3544 } 3545 3546 DeclGroupRef DG(Function); 3547 Consumer.HandleTopLevelDecl(DG); 3548 3549 // This class may have local implicit instantiations that need to be 3550 // instantiation within this scope. 3551 PerformPendingInstantiations(/*LocalOnly=*/true); 3552 Scope.Exit(); 3553 3554 if (Recursive) { 3555 // Define any pending vtables. 3556 DefineUsedVTables(); 3557 3558 // Instantiate any pending implicit instantiations found during the 3559 // instantiation of this template. 3560 PerformPendingInstantiations(); 3561 3562 // Restore PendingInstantiations and VTableUses. 3563 SavePendingInstantiationsAndVTableUses.reset(); 3564 } 3565 } 3566 3567 VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation( 3568 VarTemplateDecl *VarTemplate, VarDecl *FromVar, 3569 const TemplateArgumentList &TemplateArgList, 3570 const TemplateArgumentListInfo &TemplateArgsInfo, 3571 SmallVectorImpl<TemplateArgument> &Converted, 3572 SourceLocation PointOfInstantiation, void *InsertPos, 3573 LateInstantiatedAttrVec *LateAttrs, 3574 LocalInstantiationScope *StartingScope) { 3575 if (FromVar->isInvalidDecl()) 3576 return nullptr; 3577 3578 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar); 3579 if (Inst.isInvalid()) 3580 return nullptr; 3581 3582 MultiLevelTemplateArgumentList TemplateArgLists; 3583 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList); 3584 3585 // Instantiate the first declaration of the variable template: for a partial 3586 // specialization of a static data member template, the first declaration may 3587 // or may not be the declaration in the class; if it's in the class, we want 3588 // to instantiate a member in the class (a declaration), and if it's outside, 3589 // we want to instantiate a definition. 3590 // 3591 // If we're instantiating an explicitly-specialized member template or member 3592 // partial specialization, don't do this. The member specialization completely 3593 // replaces the original declaration in this case. 3594 bool IsMemberSpec = false; 3595 if (VarTemplatePartialSpecializationDecl *PartialSpec = 3596 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar)) 3597 IsMemberSpec = PartialSpec->isMemberSpecialization(); 3598 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate()) 3599 IsMemberSpec = FromTemplate->isMemberSpecialization(); 3600 if (!IsMemberSpec) 3601 FromVar = FromVar->getFirstDecl(); 3602 3603 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList); 3604 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(), 3605 MultiLevelList); 3606 3607 // TODO: Set LateAttrs and StartingScope ... 3608 3609 return cast_or_null<VarTemplateSpecializationDecl>( 3610 Instantiator.VisitVarTemplateSpecializationDecl( 3611 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted)); 3612 } 3613 3614 /// \brief Instantiates a variable template specialization by completing it 3615 /// with appropriate type information and initializer. 3616 VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl( 3617 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl, 3618 const MultiLevelTemplateArgumentList &TemplateArgs) { 3619 3620 // Do substitution on the type of the declaration 3621 TypeSourceInfo *DI = 3622 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs, 3623 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName()); 3624 if (!DI) 3625 return nullptr; 3626 3627 // Update the type of this variable template specialization. 3628 VarSpec->setType(DI->getType()); 3629 3630 // Instantiate the initializer. 3631 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs); 3632 3633 return VarSpec; 3634 } 3635 3636 /// BuildVariableInstantiation - Used after a new variable has been created. 3637 /// Sets basic variable data and decides whether to postpone the 3638 /// variable instantiation. 3639 void Sema::BuildVariableInstantiation( 3640 VarDecl *NewVar, VarDecl *OldVar, 3641 const MultiLevelTemplateArgumentList &TemplateArgs, 3642 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner, 3643 LocalInstantiationScope *StartingScope, 3644 bool InstantiatingVarTemplate) { 3645 3646 // If we are instantiating a local extern declaration, the 3647 // instantiation belongs lexically to the containing function. 3648 // If we are instantiating a static data member defined 3649 // out-of-line, the instantiation will have the same lexical 3650 // context (which will be a namespace scope) as the template. 3651 if (OldVar->isLocalExternDecl()) { 3652 NewVar->setLocalExternDecl(); 3653 NewVar->setLexicalDeclContext(Owner); 3654 } else if (OldVar->isOutOfLine()) 3655 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext()); 3656 NewVar->setTSCSpec(OldVar->getTSCSpec()); 3657 NewVar->setInitStyle(OldVar->getInitStyle()); 3658 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl()); 3659 NewVar->setConstexpr(OldVar->isConstexpr()); 3660 NewVar->setInitCapture(OldVar->isInitCapture()); 3661 NewVar->setPreviousDeclInSameBlockScope( 3662 OldVar->isPreviousDeclInSameBlockScope()); 3663 NewVar->setAccess(OldVar->getAccess()); 3664 3665 if (!OldVar->isStaticDataMember()) { 3666 if (OldVar->isUsed(false)) 3667 NewVar->setIsUsed(); 3668 NewVar->setReferenced(OldVar->isReferenced()); 3669 } 3670 3671 // See if the old variable had a type-specifier that defined an anonymous tag. 3672 // If it did, mark the new variable as being the declarator for the new 3673 // anonymous tag. 3674 if (const TagType *OldTagType = OldVar->getType()->getAs<TagType>()) { 3675 TagDecl *OldTag = OldTagType->getDecl(); 3676 if (OldTag->getDeclaratorForAnonDecl() == OldVar) { 3677 TagDecl *NewTag = NewVar->getType()->castAs<TagType>()->getDecl(); 3678 assert(!NewTag->hasNameForLinkage() && 3679 !NewTag->hasDeclaratorForAnonDecl()); 3680 NewTag->setDeclaratorForAnonDecl(NewVar); 3681 } 3682 } 3683 3684 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope); 3685 3686 LookupResult Previous( 3687 *this, NewVar->getDeclName(), NewVar->getLocation(), 3688 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage 3689 : Sema::LookupOrdinaryName, 3690 Sema::ForRedeclaration); 3691 3692 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() && 3693 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() || 3694 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) { 3695 // We have a previous declaration. Use that one, so we merge with the 3696 // right type. 3697 if (NamedDecl *NewPrev = FindInstantiatedDecl( 3698 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs)) 3699 Previous.addDecl(NewPrev); 3700 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) && 3701 OldVar->hasLinkage()) 3702 LookupQualifiedName(Previous, NewVar->getDeclContext(), false); 3703 CheckVariableDeclaration(NewVar, Previous); 3704 3705 if (!InstantiatingVarTemplate) { 3706 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar); 3707 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl()) 3708 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar); 3709 } 3710 3711 if (!OldVar->isOutOfLine()) { 3712 if (NewVar->getDeclContext()->isFunctionOrMethod()) 3713 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar); 3714 } 3715 3716 // Link instantiations of static data members back to the template from 3717 // which they were instantiated. 3718 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate) 3719 NewVar->setInstantiationOfStaticDataMember(OldVar, 3720 TSK_ImplicitInstantiation); 3721 3722 // Forward the mangling number from the template to the instantiated decl. 3723 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar)); 3724 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar)); 3725 3726 // Delay instantiation of the initializer for variable templates until a 3727 // definition of the variable is needed. We need it right away if the type 3728 // contains 'auto'. 3729 if ((!isa<VarTemplateSpecializationDecl>(NewVar) && 3730 !InstantiatingVarTemplate) || 3731 NewVar->getType()->isUndeducedType()) 3732 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs); 3733 3734 // Diagnose unused local variables with dependent types, where the diagnostic 3735 // will have been deferred. 3736 if (!NewVar->isInvalidDecl() && 3737 NewVar->getDeclContext()->isFunctionOrMethod() && 3738 OldVar->getType()->isDependentType()) 3739 DiagnoseUnusedDecl(NewVar); 3740 } 3741 3742 /// \brief Instantiate the initializer of a variable. 3743 void Sema::InstantiateVariableInitializer( 3744 VarDecl *Var, VarDecl *OldVar, 3745 const MultiLevelTemplateArgumentList &TemplateArgs) { 3746 3747 if (Var->getAnyInitializer()) 3748 // We already have an initializer in the class. 3749 return; 3750 3751 if (OldVar->getInit()) { 3752 if (Var->isStaticDataMember() && !OldVar->isOutOfLine()) 3753 PushExpressionEvaluationContext(Sema::ConstantEvaluated, OldVar); 3754 else 3755 PushExpressionEvaluationContext(Sema::PotentiallyEvaluated, OldVar); 3756 3757 // Instantiate the initializer. 3758 ExprResult Init = 3759 SubstInitializer(OldVar->getInit(), TemplateArgs, 3760 OldVar->getInitStyle() == VarDecl::CallInit); 3761 if (!Init.isInvalid()) { 3762 bool TypeMayContainAuto = true; 3763 Expr *InitExpr = Init.get(); 3764 3765 if (Var->hasAttr<DLLImportAttr>() && 3766 (!InitExpr || 3767 !InitExpr->isConstantInitializer(getASTContext(), false))) { 3768 // Do not dynamically initialize dllimport variables. 3769 } else if (InitExpr) { 3770 bool DirectInit = OldVar->isDirectInit(); 3771 AddInitializerToDecl(Var, InitExpr, DirectInit, TypeMayContainAuto); 3772 } else 3773 ActOnUninitializedDecl(Var, TypeMayContainAuto); 3774 } else { 3775 // FIXME: Not too happy about invalidating the declaration 3776 // because of a bogus initializer. 3777 Var->setInvalidDecl(); 3778 } 3779 3780 PopExpressionEvaluationContext(); 3781 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) && 3782 !Var->isCXXForRangeDecl()) 3783 ActOnUninitializedDecl(Var, false); 3784 } 3785 3786 /// \brief Instantiate the definition of the given variable from its 3787 /// template. 3788 /// 3789 /// \param PointOfInstantiation the point at which the instantiation was 3790 /// required. Note that this is not precisely a "point of instantiation" 3791 /// for the function, but it's close. 3792 /// 3793 /// \param Var the already-instantiated declaration of a static member 3794 /// variable of a class template specialization. 3795 /// 3796 /// \param Recursive if true, recursively instantiates any functions that 3797 /// are required by this instantiation. 3798 /// 3799 /// \param DefinitionRequired if true, then we are performing an explicit 3800 /// instantiation where an out-of-line definition of the member variable 3801 /// is required. Complain if there is no such definition. 3802 void Sema::InstantiateStaticDataMemberDefinition( 3803 SourceLocation PointOfInstantiation, 3804 VarDecl *Var, 3805 bool Recursive, 3806 bool DefinitionRequired) { 3807 InstantiateVariableDefinition(PointOfInstantiation, Var, Recursive, 3808 DefinitionRequired); 3809 } 3810 3811 void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation, 3812 VarDecl *Var, bool Recursive, 3813 bool DefinitionRequired) { 3814 if (Var->isInvalidDecl()) 3815 return; 3816 3817 VarTemplateSpecializationDecl *VarSpec = 3818 dyn_cast<VarTemplateSpecializationDecl>(Var); 3819 VarDecl *PatternDecl = nullptr, *Def = nullptr; 3820 MultiLevelTemplateArgumentList TemplateArgs = 3821 getTemplateInstantiationArgs(Var); 3822 3823 if (VarSpec) { 3824 // If this is a variable template specialization, make sure that it is 3825 // non-dependent, then find its instantiation pattern. 3826 bool InstantiationDependent = false; 3827 assert(!TemplateSpecializationType::anyDependentTemplateArguments( 3828 VarSpec->getTemplateArgsInfo(), InstantiationDependent) && 3829 "Only instantiate variable template specializations that are " 3830 "not type-dependent"); 3831 (void)InstantiationDependent; 3832 3833 // Find the variable initialization that we'll be substituting. If the 3834 // pattern was instantiated from a member template, look back further to 3835 // find the real pattern. 3836 assert(VarSpec->getSpecializedTemplate() && 3837 "Specialization without specialized template?"); 3838 llvm::PointerUnion<VarTemplateDecl *, 3839 VarTemplatePartialSpecializationDecl *> PatternPtr = 3840 VarSpec->getSpecializedTemplateOrPartial(); 3841 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) { 3842 VarTemplatePartialSpecializationDecl *Tmpl = 3843 PatternPtr.get<VarTemplatePartialSpecializationDecl *>(); 3844 while (VarTemplatePartialSpecializationDecl *From = 3845 Tmpl->getInstantiatedFromMember()) { 3846 if (Tmpl->isMemberSpecialization()) 3847 break; 3848 3849 Tmpl = From; 3850 } 3851 PatternDecl = Tmpl; 3852 } else { 3853 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>(); 3854 while (VarTemplateDecl *From = 3855 Tmpl->getInstantiatedFromMemberTemplate()) { 3856 if (Tmpl->isMemberSpecialization()) 3857 break; 3858 3859 Tmpl = From; 3860 } 3861 PatternDecl = Tmpl->getTemplatedDecl(); 3862 } 3863 3864 // If this is a static data member template, there might be an 3865 // uninstantiated initializer on the declaration. If so, instantiate 3866 // it now. 3867 if (PatternDecl->isStaticDataMember() && 3868 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() && 3869 !Var->hasInit()) { 3870 // FIXME: Factor out the duplicated instantiation context setup/tear down 3871 // code here. 3872 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var); 3873 if (Inst.isInvalid()) 3874 return; 3875 3876 // If we're performing recursive template instantiation, create our own 3877 // queue of pending implicit instantiations that we will instantiate 3878 // later, while we're still within our own instantiation context. 3879 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII> 3880 SavePendingInstantiationsAndVTableUses; 3881 if (Recursive) { 3882 SavePendingInstantiationsAndVTableUses.reset( 3883 new SavePendingInstantiationsAndVTableUsesRAII(*this)); 3884 } 3885 3886 LocalInstantiationScope Local(*this); 3887 3888 // Enter the scope of this instantiation. We don't use 3889 // PushDeclContext because we don't have a scope. 3890 ContextRAII PreviousContext(*this, Var->getDeclContext()); 3891 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs); 3892 PreviousContext.pop(); 3893 3894 // FIXME: Need to inform the ASTConsumer that we instantiated the 3895 // initializer? 3896 3897 // This variable may have local implicit instantiations that need to be 3898 // instantiated within this scope. 3899 PerformPendingInstantiations(/*LocalOnly=*/true); 3900 3901 Local.Exit(); 3902 3903 if (Recursive) { 3904 // Define any newly required vtables. 3905 DefineUsedVTables(); 3906 3907 // Instantiate any pending implicit instantiations found during the 3908 // instantiation of this template. 3909 PerformPendingInstantiations(); 3910 3911 // Restore PendingInstantiations and VTableUses. 3912 SavePendingInstantiationsAndVTableUses.reset(); 3913 } 3914 } 3915 3916 // Find actual definition 3917 Def = PatternDecl->getDefinition(getASTContext()); 3918 } else { 3919 // If this is a static data member, find its out-of-line definition. 3920 assert(Var->isStaticDataMember() && "not a static data member?"); 3921 PatternDecl = Var->getInstantiatedFromStaticDataMember(); 3922 3923 assert(PatternDecl && "data member was not instantiated from a template?"); 3924 assert(PatternDecl->isStaticDataMember() && "not a static data member?"); 3925 Def = PatternDecl->getOutOfLineDefinition(); 3926 } 3927 3928 // If we don't have a definition of the variable template, we won't perform 3929 // any instantiation. Rather, we rely on the user to instantiate this 3930 // definition (or provide a specialization for it) in another translation 3931 // unit. 3932 if (!Def) { 3933 if (DefinitionRequired) { 3934 if (VarSpec) 3935 Diag(PointOfInstantiation, 3936 diag::err_explicit_instantiation_undefined_var_template) << Var; 3937 else 3938 Diag(PointOfInstantiation, 3939 diag::err_explicit_instantiation_undefined_member) 3940 << 2 << Var->getDeclName() << Var->getDeclContext(); 3941 Diag(PatternDecl->getLocation(), 3942 diag::note_explicit_instantiation_here); 3943 if (VarSpec) 3944 Var->setInvalidDecl(); 3945 } else if (Var->getTemplateSpecializationKind() 3946 == TSK_ExplicitInstantiationDefinition) { 3947 PendingInstantiations.push_back( 3948 std::make_pair(Var, PointOfInstantiation)); 3949 } 3950 3951 return; 3952 } 3953 3954 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind(); 3955 3956 // Never instantiate an explicit specialization. 3957 if (TSK == TSK_ExplicitSpecialization) 3958 return; 3959 3960 // C++11 [temp.explicit]p10: 3961 // Except for inline functions, [...] explicit instantiation declarations 3962 // have the effect of suppressing the implicit instantiation of the entity 3963 // to which they refer. 3964 if (TSK == TSK_ExplicitInstantiationDeclaration) 3965 return; 3966 3967 // Make sure to pass the instantiated variable to the consumer at the end. 3968 struct PassToConsumerRAII { 3969 ASTConsumer &Consumer; 3970 VarDecl *Var; 3971 3972 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var) 3973 : Consumer(Consumer), Var(Var) { } 3974 3975 ~PassToConsumerRAII() { 3976 Consumer.HandleCXXStaticMemberVarInstantiation(Var); 3977 } 3978 } PassToConsumerRAII(Consumer, Var); 3979 3980 // If we already have a definition, we're done. 3981 if (VarDecl *Def = Var->getDefinition()) { 3982 // We may be explicitly instantiating something we've already implicitly 3983 // instantiated. 3984 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(), 3985 PointOfInstantiation); 3986 return; 3987 } 3988 3989 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var); 3990 if (Inst.isInvalid()) 3991 return; 3992 3993 // If we're performing recursive template instantiation, create our own 3994 // queue of pending implicit instantiations that we will instantiate later, 3995 // while we're still within our own instantiation context. 3996 SavePendingLocalImplicitInstantiationsRAII 3997 SavedPendingLocalImplicitInstantiations(*this); 3998 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII> 3999 SavePendingInstantiationsAndVTableUses; 4000 if (Recursive) { 4001 SavePendingInstantiationsAndVTableUses.reset( 4002 new SavePendingInstantiationsAndVTableUsesRAII(*this)); 4003 } 4004 4005 // Enter the scope of this instantiation. We don't use 4006 // PushDeclContext because we don't have a scope. 4007 ContextRAII PreviousContext(*this, Var->getDeclContext()); 4008 LocalInstantiationScope Local(*this); 4009 4010 VarDecl *OldVar = Var; 4011 if (!VarSpec) 4012 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(), 4013 TemplateArgs)); 4014 else if (Var->isStaticDataMember() && 4015 Var->getLexicalDeclContext()->isRecord()) { 4016 // We need to instantiate the definition of a static data member template, 4017 // and all we have is the in-class declaration of it. Instantiate a separate 4018 // declaration of the definition. 4019 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(), 4020 TemplateArgs); 4021 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl( 4022 VarSpec->getSpecializedTemplate(), Def, nullptr, 4023 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray())); 4024 if (Var) { 4025 llvm::PointerUnion<VarTemplateDecl *, 4026 VarTemplatePartialSpecializationDecl *> PatternPtr = 4027 VarSpec->getSpecializedTemplateOrPartial(); 4028 if (VarTemplatePartialSpecializationDecl *Partial = 4029 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>()) 4030 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf( 4031 Partial, &VarSpec->getTemplateInstantiationArgs()); 4032 4033 // Merge the definition with the declaration. 4034 LookupResult R(*this, Var->getDeclName(), Var->getLocation(), 4035 LookupOrdinaryName, ForRedeclaration); 4036 R.addDecl(OldVar); 4037 MergeVarDecl(Var, R); 4038 4039 // Attach the initializer. 4040 InstantiateVariableInitializer(Var, Def, TemplateArgs); 4041 } 4042 } else 4043 // Complete the existing variable's definition with an appropriately 4044 // substituted type and initializer. 4045 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs); 4046 4047 PreviousContext.pop(); 4048 4049 if (Var) { 4050 PassToConsumerRAII.Var = Var; 4051 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(), 4052 OldVar->getPointOfInstantiation()); 4053 } 4054 4055 // This variable may have local implicit instantiations that need to be 4056 // instantiated within this scope. 4057 PerformPendingInstantiations(/*LocalOnly=*/true); 4058 4059 Local.Exit(); 4060 4061 if (Recursive) { 4062 // Define any newly required vtables. 4063 DefineUsedVTables(); 4064 4065 // Instantiate any pending implicit instantiations found during the 4066 // instantiation of this template. 4067 PerformPendingInstantiations(); 4068 4069 // Restore PendingInstantiations and VTableUses. 4070 SavePendingInstantiationsAndVTableUses.reset(); 4071 } 4072 } 4073 4074 void 4075 Sema::InstantiateMemInitializers(CXXConstructorDecl *New, 4076 const CXXConstructorDecl *Tmpl, 4077 const MultiLevelTemplateArgumentList &TemplateArgs) { 4078 4079 SmallVector<CXXCtorInitializer*, 4> NewInits; 4080 bool AnyErrors = Tmpl->isInvalidDecl(); 4081 4082 // Instantiate all the initializers. 4083 for (const auto *Init : Tmpl->inits()) { 4084 // Only instantiate written initializers, let Sema re-construct implicit 4085 // ones. 4086 if (!Init->isWritten()) 4087 continue; 4088 4089 SourceLocation EllipsisLoc; 4090 4091 if (Init->isPackExpansion()) { 4092 // This is a pack expansion. We should expand it now. 4093 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc(); 4094 SmallVector<UnexpandedParameterPack, 4> Unexpanded; 4095 collectUnexpandedParameterPacks(BaseTL, Unexpanded); 4096 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded); 4097 bool ShouldExpand = false; 4098 bool RetainExpansion = false; 4099 Optional<unsigned> NumExpansions; 4100 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(), 4101 BaseTL.getSourceRange(), 4102 Unexpanded, 4103 TemplateArgs, ShouldExpand, 4104 RetainExpansion, 4105 NumExpansions)) { 4106 AnyErrors = true; 4107 New->setInvalidDecl(); 4108 continue; 4109 } 4110 assert(ShouldExpand && "Partial instantiation of base initializer?"); 4111 4112 // Loop over all of the arguments in the argument pack(s), 4113 for (unsigned I = 0; I != *NumExpansions; ++I) { 4114 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I); 4115 4116 // Instantiate the initializer. 4117 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs, 4118 /*CXXDirectInit=*/true); 4119 if (TempInit.isInvalid()) { 4120 AnyErrors = true; 4121 break; 4122 } 4123 4124 // Instantiate the base type. 4125 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(), 4126 TemplateArgs, 4127 Init->getSourceLocation(), 4128 New->getDeclName()); 4129 if (!BaseTInfo) { 4130 AnyErrors = true; 4131 break; 4132 } 4133 4134 // Build the initializer. 4135 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(), 4136 BaseTInfo, TempInit.get(), 4137 New->getParent(), 4138 SourceLocation()); 4139 if (NewInit.isInvalid()) { 4140 AnyErrors = true; 4141 break; 4142 } 4143 4144 NewInits.push_back(NewInit.get()); 4145 } 4146 4147 continue; 4148 } 4149 4150 // Instantiate the initializer. 4151 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs, 4152 /*CXXDirectInit=*/true); 4153 if (TempInit.isInvalid()) { 4154 AnyErrors = true; 4155 continue; 4156 } 4157 4158 MemInitResult NewInit; 4159 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) { 4160 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(), 4161 TemplateArgs, 4162 Init->getSourceLocation(), 4163 New->getDeclName()); 4164 if (!TInfo) { 4165 AnyErrors = true; 4166 New->setInvalidDecl(); 4167 continue; 4168 } 4169 4170 if (Init->isBaseInitializer()) 4171 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(), 4172 New->getParent(), EllipsisLoc); 4173 else 4174 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(), 4175 cast<CXXRecordDecl>(CurContext->getParent())); 4176 } else if (Init->isMemberInitializer()) { 4177 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl( 4178 Init->getMemberLocation(), 4179 Init->getMember(), 4180 TemplateArgs)); 4181 if (!Member) { 4182 AnyErrors = true; 4183 New->setInvalidDecl(); 4184 continue; 4185 } 4186 4187 NewInit = BuildMemberInitializer(Member, TempInit.get(), 4188 Init->getSourceLocation()); 4189 } else if (Init->isIndirectMemberInitializer()) { 4190 IndirectFieldDecl *IndirectMember = 4191 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl( 4192 Init->getMemberLocation(), 4193 Init->getIndirectMember(), TemplateArgs)); 4194 4195 if (!IndirectMember) { 4196 AnyErrors = true; 4197 New->setInvalidDecl(); 4198 continue; 4199 } 4200 4201 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(), 4202 Init->getSourceLocation()); 4203 } 4204 4205 if (NewInit.isInvalid()) { 4206 AnyErrors = true; 4207 New->setInvalidDecl(); 4208 } else { 4209 NewInits.push_back(NewInit.get()); 4210 } 4211 } 4212 4213 // Assign all the initializers to the new constructor. 4214 ActOnMemInitializers(New, 4215 /*FIXME: ColonLoc */ 4216 SourceLocation(), 4217 NewInits, 4218 AnyErrors); 4219 } 4220 4221 // TODO: this could be templated if the various decl types used the 4222 // same method name. 4223 static bool isInstantiationOf(ClassTemplateDecl *Pattern, 4224 ClassTemplateDecl *Instance) { 4225 Pattern = Pattern->getCanonicalDecl(); 4226 4227 do { 4228 Instance = Instance->getCanonicalDecl(); 4229 if (Pattern == Instance) return true; 4230 Instance = Instance->getInstantiatedFromMemberTemplate(); 4231 } while (Instance); 4232 4233 return false; 4234 } 4235 4236 static bool isInstantiationOf(FunctionTemplateDecl *Pattern, 4237 FunctionTemplateDecl *Instance) { 4238 Pattern = Pattern->getCanonicalDecl(); 4239 4240 do { 4241 Instance = Instance->getCanonicalDecl(); 4242 if (Pattern == Instance) return true; 4243 Instance = Instance->getInstantiatedFromMemberTemplate(); 4244 } while (Instance); 4245 4246 return false; 4247 } 4248 4249 static bool 4250 isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern, 4251 ClassTemplatePartialSpecializationDecl *Instance) { 4252 Pattern 4253 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl()); 4254 do { 4255 Instance = cast<ClassTemplatePartialSpecializationDecl>( 4256 Instance->getCanonicalDecl()); 4257 if (Pattern == Instance) 4258 return true; 4259 Instance = Instance->getInstantiatedFromMember(); 4260 } while (Instance); 4261 4262 return false; 4263 } 4264 4265 static bool isInstantiationOf(CXXRecordDecl *Pattern, 4266 CXXRecordDecl *Instance) { 4267 Pattern = Pattern->getCanonicalDecl(); 4268 4269 do { 4270 Instance = Instance->getCanonicalDecl(); 4271 if (Pattern == Instance) return true; 4272 Instance = Instance->getInstantiatedFromMemberClass(); 4273 } while (Instance); 4274 4275 return false; 4276 } 4277 4278 static bool isInstantiationOf(FunctionDecl *Pattern, 4279 FunctionDecl *Instance) { 4280 Pattern = Pattern->getCanonicalDecl(); 4281 4282 do { 4283 Instance = Instance->getCanonicalDecl(); 4284 if (Pattern == Instance) return true; 4285 Instance = Instance->getInstantiatedFromMemberFunction(); 4286 } while (Instance); 4287 4288 return false; 4289 } 4290 4291 static bool isInstantiationOf(EnumDecl *Pattern, 4292 EnumDecl *Instance) { 4293 Pattern = Pattern->getCanonicalDecl(); 4294 4295 do { 4296 Instance = Instance->getCanonicalDecl(); 4297 if (Pattern == Instance) return true; 4298 Instance = Instance->getInstantiatedFromMemberEnum(); 4299 } while (Instance); 4300 4301 return false; 4302 } 4303 4304 static bool isInstantiationOf(UsingShadowDecl *Pattern, 4305 UsingShadowDecl *Instance, 4306 ASTContext &C) { 4307 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance), 4308 Pattern); 4309 } 4310 4311 static bool isInstantiationOf(UsingDecl *Pattern, 4312 UsingDecl *Instance, 4313 ASTContext &C) { 4314 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4315 } 4316 4317 static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern, 4318 UsingDecl *Instance, 4319 ASTContext &C) { 4320 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4321 } 4322 4323 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, 4324 UsingDecl *Instance, 4325 ASTContext &C) { 4326 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4327 } 4328 4329 static bool isInstantiationOfStaticDataMember(VarDecl *Pattern, 4330 VarDecl *Instance) { 4331 assert(Instance->isStaticDataMember()); 4332 4333 Pattern = Pattern->getCanonicalDecl(); 4334 4335 do { 4336 Instance = Instance->getCanonicalDecl(); 4337 if (Pattern == Instance) return true; 4338 Instance = Instance->getInstantiatedFromStaticDataMember(); 4339 } while (Instance); 4340 4341 return false; 4342 } 4343 4344 // Other is the prospective instantiation 4345 // D is the prospective pattern 4346 static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) { 4347 if (D->getKind() != Other->getKind()) { 4348 if (UnresolvedUsingTypenameDecl *UUD 4349 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 4350 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { 4351 return isInstantiationOf(UUD, UD, Ctx); 4352 } 4353 } 4354 4355 if (UnresolvedUsingValueDecl *UUD 4356 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 4357 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { 4358 return isInstantiationOf(UUD, UD, Ctx); 4359 } 4360 } 4361 4362 return false; 4363 } 4364 4365 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other)) 4366 return isInstantiationOf(cast<CXXRecordDecl>(D), Record); 4367 4368 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other)) 4369 return isInstantiationOf(cast<FunctionDecl>(D), Function); 4370 4371 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other)) 4372 return isInstantiationOf(cast<EnumDecl>(D), Enum); 4373 4374 if (VarDecl *Var = dyn_cast<VarDecl>(Other)) 4375 if (Var->isStaticDataMember()) 4376 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var); 4377 4378 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other)) 4379 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp); 4380 4381 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other)) 4382 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp); 4383 4384 if (ClassTemplatePartialSpecializationDecl *PartialSpec 4385 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other)) 4386 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D), 4387 PartialSpec); 4388 4389 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) { 4390 if (!Field->getDeclName()) { 4391 // This is an unnamed field. 4392 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field), 4393 cast<FieldDecl>(D)); 4394 } 4395 } 4396 4397 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other)) 4398 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx); 4399 4400 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other)) 4401 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx); 4402 4403 return D->getDeclName() && isa<NamedDecl>(Other) && 4404 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName(); 4405 } 4406 4407 template<typename ForwardIterator> 4408 static NamedDecl *findInstantiationOf(ASTContext &Ctx, 4409 NamedDecl *D, 4410 ForwardIterator first, 4411 ForwardIterator last) { 4412 for (; first != last; ++first) 4413 if (isInstantiationOf(Ctx, D, *first)) 4414 return cast<NamedDecl>(*first); 4415 4416 return nullptr; 4417 } 4418 4419 /// \brief Finds the instantiation of the given declaration context 4420 /// within the current instantiation. 4421 /// 4422 /// \returns NULL if there was an error 4423 DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC, 4424 const MultiLevelTemplateArgumentList &TemplateArgs) { 4425 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) { 4426 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs); 4427 return cast_or_null<DeclContext>(ID); 4428 } else return DC; 4429 } 4430 4431 /// \brief Find the instantiation of the given declaration within the 4432 /// current instantiation. 4433 /// 4434 /// This routine is intended to be used when \p D is a declaration 4435 /// referenced from within a template, that needs to mapped into the 4436 /// corresponding declaration within an instantiation. For example, 4437 /// given: 4438 /// 4439 /// \code 4440 /// template<typename T> 4441 /// struct X { 4442 /// enum Kind { 4443 /// KnownValue = sizeof(T) 4444 /// }; 4445 /// 4446 /// bool getKind() const { return KnownValue; } 4447 /// }; 4448 /// 4449 /// template struct X<int>; 4450 /// \endcode 4451 /// 4452 /// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the 4453 /// \p EnumConstantDecl for \p KnownValue (which refers to 4454 /// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation 4455 /// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs 4456 /// this mapping from within the instantiation of <tt>X<int></tt>. 4457 NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D, 4458 const MultiLevelTemplateArgumentList &TemplateArgs) { 4459 DeclContext *ParentDC = D->getDeclContext(); 4460 // FIXME: Parmeters of pointer to functions (y below) that are themselves 4461 // parameters (p below) can have their ParentDC set to the translation-unit 4462 // - thus we can not consistently check if the ParentDC of such a parameter 4463 // is Dependent or/and a FunctionOrMethod. 4464 // For e.g. this code, during Template argument deduction tries to 4465 // find an instantiated decl for (T y) when the ParentDC for y is 4466 // the translation unit. 4467 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {} 4468 // float baz(float(*)()) { return 0.0; } 4469 // Foo(baz); 4470 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time 4471 // it gets here, always has a FunctionOrMethod as its ParentDC?? 4472 // For now: 4473 // - as long as we have a ParmVarDecl whose parent is non-dependent and 4474 // whose type is not instantiation dependent, do nothing to the decl 4475 // - otherwise find its instantiated decl. 4476 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() && 4477 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType()) 4478 return D; 4479 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) || 4480 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) || 4481 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) || 4482 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) { 4483 // D is a local of some kind. Look into the map of local 4484 // declarations to their instantiations. 4485 if (CurrentInstantiationScope) { 4486 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) { 4487 if (Decl *FD = Found->dyn_cast<Decl *>()) 4488 return cast<NamedDecl>(FD); 4489 4490 int PackIdx = ArgumentPackSubstitutionIndex; 4491 assert(PackIdx != -1 && 4492 "found declaration pack but not pack expanding"); 4493 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack; 4494 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]); 4495 } 4496 } 4497 4498 // If we're performing a partial substitution during template argument 4499 // deduction, we may not have values for template parameters yet. They 4500 // just map to themselves. 4501 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) || 4502 isa<TemplateTemplateParmDecl>(D)) 4503 return D; 4504 4505 if (D->isInvalidDecl()) 4506 return nullptr; 4507 4508 // If we didn't find the decl, then we must have a label decl that hasn't 4509 // been found yet. Lazily instantiate it and return it now. 4510 assert(isa<LabelDecl>(D)); 4511 4512 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs); 4513 assert(Inst && "Failed to instantiate label??"); 4514 4515 CurrentInstantiationScope->InstantiatedLocal(D, Inst); 4516 return cast<LabelDecl>(Inst); 4517 } 4518 4519 // For variable template specializations, update those that are still 4520 // type-dependent. 4521 if (VarTemplateSpecializationDecl *VarSpec = 4522 dyn_cast<VarTemplateSpecializationDecl>(D)) { 4523 bool InstantiationDependent = false; 4524 const TemplateArgumentListInfo &VarTemplateArgs = 4525 VarSpec->getTemplateArgsInfo(); 4526 if (TemplateSpecializationType::anyDependentTemplateArguments( 4527 VarTemplateArgs, InstantiationDependent)) 4528 D = cast<NamedDecl>( 4529 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs)); 4530 return D; 4531 } 4532 4533 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { 4534 if (!Record->isDependentContext()) 4535 return D; 4536 4537 // Determine whether this record is the "templated" declaration describing 4538 // a class template or class template partial specialization. 4539 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate(); 4540 if (ClassTemplate) 4541 ClassTemplate = ClassTemplate->getCanonicalDecl(); 4542 else if (ClassTemplatePartialSpecializationDecl *PartialSpec 4543 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) 4544 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl(); 4545 4546 // Walk the current context to find either the record or an instantiation of 4547 // it. 4548 DeclContext *DC = CurContext; 4549 while (!DC->isFileContext()) { 4550 // If we're performing substitution while we're inside the template 4551 // definition, we'll find our own context. We're done. 4552 if (DC->Equals(Record)) 4553 return Record; 4554 4555 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) { 4556 // Check whether we're in the process of instantiating a class template 4557 // specialization of the template we're mapping. 4558 if (ClassTemplateSpecializationDecl *InstSpec 4559 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){ 4560 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate(); 4561 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate)) 4562 return InstRecord; 4563 } 4564 4565 // Check whether we're in the process of instantiating a member class. 4566 if (isInstantiationOf(Record, InstRecord)) 4567 return InstRecord; 4568 } 4569 4570 // Move to the outer template scope. 4571 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) { 4572 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){ 4573 DC = FD->getLexicalDeclContext(); 4574 continue; 4575 } 4576 } 4577 4578 DC = DC->getParent(); 4579 } 4580 4581 // Fall through to deal with other dependent record types (e.g., 4582 // anonymous unions in class templates). 4583 } 4584 4585 if (!ParentDC->isDependentContext()) 4586 return D; 4587 4588 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs); 4589 if (!ParentDC) 4590 return nullptr; 4591 4592 if (ParentDC != D->getDeclContext()) { 4593 // We performed some kind of instantiation in the parent context, 4594 // so now we need to look into the instantiated parent context to 4595 // find the instantiation of the declaration D. 4596 4597 // If our context used to be dependent, we may need to instantiate 4598 // it before performing lookup into that context. 4599 bool IsBeingInstantiated = false; 4600 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) { 4601 if (!Spec->isDependentContext()) { 4602 QualType T = Context.getTypeDeclType(Spec); 4603 const RecordType *Tag = T->getAs<RecordType>(); 4604 assert(Tag && "type of non-dependent record is not a RecordType"); 4605 if (Tag->isBeingDefined()) 4606 IsBeingInstantiated = true; 4607 if (!Tag->isBeingDefined() && 4608 RequireCompleteType(Loc, T, diag::err_incomplete_type)) 4609 return nullptr; 4610 4611 ParentDC = Tag->getDecl(); 4612 } 4613 } 4614 4615 NamedDecl *Result = nullptr; 4616 if (D->getDeclName()) { 4617 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); 4618 Result = findInstantiationOf(Context, D, Found.begin(), Found.end()); 4619 } else { 4620 // Since we don't have a name for the entity we're looking for, 4621 // our only option is to walk through all of the declarations to 4622 // find that name. This will occur in a few cases: 4623 // 4624 // - anonymous struct/union within a template 4625 // - unnamed class/struct/union/enum within a template 4626 // 4627 // FIXME: Find a better way to find these instantiations! 4628 Result = findInstantiationOf(Context, D, 4629 ParentDC->decls_begin(), 4630 ParentDC->decls_end()); 4631 } 4632 4633 if (!Result) { 4634 if (isa<UsingShadowDecl>(D)) { 4635 // UsingShadowDecls can instantiate to nothing because of using hiding. 4636 } else if (Diags.hasErrorOccurred()) { 4637 // We've already complained about something, so most likely this 4638 // declaration failed to instantiate. There's no point in complaining 4639 // further, since this is normal in invalid code. 4640 } else if (IsBeingInstantiated) { 4641 // The class in which this member exists is currently being 4642 // instantiated, and we haven't gotten around to instantiating this 4643 // member yet. This can happen when the code uses forward declarations 4644 // of member classes, and introduces ordering dependencies via 4645 // template instantiation. 4646 Diag(Loc, diag::err_member_not_yet_instantiated) 4647 << D->getDeclName() 4648 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC)); 4649 Diag(D->getLocation(), diag::note_non_instantiated_member_here); 4650 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) { 4651 // This enumeration constant was found when the template was defined, 4652 // but can't be found in the instantiation. This can happen if an 4653 // unscoped enumeration member is explicitly specialized. 4654 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext()); 4655 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum, 4656 TemplateArgs)); 4657 assert(Spec->getTemplateSpecializationKind() == 4658 TSK_ExplicitSpecialization); 4659 Diag(Loc, diag::err_enumerator_does_not_exist) 4660 << D->getDeclName() 4661 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext())); 4662 Diag(Spec->getLocation(), diag::note_enum_specialized_here) 4663 << Context.getTypeDeclType(Spec); 4664 } else { 4665 // We should have found something, but didn't. 4666 llvm_unreachable("Unable to find instantiation of declaration!"); 4667 } 4668 } 4669 4670 D = Result; 4671 } 4672 4673 return D; 4674 } 4675 4676 /// \brief Performs template instantiation for all implicit template 4677 /// instantiations we have seen until this point. 4678 void Sema::PerformPendingInstantiations(bool LocalOnly) { 4679 while (!PendingLocalImplicitInstantiations.empty() || 4680 (!LocalOnly && !PendingInstantiations.empty())) { 4681 PendingImplicitInstantiation Inst; 4682 4683 if (PendingLocalImplicitInstantiations.empty()) { 4684 Inst = PendingInstantiations.front(); 4685 PendingInstantiations.pop_front(); 4686 } else { 4687 Inst = PendingLocalImplicitInstantiations.front(); 4688 PendingLocalImplicitInstantiations.pop_front(); 4689 } 4690 4691 // Instantiate function definitions 4692 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) { 4693 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(), 4694 "instantiating function definition"); 4695 bool DefinitionRequired = Function->getTemplateSpecializationKind() == 4696 TSK_ExplicitInstantiationDefinition; 4697 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true, 4698 DefinitionRequired); 4699 continue; 4700 } 4701 4702 // Instantiate variable definitions 4703 VarDecl *Var = cast<VarDecl>(Inst.first); 4704 4705 assert((Var->isStaticDataMember() || 4706 isa<VarTemplateSpecializationDecl>(Var)) && 4707 "Not a static data member, nor a variable template" 4708 " specialization?"); 4709 4710 // Don't try to instantiate declarations if the most recent redeclaration 4711 // is invalid. 4712 if (Var->getMostRecentDecl()->isInvalidDecl()) 4713 continue; 4714 4715 // Check if the most recent declaration has changed the specialization kind 4716 // and removed the need for implicit instantiation. 4717 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) { 4718 case TSK_Undeclared: 4719 llvm_unreachable("Cannot instantitiate an undeclared specialization."); 4720 case TSK_ExplicitInstantiationDeclaration: 4721 case TSK_ExplicitSpecialization: 4722 continue; // No longer need to instantiate this type. 4723 case TSK_ExplicitInstantiationDefinition: 4724 // We only need an instantiation if the pending instantiation *is* the 4725 // explicit instantiation. 4726 if (Var != Var->getMostRecentDecl()) continue; 4727 case TSK_ImplicitInstantiation: 4728 break; 4729 } 4730 4731 PrettyDeclStackTraceEntry CrashInfo(*this, Var, SourceLocation(), 4732 "instantiating variable definition"); 4733 bool DefinitionRequired = Var->getTemplateSpecializationKind() == 4734 TSK_ExplicitInstantiationDefinition; 4735 4736 // Instantiate static data member definitions or variable template 4737 // specializations. 4738 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true, 4739 DefinitionRequired); 4740 } 4741 } 4742 4743 void Sema::PerformDependentDiagnostics(const DeclContext *Pattern, 4744 const MultiLevelTemplateArgumentList &TemplateArgs) { 4745 for (auto DD : Pattern->ddiags()) { 4746 switch (DD->getKind()) { 4747 case DependentDiagnostic::Access: 4748 HandleDependentAccessCheck(*DD, TemplateArgs); 4749 break; 4750 } 4751 } 4752 } 4753