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 = 2364 cast_or_null<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, nullptr, true)); 2365 if (!NewFD) 2366 return nullptr; 2367 2368 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName, 2369 Sema::ForRedeclaration); 2370 2371 TemplateArgumentListInfo TemplateArgs; 2372 TemplateArgumentListInfo *TemplateArgsPtr = nullptr; 2373 if (Decl->hasExplicitTemplateArgs()) { 2374 TemplateArgs = Decl->templateArgs(); 2375 TemplateArgsPtr = &TemplateArgs; 2376 } 2377 2378 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext); 2379 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr, 2380 Previous)) { 2381 NewFD->setInvalidDecl(); 2382 return NewFD; 2383 } 2384 2385 // Associate the specialization with the pattern. 2386 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl()); 2387 assert(Specialization && "Class scope Specialization is null"); 2388 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD); 2389 2390 return NewFD; 2391 } 2392 2393 Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl( 2394 OMPThreadPrivateDecl *D) { 2395 SmallVector<Expr *, 5> Vars; 2396 for (auto *I : D->varlists()) { 2397 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get(); 2398 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr"); 2399 Vars.push_back(Var); 2400 } 2401 2402 OMPThreadPrivateDecl *TD = 2403 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars); 2404 2405 TD->setAccess(AS_public); 2406 Owner->addDecl(TD); 2407 2408 return TD; 2409 } 2410 2411 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) { 2412 return VisitFunctionDecl(D, nullptr); 2413 } 2414 2415 Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) { 2416 return VisitCXXMethodDecl(D, nullptr); 2417 } 2418 2419 Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) { 2420 llvm_unreachable("There are only CXXRecordDecls in C++"); 2421 } 2422 2423 Decl * 2424 TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl( 2425 ClassTemplateSpecializationDecl *D) { 2426 // As a MS extension, we permit class-scope explicit specialization 2427 // of member class templates. 2428 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate(); 2429 assert(ClassTemplate->getDeclContext()->isRecord() && 2430 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 2431 "can only instantiate an explicit specialization " 2432 "for a member class template"); 2433 2434 // Lookup the already-instantiated declaration in the instantiation 2435 // of the class template. FIXME: Diagnose or assert if this fails? 2436 DeclContext::lookup_result Found 2437 = Owner->lookup(ClassTemplate->getDeclName()); 2438 if (Found.empty()) 2439 return nullptr; 2440 ClassTemplateDecl *InstClassTemplate 2441 = dyn_cast<ClassTemplateDecl>(Found.front()); 2442 if (!InstClassTemplate) 2443 return nullptr; 2444 2445 // Substitute into the template arguments of the class template explicit 2446 // specialization. 2447 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc(). 2448 castAs<TemplateSpecializationTypeLoc>(); 2449 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(), 2450 Loc.getRAngleLoc()); 2451 SmallVector<TemplateArgumentLoc, 4> ArgLocs; 2452 for (unsigned I = 0; I != Loc.getNumArgs(); ++I) 2453 ArgLocs.push_back(Loc.getArgLoc(I)); 2454 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(), 2455 InstTemplateArgs, TemplateArgs)) 2456 return nullptr; 2457 2458 // Check that the template argument list is well-formed for this 2459 // class template. 2460 SmallVector<TemplateArgument, 4> Converted; 2461 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate, 2462 D->getLocation(), 2463 InstTemplateArgs, 2464 false, 2465 Converted)) 2466 return nullptr; 2467 2468 // Figure out where to insert this class template explicit specialization 2469 // in the member template's set of class template explicit specializations. 2470 void *InsertPos = nullptr; 2471 ClassTemplateSpecializationDecl *PrevDecl = 2472 InstClassTemplate->findSpecialization(Converted, InsertPos); 2473 2474 // Check whether we've already seen a conflicting instantiation of this 2475 // declaration (for instance, if there was a prior implicit instantiation). 2476 bool Ignored; 2477 if (PrevDecl && 2478 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(), 2479 D->getSpecializationKind(), 2480 PrevDecl, 2481 PrevDecl->getSpecializationKind(), 2482 PrevDecl->getPointOfInstantiation(), 2483 Ignored)) 2484 return nullptr; 2485 2486 // If PrevDecl was a definition and D is also a definition, diagnose. 2487 // This happens in cases like: 2488 // 2489 // template<typename T, typename U> 2490 // struct Outer { 2491 // template<typename X> struct Inner; 2492 // template<> struct Inner<T> {}; 2493 // template<> struct Inner<U> {}; 2494 // }; 2495 // 2496 // Outer<int, int> outer; // error: the explicit specializations of Inner 2497 // // have the same signature. 2498 if (PrevDecl && PrevDecl->getDefinition() && 2499 D->isThisDeclarationADefinition()) { 2500 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl; 2501 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(), 2502 diag::note_previous_definition); 2503 return nullptr; 2504 } 2505 2506 // Create the class template partial specialization declaration. 2507 ClassTemplateSpecializationDecl *InstD 2508 = ClassTemplateSpecializationDecl::Create(SemaRef.Context, 2509 D->getTagKind(), 2510 Owner, 2511 D->getLocStart(), 2512 D->getLocation(), 2513 InstClassTemplate, 2514 Converted.data(), 2515 Converted.size(), 2516 PrevDecl); 2517 2518 // Add this partial specialization to the set of class template partial 2519 // specializations. 2520 if (!PrevDecl) 2521 InstClassTemplate->AddSpecialization(InstD, InsertPos); 2522 2523 // Substitute the nested name specifier, if any. 2524 if (SubstQualifier(D, InstD)) 2525 return nullptr; 2526 2527 // Build the canonical type that describes the converted template 2528 // arguments of the class template explicit specialization. 2529 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( 2530 TemplateName(InstClassTemplate), Converted.data(), Converted.size(), 2531 SemaRef.Context.getRecordType(InstD)); 2532 2533 // Build the fully-sugared type for this class template 2534 // specialization as the user wrote in the specialization 2535 // itself. This means that we'll pretty-print the type retrieved 2536 // from the specialization's declaration the way that the user 2537 // actually wrote the specialization, rather than formatting the 2538 // name based on the "canonical" representation used to store the 2539 // template arguments in the specialization. 2540 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo( 2541 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs, 2542 CanonType); 2543 2544 InstD->setAccess(D->getAccess()); 2545 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation); 2546 InstD->setSpecializationKind(D->getSpecializationKind()); 2547 InstD->setTypeAsWritten(WrittenTy); 2548 InstD->setExternLoc(D->getExternLoc()); 2549 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc()); 2550 2551 Owner->addDecl(InstD); 2552 2553 // Instantiate the members of the class-scope explicit specialization eagerly. 2554 // We don't have support for lazy instantiation of an explicit specialization 2555 // yet, and MSVC eagerly instantiates in this case. 2556 if (D->isThisDeclarationADefinition() && 2557 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs, 2558 TSK_ImplicitInstantiation, 2559 /*Complain=*/true)) 2560 return nullptr; 2561 2562 return InstD; 2563 } 2564 2565 Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl( 2566 VarTemplateSpecializationDecl *D) { 2567 2568 TemplateArgumentListInfo VarTemplateArgsInfo; 2569 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate(); 2570 assert(VarTemplate && 2571 "A template specialization without specialized template?"); 2572 2573 // Substitute the current template arguments. 2574 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo(); 2575 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc()); 2576 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc()); 2577 2578 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(), 2579 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs)) 2580 return nullptr; 2581 2582 // Check that the template argument list is well-formed for this template. 2583 SmallVector<TemplateArgument, 4> Converted; 2584 if (SemaRef.CheckTemplateArgumentList( 2585 VarTemplate, VarTemplate->getLocStart(), 2586 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false, 2587 Converted)) 2588 return nullptr; 2589 2590 // Find the variable template specialization declaration that 2591 // corresponds to these arguments. 2592 void *InsertPos = nullptr; 2593 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization( 2594 Converted, InsertPos)) 2595 // If we already have a variable template specialization, return it. 2596 return VarSpec; 2597 2598 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos, 2599 VarTemplateArgsInfo, Converted); 2600 } 2601 2602 Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl( 2603 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos, 2604 const TemplateArgumentListInfo &TemplateArgsInfo, 2605 ArrayRef<TemplateArgument> Converted) { 2606 2607 // If this is the variable for an anonymous struct or union, 2608 // instantiate the anonymous struct/union type first. 2609 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>()) 2610 if (RecordTy->getDecl()->isAnonymousStructOrUnion()) 2611 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl()))) 2612 return nullptr; 2613 2614 // Do substitution on the type of the declaration 2615 TypeSourceInfo *DI = 2616 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs, 2617 D->getTypeSpecStartLoc(), D->getDeclName()); 2618 if (!DI) 2619 return nullptr; 2620 2621 if (DI->getType()->isFunctionType()) { 2622 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function) 2623 << D->isStaticDataMember() << DI->getType(); 2624 return nullptr; 2625 } 2626 2627 // Build the instantiated declaration 2628 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create( 2629 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(), 2630 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted.data(), 2631 Converted.size()); 2632 Var->setTemplateArgsInfo(TemplateArgsInfo); 2633 if (InsertPos) 2634 VarTemplate->AddSpecialization(Var, InsertPos); 2635 2636 // Substitute the nested name specifier, if any. 2637 if (SubstQualifier(D, Var)) 2638 return nullptr; 2639 2640 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, 2641 Owner, StartingScope); 2642 2643 return Var; 2644 } 2645 2646 Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) { 2647 llvm_unreachable("@defs is not supported in Objective-C++"); 2648 } 2649 2650 Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) { 2651 // FIXME: We need to be able to instantiate FriendTemplateDecls. 2652 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID( 2653 DiagnosticsEngine::Error, 2654 "cannot instantiate %0 yet"); 2655 SemaRef.Diag(D->getLocation(), DiagID) 2656 << D->getDeclKindName(); 2657 2658 return nullptr; 2659 } 2660 2661 Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) { 2662 llvm_unreachable("Unexpected decl"); 2663 } 2664 2665 Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner, 2666 const MultiLevelTemplateArgumentList &TemplateArgs) { 2667 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs); 2668 if (D->isInvalidDecl()) 2669 return nullptr; 2670 2671 return Instantiator.Visit(D); 2672 } 2673 2674 /// \brief Instantiates a nested template parameter list in the current 2675 /// instantiation context. 2676 /// 2677 /// \param L The parameter list to instantiate 2678 /// 2679 /// \returns NULL if there was an error 2680 TemplateParameterList * 2681 TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) { 2682 // Get errors for all the parameters before bailing out. 2683 bool Invalid = false; 2684 2685 unsigned N = L->size(); 2686 typedef SmallVector<NamedDecl *, 8> ParamVector; 2687 ParamVector Params; 2688 Params.reserve(N); 2689 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end(); 2690 PI != PE; ++PI) { 2691 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI)); 2692 Params.push_back(D); 2693 Invalid = Invalid || !D || D->isInvalidDecl(); 2694 } 2695 2696 // Clean up if we had an error. 2697 if (Invalid) 2698 return nullptr; 2699 2700 TemplateParameterList *InstL 2701 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(), 2702 L->getLAngleLoc(), &Params.front(), N, 2703 L->getRAngleLoc()); 2704 return InstL; 2705 } 2706 2707 /// \brief Instantiate the declaration of a class template partial 2708 /// specialization. 2709 /// 2710 /// \param ClassTemplate the (instantiated) class template that is partially 2711 // specialized by the instantiation of \p PartialSpec. 2712 /// 2713 /// \param PartialSpec the (uninstantiated) class template partial 2714 /// specialization that we are instantiating. 2715 /// 2716 /// \returns The instantiated partial specialization, if successful; otherwise, 2717 /// NULL to indicate an error. 2718 ClassTemplatePartialSpecializationDecl * 2719 TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization( 2720 ClassTemplateDecl *ClassTemplate, 2721 ClassTemplatePartialSpecializationDecl *PartialSpec) { 2722 // Create a local instantiation scope for this class template partial 2723 // specialization, which will contain the instantiations of the template 2724 // parameters. 2725 LocalInstantiationScope Scope(SemaRef); 2726 2727 // Substitute into the template parameters of the class template partial 2728 // specialization. 2729 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters(); 2730 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 2731 if (!InstParams) 2732 return nullptr; 2733 2734 // Substitute into the template arguments of the class template partial 2735 // specialization. 2736 const ASTTemplateArgumentListInfo *TemplArgInfo 2737 = PartialSpec->getTemplateArgsAsWritten(); 2738 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, 2739 TemplArgInfo->RAngleLoc); 2740 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(), 2741 TemplArgInfo->NumTemplateArgs, 2742 InstTemplateArgs, TemplateArgs)) 2743 return nullptr; 2744 2745 // Check that the template argument list is well-formed for this 2746 // class template. 2747 SmallVector<TemplateArgument, 4> Converted; 2748 if (SemaRef.CheckTemplateArgumentList(ClassTemplate, 2749 PartialSpec->getLocation(), 2750 InstTemplateArgs, 2751 false, 2752 Converted)) 2753 return nullptr; 2754 2755 // Figure out where to insert this class template partial specialization 2756 // in the member template's set of class template partial specializations. 2757 void *InsertPos = nullptr; 2758 ClassTemplateSpecializationDecl *PrevDecl 2759 = ClassTemplate->findPartialSpecialization(Converted, InsertPos); 2760 2761 // Build the canonical type that describes the converted template 2762 // arguments of the class template partial specialization. 2763 QualType CanonType 2764 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate), 2765 Converted.data(), 2766 Converted.size()); 2767 2768 // Build the fully-sugared type for this class template 2769 // specialization as the user wrote in the specialization 2770 // itself. This means that we'll pretty-print the type retrieved 2771 // from the specialization's declaration the way that the user 2772 // actually wrote the specialization, rather than formatting the 2773 // name based on the "canonical" representation used to store the 2774 // template arguments in the specialization. 2775 TypeSourceInfo *WrittenTy 2776 = SemaRef.Context.getTemplateSpecializationTypeInfo( 2777 TemplateName(ClassTemplate), 2778 PartialSpec->getLocation(), 2779 InstTemplateArgs, 2780 CanonType); 2781 2782 if (PrevDecl) { 2783 // We've already seen a partial specialization with the same template 2784 // parameters and template arguments. This can happen, for example, when 2785 // substituting the outer template arguments ends up causing two 2786 // class template partial specializations of a member class template 2787 // to have identical forms, e.g., 2788 // 2789 // template<typename T, typename U> 2790 // struct Outer { 2791 // template<typename X, typename Y> struct Inner; 2792 // template<typename Y> struct Inner<T, Y>; 2793 // template<typename Y> struct Inner<U, Y>; 2794 // }; 2795 // 2796 // Outer<int, int> outer; // error: the partial specializations of Inner 2797 // // have the same signature. 2798 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared) 2799 << WrittenTy->getType(); 2800 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here) 2801 << SemaRef.Context.getTypeDeclType(PrevDecl); 2802 return nullptr; 2803 } 2804 2805 2806 // Create the class template partial specialization declaration. 2807 ClassTemplatePartialSpecializationDecl *InstPartialSpec 2808 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, 2809 PartialSpec->getTagKind(), 2810 Owner, 2811 PartialSpec->getLocStart(), 2812 PartialSpec->getLocation(), 2813 InstParams, 2814 ClassTemplate, 2815 Converted.data(), 2816 Converted.size(), 2817 InstTemplateArgs, 2818 CanonType, 2819 nullptr); 2820 // Substitute the nested name specifier, if any. 2821 if (SubstQualifier(PartialSpec, InstPartialSpec)) 2822 return nullptr; 2823 2824 InstPartialSpec->setInstantiatedFromMember(PartialSpec); 2825 InstPartialSpec->setTypeAsWritten(WrittenTy); 2826 2827 // Add this partial specialization to the set of class template partial 2828 // specializations. 2829 ClassTemplate->AddPartialSpecialization(InstPartialSpec, 2830 /*InsertPos=*/nullptr); 2831 return InstPartialSpec; 2832 } 2833 2834 /// \brief Instantiate the declaration of a variable template partial 2835 /// specialization. 2836 /// 2837 /// \param VarTemplate the (instantiated) variable template that is partially 2838 /// specialized by the instantiation of \p PartialSpec. 2839 /// 2840 /// \param PartialSpec the (uninstantiated) variable template partial 2841 /// specialization that we are instantiating. 2842 /// 2843 /// \returns The instantiated partial specialization, if successful; otherwise, 2844 /// NULL to indicate an error. 2845 VarTemplatePartialSpecializationDecl * 2846 TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization( 2847 VarTemplateDecl *VarTemplate, 2848 VarTemplatePartialSpecializationDecl *PartialSpec) { 2849 // Create a local instantiation scope for this variable template partial 2850 // specialization, which will contain the instantiations of the template 2851 // parameters. 2852 LocalInstantiationScope Scope(SemaRef); 2853 2854 // Substitute into the template parameters of the variable template partial 2855 // specialization. 2856 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters(); 2857 TemplateParameterList *InstParams = SubstTemplateParams(TempParams); 2858 if (!InstParams) 2859 return nullptr; 2860 2861 // Substitute into the template arguments of the variable template partial 2862 // specialization. 2863 const ASTTemplateArgumentListInfo *TemplArgInfo 2864 = PartialSpec->getTemplateArgsAsWritten(); 2865 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, 2866 TemplArgInfo->RAngleLoc); 2867 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(), 2868 TemplArgInfo->NumTemplateArgs, 2869 InstTemplateArgs, TemplateArgs)) 2870 return nullptr; 2871 2872 // Check that the template argument list is well-formed for this 2873 // class template. 2874 SmallVector<TemplateArgument, 4> Converted; 2875 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(), 2876 InstTemplateArgs, false, Converted)) 2877 return nullptr; 2878 2879 // Figure out where to insert this variable template partial specialization 2880 // in the member template's set of variable template partial specializations. 2881 void *InsertPos = nullptr; 2882 VarTemplateSpecializationDecl *PrevDecl = 2883 VarTemplate->findPartialSpecialization(Converted, InsertPos); 2884 2885 // Build the canonical type that describes the converted template 2886 // arguments of the variable template partial specialization. 2887 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( 2888 TemplateName(VarTemplate), Converted.data(), Converted.size()); 2889 2890 // Build the fully-sugared type for this variable template 2891 // specialization as the user wrote in the specialization 2892 // itself. This means that we'll pretty-print the type retrieved 2893 // from the specialization's declaration the way that the user 2894 // actually wrote the specialization, rather than formatting the 2895 // name based on the "canonical" representation used to store the 2896 // template arguments in the specialization. 2897 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo( 2898 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs, 2899 CanonType); 2900 2901 if (PrevDecl) { 2902 // We've already seen a partial specialization with the same template 2903 // parameters and template arguments. This can happen, for example, when 2904 // substituting the outer template arguments ends up causing two 2905 // variable template partial specializations of a member variable template 2906 // to have identical forms, e.g., 2907 // 2908 // template<typename T, typename U> 2909 // struct Outer { 2910 // template<typename X, typename Y> pair<X,Y> p; 2911 // template<typename Y> pair<T, Y> p; 2912 // template<typename Y> pair<U, Y> p; 2913 // }; 2914 // 2915 // Outer<int, int> outer; // error: the partial specializations of Inner 2916 // // have the same signature. 2917 SemaRef.Diag(PartialSpec->getLocation(), 2918 diag::err_var_partial_spec_redeclared) 2919 << WrittenTy->getType(); 2920 SemaRef.Diag(PrevDecl->getLocation(), 2921 diag::note_var_prev_partial_spec_here); 2922 return nullptr; 2923 } 2924 2925 // Do substitution on the type of the declaration 2926 TypeSourceInfo *DI = SemaRef.SubstType( 2927 PartialSpec->getTypeSourceInfo(), TemplateArgs, 2928 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName()); 2929 if (!DI) 2930 return nullptr; 2931 2932 if (DI->getType()->isFunctionType()) { 2933 SemaRef.Diag(PartialSpec->getLocation(), 2934 diag::err_variable_instantiates_to_function) 2935 << PartialSpec->isStaticDataMember() << DI->getType(); 2936 return nullptr; 2937 } 2938 2939 // Create the variable template partial specialization declaration. 2940 VarTemplatePartialSpecializationDecl *InstPartialSpec = 2941 VarTemplatePartialSpecializationDecl::Create( 2942 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(), 2943 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(), 2944 DI, PartialSpec->getStorageClass(), Converted.data(), 2945 Converted.size(), InstTemplateArgs); 2946 2947 // Substitute the nested name specifier, if any. 2948 if (SubstQualifier(PartialSpec, InstPartialSpec)) 2949 return nullptr; 2950 2951 InstPartialSpec->setInstantiatedFromMember(PartialSpec); 2952 InstPartialSpec->setTypeAsWritten(WrittenTy); 2953 2954 // Add this partial specialization to the set of variable template partial 2955 // specializations. The instantiation of the initializer is not necessary. 2956 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr); 2957 2958 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs, 2959 LateAttrs, Owner, StartingScope); 2960 2961 return InstPartialSpec; 2962 } 2963 2964 TypeSourceInfo* 2965 TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D, 2966 SmallVectorImpl<ParmVarDecl *> &Params) { 2967 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo(); 2968 assert(OldTInfo && "substituting function without type source info"); 2969 assert(Params.empty() && "parameter vector is non-empty at start"); 2970 2971 CXXRecordDecl *ThisContext = nullptr; 2972 unsigned ThisTypeQuals = 0; 2973 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 2974 ThisContext = cast<CXXRecordDecl>(Owner); 2975 ThisTypeQuals = Method->getTypeQualifiers(); 2976 } 2977 2978 TypeSourceInfo *NewTInfo 2979 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs, 2980 D->getTypeSpecStartLoc(), 2981 D->getDeclName(), 2982 ThisContext, ThisTypeQuals); 2983 if (!NewTInfo) 2984 return nullptr; 2985 2986 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens(); 2987 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) { 2988 if (NewTInfo != OldTInfo) { 2989 // Get parameters from the new type info. 2990 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens(); 2991 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>(); 2992 unsigned NewIdx = 0; 2993 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams(); 2994 OldIdx != NumOldParams; ++OldIdx) { 2995 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx); 2996 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope; 2997 2998 Optional<unsigned> NumArgumentsInExpansion; 2999 if (OldParam->isParameterPack()) 3000 NumArgumentsInExpansion = 3001 SemaRef.getNumArgumentsInExpansion(OldParam->getType(), 3002 TemplateArgs); 3003 if (!NumArgumentsInExpansion) { 3004 // Simple case: normal parameter, or a parameter pack that's 3005 // instantiated to a (still-dependent) parameter pack. 3006 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++); 3007 Params.push_back(NewParam); 3008 Scope->InstantiatedLocal(OldParam, NewParam); 3009 } else { 3010 // Parameter pack expansion: make the instantiation an argument pack. 3011 Scope->MakeInstantiatedLocalArgPack(OldParam); 3012 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) { 3013 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++); 3014 Params.push_back(NewParam); 3015 Scope->InstantiatedLocalPackArg(OldParam, NewParam); 3016 } 3017 } 3018 } 3019 } else { 3020 // The function type itself was not dependent and therefore no 3021 // substitution occurred. However, we still need to instantiate 3022 // the function parameters themselves. 3023 const FunctionProtoType *OldProto = 3024 cast<FunctionProtoType>(OldProtoLoc.getType()); 3025 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end; 3026 ++i) { 3027 ParmVarDecl *OldParam = OldProtoLoc.getParam(i); 3028 if (!OldParam) { 3029 Params.push_back(SemaRef.BuildParmVarDeclForTypedef( 3030 D, D->getLocation(), OldProto->getParamType(i))); 3031 continue; 3032 } 3033 3034 ParmVarDecl *Parm = 3035 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam)); 3036 if (!Parm) 3037 return nullptr; 3038 Params.push_back(Parm); 3039 } 3040 } 3041 } else { 3042 // If the type of this function, after ignoring parentheses, is not 3043 // *directly* a function type, then we're instantiating a function that 3044 // was declared via a typedef or with attributes, e.g., 3045 // 3046 // typedef int functype(int, int); 3047 // functype func; 3048 // int __cdecl meth(int, int); 3049 // 3050 // In this case, we'll just go instantiate the ParmVarDecls that we 3051 // synthesized in the method declaration. 3052 SmallVector<QualType, 4> ParamTypes; 3053 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(), 3054 D->getNumParams(), TemplateArgs, ParamTypes, 3055 &Params)) 3056 return nullptr; 3057 } 3058 3059 return NewTInfo; 3060 } 3061 3062 /// Introduce the instantiated function parameters into the local 3063 /// instantiation scope, and set the parameter names to those used 3064 /// in the template. 3065 static bool addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function, 3066 const FunctionDecl *PatternDecl, 3067 LocalInstantiationScope &Scope, 3068 const MultiLevelTemplateArgumentList &TemplateArgs) { 3069 unsigned FParamIdx = 0; 3070 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) { 3071 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I); 3072 if (!PatternParam->isParameterPack()) { 3073 // Simple case: not a parameter pack. 3074 assert(FParamIdx < Function->getNumParams()); 3075 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx); 3076 FunctionParam->setDeclName(PatternParam->getDeclName()); 3077 // If the parameter's type is not dependent, update it to match the type 3078 // in the pattern. They can differ in top-level cv-qualifiers, and we want 3079 // the pattern's type here. If the type is dependent, they can't differ, 3080 // per core issue 1668. Substitute into the type from the pattern, in case 3081 // it's instantiation-dependent. 3082 // FIXME: Updating the type to work around this is at best fragile. 3083 if (!PatternDecl->getType()->isDependentType()) { 3084 QualType T = S.SubstType(PatternParam->getType(), TemplateArgs, 3085 FunctionParam->getLocation(), 3086 FunctionParam->getDeclName()); 3087 if (T.isNull()) 3088 return true; 3089 FunctionParam->setType(T); 3090 } 3091 3092 Scope.InstantiatedLocal(PatternParam, FunctionParam); 3093 ++FParamIdx; 3094 continue; 3095 } 3096 3097 // Expand the parameter pack. 3098 Scope.MakeInstantiatedLocalArgPack(PatternParam); 3099 Optional<unsigned> NumArgumentsInExpansion 3100 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs); 3101 assert(NumArgumentsInExpansion && 3102 "should only be called when all template arguments are known"); 3103 QualType PatternType = 3104 PatternParam->getType()->castAs<PackExpansionType>()->getPattern(); 3105 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) { 3106 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx); 3107 FunctionParam->setDeclName(PatternParam->getDeclName()); 3108 if (!PatternDecl->getType()->isDependentType()) { 3109 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, Arg); 3110 QualType T = S.SubstType(PatternType, TemplateArgs, 3111 FunctionParam->getLocation(), 3112 FunctionParam->getDeclName()); 3113 if (T.isNull()) 3114 return true; 3115 FunctionParam->setType(T); 3116 } 3117 3118 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam); 3119 ++FParamIdx; 3120 } 3121 } 3122 3123 return false; 3124 } 3125 3126 void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation, 3127 FunctionDecl *Decl) { 3128 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>(); 3129 if (Proto->getExceptionSpecType() != EST_Uninstantiated) 3130 return; 3131 3132 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl, 3133 InstantiatingTemplate::ExceptionSpecification()); 3134 if (Inst.isInvalid()) { 3135 // We hit the instantiation depth limit. Clear the exception specification 3136 // so that our callers don't have to cope with EST_Uninstantiated. 3137 UpdateExceptionSpec(Decl, EST_None); 3138 return; 3139 } 3140 3141 // Enter the scope of this instantiation. We don't use 3142 // PushDeclContext because we don't have a scope. 3143 Sema::ContextRAII savedContext(*this, Decl); 3144 LocalInstantiationScope Scope(*this); 3145 3146 MultiLevelTemplateArgumentList TemplateArgs = 3147 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true); 3148 3149 FunctionDecl *Template = Proto->getExceptionSpecTemplate(); 3150 if (addInstantiatedParametersToScope(*this, Decl, Template, Scope, 3151 TemplateArgs)) { 3152 UpdateExceptionSpec(Decl, EST_None); 3153 return; 3154 } 3155 3156 SubstExceptionSpec(Decl, Template->getType()->castAs<FunctionProtoType>(), 3157 TemplateArgs); 3158 } 3159 3160 /// \brief Initializes the common fields of an instantiation function 3161 /// declaration (New) from the corresponding fields of its template (Tmpl). 3162 /// 3163 /// \returns true if there was an error 3164 bool 3165 TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New, 3166 FunctionDecl *Tmpl) { 3167 if (Tmpl->isDeleted()) 3168 New->setDeletedAsWritten(); 3169 3170 // Forward the mangling number from the template to the instantiated decl. 3171 SemaRef.Context.setManglingNumber(New, 3172 SemaRef.Context.getManglingNumber(Tmpl)); 3173 3174 // If we are performing substituting explicitly-specified template arguments 3175 // or deduced template arguments into a function template and we reach this 3176 // point, we are now past the point where SFINAE applies and have committed 3177 // to keeping the new function template specialization. We therefore 3178 // convert the active template instantiation for the function template 3179 // into a template instantiation for this specific function template 3180 // specialization, which is not a SFINAE context, so that we diagnose any 3181 // further errors in the declaration itself. 3182 typedef Sema::ActiveTemplateInstantiation ActiveInstType; 3183 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back(); 3184 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution || 3185 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) { 3186 if (FunctionTemplateDecl *FunTmpl 3187 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) { 3188 assert(FunTmpl->getTemplatedDecl() == Tmpl && 3189 "Deduction from the wrong function template?"); 3190 (void) FunTmpl; 3191 ActiveInst.Kind = ActiveInstType::TemplateInstantiation; 3192 ActiveInst.Entity = New; 3193 } 3194 } 3195 3196 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>(); 3197 assert(Proto && "Function template without prototype?"); 3198 3199 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) { 3200 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 3201 3202 // DR1330: In C++11, defer instantiation of a non-trivial 3203 // exception specification. 3204 if (SemaRef.getLangOpts().CPlusPlus11 && 3205 EPI.ExceptionSpec.Type != EST_None && 3206 EPI.ExceptionSpec.Type != EST_DynamicNone && 3207 EPI.ExceptionSpec.Type != EST_BasicNoexcept) { 3208 FunctionDecl *ExceptionSpecTemplate = Tmpl; 3209 if (EPI.ExceptionSpec.Type == EST_Uninstantiated) 3210 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate; 3211 ExceptionSpecificationType NewEST = EST_Uninstantiated; 3212 if (EPI.ExceptionSpec.Type == EST_Unevaluated) 3213 NewEST = EST_Unevaluated; 3214 3215 // Mark the function has having an uninstantiated exception specification. 3216 const FunctionProtoType *NewProto 3217 = New->getType()->getAs<FunctionProtoType>(); 3218 assert(NewProto && "Template instantiation without function prototype?"); 3219 EPI = NewProto->getExtProtoInfo(); 3220 EPI.ExceptionSpec.Type = NewEST; 3221 EPI.ExceptionSpec.SourceDecl = New; 3222 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate; 3223 New->setType(SemaRef.Context.getFunctionType( 3224 NewProto->getReturnType(), NewProto->getParamTypes(), EPI)); 3225 } else { 3226 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs); 3227 } 3228 } 3229 3230 // Get the definition. Leaves the variable unchanged if undefined. 3231 const FunctionDecl *Definition = Tmpl; 3232 Tmpl->isDefined(Definition); 3233 3234 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New, 3235 LateAttrs, StartingScope); 3236 3237 return false; 3238 } 3239 3240 /// \brief Initializes common fields of an instantiated method 3241 /// declaration (New) from the corresponding fields of its template 3242 /// (Tmpl). 3243 /// 3244 /// \returns true if there was an error 3245 bool 3246 TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New, 3247 CXXMethodDecl *Tmpl) { 3248 if (InitFunctionInstantiation(New, Tmpl)) 3249 return true; 3250 3251 New->setAccess(Tmpl->getAccess()); 3252 if (Tmpl->isVirtualAsWritten()) 3253 New->setVirtualAsWritten(true); 3254 3255 // FIXME: New needs a pointer to Tmpl 3256 return false; 3257 } 3258 3259 /// \brief Instantiate the definition of the given function from its 3260 /// template. 3261 /// 3262 /// \param PointOfInstantiation the point at which the instantiation was 3263 /// required. Note that this is not precisely a "point of instantiation" 3264 /// for the function, but it's close. 3265 /// 3266 /// \param Function the already-instantiated declaration of a 3267 /// function template specialization or member function of a class template 3268 /// specialization. 3269 /// 3270 /// \param Recursive if true, recursively instantiates any functions that 3271 /// are required by this instantiation. 3272 /// 3273 /// \param DefinitionRequired if true, then we are performing an explicit 3274 /// instantiation where the body of the function is required. Complain if 3275 /// there is no such body. 3276 void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, 3277 FunctionDecl *Function, 3278 bool Recursive, 3279 bool DefinitionRequired) { 3280 if (Function->isInvalidDecl() || Function->isDefined()) 3281 return; 3282 3283 // Never instantiate an explicit specialization except if it is a class scope 3284 // explicit specialization. 3285 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 3286 !Function->getClassScopeSpecializationPattern()) 3287 return; 3288 3289 // Find the function body that we'll be substituting. 3290 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern(); 3291 assert(PatternDecl && "instantiating a non-template"); 3292 3293 Stmt *Pattern = PatternDecl->getBody(PatternDecl); 3294 assert(PatternDecl && "template definition is not a template"); 3295 if (!Pattern) { 3296 // Try to find a defaulted definition 3297 PatternDecl->isDefined(PatternDecl); 3298 } 3299 assert(PatternDecl && "template definition is not a template"); 3300 3301 // Postpone late parsed template instantiations. 3302 if (PatternDecl->isLateTemplateParsed() && 3303 !LateTemplateParser) { 3304 PendingInstantiations.push_back( 3305 std::make_pair(Function, PointOfInstantiation)); 3306 return; 3307 } 3308 3309 // If we're performing recursive template instantiation, create our own 3310 // queue of pending implicit instantiations that we will instantiate later, 3311 // while we're still within our own instantiation context. 3312 // This has to happen before LateTemplateParser below is called, so that 3313 // it marks vtables used in late parsed templates as used. 3314 SavePendingLocalImplicitInstantiationsRAII 3315 SavedPendingLocalImplicitInstantiations(*this); 3316 SavePendingInstantiationsAndVTableUsesRAII 3317 SavePendingInstantiationsAndVTableUses(*this, /*Enabled=*/Recursive); 3318 3319 // Call the LateTemplateParser callback if there is a need to late parse 3320 // a templated function definition. 3321 if (!Pattern && PatternDecl->isLateTemplateParsed() && 3322 LateTemplateParser) { 3323 // FIXME: Optimize to allow individual templates to be deserialized. 3324 if (PatternDecl->isFromASTFile()) 3325 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap); 3326 3327 LateParsedTemplate *LPT = LateParsedTemplateMap.lookup(PatternDecl); 3328 assert(LPT && "missing LateParsedTemplate"); 3329 LateTemplateParser(OpaqueParser, *LPT); 3330 Pattern = PatternDecl->getBody(PatternDecl); 3331 } 3332 3333 if (!Pattern && !PatternDecl->isDefaulted()) { 3334 if (DefinitionRequired) { 3335 if (Function->getPrimaryTemplate()) 3336 Diag(PointOfInstantiation, 3337 diag::err_explicit_instantiation_undefined_func_template) 3338 << Function->getPrimaryTemplate(); 3339 else 3340 Diag(PointOfInstantiation, 3341 diag::err_explicit_instantiation_undefined_member) 3342 << 1 << Function->getDeclName() << Function->getDeclContext(); 3343 3344 if (PatternDecl) 3345 Diag(PatternDecl->getLocation(), 3346 diag::note_explicit_instantiation_here); 3347 Function->setInvalidDecl(); 3348 } else if (Function->getTemplateSpecializationKind() 3349 == TSK_ExplicitInstantiationDefinition) { 3350 assert(!Recursive); 3351 PendingInstantiations.push_back( 3352 std::make_pair(Function, PointOfInstantiation)); 3353 } 3354 3355 return; 3356 } 3357 3358 // C++1y [temp.explicit]p10: 3359 // Except for inline functions, declarations with types deduced from their 3360 // initializer or return value, and class template specializations, other 3361 // explicit instantiation declarations have the effect of suppressing the 3362 // implicit instantiation of the entity to which they refer. 3363 if (Function->getTemplateSpecializationKind() == 3364 TSK_ExplicitInstantiationDeclaration && 3365 !PatternDecl->isInlined() && 3366 !PatternDecl->getReturnType()->getContainedAutoType()) 3367 return; 3368 3369 if (PatternDecl->isInlined()) { 3370 // Function, and all later redeclarations of it (from imported modules, 3371 // for instance), are now implicitly inline. 3372 for (auto *D = Function->getMostRecentDecl(); /**/; 3373 D = D->getPreviousDecl()) { 3374 D->setImplicitlyInline(); 3375 if (D == Function) 3376 break; 3377 } 3378 } 3379 3380 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function); 3381 if (Inst.isInvalid()) 3382 return; 3383 3384 // Copy the inner loc start from the pattern. 3385 Function->setInnerLocStart(PatternDecl->getInnerLocStart()); 3386 3387 EnterExpressionEvaluationContext EvalContext(*this, 3388 Sema::PotentiallyEvaluated); 3389 3390 // Introduce a new scope where local variable instantiations will be 3391 // recorded, unless we're actually a member function within a local 3392 // class, in which case we need to merge our results with the parent 3393 // scope (of the enclosing function). 3394 bool MergeWithParentScope = false; 3395 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext())) 3396 MergeWithParentScope = Rec->isLocalClass(); 3397 3398 LocalInstantiationScope Scope(*this, MergeWithParentScope); 3399 3400 if (PatternDecl->isDefaulted()) 3401 SetDeclDefaulted(Function, PatternDecl->getLocation()); 3402 else { 3403 MultiLevelTemplateArgumentList TemplateArgs = 3404 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl); 3405 3406 // Substitute into the qualifier; we can get a substitution failure here 3407 // through evil use of alias templates. 3408 // FIXME: Is CurContext correct for this? Should we go to the (instantiation 3409 // of the) lexical context of the pattern? 3410 SubstQualifier(*this, PatternDecl, Function, TemplateArgs); 3411 3412 ActOnStartOfFunctionDef(nullptr, Function); 3413 3414 // Enter the scope of this instantiation. We don't use 3415 // PushDeclContext because we don't have a scope. 3416 Sema::ContextRAII savedContext(*this, Function); 3417 3418 if (addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope, 3419 TemplateArgs)) 3420 return; 3421 3422 // If this is a constructor, instantiate the member initializers. 3423 if (const CXXConstructorDecl *Ctor = 3424 dyn_cast<CXXConstructorDecl>(PatternDecl)) { 3425 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor, 3426 TemplateArgs); 3427 } 3428 3429 // Instantiate the function body. 3430 StmtResult Body = SubstStmt(Pattern, TemplateArgs); 3431 3432 if (Body.isInvalid()) 3433 Function->setInvalidDecl(); 3434 3435 ActOnFinishFunctionBody(Function, Body.get(), 3436 /*IsInstantiation=*/true); 3437 3438 PerformDependentDiagnostics(PatternDecl, TemplateArgs); 3439 3440 if (auto *Listener = getASTMutationListener()) 3441 Listener->FunctionDefinitionInstantiated(Function); 3442 3443 savedContext.pop(); 3444 } 3445 3446 DeclGroupRef DG(Function); 3447 Consumer.HandleTopLevelDecl(DG); 3448 3449 // This class may have local implicit instantiations that need to be 3450 // instantiation within this scope. 3451 PerformPendingInstantiations(/*LocalOnly=*/true); 3452 Scope.Exit(); 3453 3454 if (Recursive) { 3455 // Define any pending vtables. 3456 DefineUsedVTables(); 3457 3458 // Instantiate any pending implicit instantiations found during the 3459 // instantiation of this template. 3460 PerformPendingInstantiations(); 3461 3462 // PendingInstantiations and VTableUses are restored through 3463 // SavePendingInstantiationsAndVTableUses's destructor. 3464 } 3465 } 3466 3467 VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation( 3468 VarTemplateDecl *VarTemplate, VarDecl *FromVar, 3469 const TemplateArgumentList &TemplateArgList, 3470 const TemplateArgumentListInfo &TemplateArgsInfo, 3471 SmallVectorImpl<TemplateArgument> &Converted, 3472 SourceLocation PointOfInstantiation, void *InsertPos, 3473 LateInstantiatedAttrVec *LateAttrs, 3474 LocalInstantiationScope *StartingScope) { 3475 if (FromVar->isInvalidDecl()) 3476 return nullptr; 3477 3478 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar); 3479 if (Inst.isInvalid()) 3480 return nullptr; 3481 3482 MultiLevelTemplateArgumentList TemplateArgLists; 3483 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList); 3484 3485 // Instantiate the first declaration of the variable template: for a partial 3486 // specialization of a static data member template, the first declaration may 3487 // or may not be the declaration in the class; if it's in the class, we want 3488 // to instantiate a member in the class (a declaration), and if it's outside, 3489 // we want to instantiate a definition. 3490 // 3491 // If we're instantiating an explicitly-specialized member template or member 3492 // partial specialization, don't do this. The member specialization completely 3493 // replaces the original declaration in this case. 3494 bool IsMemberSpec = false; 3495 if (VarTemplatePartialSpecializationDecl *PartialSpec = 3496 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar)) 3497 IsMemberSpec = PartialSpec->isMemberSpecialization(); 3498 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate()) 3499 IsMemberSpec = FromTemplate->isMemberSpecialization(); 3500 if (!IsMemberSpec) 3501 FromVar = FromVar->getFirstDecl(); 3502 3503 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList); 3504 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(), 3505 MultiLevelList); 3506 3507 // TODO: Set LateAttrs and StartingScope ... 3508 3509 return cast_or_null<VarTemplateSpecializationDecl>( 3510 Instantiator.VisitVarTemplateSpecializationDecl( 3511 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted)); 3512 } 3513 3514 /// \brief Instantiates a variable template specialization by completing it 3515 /// with appropriate type information and initializer. 3516 VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl( 3517 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl, 3518 const MultiLevelTemplateArgumentList &TemplateArgs) { 3519 3520 // Do substitution on the type of the declaration 3521 TypeSourceInfo *DI = 3522 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs, 3523 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName()); 3524 if (!DI) 3525 return nullptr; 3526 3527 // Update the type of this variable template specialization. 3528 VarSpec->setType(DI->getType()); 3529 3530 // Instantiate the initializer. 3531 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs); 3532 3533 return VarSpec; 3534 } 3535 3536 /// BuildVariableInstantiation - Used after a new variable has been created. 3537 /// Sets basic variable data and decides whether to postpone the 3538 /// variable instantiation. 3539 void Sema::BuildVariableInstantiation( 3540 VarDecl *NewVar, VarDecl *OldVar, 3541 const MultiLevelTemplateArgumentList &TemplateArgs, 3542 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner, 3543 LocalInstantiationScope *StartingScope, 3544 bool InstantiatingVarTemplate) { 3545 3546 // If we are instantiating a local extern declaration, the 3547 // instantiation belongs lexically to the containing function. 3548 // If we are instantiating a static data member defined 3549 // out-of-line, the instantiation will have the same lexical 3550 // context (which will be a namespace scope) as the template. 3551 if (OldVar->isLocalExternDecl()) { 3552 NewVar->setLocalExternDecl(); 3553 NewVar->setLexicalDeclContext(Owner); 3554 } else if (OldVar->isOutOfLine()) 3555 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext()); 3556 NewVar->setTSCSpec(OldVar->getTSCSpec()); 3557 NewVar->setInitStyle(OldVar->getInitStyle()); 3558 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl()); 3559 NewVar->setConstexpr(OldVar->isConstexpr()); 3560 NewVar->setInitCapture(OldVar->isInitCapture()); 3561 NewVar->setPreviousDeclInSameBlockScope( 3562 OldVar->isPreviousDeclInSameBlockScope()); 3563 NewVar->setAccess(OldVar->getAccess()); 3564 3565 if (!OldVar->isStaticDataMember()) { 3566 if (OldVar->isUsed(false)) 3567 NewVar->setIsUsed(); 3568 NewVar->setReferenced(OldVar->isReferenced()); 3569 } 3570 3571 // See if the old variable had a type-specifier that defined an anonymous tag. 3572 // If it did, mark the new variable as being the declarator for the new 3573 // anonymous tag. 3574 if (const TagType *OldTagType = OldVar->getType()->getAs<TagType>()) { 3575 TagDecl *OldTag = OldTagType->getDecl(); 3576 if (OldTag->getDeclaratorForAnonDecl() == OldVar) { 3577 TagDecl *NewTag = NewVar->getType()->castAs<TagType>()->getDecl(); 3578 assert(!NewTag->hasNameForLinkage() && 3579 !NewTag->hasDeclaratorForAnonDecl()); 3580 NewTag->setDeclaratorForAnonDecl(NewVar); 3581 } 3582 } 3583 3584 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope); 3585 3586 LookupResult Previous( 3587 *this, NewVar->getDeclName(), NewVar->getLocation(), 3588 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage 3589 : Sema::LookupOrdinaryName, 3590 Sema::ForRedeclaration); 3591 3592 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() && 3593 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() || 3594 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) { 3595 // We have a previous declaration. Use that one, so we merge with the 3596 // right type. 3597 if (NamedDecl *NewPrev = FindInstantiatedDecl( 3598 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs)) 3599 Previous.addDecl(NewPrev); 3600 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) && 3601 OldVar->hasLinkage()) 3602 LookupQualifiedName(Previous, NewVar->getDeclContext(), false); 3603 CheckVariableDeclaration(NewVar, Previous); 3604 3605 if (!InstantiatingVarTemplate) { 3606 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar); 3607 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl()) 3608 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar); 3609 } 3610 3611 if (!OldVar->isOutOfLine()) { 3612 if (NewVar->getDeclContext()->isFunctionOrMethod()) 3613 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar); 3614 } 3615 3616 // Link instantiations of static data members back to the template from 3617 // which they were instantiated. 3618 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate) 3619 NewVar->setInstantiationOfStaticDataMember(OldVar, 3620 TSK_ImplicitInstantiation); 3621 3622 // Forward the mangling number from the template to the instantiated decl. 3623 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar)); 3624 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar)); 3625 3626 // Delay instantiation of the initializer for variable templates until a 3627 // definition of the variable is needed. We need it right away if the type 3628 // contains 'auto'. 3629 if ((!isa<VarTemplateSpecializationDecl>(NewVar) && 3630 !InstantiatingVarTemplate) || 3631 NewVar->getType()->isUndeducedType()) 3632 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs); 3633 3634 // Diagnose unused local variables with dependent types, where the diagnostic 3635 // will have been deferred. 3636 if (!NewVar->isInvalidDecl() && 3637 NewVar->getDeclContext()->isFunctionOrMethod() && 3638 OldVar->getType()->isDependentType()) 3639 DiagnoseUnusedDecl(NewVar); 3640 } 3641 3642 /// \brief Instantiate the initializer of a variable. 3643 void Sema::InstantiateVariableInitializer( 3644 VarDecl *Var, VarDecl *OldVar, 3645 const MultiLevelTemplateArgumentList &TemplateArgs) { 3646 3647 if (Var->getAnyInitializer()) 3648 // We already have an initializer in the class. 3649 return; 3650 3651 if (OldVar->getInit()) { 3652 if (Var->isStaticDataMember() && !OldVar->isOutOfLine()) 3653 PushExpressionEvaluationContext(Sema::ConstantEvaluated, OldVar); 3654 else 3655 PushExpressionEvaluationContext(Sema::PotentiallyEvaluated, OldVar); 3656 3657 // Instantiate the initializer. 3658 ExprResult Init = 3659 SubstInitializer(OldVar->getInit(), TemplateArgs, 3660 OldVar->getInitStyle() == VarDecl::CallInit); 3661 if (!Init.isInvalid()) { 3662 bool TypeMayContainAuto = true; 3663 Expr *InitExpr = Init.get(); 3664 3665 if (Var->hasAttr<DLLImportAttr>() && 3666 (!InitExpr || 3667 !InitExpr->isConstantInitializer(getASTContext(), false))) { 3668 // Do not dynamically initialize dllimport variables. 3669 } else if (InitExpr) { 3670 bool DirectInit = OldVar->isDirectInit(); 3671 AddInitializerToDecl(Var, InitExpr, DirectInit, TypeMayContainAuto); 3672 } else 3673 ActOnUninitializedDecl(Var, TypeMayContainAuto); 3674 } else { 3675 // FIXME: Not too happy about invalidating the declaration 3676 // because of a bogus initializer. 3677 Var->setInvalidDecl(); 3678 } 3679 3680 PopExpressionEvaluationContext(); 3681 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) && 3682 !Var->isCXXForRangeDecl()) 3683 ActOnUninitializedDecl(Var, false); 3684 } 3685 3686 /// \brief Instantiate the definition of the given variable from its 3687 /// template. 3688 /// 3689 /// \param PointOfInstantiation the point at which the instantiation was 3690 /// required. Note that this is not precisely a "point of instantiation" 3691 /// for the function, but it's close. 3692 /// 3693 /// \param Var the already-instantiated declaration of a static member 3694 /// variable of a class template specialization. 3695 /// 3696 /// \param Recursive if true, recursively instantiates any functions that 3697 /// are required by this instantiation. 3698 /// 3699 /// \param DefinitionRequired if true, then we are performing an explicit 3700 /// instantiation where an out-of-line definition of the member variable 3701 /// is required. Complain if there is no such definition. 3702 void Sema::InstantiateStaticDataMemberDefinition( 3703 SourceLocation PointOfInstantiation, 3704 VarDecl *Var, 3705 bool Recursive, 3706 bool DefinitionRequired) { 3707 InstantiateVariableDefinition(PointOfInstantiation, Var, Recursive, 3708 DefinitionRequired); 3709 } 3710 3711 void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation, 3712 VarDecl *Var, bool Recursive, 3713 bool DefinitionRequired) { 3714 if (Var->isInvalidDecl()) 3715 return; 3716 3717 VarTemplateSpecializationDecl *VarSpec = 3718 dyn_cast<VarTemplateSpecializationDecl>(Var); 3719 VarDecl *PatternDecl = nullptr, *Def = nullptr; 3720 MultiLevelTemplateArgumentList TemplateArgs = 3721 getTemplateInstantiationArgs(Var); 3722 3723 if (VarSpec) { 3724 // If this is a variable template specialization, make sure that it is 3725 // non-dependent, then find its instantiation pattern. 3726 bool InstantiationDependent = false; 3727 assert(!TemplateSpecializationType::anyDependentTemplateArguments( 3728 VarSpec->getTemplateArgsInfo(), InstantiationDependent) && 3729 "Only instantiate variable template specializations that are " 3730 "not type-dependent"); 3731 (void)InstantiationDependent; 3732 3733 // Find the variable initialization that we'll be substituting. If the 3734 // pattern was instantiated from a member template, look back further to 3735 // find the real pattern. 3736 assert(VarSpec->getSpecializedTemplate() && 3737 "Specialization without specialized template?"); 3738 llvm::PointerUnion<VarTemplateDecl *, 3739 VarTemplatePartialSpecializationDecl *> PatternPtr = 3740 VarSpec->getSpecializedTemplateOrPartial(); 3741 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) { 3742 VarTemplatePartialSpecializationDecl *Tmpl = 3743 PatternPtr.get<VarTemplatePartialSpecializationDecl *>(); 3744 while (VarTemplatePartialSpecializationDecl *From = 3745 Tmpl->getInstantiatedFromMember()) { 3746 if (Tmpl->isMemberSpecialization()) 3747 break; 3748 3749 Tmpl = From; 3750 } 3751 PatternDecl = Tmpl; 3752 } else { 3753 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>(); 3754 while (VarTemplateDecl *From = 3755 Tmpl->getInstantiatedFromMemberTemplate()) { 3756 if (Tmpl->isMemberSpecialization()) 3757 break; 3758 3759 Tmpl = From; 3760 } 3761 PatternDecl = Tmpl->getTemplatedDecl(); 3762 } 3763 3764 // If this is a static data member template, there might be an 3765 // uninstantiated initializer on the declaration. If so, instantiate 3766 // it now. 3767 if (PatternDecl->isStaticDataMember() && 3768 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() && 3769 !Var->hasInit()) { 3770 // FIXME: Factor out the duplicated instantiation context setup/tear down 3771 // code here. 3772 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var); 3773 if (Inst.isInvalid()) 3774 return; 3775 3776 // If we're performing recursive template instantiation, create our own 3777 // queue of pending implicit instantiations that we will instantiate 3778 // later, while we're still within our own instantiation context. 3779 SavePendingInstantiationsAndVTableUsesRAII 3780 SavePendingInstantiationsAndVTableUses(*this, /*Enabled=*/Recursive); 3781 3782 LocalInstantiationScope Local(*this); 3783 3784 // Enter the scope of this instantiation. We don't use 3785 // PushDeclContext because we don't have a scope. 3786 ContextRAII PreviousContext(*this, Var->getDeclContext()); 3787 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs); 3788 PreviousContext.pop(); 3789 3790 // FIXME: Need to inform the ASTConsumer that we instantiated the 3791 // initializer? 3792 3793 // This variable may have local implicit instantiations that need to be 3794 // instantiated within this scope. 3795 PerformPendingInstantiations(/*LocalOnly=*/true); 3796 3797 Local.Exit(); 3798 3799 if (Recursive) { 3800 // Define any newly required vtables. 3801 DefineUsedVTables(); 3802 3803 // Instantiate any pending implicit instantiations found during the 3804 // instantiation of this template. 3805 PerformPendingInstantiations(); 3806 3807 // PendingInstantiations and VTableUses are restored through 3808 // SavePendingInstantiationsAndVTableUses's destructor. 3809 } 3810 } 3811 3812 // Find actual definition 3813 Def = PatternDecl->getDefinition(getASTContext()); 3814 } else { 3815 // If this is a static data member, find its out-of-line definition. 3816 assert(Var->isStaticDataMember() && "not a static data member?"); 3817 PatternDecl = Var->getInstantiatedFromStaticDataMember(); 3818 3819 assert(PatternDecl && "data member was not instantiated from a template?"); 3820 assert(PatternDecl->isStaticDataMember() && "not a static data member?"); 3821 Def = PatternDecl->getOutOfLineDefinition(); 3822 } 3823 3824 // If we don't have a definition of the variable template, we won't perform 3825 // any instantiation. Rather, we rely on the user to instantiate this 3826 // definition (or provide a specialization for it) in another translation 3827 // unit. 3828 if (!Def) { 3829 if (DefinitionRequired) { 3830 if (VarSpec) 3831 Diag(PointOfInstantiation, 3832 diag::err_explicit_instantiation_undefined_var_template) << Var; 3833 else 3834 Diag(PointOfInstantiation, 3835 diag::err_explicit_instantiation_undefined_member) 3836 << 2 << Var->getDeclName() << Var->getDeclContext(); 3837 Diag(PatternDecl->getLocation(), 3838 diag::note_explicit_instantiation_here); 3839 if (VarSpec) 3840 Var->setInvalidDecl(); 3841 } else if (Var->getTemplateSpecializationKind() 3842 == TSK_ExplicitInstantiationDefinition) { 3843 PendingInstantiations.push_back( 3844 std::make_pair(Var, PointOfInstantiation)); 3845 } 3846 3847 return; 3848 } 3849 3850 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind(); 3851 3852 // Never instantiate an explicit specialization. 3853 if (TSK == TSK_ExplicitSpecialization) 3854 return; 3855 3856 // C++11 [temp.explicit]p10: 3857 // Except for inline functions, [...] explicit instantiation declarations 3858 // have the effect of suppressing the implicit instantiation of the entity 3859 // to which they refer. 3860 if (TSK == TSK_ExplicitInstantiationDeclaration) 3861 return; 3862 3863 // Make sure to pass the instantiated variable to the consumer at the end. 3864 struct PassToConsumerRAII { 3865 ASTConsumer &Consumer; 3866 VarDecl *Var; 3867 3868 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var) 3869 : Consumer(Consumer), Var(Var) { } 3870 3871 ~PassToConsumerRAII() { 3872 Consumer.HandleCXXStaticMemberVarInstantiation(Var); 3873 } 3874 } PassToConsumerRAII(Consumer, Var); 3875 3876 // If we already have a definition, we're done. 3877 if (VarDecl *Def = Var->getDefinition()) { 3878 // We may be explicitly instantiating something we've already implicitly 3879 // instantiated. 3880 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(), 3881 PointOfInstantiation); 3882 return; 3883 } 3884 3885 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var); 3886 if (Inst.isInvalid()) 3887 return; 3888 3889 // If we're performing recursive template instantiation, create our own 3890 // queue of pending implicit instantiations that we will instantiate later, 3891 // while we're still within our own instantiation context. 3892 SavePendingLocalImplicitInstantiationsRAII 3893 SavedPendingLocalImplicitInstantiations(*this); 3894 SavePendingInstantiationsAndVTableUsesRAII 3895 SavePendingInstantiationsAndVTableUses(*this, /*Enabled=*/Recursive); 3896 3897 // Enter the scope of this instantiation. We don't use 3898 // PushDeclContext because we don't have a scope. 3899 ContextRAII PreviousContext(*this, Var->getDeclContext()); 3900 LocalInstantiationScope Local(*this); 3901 3902 VarDecl *OldVar = Var; 3903 if (!VarSpec) 3904 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(), 3905 TemplateArgs)); 3906 else if (Var->isStaticDataMember() && 3907 Var->getLexicalDeclContext()->isRecord()) { 3908 // We need to instantiate the definition of a static data member template, 3909 // and all we have is the in-class declaration of it. Instantiate a separate 3910 // declaration of the definition. 3911 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(), 3912 TemplateArgs); 3913 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl( 3914 VarSpec->getSpecializedTemplate(), Def, nullptr, 3915 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray())); 3916 if (Var) { 3917 llvm::PointerUnion<VarTemplateDecl *, 3918 VarTemplatePartialSpecializationDecl *> PatternPtr = 3919 VarSpec->getSpecializedTemplateOrPartial(); 3920 if (VarTemplatePartialSpecializationDecl *Partial = 3921 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>()) 3922 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf( 3923 Partial, &VarSpec->getTemplateInstantiationArgs()); 3924 3925 // Merge the definition with the declaration. 3926 LookupResult R(*this, Var->getDeclName(), Var->getLocation(), 3927 LookupOrdinaryName, ForRedeclaration); 3928 R.addDecl(OldVar); 3929 MergeVarDecl(Var, R); 3930 3931 // Attach the initializer. 3932 InstantiateVariableInitializer(Var, Def, TemplateArgs); 3933 } 3934 } else 3935 // Complete the existing variable's definition with an appropriately 3936 // substituted type and initializer. 3937 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs); 3938 3939 PreviousContext.pop(); 3940 3941 if (Var) { 3942 PassToConsumerRAII.Var = Var; 3943 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(), 3944 OldVar->getPointOfInstantiation()); 3945 } 3946 3947 // This variable may have local implicit instantiations that need to be 3948 // instantiated within this scope. 3949 PerformPendingInstantiations(/*LocalOnly=*/true); 3950 3951 Local.Exit(); 3952 3953 if (Recursive) { 3954 // Define any newly required vtables. 3955 DefineUsedVTables(); 3956 3957 // Instantiate any pending implicit instantiations found during the 3958 // instantiation of this template. 3959 PerformPendingInstantiations(); 3960 3961 // PendingInstantiations and VTableUses are restored through 3962 // SavePendingInstantiationsAndVTableUses's destructor. 3963 } 3964 } 3965 3966 void 3967 Sema::InstantiateMemInitializers(CXXConstructorDecl *New, 3968 const CXXConstructorDecl *Tmpl, 3969 const MultiLevelTemplateArgumentList &TemplateArgs) { 3970 3971 SmallVector<CXXCtorInitializer*, 4> NewInits; 3972 bool AnyErrors = Tmpl->isInvalidDecl(); 3973 3974 // Instantiate all the initializers. 3975 for (const auto *Init : Tmpl->inits()) { 3976 // Only instantiate written initializers, let Sema re-construct implicit 3977 // ones. 3978 if (!Init->isWritten()) 3979 continue; 3980 3981 SourceLocation EllipsisLoc; 3982 3983 if (Init->isPackExpansion()) { 3984 // This is a pack expansion. We should expand it now. 3985 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc(); 3986 SmallVector<UnexpandedParameterPack, 4> Unexpanded; 3987 collectUnexpandedParameterPacks(BaseTL, Unexpanded); 3988 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded); 3989 bool ShouldExpand = false; 3990 bool RetainExpansion = false; 3991 Optional<unsigned> NumExpansions; 3992 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(), 3993 BaseTL.getSourceRange(), 3994 Unexpanded, 3995 TemplateArgs, ShouldExpand, 3996 RetainExpansion, 3997 NumExpansions)) { 3998 AnyErrors = true; 3999 New->setInvalidDecl(); 4000 continue; 4001 } 4002 assert(ShouldExpand && "Partial instantiation of base initializer?"); 4003 4004 // Loop over all of the arguments in the argument pack(s), 4005 for (unsigned I = 0; I != *NumExpansions; ++I) { 4006 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I); 4007 4008 // Instantiate the initializer. 4009 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs, 4010 /*CXXDirectInit=*/true); 4011 if (TempInit.isInvalid()) { 4012 AnyErrors = true; 4013 break; 4014 } 4015 4016 // Instantiate the base type. 4017 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(), 4018 TemplateArgs, 4019 Init->getSourceLocation(), 4020 New->getDeclName()); 4021 if (!BaseTInfo) { 4022 AnyErrors = true; 4023 break; 4024 } 4025 4026 // Build the initializer. 4027 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(), 4028 BaseTInfo, TempInit.get(), 4029 New->getParent(), 4030 SourceLocation()); 4031 if (NewInit.isInvalid()) { 4032 AnyErrors = true; 4033 break; 4034 } 4035 4036 NewInits.push_back(NewInit.get()); 4037 } 4038 4039 continue; 4040 } 4041 4042 // Instantiate the initializer. 4043 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs, 4044 /*CXXDirectInit=*/true); 4045 if (TempInit.isInvalid()) { 4046 AnyErrors = true; 4047 continue; 4048 } 4049 4050 MemInitResult NewInit; 4051 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) { 4052 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(), 4053 TemplateArgs, 4054 Init->getSourceLocation(), 4055 New->getDeclName()); 4056 if (!TInfo) { 4057 AnyErrors = true; 4058 New->setInvalidDecl(); 4059 continue; 4060 } 4061 4062 if (Init->isBaseInitializer()) 4063 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(), 4064 New->getParent(), EllipsisLoc); 4065 else 4066 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(), 4067 cast<CXXRecordDecl>(CurContext->getParent())); 4068 } else if (Init->isMemberInitializer()) { 4069 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl( 4070 Init->getMemberLocation(), 4071 Init->getMember(), 4072 TemplateArgs)); 4073 if (!Member) { 4074 AnyErrors = true; 4075 New->setInvalidDecl(); 4076 continue; 4077 } 4078 4079 NewInit = BuildMemberInitializer(Member, TempInit.get(), 4080 Init->getSourceLocation()); 4081 } else if (Init->isIndirectMemberInitializer()) { 4082 IndirectFieldDecl *IndirectMember = 4083 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl( 4084 Init->getMemberLocation(), 4085 Init->getIndirectMember(), TemplateArgs)); 4086 4087 if (!IndirectMember) { 4088 AnyErrors = true; 4089 New->setInvalidDecl(); 4090 continue; 4091 } 4092 4093 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(), 4094 Init->getSourceLocation()); 4095 } 4096 4097 if (NewInit.isInvalid()) { 4098 AnyErrors = true; 4099 New->setInvalidDecl(); 4100 } else { 4101 NewInits.push_back(NewInit.get()); 4102 } 4103 } 4104 4105 // Assign all the initializers to the new constructor. 4106 ActOnMemInitializers(New, 4107 /*FIXME: ColonLoc */ 4108 SourceLocation(), 4109 NewInits, 4110 AnyErrors); 4111 } 4112 4113 // TODO: this could be templated if the various decl types used the 4114 // same method name. 4115 static bool isInstantiationOf(ClassTemplateDecl *Pattern, 4116 ClassTemplateDecl *Instance) { 4117 Pattern = Pattern->getCanonicalDecl(); 4118 4119 do { 4120 Instance = Instance->getCanonicalDecl(); 4121 if (Pattern == Instance) return true; 4122 Instance = Instance->getInstantiatedFromMemberTemplate(); 4123 } while (Instance); 4124 4125 return false; 4126 } 4127 4128 static bool isInstantiationOf(FunctionTemplateDecl *Pattern, 4129 FunctionTemplateDecl *Instance) { 4130 Pattern = Pattern->getCanonicalDecl(); 4131 4132 do { 4133 Instance = Instance->getCanonicalDecl(); 4134 if (Pattern == Instance) return true; 4135 Instance = Instance->getInstantiatedFromMemberTemplate(); 4136 } while (Instance); 4137 4138 return false; 4139 } 4140 4141 static bool 4142 isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern, 4143 ClassTemplatePartialSpecializationDecl *Instance) { 4144 Pattern 4145 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl()); 4146 do { 4147 Instance = cast<ClassTemplatePartialSpecializationDecl>( 4148 Instance->getCanonicalDecl()); 4149 if (Pattern == Instance) 4150 return true; 4151 Instance = Instance->getInstantiatedFromMember(); 4152 } while (Instance); 4153 4154 return false; 4155 } 4156 4157 static bool isInstantiationOf(CXXRecordDecl *Pattern, 4158 CXXRecordDecl *Instance) { 4159 Pattern = Pattern->getCanonicalDecl(); 4160 4161 do { 4162 Instance = Instance->getCanonicalDecl(); 4163 if (Pattern == Instance) return true; 4164 Instance = Instance->getInstantiatedFromMemberClass(); 4165 } while (Instance); 4166 4167 return false; 4168 } 4169 4170 static bool isInstantiationOf(FunctionDecl *Pattern, 4171 FunctionDecl *Instance) { 4172 Pattern = Pattern->getCanonicalDecl(); 4173 4174 do { 4175 Instance = Instance->getCanonicalDecl(); 4176 if (Pattern == Instance) return true; 4177 Instance = Instance->getInstantiatedFromMemberFunction(); 4178 } while (Instance); 4179 4180 return false; 4181 } 4182 4183 static bool isInstantiationOf(EnumDecl *Pattern, 4184 EnumDecl *Instance) { 4185 Pattern = Pattern->getCanonicalDecl(); 4186 4187 do { 4188 Instance = Instance->getCanonicalDecl(); 4189 if (Pattern == Instance) return true; 4190 Instance = Instance->getInstantiatedFromMemberEnum(); 4191 } while (Instance); 4192 4193 return false; 4194 } 4195 4196 static bool isInstantiationOf(UsingShadowDecl *Pattern, 4197 UsingShadowDecl *Instance, 4198 ASTContext &C) { 4199 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance), 4200 Pattern); 4201 } 4202 4203 static bool isInstantiationOf(UsingDecl *Pattern, 4204 UsingDecl *Instance, 4205 ASTContext &C) { 4206 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4207 } 4208 4209 static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern, 4210 UsingDecl *Instance, 4211 ASTContext &C) { 4212 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4213 } 4214 4215 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, 4216 UsingDecl *Instance, 4217 ASTContext &C) { 4218 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); 4219 } 4220 4221 static bool isInstantiationOfStaticDataMember(VarDecl *Pattern, 4222 VarDecl *Instance) { 4223 assert(Instance->isStaticDataMember()); 4224 4225 Pattern = Pattern->getCanonicalDecl(); 4226 4227 do { 4228 Instance = Instance->getCanonicalDecl(); 4229 if (Pattern == Instance) return true; 4230 Instance = Instance->getInstantiatedFromStaticDataMember(); 4231 } while (Instance); 4232 4233 return false; 4234 } 4235 4236 // Other is the prospective instantiation 4237 // D is the prospective pattern 4238 static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) { 4239 if (D->getKind() != Other->getKind()) { 4240 if (UnresolvedUsingTypenameDecl *UUD 4241 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 4242 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { 4243 return isInstantiationOf(UUD, UD, Ctx); 4244 } 4245 } 4246 4247 if (UnresolvedUsingValueDecl *UUD 4248 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 4249 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { 4250 return isInstantiationOf(UUD, UD, Ctx); 4251 } 4252 } 4253 4254 return false; 4255 } 4256 4257 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other)) 4258 return isInstantiationOf(cast<CXXRecordDecl>(D), Record); 4259 4260 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other)) 4261 return isInstantiationOf(cast<FunctionDecl>(D), Function); 4262 4263 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other)) 4264 return isInstantiationOf(cast<EnumDecl>(D), Enum); 4265 4266 if (VarDecl *Var = dyn_cast<VarDecl>(Other)) 4267 if (Var->isStaticDataMember()) 4268 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var); 4269 4270 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other)) 4271 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp); 4272 4273 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other)) 4274 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp); 4275 4276 if (ClassTemplatePartialSpecializationDecl *PartialSpec 4277 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other)) 4278 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D), 4279 PartialSpec); 4280 4281 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) { 4282 if (!Field->getDeclName()) { 4283 // This is an unnamed field. 4284 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field), 4285 cast<FieldDecl>(D)); 4286 } 4287 } 4288 4289 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other)) 4290 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx); 4291 4292 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other)) 4293 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx); 4294 4295 return D->getDeclName() && isa<NamedDecl>(Other) && 4296 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName(); 4297 } 4298 4299 template<typename ForwardIterator> 4300 static NamedDecl *findInstantiationOf(ASTContext &Ctx, 4301 NamedDecl *D, 4302 ForwardIterator first, 4303 ForwardIterator last) { 4304 for (; first != last; ++first) 4305 if (isInstantiationOf(Ctx, D, *first)) 4306 return cast<NamedDecl>(*first); 4307 4308 return nullptr; 4309 } 4310 4311 /// \brief Finds the instantiation of the given declaration context 4312 /// within the current instantiation. 4313 /// 4314 /// \returns NULL if there was an error 4315 DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC, 4316 const MultiLevelTemplateArgumentList &TemplateArgs) { 4317 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) { 4318 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs); 4319 return cast_or_null<DeclContext>(ID); 4320 } else return DC; 4321 } 4322 4323 /// \brief Find the instantiation of the given declaration within the 4324 /// current instantiation. 4325 /// 4326 /// This routine is intended to be used when \p D is a declaration 4327 /// referenced from within a template, that needs to mapped into the 4328 /// corresponding declaration within an instantiation. For example, 4329 /// given: 4330 /// 4331 /// \code 4332 /// template<typename T> 4333 /// struct X { 4334 /// enum Kind { 4335 /// KnownValue = sizeof(T) 4336 /// }; 4337 /// 4338 /// bool getKind() const { return KnownValue; } 4339 /// }; 4340 /// 4341 /// template struct X<int>; 4342 /// \endcode 4343 /// 4344 /// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the 4345 /// \p EnumConstantDecl for \p KnownValue (which refers to 4346 /// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation 4347 /// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs 4348 /// this mapping from within the instantiation of <tt>X<int></tt>. 4349 NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D, 4350 const MultiLevelTemplateArgumentList &TemplateArgs) { 4351 DeclContext *ParentDC = D->getDeclContext(); 4352 // FIXME: Parmeters of pointer to functions (y below) that are themselves 4353 // parameters (p below) can have their ParentDC set to the translation-unit 4354 // - thus we can not consistently check if the ParentDC of such a parameter 4355 // is Dependent or/and a FunctionOrMethod. 4356 // For e.g. this code, during Template argument deduction tries to 4357 // find an instantiated decl for (T y) when the ParentDC for y is 4358 // the translation unit. 4359 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {} 4360 // float baz(float(*)()) { return 0.0; } 4361 // Foo(baz); 4362 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time 4363 // it gets here, always has a FunctionOrMethod as its ParentDC?? 4364 // For now: 4365 // - as long as we have a ParmVarDecl whose parent is non-dependent and 4366 // whose type is not instantiation dependent, do nothing to the decl 4367 // - otherwise find its instantiated decl. 4368 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() && 4369 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType()) 4370 return D; 4371 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) || 4372 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) || 4373 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) || 4374 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) { 4375 // D is a local of some kind. Look into the map of local 4376 // declarations to their instantiations. 4377 if (CurrentInstantiationScope) { 4378 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) { 4379 if (Decl *FD = Found->dyn_cast<Decl *>()) 4380 return cast<NamedDecl>(FD); 4381 4382 int PackIdx = ArgumentPackSubstitutionIndex; 4383 assert(PackIdx != -1 && 4384 "found declaration pack but not pack expanding"); 4385 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack; 4386 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]); 4387 } 4388 } 4389 4390 // If we're performing a partial substitution during template argument 4391 // deduction, we may not have values for template parameters yet. They 4392 // just map to themselves. 4393 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) || 4394 isa<TemplateTemplateParmDecl>(D)) 4395 return D; 4396 4397 if (D->isInvalidDecl()) 4398 return nullptr; 4399 4400 // If we didn't find the decl, then we must have a label decl that hasn't 4401 // been found yet. Lazily instantiate it and return it now. 4402 assert(isa<LabelDecl>(D)); 4403 4404 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs); 4405 assert(Inst && "Failed to instantiate label??"); 4406 4407 CurrentInstantiationScope->InstantiatedLocal(D, Inst); 4408 return cast<LabelDecl>(Inst); 4409 } 4410 4411 // For variable template specializations, update those that are still 4412 // type-dependent. 4413 if (VarTemplateSpecializationDecl *VarSpec = 4414 dyn_cast<VarTemplateSpecializationDecl>(D)) { 4415 bool InstantiationDependent = false; 4416 const TemplateArgumentListInfo &VarTemplateArgs = 4417 VarSpec->getTemplateArgsInfo(); 4418 if (TemplateSpecializationType::anyDependentTemplateArguments( 4419 VarTemplateArgs, InstantiationDependent)) 4420 D = cast<NamedDecl>( 4421 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs)); 4422 return D; 4423 } 4424 4425 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { 4426 if (!Record->isDependentContext()) 4427 return D; 4428 4429 // Determine whether this record is the "templated" declaration describing 4430 // a class template or class template partial specialization. 4431 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate(); 4432 if (ClassTemplate) 4433 ClassTemplate = ClassTemplate->getCanonicalDecl(); 4434 else if (ClassTemplatePartialSpecializationDecl *PartialSpec 4435 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) 4436 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl(); 4437 4438 // Walk the current context to find either the record or an instantiation of 4439 // it. 4440 DeclContext *DC = CurContext; 4441 while (!DC->isFileContext()) { 4442 // If we're performing substitution while we're inside the template 4443 // definition, we'll find our own context. We're done. 4444 if (DC->Equals(Record)) 4445 return Record; 4446 4447 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) { 4448 // Check whether we're in the process of instantiating a class template 4449 // specialization of the template we're mapping. 4450 if (ClassTemplateSpecializationDecl *InstSpec 4451 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){ 4452 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate(); 4453 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate)) 4454 return InstRecord; 4455 } 4456 4457 // Check whether we're in the process of instantiating a member class. 4458 if (isInstantiationOf(Record, InstRecord)) 4459 return InstRecord; 4460 } 4461 4462 // Move to the outer template scope. 4463 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) { 4464 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){ 4465 DC = FD->getLexicalDeclContext(); 4466 continue; 4467 } 4468 } 4469 4470 DC = DC->getParent(); 4471 } 4472 4473 // Fall through to deal with other dependent record types (e.g., 4474 // anonymous unions in class templates). 4475 } 4476 4477 if (!ParentDC->isDependentContext()) 4478 return D; 4479 4480 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs); 4481 if (!ParentDC) 4482 return nullptr; 4483 4484 if (ParentDC != D->getDeclContext()) { 4485 // We performed some kind of instantiation in the parent context, 4486 // so now we need to look into the instantiated parent context to 4487 // find the instantiation of the declaration D. 4488 4489 // If our context used to be dependent, we may need to instantiate 4490 // it before performing lookup into that context. 4491 bool IsBeingInstantiated = false; 4492 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) { 4493 if (!Spec->isDependentContext()) { 4494 QualType T = Context.getTypeDeclType(Spec); 4495 const RecordType *Tag = T->getAs<RecordType>(); 4496 assert(Tag && "type of non-dependent record is not a RecordType"); 4497 if (Tag->isBeingDefined()) 4498 IsBeingInstantiated = true; 4499 if (!Tag->isBeingDefined() && 4500 RequireCompleteType(Loc, T, diag::err_incomplete_type)) 4501 return nullptr; 4502 4503 ParentDC = Tag->getDecl(); 4504 } 4505 } 4506 4507 NamedDecl *Result = nullptr; 4508 if (D->getDeclName()) { 4509 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); 4510 Result = findInstantiationOf(Context, D, Found.begin(), Found.end()); 4511 } else { 4512 // Since we don't have a name for the entity we're looking for, 4513 // our only option is to walk through all of the declarations to 4514 // find that name. This will occur in a few cases: 4515 // 4516 // - anonymous struct/union within a template 4517 // - unnamed class/struct/union/enum within a template 4518 // 4519 // FIXME: Find a better way to find these instantiations! 4520 Result = findInstantiationOf(Context, D, 4521 ParentDC->decls_begin(), 4522 ParentDC->decls_end()); 4523 } 4524 4525 if (!Result) { 4526 if (isa<UsingShadowDecl>(D)) { 4527 // UsingShadowDecls can instantiate to nothing because of using hiding. 4528 } else if (Diags.hasErrorOccurred()) { 4529 // We've already complained about something, so most likely this 4530 // declaration failed to instantiate. There's no point in complaining 4531 // further, since this is normal in invalid code. 4532 } else if (IsBeingInstantiated) { 4533 // The class in which this member exists is currently being 4534 // instantiated, and we haven't gotten around to instantiating this 4535 // member yet. This can happen when the code uses forward declarations 4536 // of member classes, and introduces ordering dependencies via 4537 // template instantiation. 4538 Diag(Loc, diag::err_member_not_yet_instantiated) 4539 << D->getDeclName() 4540 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC)); 4541 Diag(D->getLocation(), diag::note_non_instantiated_member_here); 4542 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) { 4543 // This enumeration constant was found when the template was defined, 4544 // but can't be found in the instantiation. This can happen if an 4545 // unscoped enumeration member is explicitly specialized. 4546 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext()); 4547 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum, 4548 TemplateArgs)); 4549 assert(Spec->getTemplateSpecializationKind() == 4550 TSK_ExplicitSpecialization); 4551 Diag(Loc, diag::err_enumerator_does_not_exist) 4552 << D->getDeclName() 4553 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext())); 4554 Diag(Spec->getLocation(), diag::note_enum_specialized_here) 4555 << Context.getTypeDeclType(Spec); 4556 } else { 4557 // We should have found something, but didn't. 4558 llvm_unreachable("Unable to find instantiation of declaration!"); 4559 } 4560 } 4561 4562 D = Result; 4563 } 4564 4565 return D; 4566 } 4567 4568 /// \brief Performs template instantiation for all implicit template 4569 /// instantiations we have seen until this point. 4570 void Sema::PerformPendingInstantiations(bool LocalOnly) { 4571 while (!PendingLocalImplicitInstantiations.empty() || 4572 (!LocalOnly && !PendingInstantiations.empty())) { 4573 PendingImplicitInstantiation Inst; 4574 4575 if (PendingLocalImplicitInstantiations.empty()) { 4576 Inst = PendingInstantiations.front(); 4577 PendingInstantiations.pop_front(); 4578 } else { 4579 Inst = PendingLocalImplicitInstantiations.front(); 4580 PendingLocalImplicitInstantiations.pop_front(); 4581 } 4582 4583 // Instantiate function definitions 4584 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) { 4585 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(), 4586 "instantiating function definition"); 4587 bool DefinitionRequired = Function->getTemplateSpecializationKind() == 4588 TSK_ExplicitInstantiationDefinition; 4589 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true, 4590 DefinitionRequired); 4591 continue; 4592 } 4593 4594 // Instantiate variable definitions 4595 VarDecl *Var = cast<VarDecl>(Inst.first); 4596 4597 assert((Var->isStaticDataMember() || 4598 isa<VarTemplateSpecializationDecl>(Var)) && 4599 "Not a static data member, nor a variable template" 4600 " specialization?"); 4601 4602 // Don't try to instantiate declarations if the most recent redeclaration 4603 // is invalid. 4604 if (Var->getMostRecentDecl()->isInvalidDecl()) 4605 continue; 4606 4607 // Check if the most recent declaration has changed the specialization kind 4608 // and removed the need for implicit instantiation. 4609 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) { 4610 case TSK_Undeclared: 4611 llvm_unreachable("Cannot instantitiate an undeclared specialization."); 4612 case TSK_ExplicitInstantiationDeclaration: 4613 case TSK_ExplicitSpecialization: 4614 continue; // No longer need to instantiate this type. 4615 case TSK_ExplicitInstantiationDefinition: 4616 // We only need an instantiation if the pending instantiation *is* the 4617 // explicit instantiation. 4618 if (Var != Var->getMostRecentDecl()) continue; 4619 case TSK_ImplicitInstantiation: 4620 break; 4621 } 4622 4623 PrettyDeclStackTraceEntry CrashInfo(*this, Var, SourceLocation(), 4624 "instantiating variable definition"); 4625 bool DefinitionRequired = Var->getTemplateSpecializationKind() == 4626 TSK_ExplicitInstantiationDefinition; 4627 4628 // Instantiate static data member definitions or variable template 4629 // specializations. 4630 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true, 4631 DefinitionRequired); 4632 } 4633 } 4634 4635 void Sema::PerformDependentDiagnostics(const DeclContext *Pattern, 4636 const MultiLevelTemplateArgumentList &TemplateArgs) { 4637 for (auto DD : Pattern->ddiags()) { 4638 switch (DD->getKind()) { 4639 case DependentDiagnostic::Access: 4640 HandleDependentAccessCheck(*DD, TemplateArgs); 4641 break; 4642 } 4643 } 4644 } 4645