| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===/ | 
| John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 12 | #include "clang/Sema/SemaInternal.h" | 
| Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 13 | #include "clang/Sema/Lookup.h" | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 14 | #include "clang/Sema/PrettyDeclStackTrace.h" | 
| John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 15 | #include "clang/Sema/Template.h" | 
| Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTConsumer.h" | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" | 
|  | 18 | #include "clang/AST/DeclTemplate.h" | 
|  | 19 | #include "clang/AST/DeclVisitor.h" | 
| John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 20 | #include "clang/AST/DependentDiagnostic.h" | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 21 | #include "clang/AST/Expr.h" | 
| Douglas Gregor | a88cfbf | 2009-12-12 18:16:41 +0000 | [diff] [blame] | 22 | #include "clang/AST/ExprCXX.h" | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 23 | #include "clang/AST/TypeLoc.h" | 
| Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 24 | #include "clang/Lex/Preprocessor.h" | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 25 |  | 
|  | 26 | using namespace clang; | 
|  | 27 |  | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 28 | bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl, | 
|  | 29 | DeclaratorDecl *NewDecl) { | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 30 | if (!OldDecl->getQualifierLoc()) | 
|  | 31 | return false; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 32 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 33 | NestedNameSpecifierLoc NewQualifierLoc | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 34 | = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(), | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 35 | TemplateArgs); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 36 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 37 | if (!NewQualifierLoc) | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 38 | return true; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 39 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 40 | NewDecl->setQualifierInfo(NewQualifierLoc); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 41 | return false; | 
|  | 42 | } | 
|  | 43 |  | 
|  | 44 | bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl, | 
|  | 45 | TagDecl *NewDecl) { | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 46 | if (!OldDecl->getQualifierLoc()) | 
|  | 47 | return false; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 48 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 49 | NestedNameSpecifierLoc NewQualifierLoc | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 50 | = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(), | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 51 | TemplateArgs); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 52 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 53 | if (!NewQualifierLoc) | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 54 | return true; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 55 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 56 | NewDecl->setQualifierInfo(NewQualifierLoc); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 57 | return false; | 
|  | 58 | } | 
|  | 59 |  | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 60 | // FIXME: Is this still too simple? | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 61 | void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs, | 
| Rafael Espindola | 19f74ac | 2011-07-06 15:46:09 +0000 | [diff] [blame] | 62 | const Decl *Tmpl, Decl *New) { | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 63 | for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end(); | 
|  | 64 | i != e; ++i) { | 
|  | 65 | const Attr *TmplAttr = *i; | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 66 | // FIXME: This should be generalized to more than just the AlignedAttr. | 
|  | 67 | if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) { | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 68 | if (Aligned->isAlignmentDependent()) { | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 69 | // The alignment expression is not potentially evaluated. | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 70 | EnterExpressionEvaluationContext Unevaluated(*this, | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 71 | Sema::Unevaluated); | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 72 |  | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 73 | if (Aligned->isAlignmentExpr()) { | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 74 | ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(), | 
| Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 75 | TemplateArgs); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 76 | if (!Result.isInvalid()) | 
|  | 77 | AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>()); | 
|  | 78 | } | 
|  | 79 | else { | 
|  | 80 | TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(), | 
| Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 81 | TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 82 | Aligned->getLocation(), | 
| Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 83 | DeclarationName()); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 84 | if (Result) | 
|  | 85 | AddAlignedAttr(Aligned->getLocation(), New, Result); | 
|  | 86 | } | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 87 | continue; | 
|  | 88 | } | 
|  | 89 | } | 
|  | 90 |  | 
| Anders Carlsson | d8fe2d5 | 2009-11-07 06:07:58 +0000 | [diff] [blame] | 91 | // FIXME: Is cloning correct for all attributes? | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 92 | Attr *NewAttr = TmplAttr->clone(Context); | 
| Anders Carlsson | d8fe2d5 | 2009-11-07 06:07:58 +0000 | [diff] [blame] | 93 | New->addAttr(NewAttr); | 
|  | 94 | } | 
|  | 95 | } | 
|  | 96 |  | 
| Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 97 | Decl * | 
|  | 98 | TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) { | 
| David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 99 | llvm_unreachable("Translation units cannot be instantiated"); | 
| Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 100 | } | 
|  | 101 |  | 
|  | 102 | Decl * | 
| Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 103 | TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) { | 
|  | 104 | LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
|  | 105 | D->getIdentifier()); | 
|  | 106 | Owner->addDecl(Inst); | 
|  | 107 | return Inst; | 
|  | 108 | } | 
|  | 109 |  | 
|  | 110 | Decl * | 
| Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 111 | TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) { | 
| David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 112 | llvm_unreachable("Namespaces cannot be instantiated"); | 
| Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 113 | } | 
|  | 114 |  | 
| John McCall | 3dbd3d5 | 2010-02-16 06:53:13 +0000 | [diff] [blame] | 115 | Decl * | 
|  | 116 | TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) { | 
|  | 117 | NamespaceAliasDecl *Inst | 
|  | 118 | = NamespaceAliasDecl::Create(SemaRef.Context, Owner, | 
|  | 119 | D->getNamespaceLoc(), | 
|  | 120 | D->getAliasLoc(), | 
| Douglas Gregor | 0cfaf6a | 2011-02-25 17:08:07 +0000 | [diff] [blame] | 121 | D->getIdentifier(), | 
|  | 122 | D->getQualifierLoc(), | 
| John McCall | 3dbd3d5 | 2010-02-16 06:53:13 +0000 | [diff] [blame] | 123 | D->getTargetNameLoc(), | 
|  | 124 | D->getNamespace()); | 
|  | 125 | Owner->addDecl(Inst); | 
|  | 126 | return Inst; | 
|  | 127 | } | 
|  | 128 |  | 
| Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 129 | Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D, | 
|  | 130 | bool IsTypeAlias) { | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 131 | bool Invalid = false; | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 132 | TypeSourceInfo *DI = D->getTypeSourceInfo(); | 
| Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 133 | if (DI->getType()->isInstantiationDependentType() || | 
| Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 134 | DI->getType()->isVariablyModifiedType()) { | 
| John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 135 | DI = SemaRef.SubstType(DI, TemplateArgs, | 
|  | 136 | D->getLocation(), D->getDeclName()); | 
|  | 137 | if (!DI) { | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 138 | Invalid = true; | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 139 | DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 140 | } | 
| Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 141 | } else { | 
|  | 142 | SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType()); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 143 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 144 |  | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 145 | // Create the new typedef | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 146 | TypedefNameDecl *Typedef; | 
|  | 147 | if (IsTypeAlias) | 
|  | 148 | Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(), | 
|  | 149 | D->getLocation(), D->getIdentifier(), DI); | 
|  | 150 | else | 
|  | 151 | Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(), | 
|  | 152 | D->getLocation(), D->getIdentifier(), DI); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 153 | if (Invalid) | 
|  | 154 | Typedef->setInvalidDecl(); | 
|  | 155 |  | 
| John McCall | cde5a40 | 2011-02-01 08:20:08 +0000 | [diff] [blame] | 156 | // If the old typedef was the name for linkage purposes of an anonymous | 
|  | 157 | // tag decl, re-establish that relationship for the new typedef. | 
|  | 158 | if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) { | 
|  | 159 | TagDecl *oldTag = oldTagType->getDecl(); | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 160 | if (oldTag->getTypedefNameForAnonDecl() == D) { | 
| John McCall | cde5a40 | 2011-02-01 08:20:08 +0000 | [diff] [blame] | 161 | TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl(); | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 162 | assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl()); | 
|  | 163 | newTag->setTypedefNameForAnonDecl(Typedef); | 
| John McCall | cde5a40 | 2011-02-01 08:20:08 +0000 | [diff] [blame] | 164 | } | 
| Douglas Gregor | d57a38e | 2010-04-23 16:25:07 +0000 | [diff] [blame] | 165 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 166 |  | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 167 | if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) { | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 168 | NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev, | 
|  | 169 | TemplateArgs); | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 170 | if (!InstPrev) | 
|  | 171 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 172 |  | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 173 | Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev)); | 
| John McCall | 5126fd0 | 2009-12-30 00:31:22 +0000 | [diff] [blame] | 174 | } | 
|  | 175 |  | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 176 | SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef); | 
| Douglas Gregor | d57a38e | 2010-04-23 16:25:07 +0000 | [diff] [blame] | 177 |  | 
| John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 178 | Typedef->setAccess(D->getAccess()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 179 |  | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 180 | return Typedef; | 
|  | 181 | } | 
|  | 182 |  | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 183 | Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) { | 
| Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 184 | Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false); | 
|  | 185 | Owner->addDecl(Typedef); | 
|  | 186 | return Typedef; | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 187 | } | 
|  | 188 |  | 
|  | 189 | Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) { | 
| Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 190 | Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true); | 
|  | 191 | Owner->addDecl(Typedef); | 
|  | 192 | return Typedef; | 
|  | 193 | } | 
|  | 194 |  | 
|  | 195 | Decl * | 
|  | 196 | TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) { | 
|  | 197 | // Create a local instantiation scope for this type alias template, which | 
|  | 198 | // will contain the instantiations of the template parameters. | 
|  | 199 | LocalInstantiationScope Scope(SemaRef); | 
|  | 200 |  | 
|  | 201 | TemplateParameterList *TempParams = D->getTemplateParameters(); | 
|  | 202 | TemplateParameterList *InstParams = SubstTemplateParams(TempParams); | 
|  | 203 | if (!InstParams) | 
|  | 204 | return 0; | 
|  | 205 |  | 
|  | 206 | TypeAliasDecl *Pattern = D->getTemplatedDecl(); | 
|  | 207 |  | 
|  | 208 | TypeAliasTemplateDecl *PrevAliasTemplate = 0; | 
|  | 209 | if (Pattern->getPreviousDeclaration()) { | 
|  | 210 | DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); | 
|  | 211 | if (Found.first != Found.second) { | 
|  | 212 | PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first); | 
|  | 213 | } | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>( | 
|  | 217 | InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true)); | 
|  | 218 | if (!AliasInst) | 
|  | 219 | return 0; | 
|  | 220 |  | 
|  | 221 | TypeAliasTemplateDecl *Inst | 
|  | 222 | = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
|  | 223 | D->getDeclName(), InstParams, AliasInst); | 
|  | 224 | if (PrevAliasTemplate) | 
|  | 225 | Inst->setPreviousDeclaration(PrevAliasTemplate); | 
|  | 226 |  | 
|  | 227 | Inst->setAccess(D->getAccess()); | 
|  | 228 |  | 
|  | 229 | if (!PrevAliasTemplate) | 
|  | 230 | Inst->setInstantiatedFromMemberTemplate(D); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 231 |  | 
| Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 232 | Owner->addDecl(Inst); | 
|  | 233 |  | 
|  | 234 | return Inst; | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 235 | } | 
|  | 236 |  | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 237 | /// \brief Instantiate an initializer, breaking it into separate | 
|  | 238 | /// initialization arguments. | 
|  | 239 | /// | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 240 | /// \param Init The initializer to instantiate. | 
|  | 241 | /// | 
|  | 242 | /// \param TemplateArgs Template arguments to be substituted into the | 
|  | 243 | /// initializer. | 
|  | 244 | /// | 
|  | 245 | /// \param NewArgs Will be filled in with the instantiation arguments. | 
|  | 246 | /// | 
|  | 247 | /// \returns true if an error occurred, false otherwise | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 248 | bool Sema::InstantiateInitializer(Expr *Init, | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 249 | const MultiLevelTemplateArgumentList &TemplateArgs, | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 250 | SourceLocation &LParenLoc, | 
|  | 251 | ASTOwningVector<Expr*> &NewArgs, | 
|  | 252 | SourceLocation &RParenLoc) { | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 253 | NewArgs.clear(); | 
|  | 254 | LParenLoc = SourceLocation(); | 
|  | 255 | RParenLoc = SourceLocation(); | 
|  | 256 |  | 
|  | 257 | if (!Init) | 
|  | 258 | return false; | 
|  | 259 |  | 
| John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 260 | if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init)) | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 261 | Init = ExprTemp->getSubExpr(); | 
|  | 262 |  | 
|  | 263 | while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init)) | 
|  | 264 | Init = Binder->getSubExpr(); | 
|  | 265 |  | 
|  | 266 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init)) | 
|  | 267 | Init = ICE->getSubExprAsWritten(); | 
|  | 268 |  | 
|  | 269 | if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { | 
|  | 270 | LParenLoc = ParenList->getLParenLoc(); | 
|  | 271 | RParenLoc = ParenList->getRParenLoc(); | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 272 | return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(), | 
|  | 273 | true, TemplateArgs, NewArgs); | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 274 | } | 
|  | 275 |  | 
|  | 276 | if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) { | 
| Douglas Gregor | 28329e5 | 2010-03-24 21:22:47 +0000 | [diff] [blame] | 277 | if (!isa<CXXTemporaryObjectExpr>(Construct)) { | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 278 | if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true, | 
|  | 279 | TemplateArgs, NewArgs)) | 
| Douglas Gregor | 28329e5 | 2010-03-24 21:22:47 +0000 | [diff] [blame] | 280 | return true; | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 281 |  | 
| Douglas Gregor | 28329e5 | 2010-03-24 21:22:47 +0000 | [diff] [blame] | 282 | // FIXME: Fake locations! | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 283 | LParenLoc = PP.getLocForEndOfToken(Init->getLocStart()); | 
| Douglas Gregor | a1a0478 | 2010-09-09 16:33:13 +0000 | [diff] [blame] | 284 | RParenLoc = LParenLoc; | 
| Douglas Gregor | 28329e5 | 2010-03-24 21:22:47 +0000 | [diff] [blame] | 285 | return false; | 
|  | 286 | } | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 287 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 288 |  | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 289 | ExprResult Result = SubstExpr(Init, TemplateArgs); | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 290 | if (Result.isInvalid()) | 
|  | 291 | return true; | 
|  | 292 |  | 
|  | 293 | NewArgs.push_back(Result.takeAs<Expr>()); | 
|  | 294 | return false; | 
|  | 295 | } | 
|  | 296 |  | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 297 | Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) { | 
| Douglas Gregor | 9901c57 | 2010-05-21 00:31:19 +0000 | [diff] [blame] | 298 | // If this is the variable for an anonymous struct or union, | 
|  | 299 | // instantiate the anonymous struct/union type first. | 
|  | 300 | if (const RecordType *RecordTy = D->getType()->getAs<RecordType>()) | 
|  | 301 | if (RecordTy->getDecl()->isAnonymousStructOrUnion()) | 
|  | 302 | if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl()))) | 
|  | 303 | return 0; | 
|  | 304 |  | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 305 | // Do substitution on the type of the declaration | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 306 | TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(), | 
| John McCall | 0a5fa06 | 2009-10-21 02:39:02 +0000 | [diff] [blame] | 307 | TemplateArgs, | 
|  | 308 | D->getTypeSpecStartLoc(), | 
|  | 309 | D->getDeclName()); | 
|  | 310 | if (!DI) | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 311 | return 0; | 
|  | 312 |  | 
| Douglas Gregor | c6dbc3f | 2010-09-12 07:37:24 +0000 | [diff] [blame] | 313 | if (DI->getType()->isFunctionType()) { | 
|  | 314 | SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function) | 
|  | 315 | << D->isStaticDataMember() << DI->getType(); | 
|  | 316 | return 0; | 
|  | 317 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 318 |  | 
| Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 319 | // Build the instantiated declaration | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 320 | VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 321 | D->getInnerLocStart(), | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 322 | D->getLocation(), D->getIdentifier(), | 
| John McCall | 0a5fa06 | 2009-10-21 02:39:02 +0000 | [diff] [blame] | 323 | DI->getType(), DI, | 
| Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 324 | D->getStorageClass(), | 
|  | 325 | D->getStorageClassAsWritten()); | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 326 | Var->setThreadSpecified(D->isThreadSpecified()); | 
|  | 327 | Var->setCXXDirectInitializer(D->hasCXXDirectInitializer()); | 
| Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 328 | Var->setCXXForRangeDecl(D->isCXXForRangeDecl()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 329 |  | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 330 | // Substitute the nested name specifier, if any. | 
|  | 331 | if (SubstQualifier(D, Var)) | 
|  | 332 | return 0; | 
|  | 333 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 334 | // If we are instantiating a static data member defined | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 335 | // out-of-line, the instantiation will have the same lexical | 
|  | 336 | // context (which will be a namespace scope) as the template. | 
|  | 337 | if (D->isOutOfLine()) | 
|  | 338 | Var->setLexicalDeclContext(D->getLexicalDeclContext()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 |  | 
| John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 340 | Var->setAccess(D->getAccess()); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 341 |  | 
| Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 342 | if (!D->isStaticDataMember()) { | 
| Douglas Gregor | c070cc6 | 2010-06-17 23:14:26 +0000 | [diff] [blame] | 343 | Var->setUsed(D->isUsed(false)); | 
| Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 344 | Var->setReferenced(D->isReferenced()); | 
|  | 345 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 346 |  | 
| Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 347 | // FIXME: In theory, we could have a previous declaration for variables that | 
|  | 348 | // are not static data members. | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 349 | // FIXME: having to fake up a LookupResult is dumb. | 
|  | 350 | LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(), | 
| Douglas Gregor | 449d0a8 | 2010-03-01 19:11:54 +0000 | [diff] [blame] | 351 | Sema::LookupOrdinaryName, Sema::ForRedeclaration); | 
| Douglas Gregor | 60c93c9 | 2010-02-09 07:26:29 +0000 | [diff] [blame] | 352 | if (D->isStaticDataMember()) | 
|  | 353 | SemaRef.LookupQualifiedName(Previous, Owner, false); | 
| Kaelyn Uhrain | 2c712f5 | 2011-10-11 00:28:45 +0000 | [diff] [blame^] | 354 | SemaRef.CheckVariableDeclaration(Var, Previous); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 355 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 356 | if (D->isOutOfLine()) { | 
| Abramo Bagnara | ea7b488 | 2010-06-04 09:35:39 +0000 | [diff] [blame] | 357 | if (!D->isStaticDataMember()) | 
|  | 358 | D->getLexicalDeclContext()->addDecl(Var); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 359 | Owner->makeDeclVisibleInContext(Var); | 
|  | 360 | } else { | 
|  | 361 | Owner->addDecl(Var); | 
| Douglas Gregor | f7d72f5 | 2010-05-03 20:22:41 +0000 | [diff] [blame] | 362 | if (Owner->isFunctionOrMethod()) | 
|  | 363 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 364 | } | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 365 | SemaRef.InstantiateAttrs(TemplateArgs, D, Var); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 366 |  | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 367 | // Link instantiations of static data members back to the template from | 
|  | 368 | // which they were instantiated. | 
|  | 369 | if (Var->isStaticDataMember()) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 370 | SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D, | 
| Douglas Gregor | cf3293e | 2009-11-01 20:32:48 +0000 | [diff] [blame] | 371 | TSK_ImplicitInstantiation); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 372 |  | 
| Douglas Gregor | 60c93c9 | 2010-02-09 07:26:29 +0000 | [diff] [blame] | 373 | if (Var->getAnyInitializer()) { | 
|  | 374 | // We already have an initializer in the class. | 
|  | 375 | } else if (D->getInit()) { | 
| Douglas Gregor | 1f5f3a4 | 2009-12-03 17:10:37 +0000 | [diff] [blame] | 376 | if (Var->isStaticDataMember() && !D->isOutOfLine()) | 
|  | 377 | SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated); | 
|  | 378 | else | 
|  | 379 | SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated); | 
|  | 380 |  | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 381 | // Instantiate the initializer. | 
|  | 382 | SourceLocation LParenLoc, RParenLoc; | 
| John McCall | ca0408f | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 383 | ASTOwningVector<Expr*> InitArgs(SemaRef); | 
| Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 384 | if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc, | 
|  | 385 | InitArgs, RParenLoc)) { | 
| Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 386 | bool TypeMayContainAuto = true; | 
| Douglas Gregor | 07a77b4 | 2011-01-14 17:12:22 +0000 | [diff] [blame] | 387 | // Attach the initializer to the declaration, if we have one. | 
|  | 388 | if (InitArgs.size() == 0) | 
| Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 389 | SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto); | 
| Douglas Gregor | 07a77b4 | 2011-01-14 17:12:22 +0000 | [diff] [blame] | 390 | else if (D->hasCXXDirectInitializer()) { | 
| Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 391 | // Add the direct initializer to the declaration. | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 392 | SemaRef.AddCXXDirectInitializerToDecl(Var, | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 393 | LParenLoc, | 
| Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 394 | move_arg(InitArgs), | 
| Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 395 | RParenLoc, | 
|  | 396 | TypeMayContainAuto); | 
| Douglas Gregor | 07a77b4 | 2011-01-14 17:12:22 +0000 | [diff] [blame] | 397 | } else { | 
|  | 398 | assert(InitArgs.size() == 1); | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 399 | Expr *Init = InitArgs.take()[0]; | 
| Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 400 | SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto); | 
| Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 401 | } | 
| Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 402 | } else { | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 403 | // FIXME: Not too happy about invalidating the declaration | 
|  | 404 | // because of a bogus initializer. | 
|  | 405 | Var->setInvalidDecl(); | 
| Douglas Gregor | 6eef519 | 2009-12-14 19:27:10 +0000 | [diff] [blame] | 406 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 407 |  | 
| Douglas Gregor | 1f5f3a4 | 2009-12-03 17:10:37 +0000 | [diff] [blame] | 408 | SemaRef.PopExpressionEvaluationContext(); | 
| Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 409 | } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) && | 
|  | 410 | !Var->isCXXForRangeDecl()) | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 411 | SemaRef.ActOnUninitializedDecl(Var, false); | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 412 |  | 
| Richard Smith | e3499ca | 2011-06-21 23:42:09 +0000 | [diff] [blame] | 413 | // Diagnose unused local variables with dependent types, where the diagnostic | 
|  | 414 | // will have been deferred. | 
|  | 415 | if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() && | 
|  | 416 | D->getType()->isDependentType()) | 
| Douglas Gregor | 5764f61 | 2010-05-08 23:05:03 +0000 | [diff] [blame] | 417 | SemaRef.DiagnoseUnusedDecl(Var); | 
| Argyrios Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 418 |  | 
| Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 419 | return Var; | 
|  | 420 | } | 
|  | 421 |  | 
| Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 422 | Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) { | 
|  | 423 | AccessSpecDecl* AD | 
|  | 424 | = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner, | 
|  | 425 | D->getAccessSpecifierLoc(), D->getColonLoc()); | 
|  | 426 | Owner->addHiddenDecl(AD); | 
|  | 427 | return AD; | 
|  | 428 | } | 
|  | 429 |  | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 430 | Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) { | 
|  | 431 | bool Invalid = false; | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 432 | TypeSourceInfo *DI = D->getTypeSourceInfo(); | 
| Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 433 | if (DI->getType()->isInstantiationDependentType() || | 
| Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 434 | DI->getType()->isVariablyModifiedType())  { | 
| John McCall | 07fb6be | 2009-10-22 23:33:21 +0000 | [diff] [blame] | 435 | DI = SemaRef.SubstType(DI, TemplateArgs, | 
|  | 436 | D->getLocation(), D->getDeclName()); | 
|  | 437 | if (!DI) { | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 438 | DI = D->getTypeSourceInfo(); | 
| John McCall | 07fb6be | 2009-10-22 23:33:21 +0000 | [diff] [blame] | 439 | Invalid = true; | 
|  | 440 | } else if (DI->getType()->isFunctionType()) { | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 441 | // C++ [temp.arg.type]p3: | 
|  | 442 | //   If a declaration acquires a function type through a type | 
|  | 443 | //   dependent on a template-parameter and this causes a | 
|  | 444 | //   declaration that does not use the syntactic form of a | 
|  | 445 | //   function declarator to have function type, the program is | 
|  | 446 | //   ill-formed. | 
|  | 447 | SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function) | 
| John McCall | 07fb6be | 2009-10-22 23:33:21 +0000 | [diff] [blame] | 448 | << DI->getType(); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 449 | Invalid = true; | 
|  | 450 | } | 
| Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 451 | } else { | 
|  | 452 | SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType()); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 453 | } | 
|  | 454 |  | 
|  | 455 | Expr *BitWidth = D->getBitWidth(); | 
|  | 456 | if (Invalid) | 
|  | 457 | BitWidth = 0; | 
|  | 458 | else if (BitWidth) { | 
| Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 459 | // The bit-width expression is not potentially evaluated. | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 460 | EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 461 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 462 | ExprResult InstantiatedBitWidth | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 463 | = SemaRef.SubstExpr(BitWidth, TemplateArgs); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 464 | if (InstantiatedBitWidth.isInvalid()) { | 
|  | 465 | Invalid = true; | 
|  | 466 | BitWidth = 0; | 
|  | 467 | } else | 
| Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 468 | BitWidth = InstantiatedBitWidth.takeAs<Expr>(); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 469 | } | 
|  | 470 |  | 
| John McCall | 07fb6be | 2009-10-22 23:33:21 +0000 | [diff] [blame] | 471 | FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), | 
|  | 472 | DI->getType(), DI, | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 473 | cast<RecordDecl>(Owner), | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 474 | D->getLocation(), | 
|  | 475 | D->isMutable(), | 
|  | 476 | BitWidth, | 
| Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 477 | D->hasInClassInitializer(), | 
| Steve Naroff | ea218b8 | 2009-07-14 14:58:18 +0000 | [diff] [blame] | 478 | D->getTypeSpecStartLoc(), | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 479 | D->getAccess(), | 
|  | 480 | 0); | 
| Douglas Gregor | 663b5a0 | 2009-10-14 20:14:33 +0000 | [diff] [blame] | 481 | if (!Field) { | 
|  | 482 | cast<Decl>(Owner)->setInvalidDecl(); | 
| Anders Carlsson | f4b5f5c | 2009-09-02 19:17:55 +0000 | [diff] [blame] | 483 | return 0; | 
| Douglas Gregor | 663b5a0 | 2009-10-14 20:14:33 +0000 | [diff] [blame] | 484 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 |  | 
| John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 486 | SemaRef.InstantiateAttrs(TemplateArgs, D, Field); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 487 |  | 
| Anders Carlsson | f4b5f5c | 2009-09-02 19:17:55 +0000 | [diff] [blame] | 488 | if (Invalid) | 
|  | 489 | Field->setInvalidDecl(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 490 |  | 
| Anders Carlsson | f4b5f5c | 2009-09-02 19:17:55 +0000 | [diff] [blame] | 491 | if (!Field->getDeclName()) { | 
|  | 492 | // Keep track of where this decl came from. | 
|  | 493 | SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 494 | } | 
| Douglas Gregor | 9901c57 | 2010-05-21 00:31:19 +0000 | [diff] [blame] | 495 | if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) { | 
|  | 496 | if (Parent->isAnonymousStructOrUnion() && | 
| Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 497 | Parent->getRedeclContext()->isFunctionOrMethod()) | 
| Douglas Gregor | 9901c57 | 2010-05-21 00:31:19 +0000 | [diff] [blame] | 498 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 499 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 500 |  | 
| Anders Carlsson | f4b5f5c | 2009-09-02 19:17:55 +0000 | [diff] [blame] | 501 | Field->setImplicit(D->isImplicit()); | 
| John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 502 | Field->setAccess(D->getAccess()); | 
| Anders Carlsson | f4b5f5c | 2009-09-02 19:17:55 +0000 | [diff] [blame] | 503 | Owner->addDecl(Field); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 504 |  | 
|  | 505 | return Field; | 
|  | 506 | } | 
|  | 507 |  | 
| Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 508 | Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) { | 
|  | 509 | NamedDecl **NamedChain = | 
|  | 510 | new (SemaRef.Context)NamedDecl*[D->getChainingSize()]; | 
|  | 511 |  | 
|  | 512 | int i = 0; | 
|  | 513 | for (IndirectFieldDecl::chain_iterator PI = | 
|  | 514 | D->chain_begin(), PE = D->chain_end(); | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 515 | PI != PE; ++PI) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 516 | NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI, | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 517 | TemplateArgs); | 
|  | 518 | if (!Next) | 
|  | 519 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 520 |  | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 521 | NamedChain[i++] = Next; | 
|  | 522 | } | 
| Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 523 |  | 
| Francois Pichet | 40e1775 | 2010-12-09 10:07:54 +0000 | [diff] [blame] | 524 | QualType T = cast<FieldDecl>(NamedChain[i-1])->getType(); | 
| Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 525 | IndirectFieldDecl* IndirectField | 
|  | 526 | = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
| Francois Pichet | 40e1775 | 2010-12-09 10:07:54 +0000 | [diff] [blame] | 527 | D->getIdentifier(), T, | 
| Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 528 | NamedChain, D->getChainingSize()); | 
|  | 529 |  | 
|  | 530 |  | 
|  | 531 | IndirectField->setImplicit(D->isImplicit()); | 
|  | 532 | IndirectField->setAccess(D->getAccess()); | 
|  | 533 | Owner->addDecl(IndirectField); | 
|  | 534 | return IndirectField; | 
|  | 535 | } | 
|  | 536 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 537 | Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) { | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 538 | // Handle friend type expressions by simply substituting template | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 539 | // parameters into the pattern type and checking the result. | 
| John McCall | 32f2fb5 | 2010-03-25 18:04:51 +0000 | [diff] [blame] | 540 | if (TypeSourceInfo *Ty = D->getFriendType()) { | 
| Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 541 | TypeSourceInfo *InstTy; | 
|  | 542 | // If this is an unsupported friend, don't bother substituting template | 
|  | 543 | // arguments into it. The actual type referred to won't be used by any | 
|  | 544 | // parts of Clang, and may not be valid for instantiating. Just use the | 
|  | 545 | // same info for the instantiated friend. | 
|  | 546 | if (D->isUnsupportedFriend()) { | 
|  | 547 | InstTy = Ty; | 
|  | 548 | } else { | 
|  | 549 | InstTy = SemaRef.SubstType(Ty, TemplateArgs, | 
|  | 550 | D->getLocation(), DeclarationName()); | 
|  | 551 | } | 
|  | 552 | if (!InstTy) | 
| Douglas Gregor | 7557a13 | 2009-12-24 20:56:24 +0000 | [diff] [blame] | 553 | return 0; | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 554 |  | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 555 | FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy); | 
|  | 556 | if (!FD) | 
|  | 557 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 558 |  | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 559 | FD->setAccess(AS_public); | 
| John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 560 | FD->setUnsupportedFriend(D->isUnsupportedFriend()); | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 561 | Owner->addDecl(FD); | 
|  | 562 | return FD; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 563 | } | 
|  | 564 |  | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 565 | NamedDecl *ND = D->getFriendDecl(); | 
|  | 566 | assert(ND && "friend decl must be a decl or a type!"); | 
|  | 567 |  | 
| John McCall | af2094e | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 568 | // All of the Visit implementations for the various potential friend | 
|  | 569 | // declarations have to be carefully written to work for friend | 
|  | 570 | // objects, with the most important detail being that the target | 
|  | 571 | // decl should almost certainly not be placed in Owner. | 
|  | 572 | Decl *NewND = Visit(ND); | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 573 | if (!NewND) return 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 574 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 575 | FriendDecl *FD = | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 576 | FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
| Douglas Gregor | 06245bf | 2010-04-07 17:57:12 +0000 | [diff] [blame] | 577 | cast<NamedDecl>(NewND), D->getFriendLoc()); | 
| John McCall | 5fee110 | 2009-08-29 03:50:18 +0000 | [diff] [blame] | 578 | FD->setAccess(AS_public); | 
| John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 579 | FD->setUnsupportedFriend(D->isUnsupportedFriend()); | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 580 | Owner->addDecl(FD); | 
|  | 581 | return FD; | 
| John McCall | fd810b1 | 2009-08-14 02:03:10 +0000 | [diff] [blame] | 582 | } | 
|  | 583 |  | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 584 | Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) { | 
|  | 585 | Expr *AssertExpr = D->getAssertExpr(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 586 |  | 
| Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 587 | // The expression in a static assertion is not potentially evaluated. | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 588 | EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 589 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 590 | ExprResult InstantiatedAssertExpr | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 591 | = SemaRef.SubstExpr(AssertExpr, TemplateArgs); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 592 | if (InstantiatedAssertExpr.isInvalid()) | 
|  | 593 | return 0; | 
|  | 594 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 595 | ExprResult Message(D->getMessage()); | 
| John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 596 | D->getMessage(); | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 597 | return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(), | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 598 | InstantiatedAssertExpr.get(), | 
| Abramo Bagnara | a2026c9 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 599 | Message.get(), | 
|  | 600 | D->getRParenLoc()); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 601 | } | 
|  | 602 |  | 
|  | 603 | Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) { | 
| Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 604 | EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(), | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 605 | D->getLocation(), D->getIdentifier(), | 
| Abramo Bagnara | a88cefd | 2010-12-03 18:54:17 +0000 | [diff] [blame] | 606 | /*PrevDecl=*/0, D->isScoped(), | 
|  | 607 | D->isScopedUsingClassTag(), D->isFixed()); | 
| Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 608 | if (D->isFixed()) { | 
|  | 609 | if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) { | 
|  | 610 | // If we have type source information for the underlying type, it means it | 
|  | 611 | // has been explicitly set by the user. Perform substitution on it before | 
|  | 612 | // moving on. | 
|  | 613 | SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); | 
|  | 614 | Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI, | 
|  | 615 | TemplateArgs, | 
|  | 616 | UnderlyingLoc, | 
|  | 617 | DeclarationName())); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 618 |  | 
| Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 619 | if (!Enum->getIntegerTypeSourceInfo()) | 
|  | 620 | Enum->setIntegerType(SemaRef.Context.IntTy); | 
|  | 621 | } | 
|  | 622 | else { | 
|  | 623 | assert(!D->getIntegerType()->isDependentType() | 
|  | 624 | && "Dependent type without type source info"); | 
|  | 625 | Enum->setIntegerType(D->getIntegerType()); | 
|  | 626 | } | 
|  | 627 | } | 
|  | 628 |  | 
| John McCall | 5b629aa | 2010-10-22 23:36:17 +0000 | [diff] [blame] | 629 | SemaRef.InstantiateAttrs(TemplateArgs, D, Enum); | 
|  | 630 |  | 
| Douglas Gregor | 8dbc3c6 | 2009-05-27 17:20:35 +0000 | [diff] [blame] | 631 | Enum->setInstantiationOfMemberEnum(D); | 
| Douglas Gregor | 06c0fec | 2009-03-25 22:00:53 +0000 | [diff] [blame] | 632 | Enum->setAccess(D->getAccess()); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 633 | if (SubstQualifier(D, Enum)) return 0; | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 634 | Owner->addDecl(Enum); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 635 | Enum->startDefinition(); | 
|  | 636 |  | 
| Douglas Gregor | 96084f1 | 2010-03-01 19:00:07 +0000 | [diff] [blame] | 637 | if (D->getDeclContext()->isFunctionOrMethod()) | 
|  | 638 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 639 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 640 | SmallVector<Decl*, 4> Enumerators; | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 641 |  | 
|  | 642 | EnumConstantDecl *LastEnumConst = 0; | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 643 | for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(), | 
|  | 644 | ECEnd = D->enumerator_end(); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 645 | EC != ECEnd; ++EC) { | 
|  | 646 | // The specified value for the enumerator. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 647 | ExprResult Value = SemaRef.Owned((Expr *)0); | 
| Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 648 | if (Expr *UninstValue = EC->getInitExpr()) { | 
|  | 649 | // The enumerator's value expression is not potentially evaluated. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 650 | EnterExpressionEvaluationContext Unevaluated(SemaRef, | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 651 | Sema::Unevaluated); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 652 |  | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 653 | Value = SemaRef.SubstExpr(UninstValue, TemplateArgs); | 
| Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 654 | } | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 655 |  | 
|  | 656 | // Drop the initial value and continue. | 
|  | 657 | bool isInvalid = false; | 
|  | 658 | if (Value.isInvalid()) { | 
|  | 659 | Value = SemaRef.Owned((Expr *)0); | 
|  | 660 | isInvalid = true; | 
|  | 661 | } | 
|  | 662 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | EnumConstantDecl *EnumConst | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 664 | = SemaRef.CheckEnumConstant(Enum, LastEnumConst, | 
|  | 665 | EC->getLocation(), EC->getIdentifier(), | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 666 | Value.get()); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 667 |  | 
|  | 668 | if (isInvalid) { | 
|  | 669 | if (EnumConst) | 
|  | 670 | EnumConst->setInvalidDecl(); | 
|  | 671 | Enum->setInvalidDecl(); | 
|  | 672 | } | 
|  | 673 |  | 
|  | 674 | if (EnumConst) { | 
| John McCall | 5b629aa | 2010-10-22 23:36:17 +0000 | [diff] [blame] | 675 | SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst); | 
|  | 676 |  | 
| John McCall | 3b85ecf | 2010-01-23 22:37:59 +0000 | [diff] [blame] | 677 | EnumConst->setAccess(Enum->getAccess()); | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 678 | Enum->addDecl(EnumConst); | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 679 | Enumerators.push_back(EnumConst); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 680 | LastEnumConst = EnumConst; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 681 |  | 
| Douglas Gregor | 96084f1 | 2010-03-01 19:00:07 +0000 | [diff] [blame] | 682 | if (D->getDeclContext()->isFunctionOrMethod()) { | 
|  | 683 | // If the enumeration is within a function or method, record the enum | 
|  | 684 | // constant as a local. | 
|  | 685 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst); | 
|  | 686 | } | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 687 | } | 
|  | 688 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 689 |  | 
| Mike Stump | c6e35aa | 2009-05-16 07:06:02 +0000 | [diff] [blame] | 690 | // FIXME: Fixup LBraceLoc and RBraceLoc | 
| Edward O'Callaghan | fee1381 | 2009-08-08 14:36:57 +0000 | [diff] [blame] | 691 | // FIXME: Empty Scope and AttributeList (required to handle attribute packed). | 
| Mike Stump | c6e35aa | 2009-05-16 07:06:02 +0000 | [diff] [blame] | 692 | SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(), | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 693 | Enum, | 
| Eli Friedman | de7a0fc | 2010-08-15 02:27:09 +0000 | [diff] [blame] | 694 | Enumerators.data(), Enumerators.size(), | 
| Edward O'Callaghan | fee1381 | 2009-08-08 14:36:57 +0000 | [diff] [blame] | 695 | 0, 0); | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 696 |  | 
|  | 697 | return Enum; | 
|  | 698 | } | 
|  | 699 |  | 
| Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 700 | Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) { | 
| David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 701 | llvm_unreachable("EnumConstantDecls can only occur within EnumDecls."); | 
| Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 702 | } | 
|  | 703 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 704 | Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) { | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 705 | bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None); | 
|  | 706 |  | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 707 | // Create a local instantiation scope for this class template, which | 
|  | 708 | // will contain the instantiations of the template parameters. | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 709 | LocalInstantiationScope Scope(SemaRef); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 710 | TemplateParameterList *TempParams = D->getTemplateParameters(); | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 711 | TemplateParameterList *InstParams = SubstTemplateParams(TempParams); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 712 | if (!InstParams) | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 713 | return NULL; | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 714 |  | 
|  | 715 | CXXRecordDecl *Pattern = D->getTemplatedDecl(); | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 716 |  | 
|  | 717 | // Instantiate the qualifier.  We have to do this first in case | 
|  | 718 | // we're a friend declaration, because if we are then we need to put | 
|  | 719 | // the new declaration in the appropriate context. | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 720 | NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc(); | 
|  | 721 | if (QualifierLoc) { | 
|  | 722 | QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, | 
|  | 723 | TemplateArgs); | 
|  | 724 | if (!QualifierLoc) | 
|  | 725 | return 0; | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 726 | } | 
|  | 727 |  | 
|  | 728 | CXXRecordDecl *PrevDecl = 0; | 
|  | 729 | ClassTemplateDecl *PrevClassTemplate = 0; | 
|  | 730 |  | 
| Nick Lewycky | 37574f5 | 2010-11-08 23:29:42 +0000 | [diff] [blame] | 731 | if (!isFriend && Pattern->getPreviousDeclaration()) { | 
|  | 732 | DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); | 
|  | 733 | if (Found.first != Found.second) { | 
|  | 734 | PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first); | 
|  | 735 | if (PrevClassTemplate) | 
|  | 736 | PrevDecl = PrevClassTemplate->getTemplatedDecl(); | 
|  | 737 | } | 
|  | 738 | } | 
|  | 739 |  | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 740 | // If this isn't a friend, then it's a member template, in which | 
|  | 741 | // case we just want to build the instantiation in the | 
|  | 742 | // specialization.  If it is a friend, we want to build it in | 
|  | 743 | // the appropriate context. | 
|  | 744 | DeclContext *DC = Owner; | 
|  | 745 | if (isFriend) { | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 746 | if (QualifierLoc) { | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 747 | CXXScopeSpec SS; | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 748 | SS.Adopt(QualifierLoc); | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 749 | DC = SemaRef.computeDeclContext(SS); | 
|  | 750 | if (!DC) return 0; | 
|  | 751 | } else { | 
|  | 752 | DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(), | 
|  | 753 | Pattern->getDeclContext(), | 
|  | 754 | TemplateArgs); | 
|  | 755 | } | 
|  | 756 |  | 
|  | 757 | // Look for a previous declaration of the template in the owning | 
|  | 758 | // context. | 
|  | 759 | LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(), | 
|  | 760 | Sema::LookupOrdinaryName, Sema::ForRedeclaration); | 
|  | 761 | SemaRef.LookupQualifiedName(R, DC); | 
|  | 762 |  | 
|  | 763 | if (R.isSingleResult()) { | 
|  | 764 | PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>(); | 
|  | 765 | if (PrevClassTemplate) | 
|  | 766 | PrevDecl = PrevClassTemplate->getTemplatedDecl(); | 
|  | 767 | } | 
|  | 768 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 769 | if (!PrevClassTemplate && QualifierLoc) { | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 770 | SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope) | 
| Douglas Gregor | 1eabb7d | 2010-03-31 23:17:41 +0000 | [diff] [blame] | 771 | << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 772 | << QualifierLoc.getSourceRange(); | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 773 | return 0; | 
|  | 774 | } | 
|  | 775 |  | 
| Douglas Gregor | c53d0d7 | 2010-04-08 18:16:15 +0000 | [diff] [blame] | 776 | bool AdoptedPreviousTemplateParams = false; | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 777 | if (PrevClassTemplate) { | 
| Douglas Gregor | c53d0d7 | 2010-04-08 18:16:15 +0000 | [diff] [blame] | 778 | bool Complain = true; | 
|  | 779 |  | 
|  | 780 | // HACK: libstdc++ 4.2.1 contains an ill-formed friend class | 
|  | 781 | // template for struct std::tr1::__detail::_Map_base, where the | 
|  | 782 | // template parameters of the friend declaration don't match the | 
|  | 783 | // template parameters of the original declaration. In this one | 
|  | 784 | // case, we don't complain about the ill-formed friend | 
|  | 785 | // declaration. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 786 | if (isFriend && Pattern->getIdentifier() && | 
| Douglas Gregor | c53d0d7 | 2010-04-08 18:16:15 +0000 | [diff] [blame] | 787 | Pattern->getIdentifier()->isStr("_Map_base") && | 
|  | 788 | DC->isNamespace() && | 
|  | 789 | cast<NamespaceDecl>(DC)->getIdentifier() && | 
|  | 790 | cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) { | 
|  | 791 | DeclContext *DCParent = DC->getParent(); | 
|  | 792 | if (DCParent->isNamespace() && | 
|  | 793 | cast<NamespaceDecl>(DCParent)->getIdentifier() && | 
|  | 794 | cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) { | 
|  | 795 | DeclContext *DCParent2 = DCParent->getParent(); | 
|  | 796 | if (DCParent2->isNamespace() && | 
|  | 797 | cast<NamespaceDecl>(DCParent2)->getIdentifier() && | 
|  | 798 | cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") && | 
|  | 799 | DCParent2->getParent()->isTranslationUnit()) | 
|  | 800 | Complain = false; | 
|  | 801 | } | 
|  | 802 | } | 
|  | 803 |  | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 804 | TemplateParameterList *PrevParams | 
|  | 805 | = PrevClassTemplate->getTemplateParameters(); | 
|  | 806 |  | 
|  | 807 | // Make sure the parameter lists match. | 
|  | 808 | if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 809 | Complain, | 
| Douglas Gregor | c53d0d7 | 2010-04-08 18:16:15 +0000 | [diff] [blame] | 810 | Sema::TPL_TemplateMatch)) { | 
|  | 811 | if (Complain) | 
|  | 812 | return 0; | 
|  | 813 |  | 
|  | 814 | AdoptedPreviousTemplateParams = true; | 
|  | 815 | InstParams = PrevParams; | 
|  | 816 | } | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 817 |  | 
|  | 818 | // Do some additional validation, then merge default arguments | 
|  | 819 | // from the existing declarations. | 
| Douglas Gregor | c53d0d7 | 2010-04-08 18:16:15 +0000 | [diff] [blame] | 820 | if (!AdoptedPreviousTemplateParams && | 
|  | 821 | SemaRef.CheckTemplateParameterList(InstParams, PrevParams, | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 822 | Sema::TPC_ClassTemplate)) | 
|  | 823 | return 0; | 
|  | 824 | } | 
|  | 825 | } | 
|  | 826 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 827 | CXXRecordDecl *RecordInst | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 828 | = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC, | 
| Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 829 | Pattern->getLocStart(), Pattern->getLocation(), | 
|  | 830 | Pattern->getIdentifier(), PrevDecl, | 
| Douglas Gregor | f0510d4 | 2009-10-12 23:11:44 +0000 | [diff] [blame] | 831 | /*DelayTypeCreation=*/true); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 832 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 833 | if (QualifierLoc) | 
|  | 834 | RecordInst->setQualifierInfo(QualifierLoc); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 835 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 836 | ClassTemplateDecl *Inst | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 837 | = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(), | 
|  | 838 | D->getIdentifier(), InstParams, RecordInst, | 
|  | 839 | PrevClassTemplate); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 840 | RecordInst->setDescribedClassTemplate(Inst); | 
| John McCall | ea7390c | 2010-04-08 20:25:50 +0000 | [diff] [blame] | 841 |  | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 842 | if (isFriend) { | 
| John McCall | ea7390c | 2010-04-08 20:25:50 +0000 | [diff] [blame] | 843 | if (PrevClassTemplate) | 
|  | 844 | Inst->setAccess(PrevClassTemplate->getAccess()); | 
|  | 845 | else | 
|  | 846 | Inst->setAccess(D->getAccess()); | 
|  | 847 |  | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 848 | Inst->setObjectOfFriendDecl(PrevClassTemplate != 0); | 
|  | 849 | // TODO: do we want to track the instantiation progeny of this | 
|  | 850 | // friend target decl? | 
|  | 851 | } else { | 
| Douglas Gregor | e8c01bd | 2009-10-30 21:07:27 +0000 | [diff] [blame] | 852 | Inst->setAccess(D->getAccess()); | 
| Nick Lewycky | 37574f5 | 2010-11-08 23:29:42 +0000 | [diff] [blame] | 853 | if (!PrevClassTemplate) | 
|  | 854 | Inst->setInstantiatedFromMemberTemplate(D); | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 855 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 856 |  | 
| Douglas Gregor | f0510d4 | 2009-10-12 23:11:44 +0000 | [diff] [blame] | 857 | // Trigger creation of the type for the instantiation. | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 858 | SemaRef.Context.getInjectedClassNameType(RecordInst, | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 859 | Inst->getInjectedClassNameSpecialization()); | 
| John McCall | ea7390c | 2010-04-08 20:25:50 +0000 | [diff] [blame] | 860 |  | 
| Douglas Gregor | 259571e | 2009-10-30 22:42:42 +0000 | [diff] [blame] | 861 | // Finish handling of friends. | 
| John McCall | 93ba857 | 2010-03-25 06:39:04 +0000 | [diff] [blame] | 862 | if (isFriend) { | 
|  | 863 | DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false); | 
| Douglas Gregor | e8c01bd | 2009-10-30 21:07:27 +0000 | [diff] [blame] | 864 | return Inst; | 
| Douglas Gregor | 259571e | 2009-10-30 22:42:42 +0000 | [diff] [blame] | 865 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 866 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 867 | Owner->addDecl(Inst); | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 868 |  | 
|  | 869 | if (!PrevClassTemplate) { | 
|  | 870 | // Queue up any out-of-line partial specializations of this member | 
|  | 871 | // class template; the client will force their instantiation once | 
|  | 872 | // the enclosing class has been instantiated. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 873 | SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs; | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 874 | D->getPartialSpecializations(PartialSpecs); | 
|  | 875 | for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) | 
|  | 876 | if (PartialSpecs[I]->isOutOfLine()) | 
|  | 877 | OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I])); | 
|  | 878 | } | 
|  | 879 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 880 | return Inst; | 
|  | 881 | } | 
|  | 882 |  | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 883 | Decl * | 
| Douglas Gregor | 7974c3b | 2009-10-07 17:21:34 +0000 | [diff] [blame] | 884 | TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl( | 
|  | 885 | ClassTemplatePartialSpecializationDecl *D) { | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 886 | ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 887 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 888 | // Lookup the already-instantiated declaration in the instantiation | 
|  | 889 | // of the class template and return that. | 
|  | 890 | DeclContext::lookup_result Found | 
|  | 891 | = Owner->lookup(ClassTemplate->getDeclName()); | 
|  | 892 | if (Found.first == Found.second) | 
|  | 893 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 894 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 895 | ClassTemplateDecl *InstClassTemplate | 
|  | 896 | = dyn_cast<ClassTemplateDecl>(*Found.first); | 
|  | 897 | if (!InstClassTemplate) | 
|  | 898 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 899 |  | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 900 | if (ClassTemplatePartialSpecializationDecl *Result | 
|  | 901 | = InstClassTemplate->findPartialSpecInstantiatedFromMember(D)) | 
|  | 902 | return Result; | 
|  | 903 |  | 
|  | 904 | return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D); | 
| Douglas Gregor | 7974c3b | 2009-10-07 17:21:34 +0000 | [diff] [blame] | 905 | } | 
|  | 906 |  | 
|  | 907 | Decl * | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 908 | TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) { | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 909 | // Create a local instantiation scope for this function template, which | 
|  | 910 | // will contain the instantiations of the template parameters and then get | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 911 | // merged with the local instantiation scope for the function template | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 912 | // itself. | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 913 | LocalInstantiationScope Scope(SemaRef); | 
| Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 914 |  | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 915 | TemplateParameterList *TempParams = D->getTemplateParameters(); | 
|  | 916 | TemplateParameterList *InstParams = SubstTemplateParams(TempParams); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 917 | if (!InstParams) | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 918 | return NULL; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 919 |  | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 920 | FunctionDecl *Instantiated = 0; | 
|  | 921 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl())) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 922 | Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod, | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 923 | InstParams)); | 
|  | 924 | else | 
|  | 925 | Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl( | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 926 | D->getTemplatedDecl(), | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 927 | InstParams)); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 928 |  | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 929 | if (!Instantiated) | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 930 | return 0; | 
|  | 931 |  | 
| John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 932 | Instantiated->setAccess(D->getAccess()); | 
|  | 933 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 934 | // Link the instantiated function template declaration to the function | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 935 | // template from which it was instantiated. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 936 | FunctionTemplateDecl *InstTemplate | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 937 | = Instantiated->getDescribedFunctionTemplate(); | 
| Douglas Gregor | 37d68185 | 2009-10-12 22:27:17 +0000 | [diff] [blame] | 938 | InstTemplate->setAccess(D->getAccess()); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 939 | assert(InstTemplate && | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 940 | "VisitFunctionDecl/CXXMethodDecl didn't create a template!"); | 
| John McCall | e976ffe | 2009-12-14 23:19:40 +0000 | [diff] [blame] | 941 |  | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 942 | bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None); | 
|  | 943 |  | 
| John McCall | e976ffe | 2009-12-14 23:19:40 +0000 | [diff] [blame] | 944 | // Link the instantiation back to the pattern *unless* this is a | 
|  | 945 | // non-definition friend declaration. | 
|  | 946 | if (!InstTemplate->getInstantiatedFromMemberTemplate() && | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 947 | !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition())) | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 948 | InstTemplate->setInstantiatedFromMemberTemplate(D); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 949 |  | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 950 | // Make declarations visible in the appropriate context. | 
|  | 951 | if (!isFriend) | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 952 | Owner->addDecl(InstTemplate); | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 953 |  | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 954 | return InstTemplate; | 
|  | 955 | } | 
|  | 956 |  | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 957 | Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) { | 
|  | 958 | CXXRecordDecl *PrevDecl = 0; | 
|  | 959 | if (D->isInjectedClassName()) | 
|  | 960 | PrevDecl = cast<CXXRecordDecl>(Owner); | 
| John McCall | 6c1c1b8 | 2009-12-15 22:29:06 +0000 | [diff] [blame] | 961 | else if (D->getPreviousDeclaration()) { | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 962 | NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(), | 
|  | 963 | D->getPreviousDeclaration(), | 
| John McCall | 6c1c1b8 | 2009-12-15 22:29:06 +0000 | [diff] [blame] | 964 | TemplateArgs); | 
|  | 965 | if (!Prev) return 0; | 
|  | 966 | PrevDecl = cast<CXXRecordDecl>(Prev); | 
|  | 967 | } | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 968 |  | 
|  | 969 | CXXRecordDecl *Record | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 970 | = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner, | 
| Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 971 | D->getLocStart(), D->getLocation(), | 
|  | 972 | D->getIdentifier(), PrevDecl); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 973 |  | 
|  | 974 | // Substitute the nested name specifier, if any. | 
|  | 975 | if (SubstQualifier(D, Record)) | 
|  | 976 | return 0; | 
|  | 977 |  | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 978 | Record->setImplicit(D->isImplicit()); | 
| Eli Friedman | eaba1af | 2009-08-27 19:11:42 +0000 | [diff] [blame] | 979 | // FIXME: Check against AS_none is an ugly hack to work around the issue that | 
|  | 980 | // the tag decls introduced by friend class declarations don't have an access | 
|  | 981 | // specifier. Remove once this area of the code gets sorted out. | 
|  | 982 | if (D->getAccess() != AS_none) | 
|  | 983 | Record->setAccess(D->getAccess()); | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 984 | if (!D->isInjectedClassName()) | 
| Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 985 | Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation); | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 986 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 987 | // If the original function was part of a friend declaration, | 
|  | 988 | // inherit its namespace state. | 
|  | 989 | if (Decl::FriendObjectKind FOK = D->getFriendObjectKind()) | 
|  | 990 | Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared); | 
|  | 991 |  | 
| Douglas Gregor | 9901c57 | 2010-05-21 00:31:19 +0000 | [diff] [blame] | 992 | // Make sure that anonymous structs and unions are recorded. | 
|  | 993 | if (D->isAnonymousStructOrUnion()) { | 
|  | 994 | Record->setAnonymousStructOrUnion(true); | 
| Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 995 | if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod()) | 
| Douglas Gregor | 9901c57 | 2010-05-21 00:31:19 +0000 | [diff] [blame] | 996 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record); | 
|  | 997 | } | 
| Anders Carlsson | d8b285f | 2009-09-01 04:26:58 +0000 | [diff] [blame] | 998 |  | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 999 | Owner->addDecl(Record); | 
| Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1000 | return Record; | 
|  | 1001 | } | 
|  | 1002 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 1003 | /// Normal class members are of more specific types and therefore | 
|  | 1004 | /// don't make it here.  This function serves two purposes: | 
|  | 1005 | ///   1) instantiating function templates | 
|  | 1006 | ///   2) substituting friend declarations | 
|  | 1007 | /// FIXME: preserve function definitions in case #2 | 
| Douglas Gregor | 7557a13 | 2009-12-24 20:56:24 +0000 | [diff] [blame] | 1008 | Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D, | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1009 | TemplateParameterList *TemplateParams) { | 
| Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 1010 | // Check whether there is already a function template specialization for | 
|  | 1011 | // this declaration. | 
|  | 1012 | FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate(); | 
|  | 1013 | void *InsertPos = 0; | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1014 | if (FunctionTemplate && !TemplateParams) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1015 | std::pair<const TemplateArgument *, unsigned> Innermost | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1016 | = TemplateArgs.getInnermost(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1017 |  | 
| Argyrios Kyrtzidis | 2c853e4 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 1018 | FunctionDecl *SpecFunc | 
|  | 1019 | = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second, | 
|  | 1020 | InsertPos); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1021 |  | 
| Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 1022 | // If we already have a function template specialization, return it. | 
| Argyrios Kyrtzidis | 2c853e4 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 1023 | if (SpecFunc) | 
|  | 1024 | return SpecFunc; | 
| Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 1025 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1026 |  | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1027 | bool isFriend; | 
|  | 1028 | if (FunctionTemplate) | 
|  | 1029 | isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None); | 
|  | 1030 | else | 
|  | 1031 | isFriend = (D->getFriendObjectKind() != Decl::FOK_None); | 
|  | 1032 |  | 
| Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 1033 | bool MergeWithParentScope = (TemplateParams != 0) || | 
| Douglas Gregor | b212d9a | 2010-05-21 21:25:08 +0000 | [diff] [blame] | 1034 | Owner->isFunctionOrMethod() || | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1035 | !(isa<Decl>(Owner) && | 
| Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 1036 | cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod()); | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1037 | LocalInstantiationScope Scope(SemaRef, MergeWithParentScope); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1038 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1039 | SmallVector<ParmVarDecl *, 4> Params; | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1040 | TypeSourceInfo *TInfo = D->getTypeSourceInfo(); | 
|  | 1041 | TInfo = SubstFunctionType(D, Params); | 
|  | 1042 | if (!TInfo) | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1043 | return 0; | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1044 | QualType T = TInfo->getType(); | 
| John McCall | fd810b1 | 2009-08-14 02:03:10 +0000 | [diff] [blame] | 1045 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1046 | NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc(); | 
|  | 1047 | if (QualifierLoc) { | 
|  | 1048 | QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, | 
|  | 1049 | TemplateArgs); | 
|  | 1050 | if (!QualifierLoc) | 
|  | 1051 | return 0; | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1052 | } | 
|  | 1053 |  | 
| John McCall | 68b6b87 | 2010-02-06 01:50:47 +0000 | [diff] [blame] | 1054 | // If we're instantiating a local function declaration, put the result | 
|  | 1055 | // in the owner;  otherwise we need to find the instantiated context. | 
|  | 1056 | DeclContext *DC; | 
|  | 1057 | if (D->getDeclContext()->isFunctionOrMethod()) | 
|  | 1058 | DC = Owner; | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1059 | else if (isFriend && QualifierLoc) { | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1060 | CXXScopeSpec SS; | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1061 | SS.Adopt(QualifierLoc); | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1062 | DC = SemaRef.computeDeclContext(SS); | 
|  | 1063 | if (!DC) return 0; | 
|  | 1064 | } else { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1065 | DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(), | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 1066 | TemplateArgs); | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1067 | } | 
| John McCall | 68b6b87 | 2010-02-06 01:50:47 +0000 | [diff] [blame] | 1068 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 1069 | FunctionDecl *Function = | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1070 | FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), | 
|  | 1071 | D->getLocation(), D->getDeclName(), T, TInfo, | 
| Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1072 | D->getStorageClass(), D->getStorageClassAsWritten(), | 
| Richard Smith | af1fc7a | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 1073 | D->isInlineSpecified(), D->hasWrittenPrototype(), | 
| Richard Smith | 9f569cc | 2011-10-01 02:31:28 +0000 | [diff] [blame] | 1074 | /*isConstexpr*/ false); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1075 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1076 | if (QualifierLoc) | 
|  | 1077 | Function->setQualifierInfo(QualifierLoc); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1078 |  | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 1079 | DeclContext *LexicalDC = Owner; | 
|  | 1080 | if (!isFriend && D->isOutOfLine()) { | 
|  | 1081 | assert(D->getDeclContext()->isFileContext()); | 
|  | 1082 | LexicalDC = D->getDeclContext(); | 
|  | 1083 | } | 
|  | 1084 |  | 
|  | 1085 | Function->setLexicalDeclContext(LexicalDC); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1086 |  | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 1087 | // Attach the parameters | 
| Douglas Gregor | 5cbe101 | 2011-07-05 18:30:26 +0000 | [diff] [blame] | 1088 | if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) { | 
| Douglas Gregor | 1d441ee | 2011-06-22 18:16:25 +0000 | [diff] [blame] | 1089 | // Adopt the already-instantiated parameters into our own context. | 
|  | 1090 | for (unsigned P = 0; P < Params.size(); ++P) | 
|  | 1091 | if (Params[P]) | 
|  | 1092 | Params[P]->setOwningFunction(Function); | 
|  | 1093 | } else { | 
|  | 1094 | // Since we were instantiated via a typedef of a function type, create | 
|  | 1095 | // new parameters. | 
|  | 1096 | const FunctionProtoType *Proto | 
|  | 1097 | = Function->getType()->getAs<FunctionProtoType>(); | 
|  | 1098 | assert(Proto && "No function prototype in template instantiation?"); | 
|  | 1099 | for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(), | 
|  | 1100 | AE = Proto->arg_type_end(); AI != AE; ++AI) { | 
|  | 1101 | ParmVarDecl *Param | 
|  | 1102 | = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(), | 
|  | 1103 | *AI); | 
|  | 1104 | Param->setScopeInfo(0, Params.size()); | 
|  | 1105 | Params.push_back(Param); | 
|  | 1106 | } | 
|  | 1107 | } | 
| David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 1108 | Function->setParams(Params); | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 1109 |  | 
| Douglas Gregor | ac7c2c8 | 2010-05-17 16:38:00 +0000 | [diff] [blame] | 1110 | SourceLocation InstantiateAtPOI; | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1111 | if (TemplateParams) { | 
|  | 1112 | // Our resulting instantiation is actually a function template, since we | 
|  | 1113 | // are substituting only the outer template parameters. For example, given | 
|  | 1114 | // | 
|  | 1115 | //   template<typename T> | 
|  | 1116 | //   struct X { | 
|  | 1117 | //     template<typename U> friend void f(T, U); | 
|  | 1118 | //   }; | 
|  | 1119 | // | 
|  | 1120 | //   X<int> x; | 
|  | 1121 | // | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1122 | // We are instantiating the friend function template "f" within X<int>, | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1123 | // which means substituting int for T, but leaving "f" as a friend function | 
|  | 1124 | // template. | 
|  | 1125 | // Build the function template itself. | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1126 | FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC, | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1127 | Function->getLocation(), | 
|  | 1128 | Function->getDeclName(), | 
|  | 1129 | TemplateParams, Function); | 
|  | 1130 | Function->setDescribedFunctionTemplate(FunctionTemplate); | 
| John McCall | b1a56e7 | 2010-03-26 23:10:15 +0000 | [diff] [blame] | 1131 |  | 
|  | 1132 | FunctionTemplate->setLexicalDeclContext(LexicalDC); | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1133 |  | 
|  | 1134 | if (isFriend && D->isThisDeclarationADefinition()) { | 
|  | 1135 | // TODO: should we remember this connection regardless of whether | 
|  | 1136 | // the friend declaration provided a body? | 
|  | 1137 | FunctionTemplate->setInstantiatedFromMemberTemplate( | 
|  | 1138 | D->getDescribedFunctionTemplate()); | 
|  | 1139 | } | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1140 | } else if (FunctionTemplate) { | 
|  | 1141 | // Record this function template specialization. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1142 | std::pair<const TemplateArgument *, unsigned> Innermost | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1143 | = TemplateArgs.getInnermost(); | 
| Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 1144 | Function->setFunctionTemplateSpecialization(FunctionTemplate, | 
| Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 1145 | TemplateArgumentList::CreateCopy(SemaRef.Context, | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1146 | Innermost.first, | 
|  | 1147 | Innermost.second), | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1148 | InsertPos); | 
| Chandler Carruth | 80f5b16 | 2011-08-18 09:09:59 +0000 | [diff] [blame] | 1149 | } else if (isFriend) { | 
|  | 1150 | // Note, we need this connection even if the friend doesn't have a body. | 
|  | 1151 | // Its body may exist but not have been attached yet due to deferred | 
|  | 1152 | // parsing. | 
|  | 1153 | // FIXME: It might be cleaner to set this when attaching the body to the | 
|  | 1154 | // friend function declaration, however that would require finding all the | 
|  | 1155 | // instantiations and modifying them. | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1156 | Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation); | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 1157 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1158 |  | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 1159 | if (InitFunctionInstantiation(Function, D)) | 
|  | 1160 | Function->setInvalidDecl(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1161 |  | 
| John McCall | af2094e | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 1162 | bool isExplicitSpecialization = false; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1163 |  | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 1164 | LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(), | 
|  | 1165 | Sema::LookupOrdinaryName, Sema::ForRedeclaration); | 
|  | 1166 |  | 
| John McCall | af2094e | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 1167 | if (DependentFunctionTemplateSpecializationInfo *Info | 
|  | 1168 | = D->getDependentSpecializationInfo()) { | 
|  | 1169 | assert(isFriend && "non-friend has dependent specialization info?"); | 
|  | 1170 |  | 
|  | 1171 | // This needs to be set now for future sanity. | 
|  | 1172 | Function->setObjectOfFriendDecl(/*HasPrevious*/ true); | 
|  | 1173 |  | 
|  | 1174 | // Instantiate the explicit template arguments. | 
|  | 1175 | TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(), | 
|  | 1176 | Info->getRAngleLoc()); | 
| Douglas Gregor | e02e262 | 2010-12-22 21:19:48 +0000 | [diff] [blame] | 1177 | if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(), | 
|  | 1178 | ExplicitArgs, TemplateArgs)) | 
|  | 1179 | return 0; | 
| John McCall | af2094e | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 1180 |  | 
|  | 1181 | // Map the candidate templates to their instantiations. | 
|  | 1182 | for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) { | 
|  | 1183 | Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(), | 
|  | 1184 | Info->getTemplate(I), | 
|  | 1185 | TemplateArgs); | 
|  | 1186 | if (!Temp) return 0; | 
|  | 1187 |  | 
|  | 1188 | Previous.addDecl(cast<FunctionTemplateDecl>(Temp)); | 
|  | 1189 | } | 
|  | 1190 |  | 
|  | 1191 | if (SemaRef.CheckFunctionTemplateSpecialization(Function, | 
|  | 1192 | &ExplicitArgs, | 
|  | 1193 | Previous)) | 
|  | 1194 | Function->setInvalidDecl(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1195 |  | 
| John McCall | af2094e | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 1196 | isExplicitSpecialization = true; | 
|  | 1197 |  | 
|  | 1198 | } else if (TemplateParams || !FunctionTemplate) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1199 | // Look only into the namespace where the friend would be declared to | 
|  | 1200 | // find a previous declaration. This is the innermost enclosing namespace, | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1201 | // as described in ActOnFriendFunctionDecl. | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 1202 | SemaRef.LookupQualifiedName(Previous, DC); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1203 |  | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1204 | // In C++, the previous declaration we find might be a tag type | 
|  | 1205 | // (class or enum). In this case, the new declaration will hide the | 
|  | 1206 | // tag type. Note that this does does not apply if we're declaring a | 
|  | 1207 | // typedef (C++ [dcl.typedef]p4). | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 1208 | if (Previous.isSingleTagDecl()) | 
|  | 1209 | Previous.clear(); | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1210 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1211 |  | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1212 | SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous, | 
| Kaelyn Uhrain | 2c712f5 | 2011-10-11 00:28:45 +0000 | [diff] [blame^] | 1213 | isExplicitSpecialization); | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1214 |  | 
| John McCall | 76d3264 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 1215 | NamedDecl *PrincipalDecl = (TemplateParams | 
|  | 1216 | ? cast<NamedDecl>(FunctionTemplate) | 
|  | 1217 | : Function); | 
|  | 1218 |  | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1219 | // If the original function was part of a friend declaration, | 
|  | 1220 | // inherit its namespace state and add it to the owner. | 
| John McCall | d325daa | 2010-03-26 04:53:08 +0000 | [diff] [blame] | 1221 | if (isFriend) { | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 1222 | NamedDecl *PrevDecl; | 
| John McCall | 76d3264 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 1223 | if (TemplateParams) | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1224 | PrevDecl = FunctionTemplate->getPreviousDeclaration(); | 
| John McCall | 76d3264 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 1225 | else | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1226 | PrevDecl = Function->getPreviousDeclaration(); | 
| John McCall | 76d3264 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 1227 |  | 
|  | 1228 | PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0); | 
|  | 1229 | DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false); | 
| Gabor Greif | ab297ac | 2010-08-30 21:10:05 +0000 | [diff] [blame] | 1230 |  | 
| Gabor Greif | 77535df | 2010-08-30 22:25:56 +0000 | [diff] [blame] | 1231 | bool queuedInstantiation = false; | 
| Gabor Greif | ab297ac | 2010-08-30 21:10:05 +0000 | [diff] [blame] | 1232 |  | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1233 | if (!SemaRef.getLangOptions().CPlusPlus0x && | 
|  | 1234 | D->isThisDeclarationADefinition()) { | 
|  | 1235 | // Check for a function body. | 
|  | 1236 | const FunctionDecl *Definition = 0; | 
| Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 1237 | if (Function->isDefined(Definition) && | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1238 | Definition->getTemplateSpecializationKind() == TSK_Undeclared) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1239 | SemaRef.Diag(Function->getLocation(), diag::err_redefinition) | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1240 | << Function->getDeclName(); | 
|  | 1241 | SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1242 | Function->setInvalidDecl(); | 
|  | 1243 | } | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1244 | // Check for redefinitions due to other instantiations of this or | 
|  | 1245 | // a similar friend function. | 
|  | 1246 | else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(), | 
|  | 1247 | REnd = Function->redecls_end(); | 
|  | 1248 | R != REnd; ++R) { | 
| Gabor Greif | 13a8aff | 2010-08-28 15:42:30 +0000 | [diff] [blame] | 1249 | if (*R == Function) | 
|  | 1250 | continue; | 
| Gabor Greif | ab297ac | 2010-08-30 21:10:05 +0000 | [diff] [blame] | 1251 | switch (R->getFriendObjectKind()) { | 
|  | 1252 | case Decl::FOK_None: | 
|  | 1253 | if (!queuedInstantiation && R->isUsed(false)) { | 
|  | 1254 | if (MemberSpecializationInfo *MSInfo | 
|  | 1255 | = Function->getMemberSpecializationInfo()) { | 
|  | 1256 | if (MSInfo->getPointOfInstantiation().isInvalid()) { | 
|  | 1257 | SourceLocation Loc = R->getLocation(); // FIXME | 
|  | 1258 | MSInfo->setPointOfInstantiation(Loc); | 
|  | 1259 | SemaRef.PendingLocalImplicitInstantiations.push_back( | 
|  | 1260 | std::make_pair(Function, Loc)); | 
|  | 1261 | queuedInstantiation = true; | 
|  | 1262 | } | 
|  | 1263 | } | 
|  | 1264 | } | 
|  | 1265 | break; | 
|  | 1266 | default: | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1267 | if (const FunctionDecl *RPattern | 
| Gabor Greif | 6a557d8 | 2010-08-28 15:46:56 +0000 | [diff] [blame] | 1268 | = R->getTemplateInstantiationPattern()) | 
| Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 1269 | if (RPattern->isDefined(RPattern)) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1270 | SemaRef.Diag(Function->getLocation(), diag::err_redefinition) | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1271 | << Function->getDeclName(); | 
| Gabor Greif | 6a557d8 | 2010-08-28 15:46:56 +0000 | [diff] [blame] | 1272 | SemaRef.Diag(R->getLocation(), diag::note_previous_definition); | 
| Douglas Gregor | 238058c | 2010-05-18 05:45:02 +0000 | [diff] [blame] | 1273 | Function->setInvalidDecl(); | 
|  | 1274 | break; | 
|  | 1275 | } | 
|  | 1276 | } | 
|  | 1277 | } | 
|  | 1278 | } | 
| Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 1279 | } | 
|  | 1280 |  | 
| John McCall | 76d3264 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 1281 | if (Function->isOverloadedOperator() && !DC->isRecord() && | 
|  | 1282 | PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) | 
|  | 1283 | PrincipalDecl->setNonMemberOperator(); | 
|  | 1284 |  | 
| Sean Hunt | eb88ae5 | 2011-05-23 21:07:59 +0000 | [diff] [blame] | 1285 | assert(!D->isDefaulted() && "only methods should be defaulted"); | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 1286 | return Function; | 
|  | 1287 | } | 
|  | 1288 |  | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1289 | Decl * | 
|  | 1290 | TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D, | 
| Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 1291 | TemplateParameterList *TemplateParams, | 
|  | 1292 | bool IsClassScopeSpecialization) { | 
| Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 1293 | FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate(); | 
|  | 1294 | void *InsertPos = 0; | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1295 | if (FunctionTemplate && !TemplateParams) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1296 | // We are creating a function template specialization from a function | 
|  | 1297 | // template. Check whether there is already a function template | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1298 | // specialization for this particular set of template arguments. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1299 | std::pair<const TemplateArgument *, unsigned> Innermost | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1300 | = TemplateArgs.getInnermost(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1301 |  | 
| Argyrios Kyrtzidis | 2c853e4 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 1302 | FunctionDecl *SpecFunc | 
|  | 1303 | = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second, | 
|  | 1304 | InsertPos); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1305 |  | 
| Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 1306 | // If we already have a function template specialization, return it. | 
| Argyrios Kyrtzidis | 2c853e4 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 1307 | if (SpecFunc) | 
|  | 1308 | return SpecFunc; | 
| Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 1309 | } | 
|  | 1310 |  | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1311 | bool isFriend; | 
|  | 1312 | if (FunctionTemplate) | 
|  | 1313 | isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None); | 
|  | 1314 | else | 
|  | 1315 | isFriend = (D->getFriendObjectKind() != Decl::FOK_None); | 
|  | 1316 |  | 
| Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 1317 | bool MergeWithParentScope = (TemplateParams != 0) || | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1318 | !(isa<Decl>(Owner) && | 
| Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 1319 | cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod()); | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1320 | LocalInstantiationScope Scope(SemaRef, MergeWithParentScope); | 
| Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 1321 |  | 
| John McCall | 4eab39f | 2010-10-19 02:26:41 +0000 | [diff] [blame] | 1322 | // Instantiate enclosing template arguments for friends. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1323 | SmallVector<TemplateParameterList *, 4> TempParamLists; | 
| John McCall | 4eab39f | 2010-10-19 02:26:41 +0000 | [diff] [blame] | 1324 | unsigned NumTempParamLists = 0; | 
|  | 1325 | if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) { | 
|  | 1326 | TempParamLists.set_size(NumTempParamLists); | 
|  | 1327 | for (unsigned I = 0; I != NumTempParamLists; ++I) { | 
|  | 1328 | TemplateParameterList *TempParams = D->getTemplateParameterList(I); | 
|  | 1329 | TemplateParameterList *InstParams = SubstTemplateParams(TempParams); | 
|  | 1330 | if (!InstParams) | 
|  | 1331 | return NULL; | 
|  | 1332 | TempParamLists[I] = InstParams; | 
|  | 1333 | } | 
|  | 1334 | } | 
|  | 1335 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1336 | SmallVector<ParmVarDecl *, 4> Params; | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1337 | TypeSourceInfo *TInfo = D->getTypeSourceInfo(); | 
|  | 1338 | TInfo = SubstFunctionType(D, Params); | 
|  | 1339 | if (!TInfo) | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1340 | return 0; | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1341 | QualType T = TInfo->getType(); | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1342 |  | 
| Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 1343 | // \brief If the type of this function, after ignoring parentheses, | 
|  | 1344 | // is not *directly* a function type, then we're instantiating a function | 
|  | 1345 | // that was declared via a typedef, e.g., | 
| Douglas Gregor | 5f970ee | 2010-05-04 18:18:31 +0000 | [diff] [blame] | 1346 | // | 
|  | 1347 | //   typedef int functype(int, int); | 
|  | 1348 | //   functype func; | 
|  | 1349 | // | 
|  | 1350 | // In this case, we'll just go instantiate the ParmVarDecls that we | 
|  | 1351 | // synthesized in the method declaration. | 
| Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 1352 | if (!isa<FunctionProtoType>(T.IgnoreParens())) { | 
| Douglas Gregor | 5f970ee | 2010-05-04 18:18:31 +0000 | [diff] [blame] | 1353 | assert(!Params.size() && "Instantiating type could not yield parameters"); | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1354 | SmallVector<QualType, 4> ParamTypes; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1355 | if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(), | 
|  | 1356 | D->getNumParams(), TemplateArgs, ParamTypes, | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 1357 | &Params)) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1358 | return 0; | 
| Douglas Gregor | 5f970ee | 2010-05-04 18:18:31 +0000 | [diff] [blame] | 1359 | } | 
|  | 1360 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1361 | NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc(); | 
|  | 1362 | if (QualifierLoc) { | 
|  | 1363 | QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1364 | TemplateArgs); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1365 | if (!QualifierLoc) | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1366 | return 0; | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1367 | } | 
|  | 1368 |  | 
|  | 1369 | DeclContext *DC = Owner; | 
|  | 1370 | if (isFriend) { | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1371 | if (QualifierLoc) { | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1372 | CXXScopeSpec SS; | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1373 | SS.Adopt(QualifierLoc); | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1374 | DC = SemaRef.computeDeclContext(SS); | 
| John McCall | c54d688 | 2010-10-19 05:01:53 +0000 | [diff] [blame] | 1375 |  | 
|  | 1376 | if (DC && SemaRef.RequireCompleteDeclContext(SS, DC)) | 
|  | 1377 | return 0; | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1378 | } else { | 
|  | 1379 | DC = SemaRef.FindInstantiatedContext(D->getLocation(), | 
|  | 1380 | D->getDeclContext(), | 
|  | 1381 | TemplateArgs); | 
|  | 1382 | } | 
|  | 1383 | if (!DC) return 0; | 
|  | 1384 | } | 
|  | 1385 |  | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1386 | // Build the instantiated method declaration. | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1387 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1388 | CXXMethodDecl *Method = 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1389 |  | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1390 | SourceLocation StartLoc = D->getInnerLocStart(); | 
| Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1391 | DeclarationNameInfo NameInfo | 
|  | 1392 | = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs); | 
| Douglas Gregor | 17e32f3 | 2009-08-21 22:43:28 +0000 | [diff] [blame] | 1393 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1394 | Method = CXXConstructorDecl::Create(SemaRef.Context, Record, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1395 | StartLoc, NameInfo, T, TInfo, | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1396 | Constructor->isExplicit(), | 
| Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1397 | Constructor->isInlineSpecified(), | 
| Richard Smith | 9f569cc | 2011-10-01 02:31:28 +0000 | [diff] [blame] | 1398 | false, /*isConstexpr*/ false); | 
| Douglas Gregor | 17e32f3 | 2009-08-21 22:43:28 +0000 | [diff] [blame] | 1399 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { | 
| Douglas Gregor | 17e32f3 | 2009-08-21 22:43:28 +0000 | [diff] [blame] | 1400 | Method = CXXDestructorDecl::Create(SemaRef.Context, Record, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1401 | StartLoc, NameInfo, T, TInfo, | 
| Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1402 | Destructor->isInlineSpecified(), | 
| Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1403 | false); | 
| Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 1404 | } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) { | 
| Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 1405 | Method = CXXConversionDecl::Create(SemaRef.Context, Record, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1406 | StartLoc, NameInfo, T, TInfo, | 
| Douglas Gregor | 0130f3c | 2009-10-27 21:01:01 +0000 | [diff] [blame] | 1407 | Conversion->isInlineSpecified(), | 
| Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 1408 | Conversion->isExplicit(), | 
| Richard Smith | 9f569cc | 2011-10-01 02:31:28 +0000 | [diff] [blame] | 1409 | /*isConstexpr*/ false, | 
|  | 1410 | Conversion->getLocEnd()); | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1411 | } else { | 
| Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1412 | Method = CXXMethodDecl::Create(SemaRef.Context, Record, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1413 | StartLoc, NameInfo, T, TInfo, | 
| Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1414 | D->isStatic(), | 
|  | 1415 | D->getStorageClassAsWritten(), | 
| Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 1416 | D->isInlineSpecified(), | 
| Richard Smith | 9f569cc | 2011-10-01 02:31:28 +0000 | [diff] [blame] | 1417 | /*isConstexpr*/ false, D->getLocEnd()); | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1418 | } | 
| Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 1419 |  | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 1420 | if (QualifierLoc) | 
|  | 1421 | Method->setQualifierInfo(QualifierLoc); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1422 |  | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1423 | if (TemplateParams) { | 
|  | 1424 | // Our resulting instantiation is actually a function template, since we | 
|  | 1425 | // are substituting only the outer template parameters. For example, given | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1426 | // | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1427 | //   template<typename T> | 
|  | 1428 | //   struct X { | 
|  | 1429 | //     template<typename U> void f(T, U); | 
|  | 1430 | //   }; | 
|  | 1431 | // | 
|  | 1432 | //   X<int> x; | 
|  | 1433 | // | 
|  | 1434 | // We are instantiating the member template "f" within X<int>, which means | 
|  | 1435 | // substituting int for T, but leaving "f" as a member function template. | 
|  | 1436 | // Build the function template itself. | 
|  | 1437 | FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record, | 
|  | 1438 | Method->getLocation(), | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1439 | Method->getDeclName(), | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1440 | TemplateParams, Method); | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1441 | if (isFriend) { | 
|  | 1442 | FunctionTemplate->setLexicalDeclContext(Owner); | 
|  | 1443 | FunctionTemplate->setObjectOfFriendDecl(true); | 
|  | 1444 | } else if (D->isOutOfLine()) | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1445 | FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext()); | 
| Douglas Gregor | d60e105 | 2009-08-27 16:57:43 +0000 | [diff] [blame] | 1446 | Method->setDescribedFunctionTemplate(FunctionTemplate); | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1447 | } else if (FunctionTemplate) { | 
|  | 1448 | // Record this function template specialization. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1449 | std::pair<const TemplateArgument *, unsigned> Innermost | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1450 | = TemplateArgs.getInnermost(); | 
| Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 1451 | Method->setFunctionTemplateSpecialization(FunctionTemplate, | 
| Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 1452 | TemplateArgumentList::CreateCopy(SemaRef.Context, | 
|  | 1453 | Innermost.first, | 
|  | 1454 | Innermost.second), | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1455 | InsertPos); | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1456 | } else if (!isFriend) { | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1457 | // Record that this is an instantiation of a member function. | 
| Douglas Gregor | 2db3232 | 2009-10-07 23:56:10 +0000 | [diff] [blame] | 1458 | Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation); | 
| Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1459 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1460 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1461 | // If we are instantiating a member function defined | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 1462 | // out-of-line, the instantiation will have the same lexical | 
|  | 1463 | // context (which will be a namespace scope) as the template. | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1464 | if (isFriend) { | 
| John McCall | 4eab39f | 2010-10-19 02:26:41 +0000 | [diff] [blame] | 1465 | if (NumTempParamLists) | 
|  | 1466 | Method->setTemplateParameterListsInfo(SemaRef.Context, | 
|  | 1467 | NumTempParamLists, | 
|  | 1468 | TempParamLists.data()); | 
|  | 1469 |  | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1470 | Method->setLexicalDeclContext(Owner); | 
|  | 1471 | Method->setObjectOfFriendDecl(true); | 
|  | 1472 | } else if (D->isOutOfLine()) | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 1473 | Method->setLexicalDeclContext(D->getLexicalDeclContext()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1474 |  | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 1475 | // Attach the parameters | 
|  | 1476 | for (unsigned P = 0; P < Params.size(); ++P) | 
|  | 1477 | Params[P]->setOwningFunction(Method); | 
| David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 1478 | Method->setParams(Params); | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 1479 |  | 
|  | 1480 | if (InitMethodInstantiation(Method, D)) | 
|  | 1481 | Method->setInvalidDecl(); | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1482 |  | 
| Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1483 | LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName, | 
|  | 1484 | Sema::ForRedeclaration); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1485 |  | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1486 | if (!FunctionTemplate || TemplateParams || isFriend) { | 
|  | 1487 | SemaRef.LookupQualifiedName(Previous, Record); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1488 |  | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1489 | // In C++, the previous declaration we find might be a tag type | 
|  | 1490 | // (class or enum). In this case, the new declaration will hide the | 
|  | 1491 | // tag type. Note that this does does not apply if we're declaring a | 
|  | 1492 | // typedef (C++ [dcl.typedef]p4). | 
| John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 1493 | if (Previous.isSingleTagDecl()) | 
|  | 1494 | Previous.clear(); | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1495 | } | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1496 |  | 
| Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 1497 | if (!IsClassScopeSpecialization) | 
| Kaelyn Uhrain | 2c712f5 | 2011-10-11 00:28:45 +0000 | [diff] [blame^] | 1498 | SemaRef.CheckFunctionDeclaration(0, Method, Previous, false); | 
| Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 1499 |  | 
| Douglas Gregor | 4ba3136 | 2009-12-01 17:24:26 +0000 | [diff] [blame] | 1500 | if (D->isPure()) | 
|  | 1501 | SemaRef.CheckPureMethod(Method, SourceRange()); | 
|  | 1502 |  | 
| John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 1503 | Method->setAccess(D->getAccess()); | 
|  | 1504 |  | 
| Anders Carlsson | 9eefa22 | 2011-01-20 06:52:44 +0000 | [diff] [blame] | 1505 | SemaRef.CheckOverrideControl(Method); | 
|  | 1506 |  | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1507 | if (FunctionTemplate) { | 
|  | 1508 | // If there's a function template, let our caller handle it. | 
|  | 1509 | } else if (Method->isInvalidDecl() && !Previous.empty()) { | 
|  | 1510 | // Don't hide a (potentially) valid declaration with an invalid one. | 
|  | 1511 | } else { | 
|  | 1512 | NamedDecl *DeclToAdd = (TemplateParams | 
|  | 1513 | ? cast<NamedDecl>(FunctionTemplate) | 
|  | 1514 | : Method); | 
|  | 1515 | if (isFriend) | 
|  | 1516 | Record->makeDeclVisibleInContext(DeclToAdd); | 
| Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 1517 | else if (!IsClassScopeSpecialization) | 
| John McCall | b0cb022 | 2010-03-27 05:57:59 +0000 | [diff] [blame] | 1518 | Owner->addDecl(DeclToAdd); | 
|  | 1519 | } | 
| Sean Hunt | eb88ae5 | 2011-05-23 21:07:59 +0000 | [diff] [blame] | 1520 |  | 
|  | 1521 | if (D->isExplicitlyDefaulted()) { | 
|  | 1522 | SemaRef.SetDeclDefaulted(Method, Method->getLocation()); | 
|  | 1523 | } else { | 
|  | 1524 | assert(!D->isDefaulted() && | 
|  | 1525 | "should not implicitly default uninstantiated function"); | 
|  | 1526 | } | 
|  | 1527 |  | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1528 | return Method; | 
|  | 1529 | } | 
|  | 1530 |  | 
| Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 1531 | Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) { | 
| Douglas Gregor | dec0666 | 2009-08-21 18:42:58 +0000 | [diff] [blame] | 1532 | return VisitCXXMethodDecl(D); | 
| Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 1533 | } | 
|  | 1534 |  | 
| Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 1535 | Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) { | 
| Douglas Gregor | 17e32f3 | 2009-08-21 22:43:28 +0000 | [diff] [blame] | 1536 | return VisitCXXMethodDecl(D); | 
| Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 1537 | } | 
|  | 1538 |  | 
| Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 1539 | Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) { | 
| Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 1540 | return VisitCXXMethodDecl(D); | 
| Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 1541 | } | 
|  | 1542 |  | 
| Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 1543 | ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) { | 
| John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 1544 | return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, | 
|  | 1545 | llvm::Optional<unsigned>()); | 
| Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 1546 | } | 
|  | 1547 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1548 | Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl( | 
|  | 1549 | TemplateTypeParmDecl *D) { | 
|  | 1550 | // TODO: don't always clone when decls are refcounted. | 
| Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 1551 | assert(D->getTypeForDecl()->isTemplateTypeParmType()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1552 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1553 | TemplateTypeParmDecl *Inst = | 
| Abramo Bagnara | 344577e | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 1554 | TemplateTypeParmDecl::Create(SemaRef.Context, Owner, | 
|  | 1555 | D->getLocStart(), D->getLocation(), | 
| Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 1556 | D->getDepth() - TemplateArgs.getNumLevels(), | 
|  | 1557 | D->getIndex(), D->getIdentifier(), | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1558 | D->wasDeclaredWithTypename(), | 
|  | 1559 | D->isParameterPack()); | 
| Douglas Gregor | 9a299e0 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 1560 | Inst->setAccess(AS_public); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1561 |  | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1562 | if (D->hasDefaultArgument()) | 
|  | 1563 | Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false); | 
|  | 1564 |  | 
|  | 1565 | // Introduce this template parameter's instantiation into the instantiation | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 1566 | // scope. | 
|  | 1567 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1568 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1569 | return Inst; | 
|  | 1570 | } | 
|  | 1571 |  | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1572 | Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl( | 
|  | 1573 | NonTypeTemplateParmDecl *D) { | 
|  | 1574 | // Substitute into the type of the non-type template parameter. | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1575 | TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc(); | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1576 | SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten; | 
|  | 1577 | SmallVector<QualType, 4> ExpandedParameterPackTypes; | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1578 | bool IsExpandedParameterPack = false; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1579 | TypeSourceInfo *DI; | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1580 | QualType T; | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1581 | bool Invalid = false; | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1582 |  | 
|  | 1583 | if (D->isExpandedParameterPack()) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1584 | // The non-type template parameter pack is an already-expanded pack | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1585 | // expansion of types. Substitute into each of the expanded types. | 
|  | 1586 | ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes()); | 
|  | 1587 | ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes()); | 
|  | 1588 | for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) { | 
|  | 1589 | TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), | 
|  | 1590 | TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1591 | D->getLocation(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1592 | D->getDeclName()); | 
|  | 1593 | if (!NewDI) | 
|  | 1594 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1595 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1596 | ExpandedParameterPackTypesAsWritten.push_back(NewDI); | 
|  | 1597 | QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(), | 
|  | 1598 | D->getLocation()); | 
|  | 1599 | if (NewT.isNull()) | 
|  | 1600 | return 0; | 
|  | 1601 | ExpandedParameterPackTypes.push_back(NewT); | 
|  | 1602 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1603 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1604 | IsExpandedParameterPack = true; | 
|  | 1605 | DI = D->getTypeSourceInfo(); | 
|  | 1606 | T = DI->getType(); | 
|  | 1607 | } else if (isa<PackExpansionTypeLoc>(TL)) { | 
|  | 1608 | // The non-type template parameter pack's type is a pack expansion of types. | 
|  | 1609 | // Determine whether we need to expand this parameter pack into separate | 
|  | 1610 | // types. | 
|  | 1611 | PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL); | 
|  | 1612 | TypeLoc Pattern = Expansion.getPatternLoc(); | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1613 | SmallVector<UnexpandedParameterPack, 2> Unexpanded; | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1614 | SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1615 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1616 | // Determine whether the set of unexpanded parameter packs can and should | 
|  | 1617 | // be expanded. | 
|  | 1618 | bool Expand = true; | 
|  | 1619 | bool RetainExpansion = false; | 
|  | 1620 | llvm::Optional<unsigned> OrigNumExpansions | 
|  | 1621 | = Expansion.getTypePtr()->getNumExpansions(); | 
|  | 1622 | llvm::Optional<unsigned> NumExpansions = OrigNumExpansions; | 
|  | 1623 | if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(), | 
|  | 1624 | Pattern.getSourceRange(), | 
| David Blaikie | a71f9d0 | 2011-09-22 02:34:54 +0000 | [diff] [blame] | 1625 | Unexpanded, | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1626 | TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1627 | Expand, RetainExpansion, | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1628 | NumExpansions)) | 
|  | 1629 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1630 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1631 | if (Expand) { | 
|  | 1632 | for (unsigned I = 0; I != *NumExpansions; ++I) { | 
|  | 1633 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I); | 
|  | 1634 | TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1635 | D->getLocation(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1636 | D->getDeclName()); | 
|  | 1637 | if (!NewDI) | 
|  | 1638 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1639 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1640 | ExpandedParameterPackTypesAsWritten.push_back(NewDI); | 
|  | 1641 | QualType NewT = SemaRef.CheckNonTypeTemplateParameterType( | 
|  | 1642 | NewDI->getType(), | 
|  | 1643 | D->getLocation()); | 
|  | 1644 | if (NewT.isNull()) | 
|  | 1645 | return 0; | 
|  | 1646 | ExpandedParameterPackTypes.push_back(NewT); | 
|  | 1647 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1648 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1649 | // Note that we have an expanded parameter pack. The "type" of this | 
|  | 1650 | // expanded parameter pack is the original expansion type, but callers | 
|  | 1651 | // will end up using the expanded parameter pack types for type-checking. | 
|  | 1652 | IsExpandedParameterPack = true; | 
|  | 1653 | DI = D->getTypeSourceInfo(); | 
|  | 1654 | T = DI->getType(); | 
|  | 1655 | } else { | 
|  | 1656 | // We cannot fully expand the pack expansion now, so substitute into the | 
|  | 1657 | // pattern and create a new pack expansion type. | 
|  | 1658 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1); | 
|  | 1659 | TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1660 | D->getLocation(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1661 | D->getDeclName()); | 
|  | 1662 | if (!NewPattern) | 
|  | 1663 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1664 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1665 | DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(), | 
|  | 1666 | NumExpansions); | 
|  | 1667 | if (!DI) | 
|  | 1668 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1669 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1670 | T = DI->getType(); | 
|  | 1671 | } | 
|  | 1672 | } else { | 
|  | 1673 | // Simple case: substitution into a parameter that is not a parameter pack. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1674 | DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs, | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1675 | D->getLocation(), D->getDeclName()); | 
|  | 1676 | if (!DI) | 
|  | 1677 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1678 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1679 | // Check that this type is acceptable for a non-type template parameter. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1680 | T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1681 | D->getLocation()); | 
|  | 1682 | if (T.isNull()) { | 
|  | 1683 | T = SemaRef.Context.IntTy; | 
|  | 1684 | Invalid = true; | 
|  | 1685 | } | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1686 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1687 |  | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1688 | NonTypeTemplateParmDecl *Param; | 
|  | 1689 | if (IsExpandedParameterPack) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1690 | Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1691 | D->getInnerLocStart(), | 
|  | 1692 | D->getLocation(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1693 | D->getDepth() - TemplateArgs.getNumLevels(), | 
|  | 1694 | D->getPosition(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1695 | D->getIdentifier(), T, | 
|  | 1696 | DI, | 
|  | 1697 | ExpandedParameterPackTypes.data(), | 
|  | 1698 | ExpandedParameterPackTypes.size(), | 
|  | 1699 | ExpandedParameterPackTypesAsWritten.data()); | 
|  | 1700 | else | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1701 | Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1702 | D->getInnerLocStart(), | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1703 | D->getLocation(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1704 | D->getDepth() - TemplateArgs.getNumLevels(), | 
|  | 1705 | D->getPosition(), | 
|  | 1706 | D->getIdentifier(), T, | 
| Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1707 | D->isParameterPack(), DI); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1708 |  | 
| Douglas Gregor | 9a299e0 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 1709 | Param->setAccess(AS_public); | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1710 | if (Invalid) | 
|  | 1711 | Param->setInvalidDecl(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1712 |  | 
| Abramo Bagnara | d92f7a2 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 1713 | Param->setDefaultArgument(D->getDefaultArgument(), false); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1714 |  | 
|  | 1715 | // Introduce this template parameter's instantiation into the instantiation | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 1716 | // scope. | 
|  | 1717 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param); | 
| Douglas Gregor | 33642df | 2009-10-23 23:25:44 +0000 | [diff] [blame] | 1718 | return Param; | 
|  | 1719 | } | 
|  | 1720 |  | 
| Anders Carlsson | 0dde18e | 2009-08-28 15:18:15 +0000 | [diff] [blame] | 1721 | Decl * | 
| Douglas Gregor | 9106ef7 | 2009-11-11 16:58:32 +0000 | [diff] [blame] | 1722 | TemplateDeclInstantiator::VisitTemplateTemplateParmDecl( | 
|  | 1723 | TemplateTemplateParmDecl *D) { | 
|  | 1724 | // Instantiate the template parameter list of the template template parameter. | 
|  | 1725 | TemplateParameterList *TempParams = D->getTemplateParameters(); | 
|  | 1726 | TemplateParameterList *InstParams; | 
|  | 1727 | { | 
|  | 1728 | // Perform the actual substitution of template parameters within a new, | 
|  | 1729 | // local instantiation scope. | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1730 | LocalInstantiationScope Scope(SemaRef); | 
| Douglas Gregor | 9106ef7 | 2009-11-11 16:58:32 +0000 | [diff] [blame] | 1731 | InstParams = SubstTemplateParams(TempParams); | 
|  | 1732 | if (!InstParams) | 
|  | 1733 | return NULL; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1734 | } | 
|  | 1735 |  | 
| Douglas Gregor | 9106ef7 | 2009-11-11 16:58:32 +0000 | [diff] [blame] | 1736 | // Build the template template parameter. | 
|  | 1737 | TemplateTemplateParmDecl *Param | 
|  | 1738 | = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1739 | D->getDepth() - TemplateArgs.getNumLevels(), | 
|  | 1740 | D->getPosition(), D->isParameterPack(), | 
| Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1741 | D->getIdentifier(), InstParams); | 
| Abramo Bagnara | d92f7a2 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 1742 | Param->setDefaultArgument(D->getDefaultArgument(), false); | 
| Douglas Gregor | 9a299e0 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 1743 | Param->setAccess(AS_public); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1744 |  | 
|  | 1745 | // Introduce this template parameter's instantiation into the instantiation | 
| Douglas Gregor | 9106ef7 | 2009-11-11 16:58:32 +0000 | [diff] [blame] | 1746 | // scope. | 
|  | 1747 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1748 |  | 
| Douglas Gregor | 9106ef7 | 2009-11-11 16:58:32 +0000 | [diff] [blame] | 1749 | return Param; | 
|  | 1750 | } | 
|  | 1751 |  | 
| Douglas Gregor | 48c32a7 | 2009-11-17 06:07:40 +0000 | [diff] [blame] | 1752 | Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { | 
| Douglas Gregor | db99241 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 1753 | // Using directives are never dependent (and never contain any types or | 
|  | 1754 | // expressions), so they require no explicit instantiation work. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1755 |  | 
| Douglas Gregor | 48c32a7 | 2009-11-17 06:07:40 +0000 | [diff] [blame] | 1756 | UsingDirectiveDecl *Inst | 
|  | 1757 | = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1758 | D->getNamespaceKeyLocation(), | 
| Douglas Gregor | db99241 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 1759 | D->getQualifierLoc(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1760 | D->getIdentLocation(), | 
|  | 1761 | D->getNominatedNamespace(), | 
| Douglas Gregor | 48c32a7 | 2009-11-17 06:07:40 +0000 | [diff] [blame] | 1762 | D->getCommonAncestor()); | 
|  | 1763 | Owner->addDecl(Inst); | 
|  | 1764 | return Inst; | 
|  | 1765 | } | 
|  | 1766 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1767 | Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) { | 
| Douglas Gregor | 1b39820 | 2010-09-29 17:58:28 +0000 | [diff] [blame] | 1768 |  | 
|  | 1769 | // The nested name specifier may be dependent, for example | 
|  | 1770 | //     template <typename T> struct t { | 
|  | 1771 | //       struct s1 { T f1(); }; | 
|  | 1772 | //       struct s2 : s1 { using s1::f1; }; | 
|  | 1773 | //     }; | 
|  | 1774 | //     template struct t<int>; | 
|  | 1775 | // Here, in using s1::f1, s1 refers to t<T>::s1; | 
|  | 1776 | // we need to substitute for t<int>::s1. | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1777 | NestedNameSpecifierLoc QualifierLoc | 
|  | 1778 | = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), | 
|  | 1779 | TemplateArgs); | 
|  | 1780 | if (!QualifierLoc) | 
| Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 1781 | return 0; | 
| Douglas Gregor | 1b39820 | 2010-09-29 17:58:28 +0000 | [diff] [blame] | 1782 |  | 
|  | 1783 | // The name info is non-dependent, so no transformation | 
|  | 1784 | // is required. | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1785 | DeclarationNameInfo NameInfo = D->getNameInfo(); | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1786 |  | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1787 | // We only need to do redeclaration lookups if we're in a class | 
|  | 1788 | // scope (in fact, it's not really even possible in non-class | 
|  | 1789 | // scopes). | 
|  | 1790 | bool CheckRedeclaration = Owner->isRecord(); | 
|  | 1791 |  | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1792 | LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName, | 
|  | 1793 | Sema::ForRedeclaration); | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1794 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1795 | UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner, | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1796 | D->getUsingLocation(), | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1797 | QualifierLoc, | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1798 | NameInfo, | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1799 | D->isTypeName()); | 
|  | 1800 |  | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1801 | CXXScopeSpec SS; | 
|  | 1802 | SS.Adopt(QualifierLoc); | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1803 | if (CheckRedeclaration) { | 
|  | 1804 | Prev.setHideTags(false); | 
|  | 1805 | SemaRef.LookupQualifiedName(Prev, Owner); | 
|  | 1806 |  | 
|  | 1807 | // Check for invalid redeclarations. | 
|  | 1808 | if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(), | 
|  | 1809 | D->isTypeName(), SS, | 
|  | 1810 | D->getLocation(), Prev)) | 
|  | 1811 | NewUD->setInvalidDecl(); | 
|  | 1812 |  | 
|  | 1813 | } | 
|  | 1814 |  | 
|  | 1815 | if (!NewUD->isInvalidDecl() && | 
|  | 1816 | SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS, | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1817 | D->getLocation())) | 
|  | 1818 | NewUD->setInvalidDecl(); | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1819 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1820 | SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D); | 
|  | 1821 | NewUD->setAccess(D->getAccess()); | 
|  | 1822 | Owner->addDecl(NewUD); | 
|  | 1823 |  | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1824 | // Don't process the shadow decls for an invalid decl. | 
|  | 1825 | if (NewUD->isInvalidDecl()) | 
|  | 1826 | return NewUD; | 
|  | 1827 |  | 
| John McCall | 323c310 | 2009-12-22 22:26:37 +0000 | [diff] [blame] | 1828 | bool isFunctionScope = Owner->isFunctionOrMethod(); | 
|  | 1829 |  | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1830 | // Process the shadow decls. | 
|  | 1831 | for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end(); | 
|  | 1832 | I != E; ++I) { | 
|  | 1833 | UsingShadowDecl *Shadow = *I; | 
|  | 1834 | NamedDecl *InstTarget = | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 1835 | cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl( | 
|  | 1836 | Shadow->getLocation(), | 
|  | 1837 | Shadow->getTargetDecl(), | 
|  | 1838 | TemplateArgs)); | 
|  | 1839 | if (!InstTarget) | 
|  | 1840 | return 0; | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1841 |  | 
|  | 1842 | if (CheckRedeclaration && | 
|  | 1843 | SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev)) | 
|  | 1844 | continue; | 
|  | 1845 |  | 
|  | 1846 | UsingShadowDecl *InstShadow | 
|  | 1847 | = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget); | 
|  | 1848 | SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow); | 
| John McCall | 323c310 | 2009-12-22 22:26:37 +0000 | [diff] [blame] | 1849 |  | 
|  | 1850 | if (isFunctionScope) | 
|  | 1851 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow); | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1852 | } | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1853 |  | 
|  | 1854 | return NewUD; | 
|  | 1855 | } | 
|  | 1856 |  | 
|  | 1857 | Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) { | 
| John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1858 | // Ignore these;  we handle them in bulk when processing the UsingDecl. | 
|  | 1859 | return 0; | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1860 | } | 
|  | 1861 |  | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1862 | Decl * TemplateDeclInstantiator | 
|  | 1863 | ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1864 | NestedNameSpecifierLoc QualifierLoc | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1865 | = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1866 | TemplateArgs); | 
|  | 1867 | if (!QualifierLoc) | 
| Anders Carlsson | 0dde18e | 2009-08-28 15:18:15 +0000 | [diff] [blame] | 1868 | return 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1869 |  | 
| Anders Carlsson | 0dde18e | 2009-08-28 15:18:15 +0000 | [diff] [blame] | 1870 | CXXScopeSpec SS; | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1871 | SS.Adopt(QualifierLoc); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1872 |  | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1873 | // Since NameInfo refers to a typename, it cannot be a C++ special name. | 
|  | 1874 | // Hence, no tranformation is required for it. | 
|  | 1875 | DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1876 | NamedDecl *UD = | 
| John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 1877 | SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(), | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1878 | D->getUsingLoc(), SS, NameInfo, 0, | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1879 | /*instantiation*/ true, | 
|  | 1880 | /*typename*/ true, D->getTypenameLoc()); | 
| Douglas Gregor | 4469e8a | 2010-05-19 17:02:24 +0000 | [diff] [blame] | 1881 | if (UD) | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1882 | SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); | 
|  | 1883 |  | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1884 | return UD; | 
|  | 1885 | } | 
|  | 1886 |  | 
|  | 1887 | Decl * TemplateDeclInstantiator | 
|  | 1888 | ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1889 | NestedNameSpecifierLoc QualifierLoc | 
|  | 1890 | = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs); | 
|  | 1891 | if (!QualifierLoc) | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1892 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1893 |  | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1894 | CXXScopeSpec SS; | 
| Douglas Gregor | 5149f37 | 2011-02-25 15:54:31 +0000 | [diff] [blame] | 1895 | SS.Adopt(QualifierLoc); | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1896 |  | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1897 | DeclarationNameInfo NameInfo | 
|  | 1898 | = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs); | 
|  | 1899 |  | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1900 | NamedDecl *UD = | 
|  | 1901 | SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(), | 
| Abramo Bagnara | ef3dce8 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 1902 | D->getUsingLoc(), SS, NameInfo, 0, | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1903 | /*instantiation*/ true, | 
|  | 1904 | /*typename*/ false, SourceLocation()); | 
| Douglas Gregor | 4469e8a | 2010-05-19 17:02:24 +0000 | [diff] [blame] | 1905 | if (UD) | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 1906 | SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); | 
|  | 1907 |  | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 1908 | return UD; | 
| Anders Carlsson | 0dde18e | 2009-08-28 15:18:15 +0000 | [diff] [blame] | 1909 | } | 
|  | 1910 |  | 
| Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 1911 |  | 
|  | 1912 | Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl( | 
|  | 1913 | ClassScopeFunctionSpecializationDecl *Decl) { | 
|  | 1914 | CXXMethodDecl *OldFD = Decl->getSpecialization(); | 
|  | 1915 | CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true)); | 
|  | 1916 |  | 
|  | 1917 | LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName, | 
|  | 1918 | Sema::ForRedeclaration); | 
|  | 1919 |  | 
|  | 1920 | SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext); | 
|  | 1921 | if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) { | 
|  | 1922 | NewFD->setInvalidDecl(); | 
|  | 1923 | return NewFD; | 
|  | 1924 | } | 
|  | 1925 |  | 
|  | 1926 | // Associate the specialization with the pattern. | 
|  | 1927 | FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl()); | 
|  | 1928 | assert(Specialization && "Class scope Specialization is null"); | 
|  | 1929 | SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD); | 
|  | 1930 |  | 
|  | 1931 | return NewFD; | 
|  | 1932 | } | 
|  | 1933 |  | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1934 | Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner, | 
| Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1935 | const MultiLevelTemplateArgumentList &TemplateArgs) { | 
| Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 1936 | TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs); | 
| Douglas Gregor | 2fa9800 | 2010-02-16 19:28:15 +0000 | [diff] [blame] | 1937 | if (D->isInvalidDecl()) | 
|  | 1938 | return 0; | 
|  | 1939 |  | 
| Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 1940 | return Instantiator.Visit(D); | 
|  | 1941 | } | 
|  | 1942 |  | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1943 | /// \brief Instantiates a nested template parameter list in the current | 
|  | 1944 | /// instantiation context. | 
|  | 1945 | /// | 
|  | 1946 | /// \param L The parameter list to instantiate | 
|  | 1947 | /// | 
|  | 1948 | /// \returns NULL if there was an error | 
|  | 1949 | TemplateParameterList * | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1950 | TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) { | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1951 | // Get errors for all the parameters before bailing out. | 
|  | 1952 | bool Invalid = false; | 
|  | 1953 |  | 
|  | 1954 | unsigned N = L->size(); | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1955 | typedef SmallVector<NamedDecl *, 8> ParamVector; | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1956 | ParamVector Params; | 
|  | 1957 | Params.reserve(N); | 
|  | 1958 | for (TemplateParameterList::iterator PI = L->begin(), PE = L->end(); | 
|  | 1959 | PI != PE; ++PI) { | 
| Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1960 | NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI)); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1961 | Params.push_back(D); | 
| Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 1962 | Invalid = Invalid || !D || D->isInvalidDecl(); | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1963 | } | 
|  | 1964 |  | 
|  | 1965 | // Clean up if we had an error. | 
| Douglas Gregor | ff331c1 | 2010-07-25 18:17:45 +0000 | [diff] [blame] | 1966 | if (Invalid) | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1967 | return NULL; | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1968 |  | 
|  | 1969 | TemplateParameterList *InstL | 
|  | 1970 | = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(), | 
|  | 1971 | L->getLAngleLoc(), &Params.front(), N, | 
|  | 1972 | L->getRAngleLoc()); | 
|  | 1973 | return InstL; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1974 | } | 
| John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1975 |  | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1976 | /// \brief Instantiate the declaration of a class template partial | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1977 | /// specialization. | 
|  | 1978 | /// | 
|  | 1979 | /// \param ClassTemplate the (instantiated) class template that is partially | 
|  | 1980 | // specialized by the instantiation of \p PartialSpec. | 
|  | 1981 | /// | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1982 | /// \param PartialSpec the (uninstantiated) class template partial | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1983 | /// specialization that we are instantiating. | 
|  | 1984 | /// | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1985 | /// \returns The instantiated partial specialization, if successful; otherwise, | 
|  | 1986 | /// NULL to indicate an error. | 
|  | 1987 | ClassTemplatePartialSpecializationDecl * | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1988 | TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization( | 
|  | 1989 | ClassTemplateDecl *ClassTemplate, | 
|  | 1990 | ClassTemplatePartialSpecializationDecl *PartialSpec) { | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 1991 | // Create a local instantiation scope for this class template partial | 
|  | 1992 | // specialization, which will contain the instantiations of the template | 
|  | 1993 | // parameters. | 
| John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1994 | LocalInstantiationScope Scope(SemaRef); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 1995 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1996 | // Substitute into the template parameters of the class template partial | 
|  | 1997 | // specialization. | 
|  | 1998 | TemplateParameterList *TempParams = PartialSpec->getTemplateParameters(); | 
|  | 1999 | TemplateParameterList *InstParams = SubstTemplateParams(TempParams); | 
|  | 2000 | if (!InstParams) | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 2001 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2002 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2003 | // Substitute into the template arguments of the class template partial | 
|  | 2004 | // specialization. | 
| John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2005 | TemplateArgumentListInfo InstTemplateArgs; // no angle locations | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2006 | if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(), | 
|  | 2007 | PartialSpec->getNumTemplateArgsAsWritten(), | 
| Douglas Gregor | e02e262 | 2010-12-22 21:19:48 +0000 | [diff] [blame] | 2008 | InstTemplateArgs, TemplateArgs)) | 
|  | 2009 | return 0; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2010 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2011 | // Check that the template argument list is well-formed for this | 
|  | 2012 | // class template. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2013 | SmallVector<TemplateArgument, 4> Converted; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2014 | if (SemaRef.CheckTemplateArgumentList(ClassTemplate, | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2015 | PartialSpec->getLocation(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2016 | InstTemplateArgs, | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2017 | false, | 
|  | 2018 | Converted)) | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 2019 | return 0; | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2020 |  | 
|  | 2021 | // Figure out where to insert this class template partial specialization | 
|  | 2022 | // in the member template's set of class template partial specializations. | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2023 | void *InsertPos = 0; | 
|  | 2024 | ClassTemplateSpecializationDecl *PrevDecl | 
| Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 2025 | = ClassTemplate->findPartialSpecialization(Converted.data(), | 
|  | 2026 | Converted.size(), InsertPos); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2027 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2028 | // Build the canonical type that describes the converted template | 
|  | 2029 | // arguments of the class template partial specialization. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2030 | QualType CanonType | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2031 | = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate), | 
| Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 2032 | Converted.data(), | 
|  | 2033 | Converted.size()); | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2034 |  | 
|  | 2035 | // Build the fully-sugared type for this class template | 
|  | 2036 | // specialization as the user wrote in the specialization | 
|  | 2037 | // itself. This means that we'll pretty-print the type retrieved | 
|  | 2038 | // from the specialization's declaration the way that the user | 
|  | 2039 | // actually wrote the specialization, rather than formatting the | 
|  | 2040 | // name based on the "canonical" representation used to store the | 
|  | 2041 | // template arguments in the specialization. | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 2042 | TypeSourceInfo *WrittenTy | 
|  | 2043 | = SemaRef.Context.getTemplateSpecializationTypeInfo( | 
|  | 2044 | TemplateName(ClassTemplate), | 
|  | 2045 | PartialSpec->getLocation(), | 
| John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2046 | InstTemplateArgs, | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2047 | CanonType); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2048 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2049 | if (PrevDecl) { | 
|  | 2050 | // We've already seen a partial specialization with the same template | 
|  | 2051 | // parameters and template arguments. This can happen, for example, when | 
|  | 2052 | // substituting the outer template arguments ends up causing two | 
|  | 2053 | // class template partial specializations of a member class template | 
|  | 2054 | // to have identical forms, e.g., | 
|  | 2055 | // | 
|  | 2056 | //   template<typename T, typename U> | 
|  | 2057 | //   struct Outer { | 
|  | 2058 | //     template<typename X, typename Y> struct Inner; | 
|  | 2059 | //     template<typename Y> struct Inner<T, Y>; | 
|  | 2060 | //     template<typename Y> struct Inner<U, Y>; | 
|  | 2061 | //   }; | 
|  | 2062 | // | 
|  | 2063 | //   Outer<int, int> outer; // error: the partial specializations of Inner | 
|  | 2064 | //                          // have the same signature. | 
|  | 2065 | SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared) | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 2066 | << WrittenTy->getType(); | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2067 | SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here) | 
|  | 2068 | << SemaRef.Context.getTypeDeclType(PrevDecl); | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 2069 | return 0; | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2070 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2071 |  | 
|  | 2072 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2073 | // Create the class template partial specialization declaration. | 
|  | 2074 | ClassTemplatePartialSpecializationDecl *InstPartialSpec | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2075 | = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, | 
| Douglas Gregor | 13c8577 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 2076 | PartialSpec->getTagKind(), | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2077 | Owner, | 
| Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2078 | PartialSpec->getLocStart(), | 
|  | 2079 | PartialSpec->getLocation(), | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2080 | InstParams, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2081 | ClassTemplate, | 
| Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 2082 | Converted.data(), | 
|  | 2083 | Converted.size(), | 
| John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2084 | InstTemplateArgs, | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 2085 | CanonType, | 
| Douglas Gregor | dc60c1e | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 2086 | 0, | 
| Argyrios Kyrtzidis | cc0b1bc | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 2087 | ClassTemplate->getNextPartialSpecSequenceNumber()); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 2088 | // Substitute the nested name specifier, if any. | 
|  | 2089 | if (SubstQualifier(PartialSpec, InstPartialSpec)) | 
|  | 2090 | return 0; | 
|  | 2091 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2092 | InstPartialSpec->setInstantiatedFromMember(PartialSpec); | 
| Douglas Gregor | 4469e8a | 2010-05-19 17:02:24 +0000 | [diff] [blame] | 2093 | InstPartialSpec->setTypeAsWritten(WrittenTy); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2094 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2095 | // Add this partial specialization to the set of class template partial | 
|  | 2096 | // specializations. | 
| Argyrios Kyrtzidis | cc0b1bc | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 2097 | ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos); | 
| Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 2098 | return InstPartialSpec; | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2099 | } | 
|  | 2100 |  | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 2101 | TypeSourceInfo* | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2102 | TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D, | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2103 | SmallVectorImpl<ParmVarDecl *> &Params) { | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 2104 | TypeSourceInfo *OldTInfo = D->getTypeSourceInfo(); | 
|  | 2105 | assert(OldTInfo && "substituting function without type source info"); | 
|  | 2106 | assert(Params.empty() && "parameter vector is non-empty at start"); | 
| John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 2107 | TypeSourceInfo *NewTInfo | 
|  | 2108 | = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs, | 
|  | 2109 | D->getTypeSpecStartLoc(), | 
|  | 2110 | D->getDeclName()); | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 2111 | if (!NewTInfo) | 
|  | 2112 | return 0; | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2113 |  | 
| Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 2114 | if (NewTInfo != OldTInfo) { | 
|  | 2115 | // Get parameters from the new type info. | 
| Abramo Bagnara | 140a2bd | 2010-12-13 22:27:55 +0000 | [diff] [blame] | 2116 | TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens(); | 
| Douglas Gregor | 6920cdc | 2010-05-03 15:32:18 +0000 | [diff] [blame] | 2117 | if (FunctionProtoTypeLoc *OldProtoLoc | 
|  | 2118 | = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) { | 
| Abramo Bagnara | 140a2bd | 2010-12-13 22:27:55 +0000 | [diff] [blame] | 2119 | TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens(); | 
| Douglas Gregor | 6920cdc | 2010-05-03 15:32:18 +0000 | [diff] [blame] | 2120 | FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL); | 
|  | 2121 | assert(NewProtoLoc && "Missing prototype?"); | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2122 | unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs(); | 
|  | 2123 | for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs(); | 
|  | 2124 | OldIdx != NumOldParams; ++OldIdx) { | 
|  | 2125 | ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx); | 
|  | 2126 | if (!OldParam->isParameterPack() || | 
|  | 2127 | (NewIdx < NumNewParams && | 
|  | 2128 | NewProtoLoc->getArg(NewIdx)->isParameterPack())) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2129 | // Simple case: normal parameter, or a parameter pack that's | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2130 | // instantiated to a (still-dependent) parameter pack. | 
|  | 2131 | ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++); | 
|  | 2132 | Params.push_back(NewParam); | 
|  | 2133 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam, | 
|  | 2134 | NewParam); | 
|  | 2135 | continue; | 
|  | 2136 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2137 |  | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2138 | // Parameter pack: make the instantiation an argument pack. | 
|  | 2139 | SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack( | 
|  | 2140 | OldParam); | 
| Douglas Gregor | 21371ea | 2011-01-11 03:14:20 +0000 | [diff] [blame] | 2141 | unsigned NumArgumentsInExpansion | 
|  | 2142 | = SemaRef.getNumArgumentsInExpansion(OldParam->getType(), | 
|  | 2143 | TemplateArgs); | 
|  | 2144 | while (NumArgumentsInExpansion--) { | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2145 | ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++); | 
|  | 2146 | Params.push_back(NewParam); | 
|  | 2147 | SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam, | 
|  | 2148 | NewParam); | 
|  | 2149 | } | 
| Douglas Gregor | 6920cdc | 2010-05-03 15:32:18 +0000 | [diff] [blame] | 2150 | } | 
| Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2151 | } | 
| Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 2152 | } else { | 
|  | 2153 | // The function type itself was not dependent and therefore no | 
|  | 2154 | // substitution occurred. However, we still need to instantiate | 
|  | 2155 | // the function parameters themselves. | 
| Abramo Bagnara | 140a2bd | 2010-12-13 22:27:55 +0000 | [diff] [blame] | 2156 | TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens(); | 
| Douglas Gregor | 6920cdc | 2010-05-03 15:32:18 +0000 | [diff] [blame] | 2157 | if (FunctionProtoTypeLoc *OldProtoLoc | 
|  | 2158 | = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) { | 
|  | 2159 | for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) { | 
|  | 2160 | ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i)); | 
|  | 2161 | if (!Parm) | 
|  | 2162 | return 0; | 
|  | 2163 | Params.push_back(Parm); | 
|  | 2164 | } | 
| Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 2165 | } | 
|  | 2166 | } | 
| John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 2167 | return NewTInfo; | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2168 | } | 
|  | 2169 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2170 | /// \brief Initializes the common fields of an instantiation function | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2171 | /// declaration (New) from the corresponding fields of its template (Tmpl). | 
|  | 2172 | /// | 
|  | 2173 | /// \returns true if there was an error | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2174 | bool | 
|  | 2175 | TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New, | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2176 | FunctionDecl *Tmpl) { | 
| Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 2177 | if (Tmpl->isDeletedAsWritten()) | 
|  | 2178 | New->setDeletedAsWritten(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2179 |  | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2180 | // If we are performing substituting explicitly-specified template arguments | 
|  | 2181 | // or deduced template arguments into a function template and we reach this | 
|  | 2182 | // point, we are now past the point where SFINAE applies and have committed | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2183 | // to keeping the new function template specialization. We therefore | 
|  | 2184 | // convert the active template instantiation for the function template | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2185 | // into a template instantiation for this specific function template | 
|  | 2186 | // specialization, which is not a SFINAE context, so that we diagnose any | 
|  | 2187 | // further errors in the declaration itself. | 
|  | 2188 | typedef Sema::ActiveTemplateInstantiation ActiveInstType; | 
|  | 2189 | ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back(); | 
|  | 2190 | if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution || | 
|  | 2191 | ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2192 | if (FunctionTemplateDecl *FunTmpl | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2193 | = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2194 | assert(FunTmpl->getTemplatedDecl() == Tmpl && | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2195 | "Deduction from the wrong function template?"); | 
| Daniel Dunbar | bcbb8bd | 2009-07-16 22:10:11 +0000 | [diff] [blame] | 2196 | (void) FunTmpl; | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2197 | ActiveInst.Kind = ActiveInstType::TemplateInstantiation; | 
|  | 2198 | ActiveInst.Entity = reinterpret_cast<uintptr_t>(New); | 
| Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 2199 | --SemaRef.NonInstantiationEntries; | 
| Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 2200 | } | 
|  | 2201 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2202 |  | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2203 | const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>(); | 
|  | 2204 | assert(Proto && "Function template without prototype?"); | 
|  | 2205 |  | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2206 | if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) { | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2207 | // The function has an exception specification or a "noreturn" | 
|  | 2208 | // attribute. Substitute into each of the exception types. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2209 | SmallVector<QualType, 4> Exceptions; | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2210 | for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) { | 
|  | 2211 | // FIXME: Poor location information! | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2212 | if (const PackExpansionType *PackExpansion | 
|  | 2213 | = Proto->getExceptionType(I)->getAs<PackExpansionType>()) { | 
|  | 2214 | // We have a pack expansion. Instantiate it. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2215 | SmallVector<UnexpandedParameterPack, 2> Unexpanded; | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2216 | SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(), | 
|  | 2217 | Unexpanded); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2218 | assert(!Unexpanded.empty() && | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2219 | "Pack expansion without parameter packs?"); | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2220 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2221 | bool Expand = false; | 
| Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2222 | bool RetainExpansion = false; | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2223 | llvm::Optional<unsigned> NumExpansions | 
|  | 2224 | = PackExpansion->getNumExpansions(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2225 | if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(), | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2226 | SourceRange(), | 
| David Blaikie | a71f9d0 | 2011-09-22 02:34:54 +0000 | [diff] [blame] | 2227 | Unexpanded, | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2228 | TemplateArgs, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2229 | Expand, | 
| Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2230 | RetainExpansion, | 
|  | 2231 | NumExpansions)) | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2232 | break; | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2233 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2234 | if (!Expand) { | 
|  | 2235 | // We can't expand this pack expansion into separate arguments yet; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2236 | // just substitute into the pattern and create a new pack expansion | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2237 | // type. | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2238 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2239 | QualType T = SemaRef.SubstType(PackExpansion->getPattern(), | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2240 | TemplateArgs, | 
|  | 2241 | New->getLocation(), New->getDeclName()); | 
|  | 2242 | if (T.isNull()) | 
|  | 2243 | break; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2244 |  | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2245 | T = SemaRef.Context.getPackExpansionType(T, NumExpansions); | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2246 | Exceptions.push_back(T); | 
|  | 2247 | continue; | 
|  | 2248 | } | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2249 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2250 | // Substitute into the pack expansion pattern for each template | 
|  | 2251 | bool Invalid = false; | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2252 | for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) { | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2253 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2254 |  | 
|  | 2255 | QualType T = SemaRef.SubstType(PackExpansion->getPattern(), | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2256 | TemplateArgs, | 
|  | 2257 | New->getLocation(), New->getDeclName()); | 
|  | 2258 | if (T.isNull()) { | 
|  | 2259 | Invalid = true; | 
|  | 2260 | break; | 
|  | 2261 | } | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2262 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2263 | Exceptions.push_back(T); | 
|  | 2264 | } | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2265 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2266 | if (Invalid) | 
|  | 2267 | break; | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2268 |  | 
| Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 2269 | continue; | 
|  | 2270 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2271 |  | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2272 | QualType T | 
|  | 2273 | = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs, | 
|  | 2274 | New->getLocation(), New->getDeclName()); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2275 | if (T.isNull() || | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2276 | SemaRef.CheckSpecifiedExceptionType(T, New->getLocation())) | 
|  | 2277 | continue; | 
|  | 2278 |  | 
|  | 2279 | Exceptions.push_back(T); | 
|  | 2280 | } | 
| Sebastian Redl | 56fb926 | 2011-03-14 18:51:50 +0000 | [diff] [blame] | 2281 | Expr *NoexceptExpr = 0; | 
|  | 2282 | if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) { | 
| Douglas Gregor | 3617e19 | 2011-06-01 15:55:51 +0000 | [diff] [blame] | 2283 | EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated); | 
| Sebastian Redl | 56fb926 | 2011-03-14 18:51:50 +0000 | [diff] [blame] | 2284 | ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs); | 
|  | 2285 | if (E.isUsable()) | 
| Douglas Gregor | 5c340e8 | 2011-10-09 18:31:23 +0000 | [diff] [blame] | 2286 | E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart()); | 
|  | 2287 |  | 
|  | 2288 | if (E.isUsable()) { | 
|  | 2289 | SourceLocation ErrLoc; | 
|  | 2290 | llvm::APSInt NoexceptVal; | 
| Sebastian Redl | 56fb926 | 2011-03-14 18:51:50 +0000 | [diff] [blame] | 2291 | NoexceptExpr = E.take(); | 
| Douglas Gregor | 5c340e8 | 2011-10-09 18:31:23 +0000 | [diff] [blame] | 2292 | if (!NoexceptExpr->isTypeDependent() && | 
|  | 2293 | !NoexceptExpr->isValueDependent() && | 
|  | 2294 | !NoexceptExpr->isIntegerConstantExpr(NoexceptVal, SemaRef.Context, | 
|  | 2295 | &ErrLoc, /*evaluated=*/false)){ | 
|  | 2296 | SemaRef.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression) | 
|  | 2297 | << NoexceptExpr->getSourceRange(); | 
|  | 2298 | NoexceptExpr = 0; | 
|  | 2299 | } | 
|  | 2300 | } | 
| Sebastian Redl | 56fb926 | 2011-03-14 18:51:50 +0000 | [diff] [blame] | 2301 | } | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2302 |  | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2303 | // Rebuild the function type | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2304 |  | 
| John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2305 | FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); | 
| Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2306 | EPI.ExceptionSpecType = Proto->getExceptionSpecType(); | 
| John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2307 | EPI.NumExceptions = Exceptions.size(); | 
|  | 2308 | EPI.Exceptions = Exceptions.data(); | 
| Sebastian Redl | 56fb926 | 2011-03-14 18:51:50 +0000 | [diff] [blame] | 2309 | EPI.NoexceptExpr = NoexceptExpr; | 
| John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2310 | EPI.ExtInfo = Proto->getExtInfo(); | 
|  | 2311 |  | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2312 | const FunctionProtoType *NewProto | 
|  | 2313 | = New->getType()->getAs<FunctionProtoType>(); | 
|  | 2314 | assert(NewProto && "Template instantiation without function prototype?"); | 
|  | 2315 | New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(), | 
|  | 2316 | NewProto->arg_type_begin(), | 
|  | 2317 | NewProto->getNumArgs(), | 
| John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2318 | EPI)); | 
| Douglas Gregor | 0ae7b3f | 2009-12-08 17:45:32 +0000 | [diff] [blame] | 2319 | } | 
|  | 2320 |  | 
| Richard Smith | 9f569cc | 2011-10-01 02:31:28 +0000 | [diff] [blame] | 2321 | // C++0x [dcl.constexpr]p6: If the instantiated template specialization of | 
|  | 2322 | // a constexpr function template satisfies the requirements for a constexpr | 
|  | 2323 | // function, then it is a constexpr function. | 
|  | 2324 | if (Tmpl->isConstexpr() && | 
|  | 2325 | SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation)) | 
|  | 2326 | New->setConstexpr(true); | 
|  | 2327 |  | 
| Rafael Espindola | 19f74ac | 2011-07-06 15:46:09 +0000 | [diff] [blame] | 2328 | const FunctionDecl* Definition = Tmpl; | 
|  | 2329 |  | 
|  | 2330 | // Get the definition. Leaves the variable unchanged if undefined. | 
|  | 2331 | Tmpl->isDefined(Definition); | 
|  | 2332 |  | 
|  | 2333 | SemaRef.InstantiateAttrs(TemplateArgs, Definition, New); | 
| Douglas Gregor | 7cf84d6 | 2010-06-15 17:05:35 +0000 | [diff] [blame] | 2334 |  | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2335 | return false; | 
|  | 2336 | } | 
|  | 2337 |  | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2338 | /// \brief Initializes common fields of an instantiated method | 
|  | 2339 | /// declaration (New) from the corresponding fields of its template | 
|  | 2340 | /// (Tmpl). | 
|  | 2341 | /// | 
|  | 2342 | /// \returns true if there was an error | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2343 | bool | 
|  | 2344 | TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New, | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2345 | CXXMethodDecl *Tmpl) { | 
| Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2346 | if (InitFunctionInstantiation(New, Tmpl)) | 
|  | 2347 | return true; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2348 |  | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2349 | New->setAccess(Tmpl->getAccess()); | 
| Fariborz Jahanian | e7184df | 2009-12-03 18:44:40 +0000 | [diff] [blame] | 2350 | if (Tmpl->isVirtualAsWritten()) | 
| Douglas Gregor | 85606eb | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 2351 | New->setVirtualAsWritten(true); | 
| Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 2352 |  | 
|  | 2353 | // FIXME: attributes | 
|  | 2354 | // FIXME: New needs a pointer to Tmpl | 
|  | 2355 | return false; | 
|  | 2356 | } | 
| Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2357 |  | 
|  | 2358 | /// \brief Instantiate the definition of the given function from its | 
|  | 2359 | /// template. | 
|  | 2360 | /// | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2361 | /// \param PointOfInstantiation the point at which the instantiation was | 
|  | 2362 | /// required. Note that this is not precisely a "point of instantiation" | 
|  | 2363 | /// for the function, but it's close. | 
|  | 2364 | /// | 
| Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2365 | /// \param Function the already-instantiated declaration of a | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2366 | /// function template specialization or member function of a class template | 
|  | 2367 | /// specialization. | 
|  | 2368 | /// | 
|  | 2369 | /// \param Recursive if true, recursively instantiates any functions that | 
|  | 2370 | /// are required by this instantiation. | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2371 | /// | 
|  | 2372 | /// \param DefinitionRequired if true, then we are performing an explicit | 
|  | 2373 | /// instantiation where the body of the function is required. Complain if | 
|  | 2374 | /// there is no such body. | 
| Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 2375 | void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2376 | FunctionDecl *Function, | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2377 | bool Recursive, | 
|  | 2378 | bool DefinitionRequired) { | 
| Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 2379 | if (Function->isInvalidDecl() || Function->isDefined()) | 
| Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 2380 | return; | 
|  | 2381 |  | 
| Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 2382 | // Never instantiate an explicit specialization except if it is a class scope | 
|  | 2383 | // explicit specialization. | 
|  | 2384 | if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && | 
|  | 2385 | !Function->getClassScopeSpecializationPattern()) | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2386 | return; | 
| Douglas Gregor | 6cfacfe | 2010-05-17 17:34:56 +0000 | [diff] [blame] | 2387 |  | 
| Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 2388 | // Find the function body that we'll be substituting. | 
| Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 2389 | const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern(); | 
| Sean Hunt | f996e05 | 2011-05-27 20:00:14 +0000 | [diff] [blame] | 2390 | assert(PatternDecl && "instantiating a non-template"); | 
|  | 2391 |  | 
|  | 2392 | Stmt *Pattern = PatternDecl->getBody(PatternDecl); | 
|  | 2393 | assert(PatternDecl && "template definition is not a template"); | 
|  | 2394 | if (!Pattern) { | 
|  | 2395 | // Try to find a defaulted definition | 
|  | 2396 | PatternDecl->isDefined(PatternDecl); | 
| Sean Hunt | dfab854 | 2011-05-25 22:02:25 +0000 | [diff] [blame] | 2397 | } | 
| Sean Hunt | f996e05 | 2011-05-27 20:00:14 +0000 | [diff] [blame] | 2398 | assert(PatternDecl && "template definition is not a template"); | 
| Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 2399 |  | 
| Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2400 | // Postpone late parsed template instantiations. | 
| Sean Hunt | f996e05 | 2011-05-27 20:00:14 +0000 | [diff] [blame] | 2401 | if (PatternDecl->isLateTemplateParsed() && | 
| Nick Lewycky | 8a29bc0 | 2011-05-12 03:51:24 +0000 | [diff] [blame] | 2402 | !LateTemplateParser) { | 
| Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2403 | PendingInstantiations.push_back( | 
|  | 2404 | std::make_pair(Function, PointOfInstantiation)); | 
|  | 2405 | return; | 
|  | 2406 | } | 
|  | 2407 |  | 
|  | 2408 | // Call the LateTemplateParser callback if there a need to late parse | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2409 | // a templated function definition. | 
| Sean Hunt | f996e05 | 2011-05-27 20:00:14 +0000 | [diff] [blame] | 2410 | if (!Pattern && PatternDecl->isLateTemplateParsed() && | 
| Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2411 | LateTemplateParser) { | 
| Francois Pichet | 4a47e8d | 2011-04-23 11:52:20 +0000 | [diff] [blame] | 2412 | LateTemplateParser(OpaqueParser, PatternDecl); | 
| Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2413 | Pattern = PatternDecl->getBody(PatternDecl); | 
|  | 2414 | } | 
|  | 2415 |  | 
| Sean Hunt | f996e05 | 2011-05-27 20:00:14 +0000 | [diff] [blame] | 2416 | if (!Pattern && !PatternDecl->isDefaulted()) { | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2417 | if (DefinitionRequired) { | 
|  | 2418 | if (Function->getPrimaryTemplate()) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2419 | Diag(PointOfInstantiation, | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2420 | diag::err_explicit_instantiation_undefined_func_template) | 
|  | 2421 | << Function->getPrimaryTemplate(); | 
|  | 2422 | else | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2423 | Diag(PointOfInstantiation, | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2424 | diag::err_explicit_instantiation_undefined_member) | 
|  | 2425 | << 1 << Function->getDeclName() << Function->getDeclContext(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2426 |  | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2427 | if (PatternDecl) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2428 | Diag(PatternDecl->getLocation(), | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2429 | diag::note_explicit_instantiation_here); | 
| Douglas Gregor | cfe833b | 2010-05-17 17:57:54 +0000 | [diff] [blame] | 2430 | Function->setInvalidDecl(); | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 2431 | } else if (Function->getTemplateSpecializationKind() | 
|  | 2432 | == TSK_ExplicitInstantiationDefinition) { | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2433 | PendingInstantiations.push_back( | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 2434 | std::make_pair(Function, PointOfInstantiation)); | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2435 | } | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 2436 |  | 
| Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 2437 | return; | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2438 | } | 
| Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 2439 |  | 
| Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2440 | // C++0x [temp.explicit]p9: | 
|  | 2441 | //   Except for inline functions, other explicit instantiation declarations | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2442 | //   have the effect of suppressing the implicit instantiation of the entity | 
| Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2443 | //   to which they refer. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2444 | if (Function->getTemplateSpecializationKind() | 
| Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2445 | == TSK_ExplicitInstantiationDeclaration && | 
| Douglas Gregor | 7ced9c8 | 2009-10-27 21:11:48 +0000 | [diff] [blame] | 2446 | !PatternDecl->isInlined()) | 
| Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2447 | return; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2448 |  | 
| Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 2449 | InstantiatingTemplate Inst(*this, PointOfInstantiation, Function); | 
|  | 2450 | if (Inst) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2451 | return; | 
|  | 2452 |  | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2453 | // If we're performing recursive template instantiation, create our own | 
|  | 2454 | // queue of pending implicit instantiations that we will instantiate later, | 
|  | 2455 | // while we're still within our own instantiation context. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2456 | SmallVector<VTableUse, 16> SavedVTableUses; | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2457 | std::deque<PendingImplicitInstantiation> SavedPendingInstantiations; | 
| Nick Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 2458 | if (Recursive) { | 
|  | 2459 | VTableUses.swap(SavedVTableUses); | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2460 | PendingInstantiations.swap(SavedPendingInstantiations); | 
| Nick Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 2461 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2462 |  | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2463 | EnterExpressionEvaluationContext EvalContext(*this, | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2464 | Sema::PotentiallyEvaluated); | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2465 | ActOnStartOfFunctionDef(0, Function); | 
| Douglas Gregor | e2c31ff | 2009-05-15 17:59:04 +0000 | [diff] [blame] | 2466 |  | 
| Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 2467 | // Introduce a new scope where local variable instantiations will be | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 2468 | // recorded, unless we're actually a member function within a local | 
|  | 2469 | // class, in which case we need to merge our results with the parent | 
|  | 2470 | // scope (of the enclosing function). | 
|  | 2471 | bool MergeWithParentScope = false; | 
|  | 2472 | if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext())) | 
|  | 2473 | MergeWithParentScope = Rec->isLocalClass(); | 
|  | 2474 |  | 
|  | 2475 | LocalInstantiationScope Scope(*this, MergeWithParentScope); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2476 |  | 
| Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 2477 | // Introduce the instantiated function parameters into the local | 
| Peter Collingbourne | 8a6c0f1 | 2010-07-18 16:45:46 +0000 | [diff] [blame] | 2478 | // instantiation scope, and set the parameter names to those used | 
|  | 2479 | // in the template. | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2480 | unsigned FParamIdx = 0; | 
| Peter Collingbourne | 8a6c0f1 | 2010-07-18 16:45:46 +0000 | [diff] [blame] | 2481 | for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) { | 
|  | 2482 | const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I); | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2483 | if (!PatternParam->isParameterPack()) { | 
|  | 2484 | // Simple case: not a parameter pack. | 
|  | 2485 | assert(FParamIdx < Function->getNumParams()); | 
|  | 2486 | ParmVarDecl *FunctionParam = Function->getParamDecl(I); | 
|  | 2487 | FunctionParam->setDeclName(PatternParam->getDeclName()); | 
|  | 2488 | Scope.InstantiatedLocal(PatternParam, FunctionParam); | 
|  | 2489 | ++FParamIdx; | 
|  | 2490 | continue; | 
|  | 2491 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2492 |  | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2493 | // Expand the parameter pack. | 
|  | 2494 | Scope.MakeInstantiatedLocalArgPack(PatternParam); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2495 | for (unsigned NumFParams = Function->getNumParams(); | 
|  | 2496 | FParamIdx < NumFParams; | 
| Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2497 | ++FParamIdx) { | 
|  | 2498 | ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx); | 
|  | 2499 | FunctionParam->setDeclName(PatternParam->getDeclName()); | 
|  | 2500 | Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam); | 
|  | 2501 | } | 
| Peter Collingbourne | 8a6c0f1 | 2010-07-18 16:45:46 +0000 | [diff] [blame] | 2502 | } | 
| Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 2503 |  | 
| Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 2504 | // Enter the scope of this instantiation. We don't use | 
|  | 2505 | // PushDeclContext because we don't have a scope. | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2506 | Sema::ContextRAII savedContext(*this, Function); | 
| Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 2507 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2508 | MultiLevelTemplateArgumentList TemplateArgs = | 
| Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 2509 | getTemplateInstantiationArgs(Function, 0, false, PatternDecl); | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2510 |  | 
| Sean Hunt | cd10dec | 2011-05-23 23:14:04 +0000 | [diff] [blame] | 2511 | if (PatternDecl->isDefaulted()) { | 
|  | 2512 | ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true); | 
|  | 2513 |  | 
|  | 2514 | SetDeclDefaulted(Function, PatternDecl->getLocation()); | 
| Sean Hunt | cd10dec | 2011-05-23 23:14:04 +0000 | [diff] [blame] | 2515 | } else { | 
|  | 2516 | // If this is a constructor, instantiate the member initializers. | 
|  | 2517 | if (const CXXConstructorDecl *Ctor = | 
|  | 2518 | dyn_cast<CXXConstructorDecl>(PatternDecl)) { | 
|  | 2519 | InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor, | 
|  | 2520 | TemplateArgs); | 
|  | 2521 | } | 
|  | 2522 |  | 
|  | 2523 | // Instantiate the function body. | 
|  | 2524 | StmtResult Body = SubstStmt(Pattern, TemplateArgs); | 
|  | 2525 |  | 
|  | 2526 | if (Body.isInvalid()) | 
|  | 2527 | Function->setInvalidDecl(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2528 |  | 
| Sean Hunt | cd10dec | 2011-05-23 23:14:04 +0000 | [diff] [blame] | 2529 | ActOnFinishFunctionBody(Function, Body.get(), | 
|  | 2530 | /*IsInstantiation=*/true); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2531 | } | 
|  | 2532 |  | 
| John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 2533 | PerformDependentDiagnostics(PatternDecl, TemplateArgs); | 
|  | 2534 |  | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2535 | savedContext.pop(); | 
| Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 2536 |  | 
|  | 2537 | DeclGroupRef DG(Function); | 
|  | 2538 | Consumer.HandleTopLevelDecl(DG); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2539 |  | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 2540 | // This class may have local implicit instantiations that need to be | 
|  | 2541 | // instantiation within this scope. | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2542 | PerformPendingInstantiations(/*LocalOnly=*/true); | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 2543 | Scope.Exit(); | 
|  | 2544 |  | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2545 | if (Recursive) { | 
| Nick Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 2546 | // Define any pending vtables. | 
|  | 2547 | DefineUsedVTables(); | 
|  | 2548 |  | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2549 | // Instantiate any pending implicit instantiations found during the | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2550 | // instantiation of this template. | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2551 | PerformPendingInstantiations(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2552 |  | 
| Nick Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 2553 | // Restore the set of pending vtables. | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2554 | assert(VTableUses.empty() && | 
|  | 2555 | "VTableUses should be empty before it is discarded."); | 
| Nick Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 2556 | VTableUses.swap(SavedVTableUses); | 
|  | 2557 |  | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2558 | // Restore the set of pending implicit instantiations. | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2559 | assert(PendingInstantiations.empty() && | 
|  | 2560 | "PendingInstantiations should be empty before it is discarded."); | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2561 | PendingInstantiations.swap(SavedPendingInstantiations); | 
| Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 2562 | } | 
| Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2563 | } | 
|  | 2564 |  | 
|  | 2565 | /// \brief Instantiate the definition of the given variable from its | 
|  | 2566 | /// template. | 
|  | 2567 | /// | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2568 | /// \param PointOfInstantiation the point at which the instantiation was | 
|  | 2569 | /// required. Note that this is not precisely a "point of instantiation" | 
|  | 2570 | /// for the function, but it's close. | 
|  | 2571 | /// | 
|  | 2572 | /// \param Var the already-instantiated declaration of a static member | 
|  | 2573 | /// variable of a class template specialization. | 
|  | 2574 | /// | 
|  | 2575 | /// \param Recursive if true, recursively instantiates any functions that | 
|  | 2576 | /// are required by this instantiation. | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2577 | /// | 
|  | 2578 | /// \param DefinitionRequired if true, then we are performing an explicit | 
|  | 2579 | /// instantiation where an out-of-line definition of the member variable | 
|  | 2580 | /// is required. Complain if there is no such definition. | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2581 | void Sema::InstantiateStaticDataMemberDefinition( | 
|  | 2582 | SourceLocation PointOfInstantiation, | 
|  | 2583 | VarDecl *Var, | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2584 | bool Recursive, | 
|  | 2585 | bool DefinitionRequired) { | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2586 | if (Var->isInvalidDecl()) | 
|  | 2587 | return; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2588 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2589 | // Find the out-of-line definition of this static data member. | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2590 | VarDecl *Def = Var->getInstantiatedFromStaticDataMember(); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2591 | assert(Def && "This data member was not instantiated from a template?"); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2592 | assert(Def->isStaticDataMember() && "Not a static data member?"); | 
| Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2593 | Def = Def->getOutOfLineDefinition(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2594 |  | 
| Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2595 | if (!Def) { | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2596 | // We did not find an out-of-line definition of this static data member, | 
|  | 2597 | // so we won't perform any instantiation. Rather, we rely on the user to | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2598 | // instantiate this definition (or provide a specialization for it) in | 
|  | 2599 | // another translation unit. | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2600 | if (DefinitionRequired) { | 
| Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2601 | Def = Var->getInstantiatedFromStaticDataMember(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2602 | Diag(PointOfInstantiation, | 
| Douglas Gregor | e2d3a3d | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 2603 | diag::err_explicit_instantiation_undefined_member) | 
|  | 2604 | << 2 << Var->getDeclName() << Var->getDeclContext(); | 
|  | 2605 | Diag(Def->getLocation(), diag::note_explicit_instantiation_here); | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 2606 | } else if (Var->getTemplateSpecializationKind() | 
|  | 2607 | == TSK_ExplicitInstantiationDefinition) { | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2608 | PendingInstantiations.push_back( | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 2609 | std::make_pair(Var, PointOfInstantiation)); | 
|  | 2610 | } | 
|  | 2611 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2612 | return; | 
|  | 2613 | } | 
|  | 2614 |  | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2615 | // Never instantiate an explicit specialization. | 
| Douglas Gregor | 1028c9f | 2009-10-14 21:29:40 +0000 | [diff] [blame] | 2616 | if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2617 | return; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2618 |  | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2619 | // C++0x [temp.explicit]p9: | 
|  | 2620 | //   Except for inline functions, other explicit instantiation declarations | 
|  | 2621 | //   have the effect of suppressing the implicit instantiation of the entity | 
|  | 2622 | //   to which they refer. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2623 | if (Var->getTemplateSpecializationKind() | 
| Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2624 | == TSK_ExplicitInstantiationDeclaration) | 
|  | 2625 | return; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2626 |  | 
| Douglas Gregor | f15748a | 2011-06-03 03:35:07 +0000 | [diff] [blame] | 2627 | // If we already have a definition, we're done. | 
|  | 2628 | if (Var->getDefinition()) | 
|  | 2629 | return; | 
|  | 2630 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2631 | InstantiatingTemplate Inst(*this, PointOfInstantiation, Var); | 
|  | 2632 | if (Inst) | 
|  | 2633 | return; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2634 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2635 | // If we're performing recursive template instantiation, create our own | 
|  | 2636 | // queue of pending implicit instantiations that we will instantiate later, | 
|  | 2637 | // while we're still within our own instantiation context. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2638 | SmallVector<VTableUse, 16> SavedVTableUses; | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2639 | std::deque<PendingImplicitInstantiation> SavedPendingInstantiations; | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2640 | if (Recursive) { | 
|  | 2641 | VTableUses.swap(SavedVTableUses); | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2642 | PendingInstantiations.swap(SavedPendingInstantiations); | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2643 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2644 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2645 | // Enter the scope of this instantiation. We don't use | 
|  | 2646 | // PushDeclContext because we don't have a scope. | 
| John McCall | f5ba7e0 | 2011-02-14 20:37:25 +0000 | [diff] [blame] | 2647 | ContextRAII previousContext(*this, Var->getDeclContext()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2648 |  | 
| Douglas Gregor | 1028c9f | 2009-10-14 21:29:40 +0000 | [diff] [blame] | 2649 | VarDecl *OldVar = Var; | 
| John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2650 | Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(), | 
| Nico Weber | 6bb4dcb | 2010-11-28 22:53:37 +0000 | [diff] [blame] | 2651 | getTemplateInstantiationArgs(Var))); | 
| John McCall | f5ba7e0 | 2011-02-14 20:37:25 +0000 | [diff] [blame] | 2652 |  | 
|  | 2653 | previousContext.pop(); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2654 |  | 
|  | 2655 | if (Var) { | 
| Douglas Gregor | 583f33b | 2009-10-15 18:07:02 +0000 | [diff] [blame] | 2656 | MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo(); | 
|  | 2657 | assert(MSInfo && "Missing member specialization information?"); | 
|  | 2658 | Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(), | 
|  | 2659 | MSInfo->getPointOfInstantiation()); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2660 | DeclGroupRef DG(Var); | 
|  | 2661 | Consumer.HandleTopLevelDecl(DG); | 
|  | 2662 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2663 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2664 | if (Recursive) { | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2665 | // Define any newly required vtables. | 
|  | 2666 | DefineUsedVTables(); | 
|  | 2667 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2668 | // Instantiate any pending implicit instantiations found during the | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2669 | // instantiation of this template. | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2670 | PerformPendingInstantiations(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2671 |  | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2672 | // Restore the set of pending vtables. | 
|  | 2673 | assert(VTableUses.empty() && | 
|  | 2674 | "VTableUses should be empty before it is discarded, " | 
|  | 2675 | "while instantiating static data member."); | 
|  | 2676 | VTableUses.swap(SavedVTableUses); | 
|  | 2677 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 2678 | // Restore the set of pending implicit instantiations. | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 2679 | assert(PendingInstantiations.empty() && | 
|  | 2680 | "PendingInstantiations should be empty before it is discarded, " | 
|  | 2681 | "while instantiating static data member."); | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 2682 | PendingInstantiations.swap(SavedPendingInstantiations); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2683 | } | 
| Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2684 | } | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 2685 |  | 
| Benjamin Kramer | 54dec5f | 2011-10-08 16:15:07 +0000 | [diff] [blame] | 2686 | static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args, | 
|  | 2687 | const CXXCtorInitializer *Init) { | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2688 | // FIXME: This is a hack that will do slightly the wrong thing for an | 
|  | 2689 | // initializer of the form foo({...}). | 
|  | 2690 | // The right thing to do would be to modify InstantiateInitializer to create | 
|  | 2691 | // the MultiInitializer. | 
|  | 2692 | if (Args.size() == 1 && isa<InitListExpr>(Args[0])) | 
|  | 2693 | return MultiInitializer(Args[0]); | 
| Benjamin Kramer | 54dec5f | 2011-10-08 16:15:07 +0000 | [diff] [blame] | 2694 | return MultiInitializer(Init->getLParenLoc(), Args.data(), | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2695 | Args.size(), Init->getRParenLoc()); | 
|  | 2696 | } | 
|  | 2697 |  | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2698 | void | 
|  | 2699 | Sema::InstantiateMemInitializers(CXXConstructorDecl *New, | 
|  | 2700 | const CXXConstructorDecl *Tmpl, | 
|  | 2701 | const MultiLevelTemplateArgumentList &TemplateArgs) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2702 |  | 
| Richard Trieu | 90ab75b | 2011-09-09 03:18:59 +0000 | [diff] [blame] | 2703 | SmallVector<CXXCtorInitializer*, 4> NewInits; | 
| Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2704 | bool AnyErrors = false; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2705 |  | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2706 | // Instantiate all the initializers. | 
|  | 2707 | for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(), | 
| Douglas Gregor | 72f6d67 | 2009-09-01 21:04:42 +0000 | [diff] [blame] | 2708 | InitsEnd = Tmpl->init_end(); | 
|  | 2709 | Inits != InitsEnd; ++Inits) { | 
| Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 2710 | CXXCtorInitializer *Init = *Inits; | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2711 |  | 
| Chandler Carruth | 030ef47 | 2010-09-03 21:54:20 +0000 | [diff] [blame] | 2712 | // Only instantiate written initializers, let Sema re-construct implicit | 
|  | 2713 | // ones. | 
|  | 2714 | if (!Init->isWritten()) | 
|  | 2715 | continue; | 
|  | 2716 |  | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 2717 | SourceLocation LParenLoc, RParenLoc; | 
| John McCall | ca0408f | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 2718 | ASTOwningVector<Expr*> NewArgs(*this); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2719 |  | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2720 | SourceLocation EllipsisLoc; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2721 |  | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2722 | if (Init->isPackExpansion()) { | 
|  | 2723 | // This is a pack expansion. We should expand it now. | 
|  | 2724 | TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc(); | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2725 | SmallVector<UnexpandedParameterPack, 2> Unexpanded; | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2726 | collectUnexpandedParameterPacks(BaseTL, Unexpanded); | 
|  | 2727 | bool ShouldExpand = false; | 
| Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2728 | bool RetainExpansion = false; | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2729 | llvm::Optional<unsigned> NumExpansions; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2730 | if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(), | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2731 | BaseTL.getSourceRange(), | 
| David Blaikie | a71f9d0 | 2011-09-22 02:34:54 +0000 | [diff] [blame] | 2732 | Unexpanded, | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2733 | TemplateArgs, ShouldExpand, | 
| Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2734 | RetainExpansion, | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2735 | NumExpansions)) { | 
|  | 2736 | AnyErrors = true; | 
|  | 2737 | New->setInvalidDecl(); | 
|  | 2738 | continue; | 
|  | 2739 | } | 
|  | 2740 | assert(ShouldExpand && "Partial instantiation of base initializer?"); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2741 |  | 
|  | 2742 | // Loop over all of the arguments in the argument pack(s), | 
| Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 2743 | for (unsigned I = 0; I != *NumExpansions; ++I) { | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2744 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I); | 
|  | 2745 |  | 
|  | 2746 | // Instantiate the initializer. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2747 | if (InstantiateInitializer(Init->getInit(), TemplateArgs, | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2748 | LParenLoc, NewArgs, RParenLoc)) { | 
|  | 2749 | AnyErrors = true; | 
|  | 2750 | break; | 
|  | 2751 | } | 
|  | 2752 |  | 
|  | 2753 | // Instantiate the base type. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2754 | TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(), | 
|  | 2755 | TemplateArgs, | 
|  | 2756 | Init->getSourceLocation(), | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2757 | New->getDeclName()); | 
|  | 2758 | if (!BaseTInfo) { | 
|  | 2759 | AnyErrors = true; | 
|  | 2760 | break; | 
|  | 2761 | } | 
|  | 2762 |  | 
|  | 2763 | // Build the initializer. | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2764 | MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init)); | 
|  | 2765 | MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(), | 
|  | 2766 | BaseTInfo, MultiInit, | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2767 | New->getParent(), | 
|  | 2768 | SourceLocation()); | 
|  | 2769 | if (NewInit.isInvalid()) { | 
|  | 2770 | AnyErrors = true; | 
|  | 2771 | break; | 
|  | 2772 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2773 |  | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2774 | NewInits.push_back(NewInit.get()); | 
|  | 2775 | NewArgs.clear(); | 
|  | 2776 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2777 |  | 
| Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2778 | continue; | 
|  | 2779 | } | 
|  | 2780 |  | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 2781 | // Instantiate the initializer. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2782 | if (InstantiateInitializer(Init->getInit(), TemplateArgs, | 
| Douglas Gregor | a1a0478 | 2010-09-09 16:33:13 +0000 | [diff] [blame] | 2783 | LParenLoc, NewArgs, RParenLoc)) { | 
| Douglas Gregor | 6b98b2e | 2010-03-02 07:38:39 +0000 | [diff] [blame] | 2784 | AnyErrors = true; | 
|  | 2785 | continue; | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2786 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2787 |  | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2788 | MemInitResult NewInit; | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2789 | if (Init->isBaseInitializer()) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2790 | TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(), | 
|  | 2791 | TemplateArgs, | 
|  | 2792 | Init->getSourceLocation(), | 
| Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 2793 | New->getDeclName()); | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2794 | if (!BaseTInfo) { | 
| Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2795 | AnyErrors = true; | 
| Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 2796 | New->setInvalidDecl(); | 
|  | 2797 | continue; | 
|  | 2798 | } | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2799 |  | 
|  | 2800 | MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init)); | 
|  | 2801 | NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo, MultiInit, | 
|  | 2802 | New->getParent(), EllipsisLoc); | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2803 | } else if (Init->isMemberInitializer()) { | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 2804 | FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl( | 
| Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 2805 | Init->getMemberLocation(), | 
|  | 2806 | Init->getMember(), | 
|  | 2807 | TemplateArgs)); | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 2808 | if (!Member) { | 
|  | 2809 | AnyErrors = true; | 
|  | 2810 | New->setInvalidDecl(); | 
|  | 2811 | continue; | 
|  | 2812 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2813 |  | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2814 | MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init)); | 
|  | 2815 | NewInit = BuildMemberInitializer(Member, MultiInit, | 
|  | 2816 | Init->getSourceLocation()); | 
| Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 2817 | } else if (Init->isIndirectMemberInitializer()) { | 
|  | 2818 | IndirectFieldDecl *IndirectMember = | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 2819 | cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl( | 
| Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 2820 | Init->getMemberLocation(), | 
|  | 2821 | Init->getIndirectMember(), TemplateArgs)); | 
|  | 2822 |  | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 2823 | if (!IndirectMember) { | 
|  | 2824 | AnyErrors = true; | 
|  | 2825 | New->setInvalidDecl(); | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2826 | continue; | 
| Douglas Gregor | b710722 | 2011-03-04 19:46:35 +0000 | [diff] [blame] | 2827 | } | 
| Sebastian Redl | 6df6548 | 2011-09-24 17:48:25 +0000 | [diff] [blame] | 2828 |  | 
|  | 2829 | MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init)); | 
|  | 2830 | NewInit = BuildMemberInitializer(IndirectMember, MultiInit, | 
|  | 2831 | Init->getSourceLocation()); | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2832 | } | 
|  | 2833 |  | 
| Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2834 | if (NewInit.isInvalid()) { | 
|  | 2835 | AnyErrors = true; | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2836 | New->setInvalidDecl(); | 
| Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2837 | } else { | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2838 | // FIXME: It would be nice if ASTOwningVector had a release function. | 
|  | 2839 | NewArgs.take(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2840 |  | 
| Richard Trieu | 90ab75b | 2011-09-09 03:18:59 +0000 | [diff] [blame] | 2841 | NewInits.push_back(NewInit.get()); | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2842 | } | 
|  | 2843 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2844 |  | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2845 | // Assign all the initializers to the new constructor. | 
| John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2846 | ActOnMemInitializers(New, | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2847 | /*FIXME: ColonLoc */ | 
|  | 2848 | SourceLocation(), | 
| Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2849 | NewInits.data(), NewInits.size(), | 
|  | 2850 | AnyErrors); | 
| Anders Carlsson | 0902531 | 2009-08-29 05:16:22 +0000 | [diff] [blame] | 2851 | } | 
|  | 2852 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 2853 | // TODO: this could be templated if the various decl types used the | 
|  | 2854 | // same method name. | 
|  | 2855 | static bool isInstantiationOf(ClassTemplateDecl *Pattern, | 
|  | 2856 | ClassTemplateDecl *Instance) { | 
|  | 2857 | Pattern = Pattern->getCanonicalDecl(); | 
|  | 2858 |  | 
|  | 2859 | do { | 
|  | 2860 | Instance = Instance->getCanonicalDecl(); | 
|  | 2861 | if (Pattern == Instance) return true; | 
|  | 2862 | Instance = Instance->getInstantiatedFromMemberTemplate(); | 
|  | 2863 | } while (Instance); | 
|  | 2864 |  | 
|  | 2865 | return false; | 
|  | 2866 | } | 
|  | 2867 |  | 
| Douglas Gregor | 0d69653 | 2009-09-28 06:34:35 +0000 | [diff] [blame] | 2868 | static bool isInstantiationOf(FunctionTemplateDecl *Pattern, | 
|  | 2869 | FunctionTemplateDecl *Instance) { | 
|  | 2870 | Pattern = Pattern->getCanonicalDecl(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2871 |  | 
| Douglas Gregor | 0d69653 | 2009-09-28 06:34:35 +0000 | [diff] [blame] | 2872 | do { | 
|  | 2873 | Instance = Instance->getCanonicalDecl(); | 
|  | 2874 | if (Pattern == Instance) return true; | 
|  | 2875 | Instance = Instance->getInstantiatedFromMemberTemplate(); | 
|  | 2876 | } while (Instance); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2877 |  | 
| Douglas Gregor | 0d69653 | 2009-09-28 06:34:35 +0000 | [diff] [blame] | 2878 | return false; | 
|  | 2879 | } | 
|  | 2880 |  | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2881 | static bool | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2882 | isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern, | 
|  | 2883 | ClassTemplatePartialSpecializationDecl *Instance) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2884 | Pattern | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2885 | = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl()); | 
|  | 2886 | do { | 
|  | 2887 | Instance = cast<ClassTemplatePartialSpecializationDecl>( | 
|  | 2888 | Instance->getCanonicalDecl()); | 
|  | 2889 | if (Pattern == Instance) | 
|  | 2890 | return true; | 
|  | 2891 | Instance = Instance->getInstantiatedFromMember(); | 
|  | 2892 | } while (Instance); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 2893 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2894 | return false; | 
|  | 2895 | } | 
|  | 2896 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 2897 | static bool isInstantiationOf(CXXRecordDecl *Pattern, | 
|  | 2898 | CXXRecordDecl *Instance) { | 
|  | 2899 | Pattern = Pattern->getCanonicalDecl(); | 
|  | 2900 |  | 
|  | 2901 | do { | 
|  | 2902 | Instance = Instance->getCanonicalDecl(); | 
|  | 2903 | if (Pattern == Instance) return true; | 
|  | 2904 | Instance = Instance->getInstantiatedFromMemberClass(); | 
|  | 2905 | } while (Instance); | 
|  | 2906 |  | 
|  | 2907 | return false; | 
|  | 2908 | } | 
|  | 2909 |  | 
|  | 2910 | static bool isInstantiationOf(FunctionDecl *Pattern, | 
|  | 2911 | FunctionDecl *Instance) { | 
|  | 2912 | Pattern = Pattern->getCanonicalDecl(); | 
|  | 2913 |  | 
|  | 2914 | do { | 
|  | 2915 | Instance = Instance->getCanonicalDecl(); | 
|  | 2916 | if (Pattern == Instance) return true; | 
|  | 2917 | Instance = Instance->getInstantiatedFromMemberFunction(); | 
|  | 2918 | } while (Instance); | 
|  | 2919 |  | 
|  | 2920 | return false; | 
|  | 2921 | } | 
|  | 2922 |  | 
|  | 2923 | static bool isInstantiationOf(EnumDecl *Pattern, | 
|  | 2924 | EnumDecl *Instance) { | 
|  | 2925 | Pattern = Pattern->getCanonicalDecl(); | 
|  | 2926 |  | 
|  | 2927 | do { | 
|  | 2928 | Instance = Instance->getCanonicalDecl(); | 
|  | 2929 | if (Pattern == Instance) return true; | 
|  | 2930 | Instance = Instance->getInstantiatedFromMemberEnum(); | 
|  | 2931 | } while (Instance); | 
|  | 2932 |  | 
|  | 2933 | return false; | 
|  | 2934 | } | 
|  | 2935 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2936 | static bool isInstantiationOf(UsingShadowDecl *Pattern, | 
|  | 2937 | UsingShadowDecl *Instance, | 
|  | 2938 | ASTContext &C) { | 
|  | 2939 | return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern; | 
|  | 2940 | } | 
|  | 2941 |  | 
|  | 2942 | static bool isInstantiationOf(UsingDecl *Pattern, | 
|  | 2943 | UsingDecl *Instance, | 
|  | 2944 | ASTContext &C) { | 
|  | 2945 | return C.getInstantiatedFromUsingDecl(Instance) == Pattern; | 
|  | 2946 | } | 
|  | 2947 |  | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2948 | static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern, | 
|  | 2949 | UsingDecl *Instance, | 
|  | 2950 | ASTContext &C) { | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2951 | return C.getInstantiatedFromUsingDecl(Instance) == Pattern; | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2952 | } | 
|  | 2953 |  | 
|  | 2954 | static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 2955 | UsingDecl *Instance, | 
|  | 2956 | ASTContext &C) { | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2957 | return C.getInstantiatedFromUsingDecl(Instance) == Pattern; | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 2958 | } | 
|  | 2959 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 2960 | static bool isInstantiationOfStaticDataMember(VarDecl *Pattern, | 
|  | 2961 | VarDecl *Instance) { | 
|  | 2962 | assert(Instance->isStaticDataMember()); | 
|  | 2963 |  | 
|  | 2964 | Pattern = Pattern->getCanonicalDecl(); | 
|  | 2965 |  | 
|  | 2966 | do { | 
|  | 2967 | Instance = Instance->getCanonicalDecl(); | 
|  | 2968 | if (Pattern == Instance) return true; | 
|  | 2969 | Instance = Instance->getInstantiatedFromStaticDataMember(); | 
|  | 2970 | } while (Instance); | 
|  | 2971 |  | 
|  | 2972 | return false; | 
|  | 2973 | } | 
|  | 2974 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2975 | // Other is the prospective instantiation | 
|  | 2976 | // D is the prospective pattern | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 2977 | static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) { | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 2978 | if (D->getKind() != Other->getKind()) { | 
| John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2979 | if (UnresolvedUsingTypenameDecl *UUD | 
|  | 2980 | = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { | 
|  | 2981 | if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { | 
|  | 2982 | return isInstantiationOf(UUD, UD, Ctx); | 
|  | 2983 | } | 
|  | 2984 | } | 
|  | 2985 |  | 
|  | 2986 | if (UnresolvedUsingValueDecl *UUD | 
|  | 2987 | = dyn_cast<UnresolvedUsingValueDecl>(D)) { | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 2988 | if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { | 
|  | 2989 | return isInstantiationOf(UUD, UD, Ctx); | 
|  | 2990 | } | 
|  | 2991 | } | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 2992 |  | 
| Anders Carlsson | 0d8df78 | 2009-08-29 19:37:28 +0000 | [diff] [blame] | 2993 | return false; | 
|  | 2994 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2995 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 2996 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other)) | 
|  | 2997 | return isInstantiationOf(cast<CXXRecordDecl>(D), Record); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2998 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 2999 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other)) | 
|  | 3000 | return isInstantiationOf(cast<FunctionDecl>(D), Function); | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3001 |  | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3002 | if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other)) | 
|  | 3003 | return isInstantiationOf(cast<EnumDecl>(D), Enum); | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3004 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 3005 | if (VarDecl *Var = dyn_cast<VarDecl>(Other)) | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3006 | if (Var->isStaticDataMember()) | 
|  | 3007 | return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var); | 
|  | 3008 |  | 
|  | 3009 | if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other)) | 
|  | 3010 | return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp); | 
| Douglas Gregor | a5bf7f1 | 2009-08-28 22:03:51 +0000 | [diff] [blame] | 3011 |  | 
| Douglas Gregor | 0d69653 | 2009-09-28 06:34:35 +0000 | [diff] [blame] | 3012 | if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other)) | 
|  | 3013 | return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp); | 
|  | 3014 |  | 
| Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 3015 | if (ClassTemplatePartialSpecializationDecl *PartialSpec | 
|  | 3016 | = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other)) | 
|  | 3017 | return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D), | 
|  | 3018 | PartialSpec); | 
|  | 3019 |  | 
| Anders Carlsson | d8b285f | 2009-09-01 04:26:58 +0000 | [diff] [blame] | 3020 | if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) { | 
|  | 3021 | if (!Field->getDeclName()) { | 
|  | 3022 | // This is an unnamed field. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3023 | return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) == | 
| Anders Carlsson | d8b285f | 2009-09-01 04:26:58 +0000 | [diff] [blame] | 3024 | cast<FieldDecl>(D); | 
|  | 3025 | } | 
|  | 3026 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3027 |  | 
| John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3028 | if (UsingDecl *Using = dyn_cast<UsingDecl>(Other)) | 
|  | 3029 | return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx); | 
|  | 3030 |  | 
|  | 3031 | if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other)) | 
|  | 3032 | return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx); | 
|  | 3033 |  | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3034 | return D->getDeclName() && isa<NamedDecl>(Other) && | 
|  | 3035 | D->getDeclName() == cast<NamedDecl>(Other)->getDeclName(); | 
|  | 3036 | } | 
|  | 3037 |  | 
|  | 3038 | template<typename ForwardIterator> | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3039 | static NamedDecl *findInstantiationOf(ASTContext &Ctx, | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3040 | NamedDecl *D, | 
|  | 3041 | ForwardIterator first, | 
|  | 3042 | ForwardIterator last) { | 
|  | 3043 | for (; first != last; ++first) | 
|  | 3044 | if (isInstantiationOf(Ctx, D, *first)) | 
|  | 3045 | return cast<NamedDecl>(*first); | 
|  | 3046 |  | 
|  | 3047 | return 0; | 
|  | 3048 | } | 
|  | 3049 |  | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 3050 | /// \brief Finds the instantiation of the given declaration context | 
|  | 3051 | /// within the current instantiation. | 
|  | 3052 | /// | 
|  | 3053 | /// \returns NULL if there was an error | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3054 | DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC, | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3055 | const MultiLevelTemplateArgumentList &TemplateArgs) { | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 3056 | if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) { | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3057 | Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs); | 
| John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 3058 | return cast_or_null<DeclContext>(ID); | 
|  | 3059 | } else return DC; | 
|  | 3060 | } | 
|  | 3061 |  | 
| Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 3062 | /// \brief Find the instantiation of the given declaration within the | 
|  | 3063 | /// current instantiation. | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3064 | /// | 
|  | 3065 | /// This routine is intended to be used when \p D is a declaration | 
|  | 3066 | /// referenced from within a template, that needs to mapped into the | 
|  | 3067 | /// corresponding declaration within an instantiation. For example, | 
|  | 3068 | /// given: | 
|  | 3069 | /// | 
|  | 3070 | /// \code | 
|  | 3071 | /// template<typename T> | 
|  | 3072 | /// struct X { | 
|  | 3073 | ///   enum Kind { | 
|  | 3074 | ///     KnownValue = sizeof(T) | 
|  | 3075 | ///   }; | 
|  | 3076 | /// | 
|  | 3077 | ///   bool getKind() const { return KnownValue; } | 
|  | 3078 | /// }; | 
|  | 3079 | /// | 
|  | 3080 | /// template struct X<int>; | 
|  | 3081 | /// \endcode | 
|  | 3082 | /// | 
|  | 3083 | /// In the instantiation of X<int>::getKind(), we need to map the | 
|  | 3084 | /// EnumConstantDecl for KnownValue (which refers to | 
|  | 3085 | /// X<T>::<Kind>::KnownValue) to its instantiation | 
| Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 3086 | /// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs | 
|  | 3087 | /// this mapping from within the instantiation of X<int>. | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3088 | NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D, | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3089 | const MultiLevelTemplateArgumentList &TemplateArgs) { | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3090 | DeclContext *ParentDC = D->getDeclContext(); | 
| Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 3091 | if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) || | 
| Douglas Gregor | 6d3e627 | 2010-02-05 19:54:12 +0000 | [diff] [blame] | 3092 | isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) || | 
| John McCall | 7667245 | 2010-08-19 23:06:02 +0000 | [diff] [blame] | 3093 | (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) { | 
| Douglas Gregor | 2bba76b | 2009-05-27 17:07:49 +0000 | [diff] [blame] | 3094 | // D is a local of some kind. Look into the map of local | 
|  | 3095 | // declarations to their instantiations. | 
| Chris Lattner | d8e5499 | 2011-02-17 19:47:42 +0000 | [diff] [blame] | 3096 | typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack; | 
|  | 3097 | llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found | 
|  | 3098 | = CurrentInstantiationScope->findInstantiationOf(D); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3099 |  | 
| Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 3100 | if (Found) { | 
|  | 3101 | if (Decl *FD = Found->dyn_cast<Decl *>()) | 
|  | 3102 | return cast<NamedDecl>(FD); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3103 |  | 
| Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 3104 | unsigned PackIdx = ArgumentPackSubstitutionIndex; | 
|  | 3105 | return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]); | 
|  | 3106 | } | 
|  | 3107 |  | 
|  | 3108 | // If we didn't find the decl, then we must have a label decl that hasn't | 
|  | 3109 | // been found yet.  Lazily instantiate it and return it now. | 
|  | 3110 | assert(isa<LabelDecl>(D)); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3111 |  | 
| Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 3112 | Decl *Inst = SubstDecl(D, CurContext, TemplateArgs); | 
|  | 3113 | assert(Inst && "Failed to instantiate label??"); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3114 |  | 
| Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 3115 | CurrentInstantiationScope->InstantiatedLocal(D, Inst); | 
|  | 3116 | return cast<LabelDecl>(Inst); | 
| Douglas Gregor | 2bba76b | 2009-05-27 17:07:49 +0000 | [diff] [blame] | 3117 | } | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3118 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3119 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { | 
|  | 3120 | if (!Record->isDependentContext()) | 
|  | 3121 | return D; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3122 |  | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3123 | // If the RecordDecl is actually the injected-class-name or a | 
|  | 3124 | // "templated" declaration for a class template, class template | 
|  | 3125 | // partial specialization, or a member class of a class template, | 
|  | 3126 | // substitute into the injected-class-name of the class template | 
|  | 3127 | // or partial specialization to find the new DeclContext. | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3128 | QualType T; | 
|  | 3129 | ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3130 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3131 | if (ClassTemplate) { | 
| Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 3132 | T = ClassTemplate->getInjectedClassNameSpecialization(); | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3133 | } else if (ClassTemplatePartialSpecializationDecl *PartialSpec | 
|  | 3134 | = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) { | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3135 | ClassTemplate = PartialSpec->getSpecializedTemplate(); | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3136 |  | 
|  | 3137 | // If we call SubstType with an InjectedClassNameType here we | 
|  | 3138 | // can end up in an infinite loop. | 
|  | 3139 | T = Context.getTypeDeclType(Record); | 
|  | 3140 | assert(isa<InjectedClassNameType>(T) && | 
|  | 3141 | "type of partial specialization is not an InjectedClassNameType"); | 
| John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 3142 | T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType(); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3143 | } | 
|  | 3144 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3145 | if (!T.isNull()) { | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3146 | // Substitute into the injected-class-name to get the type | 
|  | 3147 | // corresponding to the instantiation we want, which may also be | 
|  | 3148 | // the current instantiation (if we're in a template | 
|  | 3149 | // definition). This substitution should never fail, since we | 
|  | 3150 | // know we can instantiate the injected-class-name or we | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3151 | // wouldn't have gotten to the injected-class-name! | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3152 |  | 
|  | 3153 | // FIXME: Can we use the CurrentInstantiationScope to avoid this | 
|  | 3154 | // extra instantiation in the common case? | 
| Douglas Gregor | b46ae39 | 2011-03-03 21:48:55 +0000 | [diff] [blame] | 3155 | T = SubstType(T, TemplateArgs, Loc, DeclarationName()); | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3156 | assert(!T.isNull() && "Instantiation of injected-class-name cannot fail."); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3157 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3158 | if (!T->isDependentType()) { | 
|  | 3159 | assert(T->isRecordType() && "Instantiation must produce a record type"); | 
|  | 3160 | return T->getAs<RecordType>()->getDecl(); | 
|  | 3161 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3162 |  | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3163 | // We are performing "partial" template instantiation to create | 
|  | 3164 | // the member declarations for the members of a class template | 
|  | 3165 | // specialization. Therefore, D is actually referring to something | 
|  | 3166 | // in the current instantiation. Look through the current | 
|  | 3167 | // context, which contains actual instantiations, to find the | 
|  | 3168 | // instantiation of the "current instantiation" that D refers | 
|  | 3169 | // to. | 
|  | 3170 | bool SawNonDependentContext = false; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3171 | for (DeclContext *DC = CurContext; !DC->isFileContext(); | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3172 | DC = DC->getParent()) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3173 | if (ClassTemplateSpecializationDecl *Spec | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3174 | = dyn_cast<ClassTemplateSpecializationDecl>(DC)) | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3175 | if (isInstantiationOf(ClassTemplate, | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3176 | Spec->getSpecializedTemplate())) | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3177 | return Spec; | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3178 |  | 
|  | 3179 | if (!DC->isDependentContext()) | 
|  | 3180 | SawNonDependentContext = true; | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3181 | } | 
|  | 3182 |  | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3183 | // We're performing "instantiation" of a member of the current | 
|  | 3184 | // instantiation while we are type-checking the | 
|  | 3185 | // definition. Compute the declaration context and return that. | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3186 | assert(!SawNonDependentContext && | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3187 | "No dependent context while instantiating record"); | 
|  | 3188 | DeclContext *DC = computeDeclContext(T); | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3189 | assert(DC && | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3190 | "Unable to find declaration for the current instantiation"); | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3191 | return cast<CXXRecordDecl>(DC); | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3192 | } | 
| Douglas Gregor | 8b013bd | 2010-02-05 22:40:03 +0000 | [diff] [blame] | 3193 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3194 | // Fall through to deal with other dependent record types (e.g., | 
|  | 3195 | // anonymous unions in class templates). | 
|  | 3196 | } | 
| John McCall | 52a575a | 2009-08-29 08:11:13 +0000 | [diff] [blame] | 3197 |  | 
| Douglas Gregor | e95b409 | 2009-09-16 18:34:49 +0000 | [diff] [blame] | 3198 | if (!ParentDC->isDependentContext()) | 
|  | 3199 | return D; | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3200 |  | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3201 | ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3202 | if (!ParentDC) | 
| Douglas Gregor | 44c7384 | 2009-09-01 17:53:10 +0000 | [diff] [blame] | 3203 | return 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3204 |  | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3205 | if (ParentDC != D->getDeclContext()) { | 
|  | 3206 | // We performed some kind of instantiation in the parent context, | 
|  | 3207 | // so now we need to look into the instantiated parent context to | 
|  | 3208 | // find the instantiation of the declaration D. | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3209 |  | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3210 | // If our context used to be dependent, we may need to instantiate | 
|  | 3211 | // it before performing lookup into that context. | 
| Douglas Gregor | eff1dbe | 2011-03-06 20:12:45 +0000 | [diff] [blame] | 3212 | bool IsBeingInstantiated = false; | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3213 | if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) { | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3214 | if (!Spec->isDependentContext()) { | 
|  | 3215 | QualType T = Context.getTypeDeclType(Spec); | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3216 | const RecordType *Tag = T->getAs<RecordType>(); | 
|  | 3217 | assert(Tag && "type of non-dependent record is not a RecordType"); | 
| Douglas Gregor | eff1dbe | 2011-03-06 20:12:45 +0000 | [diff] [blame] | 3218 | if (Tag->isBeingDefined()) | 
|  | 3219 | IsBeingInstantiated = true; | 
| John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3220 | if (!Tag->isBeingDefined() && | 
|  | 3221 | RequireCompleteType(Loc, T, diag::err_incomplete_type)) | 
|  | 3222 | return 0; | 
| Douglas Gregor | a43064c | 2010-11-05 23:22:45 +0000 | [diff] [blame] | 3223 |  | 
|  | 3224 | ParentDC = Tag->getDecl(); | 
| Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 3225 | } | 
|  | 3226 | } | 
|  | 3227 |  | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3228 | NamedDecl *Result = 0; | 
|  | 3229 | if (D->getDeclName()) { | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3230 | DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3231 | Result = findInstantiationOf(Context, D, Found.first, Found.second); | 
|  | 3232 | } else { | 
|  | 3233 | // Since we don't have a name for the entity we're looking for, | 
|  | 3234 | // our only option is to walk through all of the declarations to | 
|  | 3235 | // find that name. This will occur in a few cases: | 
|  | 3236 | // | 
|  | 3237 | //   - anonymous struct/union within a template | 
|  | 3238 | //   - unnamed class/struct/union/enum within a template | 
|  | 3239 | // | 
|  | 3240 | // FIXME: Find a better way to find these instantiations! | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3241 | Result = findInstantiationOf(Context, D, | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3242 | ParentDC->decls_begin(), | 
|  | 3243 | ParentDC->decls_end()); | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3244 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3245 |  | 
| Douglas Gregor | eff1dbe | 2011-03-06 20:12:45 +0000 | [diff] [blame] | 3246 | if (!Result) { | 
|  | 3247 | if (isa<UsingShadowDecl>(D)) { | 
|  | 3248 | // UsingShadowDecls can instantiate to nothing because of using hiding. | 
|  | 3249 | } else if (Diags.hasErrorOccurred()) { | 
|  | 3250 | // We've already complained about something, so most likely this | 
|  | 3251 | // declaration failed to instantiate. There's no point in complaining | 
|  | 3252 | // further, since this is normal in invalid code. | 
|  | 3253 | } else if (IsBeingInstantiated) { | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3254 | // The class in which this member exists is currently being | 
| Douglas Gregor | eff1dbe | 2011-03-06 20:12:45 +0000 | [diff] [blame] | 3255 | // instantiated, and we haven't gotten around to instantiating this | 
|  | 3256 | // member yet. This can happen when the code uses forward declarations | 
|  | 3257 | // of member classes, and introduces ordering dependencies via | 
|  | 3258 | // template instantiation. | 
|  | 3259 | Diag(Loc, diag::err_member_not_yet_instantiated) | 
|  | 3260 | << D->getDeclName() | 
|  | 3261 | << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC)); | 
|  | 3262 | Diag(D->getLocation(), diag::note_non_instantiated_member_here); | 
|  | 3263 | } else { | 
|  | 3264 | // We should have found something, but didn't. | 
|  | 3265 | llvm_unreachable("Unable to find instantiation of declaration!"); | 
|  | 3266 | } | 
|  | 3267 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3268 |  | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3269 | D = Result; | 
|  | 3270 | } | 
|  | 3271 |  | 
| Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 3272 | return D; | 
|  | 3273 | } | 
| Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3274 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3275 | /// \brief Performs template instantiation for all implicit template | 
| Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3276 | /// instantiations we have seen until this point. | 
| Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 3277 | void Sema::PerformPendingInstantiations(bool LocalOnly) { | 
| Douglas Gregor | 6e4a3f5 | 2011-07-28 19:49:54 +0000 | [diff] [blame] | 3278 | // Load pending instantiations from the external source. | 
|  | 3279 | if (!LocalOnly && ExternalSource) { | 
|  | 3280 | SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending; | 
|  | 3281 | ExternalSource->ReadPendingInstantiations(Pending); | 
|  | 3282 | PendingInstantiations.insert(PendingInstantiations.begin(), | 
|  | 3283 | Pending.begin(), Pending.end()); | 
|  | 3284 | } | 
| NAKAMURA Takumi | a789ca9 | 2011-10-08 11:31:46 +0000 | [diff] [blame] | 3285 |  | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 3286 | while (!PendingLocalImplicitInstantiations.empty() || | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 3287 | (!LocalOnly && !PendingInstantiations.empty())) { | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 3288 | PendingImplicitInstantiation Inst; | 
|  | 3289 |  | 
|  | 3290 | if (PendingLocalImplicitInstantiations.empty()) { | 
| Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 3291 | Inst = PendingInstantiations.front(); | 
|  | 3292 | PendingInstantiations.pop_front(); | 
| Douglas Gregor | 60406be | 2010-01-16 22:29:39 +0000 | [diff] [blame] | 3293 | } else { | 
|  | 3294 | Inst = PendingLocalImplicitInstantiations.front(); | 
|  | 3295 | PendingLocalImplicitInstantiations.pop_front(); | 
|  | 3296 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3297 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 3298 | // Instantiate function definitions | 
|  | 3299 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) { | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3300 | PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(), | 
|  | 3301 | "instantiating function definition"); | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 3302 | bool DefinitionRequired = Function->getTemplateSpecializationKind() == | 
|  | 3303 | TSK_ExplicitInstantiationDefinition; | 
|  | 3304 | InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true, | 
|  | 3305 | DefinitionRequired); | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 3306 | continue; | 
|  | 3307 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3308 |  | 
| Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 3309 | // Instantiate static data member definitions. | 
|  | 3310 | VarDecl *Var = cast<VarDecl>(Inst.first); | 
|  | 3311 | assert(Var->isStaticDataMember() && "Not a static data member?"); | 
| Anders Carlsson | c17fb7b | 2009-09-01 05:12:24 +0000 | [diff] [blame] | 3312 |  | 
| Chandler Carruth | 291b441 | 2010-02-13 10:17:50 +0000 | [diff] [blame] | 3313 | // Don't try to instantiate declarations if the most recent redeclaration | 
|  | 3314 | // is invalid. | 
|  | 3315 | if (Var->getMostRecentDeclaration()->isInvalidDecl()) | 
|  | 3316 | continue; | 
|  | 3317 |  | 
|  | 3318 | // Check if the most recent declaration has changed the specialization kind | 
|  | 3319 | // and removed the need for implicit instantiation. | 
|  | 3320 | switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) { | 
|  | 3321 | case TSK_Undeclared: | 
| David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3322 | llvm_unreachable("Cannot instantitiate an undeclared specialization."); | 
| Chandler Carruth | 291b441 | 2010-02-13 10:17:50 +0000 | [diff] [blame] | 3323 | case TSK_ExplicitInstantiationDeclaration: | 
| Chandler Carruth | 291b441 | 2010-02-13 10:17:50 +0000 | [diff] [blame] | 3324 | case TSK_ExplicitSpecialization: | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 3325 | continue;  // No longer need to instantiate this type. | 
|  | 3326 | case TSK_ExplicitInstantiationDefinition: | 
|  | 3327 | // We only need an instantiation if the pending instantiation *is* the | 
|  | 3328 | // explicit instantiation. | 
|  | 3329 | if (Var != Var->getMostRecentDeclaration()) continue; | 
| Chandler Carruth | 291b441 | 2010-02-13 10:17:50 +0000 | [diff] [blame] | 3330 | case TSK_ImplicitInstantiation: | 
|  | 3331 | break; | 
|  | 3332 | } | 
|  | 3333 |  | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3334 | PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(), | 
|  | 3335 | "instantiating static data member " | 
|  | 3336 | "definition"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3337 |  | 
| Chandler Carruth | 58e390e | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 3338 | bool DefinitionRequired = Var->getTemplateSpecializationKind() == | 
|  | 3339 | TSK_ExplicitInstantiationDefinition; | 
|  | 3340 | InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true, | 
|  | 3341 | DefinitionRequired); | 
| Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3342 | } | 
|  | 3343 | } | 
| John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 3344 |  | 
|  | 3345 | void Sema::PerformDependentDiagnostics(const DeclContext *Pattern, | 
|  | 3346 | const MultiLevelTemplateArgumentList &TemplateArgs) { | 
|  | 3347 | for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(), | 
|  | 3348 | E = Pattern->ddiag_end(); I != E; ++I) { | 
|  | 3349 | DependentDiagnostic *DD = *I; | 
|  | 3350 |  | 
|  | 3351 | switch (DD->getKind()) { | 
|  | 3352 | case DependentDiagnostic::Access: | 
|  | 3353 | HandleDependentAccessCheck(*DD, TemplateArgs); | 
|  | 3354 | break; | 
|  | 3355 | } | 
|  | 3356 | } | 
|  | 3357 | } |