blob: 4fd2a734b1f022eeaf08063695f98fa3e0d44466 [file] [log] [blame]
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001//===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//===----------------------------------------------------------------------===/
8//
9// This file implements C++ template instantiation for declarations.
10//
11//===----------------------------------------------------------------------===/
12#include "Sema.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000013#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000014#include "clang/AST/ASTContext.h"
15#include "clang/AST/DeclTemplate.h"
16#include "clang/AST/DeclVisitor.h"
17#include "clang/AST/Expr.h"
Anders Carlssonc17fb7b2009-09-01 05:12:24 +000018#include "clang/Basic/PrettyStackTrace.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000019#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000020#include "llvm/Support/Compiler.h"
21
22using namespace clang;
23
24namespace {
Mike Stump1eb44332009-09-09 15:08:12 +000025 class VISIBILITY_HIDDEN TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000026 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000027 Sema &SemaRef;
28 DeclContext *Owner;
Douglas Gregord6350ae2009-08-28 20:31:08 +000029 const MultiLevelTemplateArgumentList &TemplateArgs;
Mike Stump1eb44332009-09-09 15:08:12 +000030
Douglas Gregor8dbc2692009-03-17 21:15:40 +000031 public:
32 typedef Sema::OwningExprResult OwningExprResult;
33
34 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +000035 const MultiLevelTemplateArgumentList &TemplateArgs)
Douglas Gregor7e063902009-05-11 23:53:27 +000036 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Mike Stump1eb44332009-09-09 15:08:12 +000037
Mike Stump390b4cc2009-05-16 07:39:55 +000038 // FIXME: Once we get closer to completion, replace these manually-written
39 // declarations with automatically-generated ones from
40 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000041 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
42 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000043 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000044 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000045 Decl *VisitFieldDecl(FieldDecl *D);
46 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
47 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000048 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000049 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregore53060f2009-06-25 22:08:12 +000050 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregord475b8d2009-03-25 21:17:03 +000051 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000052 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
53 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000054 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000055 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000056 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000057 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +000058 Decl *VisitOriginalParmVarDecl(OriginalParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000059 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000060 Decl *VisitClassTemplatePartialSpecializationDecl(
61 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000062 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000063 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Anders Carlsson0dde18e2009-08-28 15:18:15 +000064 Decl *VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000065
Douglas Gregor8dbc2692009-03-17 21:15:40 +000066 // Base case. FIXME: Remove once we can instantiate everything.
Mike Stump1eb44332009-09-09 15:08:12 +000067 Decl *VisitDecl(Decl *) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000068 assert(false && "Template instantiation of unknown declaration kind!");
Douglas Gregor8dbc2692009-03-17 21:15:40 +000069 return 0;
70 }
Douglas Gregor5545e162009-03-24 00:38:23 +000071
John McCallfd810b12009-08-14 02:03:10 +000072 const LangOptions &getLangOptions() {
73 return SemaRef.getLangOptions();
74 }
75
Douglas Gregor5545e162009-03-24 00:38:23 +000076 // Helper functions for instantiating methods.
John McCallce3ff2b2009-08-25 22:02:44 +000077 QualType SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000078 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000079 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000080 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000081
82 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000083 SubstTemplateParams(TemplateParameterList *List);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000084 };
85}
86
Douglas Gregor4f722be2009-03-25 15:45:12 +000087Decl *
88TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
89 assert(false && "Translation units cannot be instantiated");
90 return D;
91}
92
93Decl *
94TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
95 assert(false && "Namespaces cannot be instantiated");
96 return D;
97}
98
Douglas Gregor8dbc2692009-03-17 21:15:40 +000099Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
100 bool Invalid = false;
101 QualType T = D->getUnderlyingType();
102 if (T->isDependentType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000103 T = SemaRef.SubstType(T, TemplateArgs,
John McCallce3ff2b2009-08-25 22:02:44 +0000104 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000105 if (T.isNull()) {
106 Invalid = true;
107 T = SemaRef.Context.IntTy;
108 }
109 }
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000111 // Create the new typedef
112 TypedefDecl *Typedef
113 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
114 D->getIdentifier(), T);
115 if (Invalid)
116 Typedef->setInvalidDecl();
117
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000118 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000120 return Typedef;
121}
122
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000123Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000124 // Do substitution on the type of the declaration
125 QualType T = SemaRef.SubstType(D->getType(), TemplateArgs,
126 D->getTypeSpecStartLoc(),
127 D->getDeclName());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000128 if (T.isNull())
129 return 0;
130
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000131 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000132 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
133 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000134 T, D->getDeclaratorInfo(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000135 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000136 Var->setThreadSpecified(D->isThreadSpecified());
137 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
138 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000139
140 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000141 // out-of-line, the instantiation will have the same lexical
142 // context (which will be a namespace scope) as the template.
143 if (D->isOutOfLine())
144 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Mike Stump390b4cc2009-05-16 07:39:55 +0000146 // FIXME: In theory, we could have a previous declaration for variables that
147 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000148 bool Redeclaration = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000149 SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Douglas Gregor7caa6822009-07-24 20:34:43 +0000151 if (D->isOutOfLine()) {
152 D->getLexicalDeclContext()->addDecl(Var);
153 Owner->makeDeclVisibleInContext(Var);
154 } else {
155 Owner->addDecl(Var);
156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000158 // Link instantiations of static data members back to the template from
159 // which they were instantiated.
160 if (Var->isStaticDataMember())
161 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
162 TSK_ImplicitInstantiation);
163
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000164 if (D->getInit()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000165 OwningExprResult Init
John McCallce3ff2b2009-08-25 22:02:44 +0000166 = SemaRef.SubstExpr(D->getInit(), TemplateArgs);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000167 if (Init.isInvalid())
168 Var->setInvalidDecl();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000169 else if (ParenListExpr *PLE = dyn_cast<ParenListExpr>((Expr *)Init.get())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000170 // FIXME: We're faking all of the comma locations, which is suboptimal.
Douglas Gregor83ddad32009-08-26 21:14:46 +0000171 // Do we even need these comma locations?
172 llvm::SmallVector<SourceLocation, 4> FakeCommaLocs;
173 if (PLE->getNumExprs() > 0) {
174 FakeCommaLocs.reserve(PLE->getNumExprs() - 1);
175 for (unsigned I = 0, N = PLE->getNumExprs() - 1; I != N; ++I) {
176 Expr *E = PLE->getExpr(I)->Retain();
177 FakeCommaLocs.push_back(
178 SemaRef.PP.getLocForEndOfToken(E->getLocEnd()));
179 }
Douglas Gregore9f8eb62009-08-26 23:26:04 +0000180 PLE->getExpr(PLE->getNumExprs() - 1)->Retain();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000181 }
Mike Stump1eb44332009-09-09 15:08:12 +0000182
Douglas Gregor83ddad32009-08-26 21:14:46 +0000183 // Add the direct initializer to the declaration.
184 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Mike Stump1eb44332009-09-09 15:08:12 +0000185 PLE->getLParenLoc(),
Douglas Gregor83ddad32009-08-26 21:14:46 +0000186 Sema::MultiExprArg(SemaRef,
187 (void**)PLE->getExprs(),
188 PLE->getNumExprs()),
189 FakeCommaLocs.data(),
190 PLE->getRParenLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000191
Douglas Gregor83ddad32009-08-26 21:14:46 +0000192 // When Init is destroyed, it will destroy the instantiated ParenListExpr;
193 // we've explicitly retained all of its subexpressions already.
194 } else
Chris Lattnerb28317a2009-03-28 19:18:32 +0000195 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000196 D->hasCXXDirectInitializer());
Douglas Gregor65b90052009-07-27 17:43:39 +0000197 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
198 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000199
200 return Var;
201}
202
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000203Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
204 bool Invalid = false;
205 QualType T = D->getType();
206 if (T->isDependentType()) {
John McCallce3ff2b2009-08-25 22:02:44 +0000207 T = SemaRef.SubstType(T, TemplateArgs,
208 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000209 if (!T.isNull() && T->isFunctionType()) {
210 // C++ [temp.arg.type]p3:
211 // If a declaration acquires a function type through a type
212 // dependent on a template-parameter and this causes a
213 // declaration that does not use the syntactic form of a
214 // function declarator to have function type, the program is
215 // ill-formed.
216 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
217 << T;
218 T = QualType();
219 Invalid = true;
220 }
221 }
222
223 Expr *BitWidth = D->getBitWidth();
224 if (Invalid)
225 BitWidth = 0;
226 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000227 // The bit-width expression is not potentially evaluated.
228 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000230 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000231 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000232 if (InstantiatedBitWidth.isInvalid()) {
233 Invalid = true;
234 BitWidth = 0;
235 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000236 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000237 }
238
239 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), T,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000240 D->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000241 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000242 D->getLocation(),
243 D->isMutable(),
244 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000245 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000246 D->getAccess(),
247 0);
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000248 if (!Field)
249 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000250
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000251 if (Invalid)
252 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000254 if (!Field->getDeclName()) {
255 // Keep track of where this decl came from.
256 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000257 }
Mike Stump1eb44332009-09-09 15:08:12 +0000258
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000259 Field->setImplicit(D->isImplicit());
260 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000261
262 return Field;
263}
264
John McCall02cace72009-08-28 07:59:38 +0000265Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
266 FriendDecl::FriendUnion FU;
267
268 // Handle friend type expressions by simply substituting template
269 // parameters into the pattern type.
270 if (Type *Ty = D->getFriendType()) {
271 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
272 D->getLocation(), DeclarationName());
273 if (T.isNull()) return 0;
274
275 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
276 FU = T.getTypePtr();
277
278 // Handle everything else by appropriate substitution.
279 } else {
280 NamedDecl *ND = D->getFriendDecl();
281 assert(ND && "friend decl must be a decl or a type!");
282
283 Decl *NewND = Visit(ND);
284 if (!NewND) return 0;
285
286 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000287 }
Mike Stump1eb44332009-09-09 15:08:12 +0000288
John McCall02cace72009-08-28 07:59:38 +0000289 FriendDecl *FD =
290 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
291 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000292 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000293 Owner->addDecl(FD);
294 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000295}
296
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000297Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
298 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Douglas Gregorac7610d2009-06-22 20:57:11 +0000300 // The expression in a static assertion is not potentially evaluated.
301 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000303 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000304 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000305 if (InstantiatedAssertExpr.isInvalid())
306 return 0;
307
Douglas Gregor43d9d922009-08-08 01:41:12 +0000308 OwningExprResult Message(SemaRef, D->getMessage());
309 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000310 Decl *StaticAssert
311 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000312 move(InstantiatedAssertExpr),
313 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000314 return StaticAssert;
315}
316
317Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000318 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000319 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000320 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000321 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000322 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000323 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000324 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000325 Enum->startDefinition();
326
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000327 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000328
329 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000330 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
331 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000332 EC != ECEnd; ++EC) {
333 // The specified value for the enumerator.
334 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000335 if (Expr *UninstValue = EC->getInitExpr()) {
336 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000337 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000338 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000339
John McCallce3ff2b2009-08-25 22:02:44 +0000340 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000341 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000342
343 // Drop the initial value and continue.
344 bool isInvalid = false;
345 if (Value.isInvalid()) {
346 Value = SemaRef.Owned((Expr *)0);
347 isInvalid = true;
348 }
349
Mike Stump1eb44332009-09-09 15:08:12 +0000350 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000351 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
352 EC->getLocation(), EC->getIdentifier(),
353 move(Value));
354
355 if (isInvalid) {
356 if (EnumConst)
357 EnumConst->setInvalidDecl();
358 Enum->setInvalidDecl();
359 }
360
361 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000362 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000363 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000364 LastEnumConst = EnumConst;
365 }
366 }
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000368 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000369 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000370 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
371 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000372 &Enumerators[0], Enumerators.size(),
373 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000374
375 return Enum;
376}
377
Douglas Gregor6477b692009-03-25 15:04:13 +0000378Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
379 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
380 return 0;
381}
382
John McCalle29ba202009-08-20 01:44:21 +0000383Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
384 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000385 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000386 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000387 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000388
389 CXXRecordDecl *Pattern = D->getTemplatedDecl();
390 CXXRecordDecl *RecordInst
391 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), Owner,
392 Pattern->getLocation(), Pattern->getIdentifier(),
Douglas Gregorf0510d42009-10-12 23:11:44 +0000393 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL,
394 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000395
396 ClassTemplateDecl *Inst
397 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
398 D->getIdentifier(), InstParams, RecordInst, 0);
399 RecordInst->setDescribedClassTemplate(Inst);
400 Inst->setAccess(D->getAccess());
401 Inst->setInstantiatedFromMemberTemplate(D);
Douglas Gregorf0510d42009-10-12 23:11:44 +0000402
403 // Trigger creation of the type for the instantiation.
404 SemaRef.Context.getTypeDeclType(RecordInst);
405
John McCalle29ba202009-08-20 01:44:21 +0000406 Owner->addDecl(Inst);
407 return Inst;
408}
409
Douglas Gregord60e1052009-08-27 16:57:43 +0000410Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000411TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
412 ClassTemplatePartialSpecializationDecl *D) {
413 assert(false &&"Partial specializations of member templates are unsupported");
414 return 0;
415}
416
417Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000418TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregord0e3daf2009-09-04 22:48:11 +0000419 // FIXME: Dig out the out-of-line definition of this function template?
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Douglas Gregord60e1052009-08-27 16:57:43 +0000421 TemplateParameterList *TempParams = D->getTemplateParameters();
422 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000423 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000424 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000425
426 // FIXME: Handle instantiation of nested function templates that aren't
Douglas Gregord60e1052009-08-27 16:57:43 +0000427 // member function templates. This could happen inside a FriendDecl.
428 assert(isa<CXXMethodDecl>(D->getTemplatedDecl()));
Mike Stump1eb44332009-09-09 15:08:12 +0000429 CXXMethodDecl *InstMethod
Douglas Gregord60e1052009-08-27 16:57:43 +0000430 = cast_or_null<CXXMethodDecl>(
Mike Stump1eb44332009-09-09 15:08:12 +0000431 VisitCXXMethodDecl(cast<CXXMethodDecl>(D->getTemplatedDecl()),
Douglas Gregord60e1052009-08-27 16:57:43 +0000432 InstParams));
433 if (!InstMethod)
434 return 0;
435
Mike Stump1eb44332009-09-09 15:08:12 +0000436 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000437 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000438 FunctionTemplateDecl *InstTemplate
439 = InstMethod->getDescribedFunctionTemplate();
440 InstTemplate->setAccess(D->getAccess());
Douglas Gregord60e1052009-08-27 16:57:43 +0000441 assert(InstTemplate && "VisitCXXMethodDecl didn't create a template!");
442 InstTemplate->setInstantiatedFromMemberTemplate(D);
443 Owner->addDecl(InstTemplate);
444 return InstTemplate;
445}
446
Douglas Gregord475b8d2009-03-25 21:17:03 +0000447Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
448 CXXRecordDecl *PrevDecl = 0;
449 if (D->isInjectedClassName())
450 PrevDecl = cast<CXXRecordDecl>(Owner);
451
452 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000453 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000454 D->getLocation(), D->getIdentifier(),
455 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000456 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000457 // FIXME: Check against AS_none is an ugly hack to work around the issue that
458 // the tag decls introduced by friend class declarations don't have an access
459 // specifier. Remove once this area of the code gets sorted out.
460 if (D->getAccess() != AS_none)
461 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000462 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000463 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000464
John McCall02cace72009-08-28 07:59:38 +0000465 // If the original function was part of a friend declaration,
466 // inherit its namespace state.
467 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
468 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
469
Anders Carlssond8b285f2009-09-01 04:26:58 +0000470 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
471
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000472 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000473 return Record;
474}
475
John McCall02cace72009-08-28 07:59:38 +0000476/// Normal class members are of more specific types and therefore
477/// don't make it here. This function serves two purposes:
478/// 1) instantiating function templates
479/// 2) substituting friend declarations
480/// FIXME: preserve function definitions in case #2
Douglas Gregore53060f2009-06-25 22:08:12 +0000481Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000482 // Check whether there is already a function template specialization for
483 // this declaration.
484 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
485 void *InsertPos = 0;
486 if (FunctionTemplate) {
487 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000488 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000489 TemplateArgs.getInnermost().getFlatArgumentList(),
490 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000491 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000492
493 FunctionTemplateSpecializationInfo *Info
494 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000495 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Douglas Gregor127102b2009-06-29 20:59:39 +0000497 // If we already have a function template specialization, return it.
498 if (Info)
499 return Info->Function;
500 }
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Douglas Gregore53060f2009-06-25 22:08:12 +0000502 Sema::LocalInstantiationScope Scope(SemaRef);
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Douglas Gregore53060f2009-06-25 22:08:12 +0000504 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000505 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000506 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000507 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000508
Douglas Gregore53060f2009-06-25 22:08:12 +0000509 // Build the instantiated method declaration.
Douglas Gregore95b4092009-09-16 18:34:49 +0000510 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext(),
511 TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +0000512 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000513 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000514 D->getDeclName(), T, D->getDeclaratorInfo(),
515 D->getStorageClass(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000516 D->isInline(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000517 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000518
Douglas Gregore53060f2009-06-25 22:08:12 +0000519 // Attach the parameters
520 for (unsigned P = 0; P < Params.size(); ++P)
521 Params[P]->setOwningFunction(Function);
522 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000523
524 // If the original function was part of a friend declaration,
525 // inherit its namespace state and add it to the owner.
526 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind()) {
527 bool WasDeclared = (FOK == Decl::FOK_Declared);
528 Function->setObjectOfFriendDecl(WasDeclared);
529 if (!Owner->isDependentContext())
John McCallab88d972009-08-31 22:39:49 +0000530 DC->makeDeclVisibleInContext(Function, /* Recoverable = */ false);
John McCallf181d8a2009-08-29 03:16:09 +0000531
Douglas Gregor2db32322009-10-07 23:56:10 +0000532 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +0000533 }
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Douglas Gregore53060f2009-06-25 22:08:12 +0000535 if (InitFunctionInstantiation(Function, D))
536 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Douglas Gregore53060f2009-06-25 22:08:12 +0000538 bool Redeclaration = false;
539 bool OverloadableAttrRequired = false;
540 NamedDecl *PrevDecl = 0;
541 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
542 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000543
Douglas Gregor127102b2009-06-29 20:59:39 +0000544 if (FunctionTemplate) {
545 // Record this function template specialization.
546 Function->setFunctionTemplateSpecialization(SemaRef.Context,
547 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000548 &TemplateArgs.getInnermost(),
Douglas Gregor127102b2009-06-29 20:59:39 +0000549 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000550 }
551
Douglas Gregore53060f2009-06-25 22:08:12 +0000552 return Function;
553}
554
Douglas Gregord60e1052009-08-27 16:57:43 +0000555Decl *
556TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
557 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000558 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
559 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000560 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000561 // We are creating a function template specialization from a function
562 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000563 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000564 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000565 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000566 TemplateArgs.getInnermost().getFlatArgumentList(),
567 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000568 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000569
570 FunctionTemplateSpecializationInfo *Info
571 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000572 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000573
Douglas Gregor6b906862009-08-21 00:16:32 +0000574 // If we already have a function template specialization, return it.
575 if (Info)
576 return Info->Function;
577 }
578
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000579 Sema::LocalInstantiationScope Scope(SemaRef);
580
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000581 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000582 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000583 if (T.isNull())
584 return 0;
585
586 // Build the instantiated method declaration.
587 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000588 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000589
Douglas Gregordec06662009-08-21 18:42:58 +0000590 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000591 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000592 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
593 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
594 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000595 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
596 Constructor->getLocation(),
597 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000598 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000599 Constructor->isExplicit(),
Douglas Gregor17e32f32009-08-21 22:43:28 +0000600 Constructor->isInline(), false);
601 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
602 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
603 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
604 SemaRef.Context.getCanonicalType(ClassTy));
605 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
606 Destructor->getLocation(), Name,
607 T, Destructor->isInline(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000608 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000609 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000610 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000611 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000612 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
613 ConvTy);
614 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
615 Conversion->getLocation(), Name,
616 T, Conversion->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000617 Conversion->isInline(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000618 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000619 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000620 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000621 D->getDeclName(), T, D->getDeclaratorInfo(),
622 D->isStatic(), D->isInline());
623 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000624
Douglas Gregord60e1052009-08-27 16:57:43 +0000625 if (TemplateParams) {
626 // Our resulting instantiation is actually a function template, since we
627 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000628 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000629 // template<typename T>
630 // struct X {
631 // template<typename U> void f(T, U);
632 // };
633 //
634 // X<int> x;
635 //
636 // We are instantiating the member template "f" within X<int>, which means
637 // substituting int for T, but leaving "f" as a member function template.
638 // Build the function template itself.
639 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
640 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000641 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000642 TemplateParams, Method);
643 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000644 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000645 Method->setDescribedFunctionTemplate(FunctionTemplate);
646 } else if (!FunctionTemplate)
Douglas Gregor2db32322009-10-07 23:56:10 +0000647 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000648
Mike Stump1eb44332009-09-09 15:08:12 +0000649 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000650 // out-of-line, the instantiation will have the same lexical
651 // context (which will be a namespace scope) as the template.
652 if (D->isOutOfLine())
653 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Douglas Gregor5545e162009-03-24 00:38:23 +0000655 // Attach the parameters
656 for (unsigned P = 0; P < Params.size(); ++P)
657 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000658 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000659
660 if (InitMethodInstantiation(Method, D))
661 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000662
Douglas Gregordec06662009-08-21 18:42:58 +0000663 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000664
Douglas Gregord60e1052009-08-27 16:57:43 +0000665 if (!FunctionTemplate || TemplateParams) {
John McCallf36e02d2009-10-09 21:13:30 +0000666 Sema::LookupResult R;
667 SemaRef.LookupQualifiedName(R, Owner, Name, Sema::LookupOrdinaryName, true);
668 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Douglas Gregordec06662009-08-21 18:42:58 +0000670 // In C++, the previous declaration we find might be a tag type
671 // (class or enum). In this case, the new declaration will hide the
672 // tag type. Note that this does does not apply if we're declaring a
673 // typedef (C++ [dcl.typedef]p4).
674 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
675 PrevDecl = 0;
676 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000677
Douglas Gregord60e1052009-08-27 16:57:43 +0000678 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000679 // Record this function template specialization.
680 Method->setFunctionTemplateSpecialization(SemaRef.Context,
681 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000682 &TemplateArgs.getInnermost(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000683 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000684
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000685 bool Redeclaration = false;
686 bool OverloadableAttrRequired = false;
687 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
688 /*FIXME:*/OverloadableAttrRequired);
689
690 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl))
Douglas Gregordec06662009-08-21 18:42:58 +0000691 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000693 return Method;
694}
695
Douglas Gregor615c5d42009-03-24 16:43:20 +0000696Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000697 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000698}
699
Douglas Gregor03b2b072009-03-24 00:15:49 +0000700Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000701 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000702}
703
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000704Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000705 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000706}
707
Douglas Gregor6477b692009-03-25 15:04:13 +0000708ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000709 QualType OrigT = SemaRef.SubstType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000710 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000711 if (OrigT.isNull())
712 return 0;
713
714 QualType T = SemaRef.adjustParameterType(OrigT);
715
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000716 // Allocate the parameter
717 ParmVarDecl *Param = 0;
718 if (T == OrigT)
719 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000720 D->getIdentifier(), T, D->getDeclaratorInfo(),
721 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000722 else
Mike Stump1eb44332009-09-09 15:08:12 +0000723 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000724 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000725 T, D->getDeclaratorInfo(), OrigT,
726 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000727
Anders Carlsson9351c172009-08-25 03:18:48 +0000728 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000729 if (D->hasUninstantiatedDefaultArg())
730 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000731 else if (Expr *Arg = D->getDefaultArg())
732 Param->setUninstantiatedDefaultArg(Arg);
733
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000734 // Note: we don't try to instantiate function parameters until after
735 // we've instantiated the function's type. Therefore, we don't have
736 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000737 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000738 return Param;
739}
740
741Decl *
742TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
743 // Since parameter types can decay either before or after
744 // instantiation, we simply treat OriginalParmVarDecls as
745 // ParmVarDecls the same way, and create one or the other depending
746 // on what happens after template instantiation.
747 return VisitParmVarDecl(D);
748}
749
John McCalle29ba202009-08-20 01:44:21 +0000750Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
751 TemplateTypeParmDecl *D) {
752 // TODO: don't always clone when decls are refcounted.
753 const Type* T = D->getTypeForDecl();
754 assert(T->isTemplateTypeParmType());
755 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000756
John McCalle29ba202009-08-20 01:44:21 +0000757 TemplateTypeParmDecl *Inst =
758 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
759 TTPT->getDepth(), TTPT->getIndex(),
760 TTPT->getName(),
761 D->wasDeclaredWithTypename(),
762 D->isParameterPack());
763
764 if (D->hasDefaultArgument()) {
765 QualType DefaultPattern = D->getDefaultArgument();
766 QualType DefaultInst
John McCallce3ff2b2009-08-25 22:02:44 +0000767 = SemaRef.SubstType(DefaultPattern, TemplateArgs,
768 D->getDefaultArgumentLoc(),
769 D->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +0000770
John McCalle29ba202009-08-20 01:44:21 +0000771 Inst->setDefaultArgument(DefaultInst,
772 D->getDefaultArgumentLoc(),
773 D->defaultArgumentWasInherited() /* preserve? */);
774 }
775
776 return Inst;
777}
778
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000779Decl *
780TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000781 NestedNameSpecifier *NNS =
782 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
783 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000784 TemplateArgs);
785 if (!NNS)
786 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000788 CXXScopeSpec SS;
789 SS.setRange(D->getTargetNestedNameRange());
790 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +0000791
792 NamedDecl *UD =
793 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
794 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000795 D->getTargetName(), 0, D->isTypeName());
796 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +0000797 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000798 D);
799 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000800}
801
John McCallce3ff2b2009-08-25 22:02:44 +0000802Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000803 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +0000804 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000805 return Instantiator.Visit(D);
806}
807
John McCalle29ba202009-08-20 01:44:21 +0000808/// \brief Instantiates a nested template parameter list in the current
809/// instantiation context.
810///
811/// \param L The parameter list to instantiate
812///
813/// \returns NULL if there was an error
814TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000815TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +0000816 // Get errors for all the parameters before bailing out.
817 bool Invalid = false;
818
819 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000820 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +0000821 ParamVector Params;
822 Params.reserve(N);
823 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
824 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000825 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +0000826 Params.push_back(D);
827 Invalid = Invalid || !D;
828 }
829
830 // Clean up if we had an error.
831 if (Invalid) {
832 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
833 PI != PE; ++PI)
834 if (*PI)
835 (*PI)->Destroy(SemaRef.Context);
836 return NULL;
837 }
838
839 TemplateParameterList *InstL
840 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
841 L->getLAngleLoc(), &Params.front(), N,
842 L->getRAngleLoc());
843 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +0000844}
John McCalle29ba202009-08-20 01:44:21 +0000845
John McCallce3ff2b2009-08-25 22:02:44 +0000846/// \brief Does substitution on the type of the given function, including
847/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +0000848///
John McCallce3ff2b2009-08-25 22:02:44 +0000849/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +0000850///
851/// \param Params the instantiated parameter declarations
852
John McCallce3ff2b2009-08-25 22:02:44 +0000853/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +0000854/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000855QualType
John McCallce3ff2b2009-08-25 22:02:44 +0000856TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +0000857 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
858 bool InvalidDecl = false;
859
John McCallce3ff2b2009-08-25 22:02:44 +0000860 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +0000861 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000862 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000863 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000864 PEnd = D->param_end();
865 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000866 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000867 if (PInst->getType()->isVoidType()) {
868 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
869 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000870 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000871 PInst->getType(),
872 diag::err_abstract_type_in_decl,
873 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000874 PInst->setInvalidDecl();
875
876 Params.push_back(PInst);
877 ParamTys.push_back(PInst->getType());
878
879 if (PInst->isInvalidDecl())
880 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000881 } else
Douglas Gregor5545e162009-03-24 00:38:23 +0000882 InvalidDecl = true;
883 }
884
885 // FIXME: Deallocate dead declarations.
886 if (InvalidDecl)
887 return QualType();
888
John McCall183700f2009-09-21 23:43:11 +0000889 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +0000890 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +0000891 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +0000892 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
893 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +0000894 if (ResultType.isNull())
895 return QualType();
896
Jay Foadbeaaccd2009-05-21 09:52:38 +0000897 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000898 Proto->isVariadic(), Proto->getTypeQuals(),
899 D->getLocation(), D->getDeclName());
900}
901
Mike Stump1eb44332009-09-09 15:08:12 +0000902/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +0000903/// declaration (New) from the corresponding fields of its template (Tmpl).
904///
905/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000906bool
907TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +0000908 FunctionDecl *Tmpl) {
909 if (Tmpl->isDeleted())
910 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +0000911
Douglas Gregorcca9e962009-07-01 22:01:06 +0000912 // If we are performing substituting explicitly-specified template arguments
913 // or deduced template arguments into a function template and we reach this
914 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +0000915 // to keeping the new function template specialization. We therefore
916 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +0000917 // into a template instantiation for this specific function template
918 // specialization, which is not a SFINAE context, so that we diagnose any
919 // further errors in the declaration itself.
920 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
921 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
922 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
923 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +0000924 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +0000925 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000926 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +0000927 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000928 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000929 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
930 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
931 }
932 }
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Douglas Gregore53060f2009-06-25 22:08:12 +0000934 return false;
935}
936
Douglas Gregor5545e162009-03-24 00:38:23 +0000937/// \brief Initializes common fields of an instantiated method
938/// declaration (New) from the corresponding fields of its template
939/// (Tmpl).
940///
941/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000942bool
943TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +0000944 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000945 if (InitFunctionInstantiation(New, Tmpl))
946 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000947
Douglas Gregor5545e162009-03-24 00:38:23 +0000948 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
949 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000950 if (Tmpl->isVirtualAsWritten()) {
951 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000952 Record->setAggregate(false);
953 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000954 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +0000955 Record->setPolymorphic(true);
956 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000957 if (Tmpl->isPure()) {
958 New->setPure();
959 Record->setAbstract(true);
960 }
961
962 // FIXME: attributes
963 // FIXME: New needs a pointer to Tmpl
964 return false;
965}
Douglas Gregora58861f2009-05-13 20:28:22 +0000966
967/// \brief Instantiate the definition of the given function from its
968/// template.
969///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000970/// \param PointOfInstantiation the point at which the instantiation was
971/// required. Note that this is not precisely a "point of instantiation"
972/// for the function, but it's close.
973///
Douglas Gregora58861f2009-05-13 20:28:22 +0000974/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000975/// function template specialization or member function of a class template
976/// specialization.
977///
978/// \param Recursive if true, recursively instantiates any functions that
979/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000980void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000981 FunctionDecl *Function,
982 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000983 if (Function->isInvalidDecl())
984 return;
985
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000986 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000988 // Never instantiate an explicit specialization.
989 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
990 return;
991
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000992 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000993 const FunctionDecl *PatternDecl = 0;
Douglas Gregor5ec178f2009-08-28 21:09:48 +0000994 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate()) {
995 while (Primary->getInstantiatedFromMemberTemplate())
996 Primary = Primary->getInstantiatedFromMemberTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000997
Douglas Gregor1637be72009-06-26 00:10:03 +0000998 PatternDecl = Primary->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000999 } else
Douglas Gregor1637be72009-06-26 00:10:03 +00001000 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001001 Stmt *Pattern = 0;
1002 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001003 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001004
1005 if (!Pattern)
1006 return;
1007
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001008 // C++0x [temp.explicit]p9:
1009 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001010 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001011 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001012 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001013 == TSK_ExplicitInstantiationDeclaration &&
1014 PatternDecl->isOutOfLine() && !PatternDecl->isInline())
1015 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001016
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001017 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1018 if (Inst)
1019 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001020
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001021 // If we're performing recursive template instantiation, create our own
1022 // queue of pending implicit instantiations that we will instantiate later,
1023 // while we're still within our own instantiation context.
1024 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1025 if (Recursive)
1026 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001028 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1029
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001030 // Introduce a new scope where local variable instantiations will be
1031 // recorded.
1032 LocalInstantiationScope Scope(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001034 // Introduce the instantiated function parameters into the local
1035 // instantiation scope.
1036 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1037 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1038 Function->getParamDecl(I));
1039
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001040 // Enter the scope of this instantiation. We don't use
1041 // PushDeclContext because we don't have a scope.
1042 DeclContext *PreviousContext = CurContext;
1043 CurContext = Function;
1044
Mike Stump1eb44332009-09-09 15:08:12 +00001045 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001046 getTemplateInstantiationArgs(Function);
1047
1048 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001049 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001050 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1051 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1052 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001053 }
1054
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001055 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001056 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001057
Douglas Gregor52604ab2009-09-11 21:19:12 +00001058 if (Body.isInvalid())
1059 Function->setInvalidDecl();
1060
Mike Stump1eb44332009-09-09 15:08:12 +00001061 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001062 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001063
1064 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001065
1066 DeclGroupRef DG(Function);
1067 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001069 if (Recursive) {
1070 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001071 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001072 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001074 // Restore the set of pending implicit instantiations.
1075 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1076 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001077}
1078
1079/// \brief Instantiate the definition of the given variable from its
1080/// template.
1081///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001082/// \param PointOfInstantiation the point at which the instantiation was
1083/// required. Note that this is not precisely a "point of instantiation"
1084/// for the function, but it's close.
1085///
1086/// \param Var the already-instantiated declaration of a static member
1087/// variable of a class template specialization.
1088///
1089/// \param Recursive if true, recursively instantiates any functions that
1090/// are required by this instantiation.
1091void Sema::InstantiateStaticDataMemberDefinition(
1092 SourceLocation PointOfInstantiation,
1093 VarDecl *Var,
1094 bool Recursive) {
1095 if (Var->isInvalidDecl())
1096 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Douglas Gregor7caa6822009-07-24 20:34:43 +00001098 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001099 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
1100 bool FoundOutOfLineDef = false;
1101 assert(Def && "This data member was not instantiated from a template?");
Mike Stump1eb44332009-09-09 15:08:12 +00001102 assert(Def->isStaticDataMember() && "Not a static data member?");
1103 for (VarDecl::redecl_iterator RD = Def->redecls_begin(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001104 RDEnd = Def->redecls_end();
1105 RD != RDEnd; ++RD) {
1106 if (RD->getLexicalDeclContext()->isFileContext()) {
1107 Def = *RD;
1108 FoundOutOfLineDef = true;
1109 }
1110 }
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Douglas Gregor7caa6822009-07-24 20:34:43 +00001112 if (!FoundOutOfLineDef) {
1113 // We did not find an out-of-line definition of this static data member,
1114 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001115 // instantiate this definition (or provide a specialization for it) in
1116 // another translation unit.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001117 return;
1118 }
1119
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001120 // Never instantiate an explicit specialization.
1121 if (Def->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1122 return;
1123
1124 // C++0x [temp.explicit]p9:
1125 // Except for inline functions, other explicit instantiation declarations
1126 // have the effect of suppressing the implicit instantiation of the entity
1127 // to which they refer.
1128 if (Def->getTemplateSpecializationKind()
1129 == TSK_ExplicitInstantiationDeclaration)
1130 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001131
Douglas Gregor7caa6822009-07-24 20:34:43 +00001132 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1133 if (Inst)
1134 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001135
Douglas Gregor7caa6822009-07-24 20:34:43 +00001136 // If we're performing recursive template instantiation, create our own
1137 // queue of pending implicit instantiations that we will instantiate later,
1138 // while we're still within our own instantiation context.
1139 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1140 if (Recursive)
1141 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001142
Douglas Gregor7caa6822009-07-24 20:34:43 +00001143 // Enter the scope of this instantiation. We don't use
1144 // PushDeclContext because we don't have a scope.
1145 DeclContext *PreviousContext = CurContext;
1146 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001147
John McCallce3ff2b2009-08-25 22:02:44 +00001148 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001149 getTemplateInstantiationArgs(Var)));
Mike Stump1eb44332009-09-09 15:08:12 +00001150
Douglas Gregor7caa6822009-07-24 20:34:43 +00001151 CurContext = PreviousContext;
1152
1153 if (Var) {
1154 DeclGroupRef DG(Var);
1155 Consumer.HandleTopLevelDecl(DG);
1156 }
Mike Stump1eb44332009-09-09 15:08:12 +00001157
Douglas Gregor7caa6822009-07-24 20:34:43 +00001158 if (Recursive) {
1159 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001160 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001161 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Douglas Gregor7caa6822009-07-24 20:34:43 +00001163 // Restore the set of pending implicit instantiations.
1164 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001165 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001166}
Douglas Gregor815215d2009-05-27 05:35:12 +00001167
Anders Carlsson09025312009-08-29 05:16:22 +00001168void
1169Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1170 const CXXConstructorDecl *Tmpl,
1171 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001172
Anders Carlsson09025312009-08-29 05:16:22 +00001173 llvm::SmallVector<MemInitTy*, 4> NewInits;
1174
1175 // Instantiate all the initializers.
1176 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001177 InitsEnd = Tmpl->init_end();
1178 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001179 CXXBaseOrMemberInitializer *Init = *Inits;
1180
1181 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001182
Anders Carlsson09025312009-08-29 05:16:22 +00001183 // Instantiate all the arguments.
1184 for (ExprIterator Args = Init->arg_begin(), ArgsEnd = Init->arg_end();
1185 Args != ArgsEnd; ++Args) {
1186 OwningExprResult NewArg = SubstExpr(*Args, TemplateArgs);
1187
1188 if (NewArg.isInvalid())
1189 New->setInvalidDecl();
1190 else
1191 NewArgs.push_back(NewArg.takeAs<Expr>());
1192 }
1193
1194 MemInitResult NewInit;
1195
1196 if (Init->isBaseInitializer()) {
Eli Friedmanc5573a82009-08-29 22:22:07 +00001197 QualType BaseType(Init->getBaseClass(), 0);
1198 BaseType = SubstType(BaseType, TemplateArgs, Init->getSourceLocation(),
1199 New->getDeclName());
Anders Carlsson09025312009-08-29 05:16:22 +00001200
1201 NewInit = BuildBaseInitializer(BaseType,
Mike Stump1eb44332009-09-09 15:08:12 +00001202 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001203 NewArgs.size(),
1204 Init->getSourceLocation(),
1205 Init->getRParenLoc(),
1206 New->getParent());
1207 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001208 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001210 // Is this an anonymous union?
1211 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001212 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001213 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001214 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1215 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001216
1217 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001218 NewArgs.size(),
1219 Init->getSourceLocation(),
1220 Init->getRParenLoc());
1221 }
1222
1223 if (NewInit.isInvalid())
1224 New->setInvalidDecl();
1225 else {
1226 // FIXME: It would be nice if ASTOwningVector had a release function.
1227 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001228
Anders Carlsson09025312009-08-29 05:16:22 +00001229 NewInits.push_back((MemInitTy *)NewInit.get());
1230 }
1231 }
Mike Stump1eb44332009-09-09 15:08:12 +00001232
Anders Carlsson09025312009-08-29 05:16:22 +00001233 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001234 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001235 /*FIXME: ColonLoc */
1236 SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001237 NewInits.data(), NewInits.size());
Anders Carlsson09025312009-08-29 05:16:22 +00001238}
1239
John McCall52a575a2009-08-29 08:11:13 +00001240// TODO: this could be templated if the various decl types used the
1241// same method name.
1242static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1243 ClassTemplateDecl *Instance) {
1244 Pattern = Pattern->getCanonicalDecl();
1245
1246 do {
1247 Instance = Instance->getCanonicalDecl();
1248 if (Pattern == Instance) return true;
1249 Instance = Instance->getInstantiatedFromMemberTemplate();
1250 } while (Instance);
1251
1252 return false;
1253}
1254
Douglas Gregor0d696532009-09-28 06:34:35 +00001255static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1256 FunctionTemplateDecl *Instance) {
1257 Pattern = Pattern->getCanonicalDecl();
1258
1259 do {
1260 Instance = Instance->getCanonicalDecl();
1261 if (Pattern == Instance) return true;
1262 Instance = Instance->getInstantiatedFromMemberTemplate();
1263 } while (Instance);
1264
1265 return false;
1266}
1267
John McCall52a575a2009-08-29 08:11:13 +00001268static bool isInstantiationOf(CXXRecordDecl *Pattern,
1269 CXXRecordDecl *Instance) {
1270 Pattern = Pattern->getCanonicalDecl();
1271
1272 do {
1273 Instance = Instance->getCanonicalDecl();
1274 if (Pattern == Instance) return true;
1275 Instance = Instance->getInstantiatedFromMemberClass();
1276 } while (Instance);
1277
1278 return false;
1279}
1280
1281static bool isInstantiationOf(FunctionDecl *Pattern,
1282 FunctionDecl *Instance) {
1283 Pattern = Pattern->getCanonicalDecl();
1284
1285 do {
1286 Instance = Instance->getCanonicalDecl();
1287 if (Pattern == Instance) return true;
1288 Instance = Instance->getInstantiatedFromMemberFunction();
1289 } while (Instance);
1290
1291 return false;
1292}
1293
1294static bool isInstantiationOf(EnumDecl *Pattern,
1295 EnumDecl *Instance) {
1296 Pattern = Pattern->getCanonicalDecl();
1297
1298 do {
1299 Instance = Instance->getCanonicalDecl();
1300 if (Pattern == Instance) return true;
1301 Instance = Instance->getInstantiatedFromMemberEnum();
1302 } while (Instance);
1303
1304 return false;
1305}
1306
Anders Carlsson0d8df782009-08-29 19:37:28 +00001307static bool isInstantiationOf(UnresolvedUsingDecl *Pattern,
1308 UsingDecl *Instance,
1309 ASTContext &C) {
1310 return C.getInstantiatedFromUnresolvedUsingDecl(Instance) == Pattern;
1311}
1312
John McCall52a575a2009-08-29 08:11:13 +00001313static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
1314 VarDecl *Instance) {
1315 assert(Instance->isStaticDataMember());
1316
1317 Pattern = Pattern->getCanonicalDecl();
1318
1319 do {
1320 Instance = Instance->getCanonicalDecl();
1321 if (Pattern == Instance) return true;
1322 Instance = Instance->getInstantiatedFromStaticDataMember();
1323 } while (Instance);
1324
1325 return false;
1326}
1327
Douglas Gregor815215d2009-05-27 05:35:12 +00001328static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00001329 if (D->getKind() != Other->getKind()) {
1330 if (UnresolvedUsingDecl *UUD = dyn_cast<UnresolvedUsingDecl>(D)) {
1331 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
1332 return isInstantiationOf(UUD, UD, Ctx);
1333 }
1334 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001335
Anders Carlsson0d8df782009-08-29 19:37:28 +00001336 return false;
1337 }
Mike Stump1eb44332009-09-09 15:08:12 +00001338
John McCall52a575a2009-08-29 08:11:13 +00001339 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
1340 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001341
John McCall52a575a2009-08-29 08:11:13 +00001342 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
1343 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00001344
John McCall52a575a2009-08-29 08:11:13 +00001345 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
1346 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00001347
Douglas Gregor7caa6822009-07-24 20:34:43 +00001348 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00001349 if (Var->isStaticDataMember())
1350 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
1351
1352 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
1353 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00001354
Douglas Gregor0d696532009-09-28 06:34:35 +00001355 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
1356 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
1357
Anders Carlssond8b285f2009-09-01 04:26:58 +00001358 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
1359 if (!Field->getDeclName()) {
1360 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00001361 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00001362 cast<FieldDecl>(D);
1363 }
1364 }
Mike Stump1eb44332009-09-09 15:08:12 +00001365
Douglas Gregor815215d2009-05-27 05:35:12 +00001366 return D->getDeclName() && isa<NamedDecl>(Other) &&
1367 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1368}
1369
1370template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00001371static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00001372 NamedDecl *D,
1373 ForwardIterator first,
1374 ForwardIterator last) {
1375 for (; first != last; ++first)
1376 if (isInstantiationOf(Ctx, D, *first))
1377 return cast<NamedDecl>(*first);
1378
1379 return 0;
1380}
1381
John McCall02cace72009-08-28 07:59:38 +00001382/// \brief Finds the instantiation of the given declaration context
1383/// within the current instantiation.
1384///
1385/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00001386DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
1387 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00001388 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00001389 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00001390 return cast_or_null<DeclContext>(ID);
1391 } else return DC;
1392}
1393
Douglas Gregored961e72009-05-27 17:54:46 +00001394/// \brief Find the instantiation of the given declaration within the
1395/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001396///
1397/// This routine is intended to be used when \p D is a declaration
1398/// referenced from within a template, that needs to mapped into the
1399/// corresponding declaration within an instantiation. For example,
1400/// given:
1401///
1402/// \code
1403/// template<typename T>
1404/// struct X {
1405/// enum Kind {
1406/// KnownValue = sizeof(T)
1407/// };
1408///
1409/// bool getKind() const { return KnownValue; }
1410/// };
1411///
1412/// template struct X<int>;
1413/// \endcode
1414///
1415/// In the instantiation of X<int>::getKind(), we need to map the
1416/// EnumConstantDecl for KnownValue (which refers to
1417/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001418/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1419/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00001420NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
1421 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor44c73842009-09-01 17:53:10 +00001422 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
1423 // Transform all of the elements of the overloaded function set.
Mike Stump1eb44332009-09-09 15:08:12 +00001424 OverloadedFunctionDecl *Result
Douglas Gregor44c73842009-09-01 17:53:10 +00001425 = OverloadedFunctionDecl::Create(Context, CurContext, Ovl->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +00001426
Douglas Gregor44c73842009-09-01 17:53:10 +00001427 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
1428 FEnd = Ovl->function_end();
1429 F != FEnd; ++F) {
1430 Result->addOverload(
Douglas Gregore95b4092009-09-16 18:34:49 +00001431 AnyFunctionDecl::getFromNamedDecl(FindInstantiatedDecl(*F,
1432 TemplateArgs)));
Douglas Gregor44c73842009-09-01 17:53:10 +00001433 }
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Douglas Gregor44c73842009-09-01 17:53:10 +00001435 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001436 }
1437
Douglas Gregor815215d2009-05-27 05:35:12 +00001438 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001439 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
1440 // D is a local of some kind. Look into the map of local
1441 // declarations to their instantiations.
1442 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1443 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001444
Douglas Gregore95b4092009-09-16 18:34:49 +00001445 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
1446 if (!Record->isDependentContext())
1447 return D;
1448
1449 // If the RecordDecl is actually the injected-class-name or a "templated"
1450 // declaration for a class template or class template partial
1451 // specialization, substitute into the injected-class-name of the
1452 // class template or partial specialization to find the new DeclContext.
1453 QualType T;
1454 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
1455
1456 if (ClassTemplate) {
1457 T = ClassTemplate->getInjectedClassNameType(Context);
1458 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
1459 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1460 T = Context.getTypeDeclType(Record);
1461 ClassTemplate = PartialSpec->getSpecializedTemplate();
1462 }
1463
1464 if (!T.isNull()) {
1465 // Substitute into the injected-class-name to get the type corresponding
1466 // to the instantiation we want. This substitution should never fail,
1467 // since we know we can instantiate the injected-class-name or we wouldn't
1468 // have gotten to the injected-class-name!
1469 // FIXME: Can we use the CurrentInstantiationScope to avoid this extra
1470 // instantiation in the common case?
1471 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
1472 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
1473
1474 if (!T->isDependentType()) {
1475 assert(T->isRecordType() && "Instantiation must produce a record type");
1476 return T->getAs<RecordType>()->getDecl();
1477 }
1478
1479 // We are performing "partial" template instantiation to create the
1480 // member declarations for the members of a class template
1481 // specialization. Therefore, D is actually referring to something in
1482 // the current instantiation. Look through the current context,
1483 // which contains actual instantiations, to find the instantiation of
1484 // the "current instantiation" that D refers to.
Mike Stump1eb44332009-09-09 15:08:12 +00001485 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00001486 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001487 if (ClassTemplateSpecializationDecl *Spec
John McCall52a575a2009-08-29 08:11:13 +00001488 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00001489 if (isInstantiationOf(ClassTemplate,
1490 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00001491 return Spec;
1492 }
1493
Mike Stump1eb44332009-09-09 15:08:12 +00001494 assert(false &&
John McCall52a575a2009-08-29 08:11:13 +00001495 "Unable to find declaration for the current instantiation");
Douglas Gregore95b4092009-09-16 18:34:49 +00001496 return Record;
John McCall52a575a2009-08-29 08:11:13 +00001497 }
Douglas Gregore95b4092009-09-16 18:34:49 +00001498
1499 // Fall through to deal with other dependent record types (e.g.,
1500 // anonymous unions in class templates).
1501 }
John McCall52a575a2009-08-29 08:11:13 +00001502
Douglas Gregore95b4092009-09-16 18:34:49 +00001503 if (!ParentDC->isDependentContext())
1504 return D;
1505
1506 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001507 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00001508 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001509
Douglas Gregor815215d2009-05-27 05:35:12 +00001510 if (ParentDC != D->getDeclContext()) {
1511 // We performed some kind of instantiation in the parent context,
1512 // so now we need to look into the instantiated parent context to
1513 // find the instantiation of the declaration D.
1514 NamedDecl *Result = 0;
1515 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001516 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001517 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1518 } else {
1519 // Since we don't have a name for the entity we're looking for,
1520 // our only option is to walk through all of the declarations to
1521 // find that name. This will occur in a few cases:
1522 //
1523 // - anonymous struct/union within a template
1524 // - unnamed class/struct/union/enum within a template
1525 //
1526 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00001527 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001528 ParentDC->decls_begin(),
1529 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001530 }
Mike Stump1eb44332009-09-09 15:08:12 +00001531
Douglas Gregor815215d2009-05-27 05:35:12 +00001532 assert(Result && "Unable to find instantiation of declaration!");
1533 D = Result;
1534 }
1535
Douglas Gregor815215d2009-05-27 05:35:12 +00001536 return D;
1537}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001538
Mike Stump1eb44332009-09-09 15:08:12 +00001539/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001540/// instantiations we have seen until this point.
1541void Sema::PerformPendingImplicitInstantiations() {
1542 while (!PendingImplicitInstantiations.empty()) {
1543 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001544 PendingImplicitInstantiations.pop_front();
Mike Stump1eb44332009-09-09 15:08:12 +00001545
Douglas Gregor7caa6822009-07-24 20:34:43 +00001546 // Instantiate function definitions
1547 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001548 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001549 Function->getLocation(), *this,
1550 Context.getSourceManager(),
1551 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001552
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001553 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001554 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001555 continue;
1556 }
Mike Stump1eb44332009-09-09 15:08:12 +00001557
Douglas Gregor7caa6822009-07-24 20:34:43 +00001558 // Instantiate static data member definitions.
1559 VarDecl *Var = cast<VarDecl>(Inst.first);
1560 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001561
Mike Stump1eb44332009-09-09 15:08:12 +00001562 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001563 Var->getLocation(), *this,
1564 Context.getSourceManager(),
1565 "instantiating static data member "
1566 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001567
Douglas Gregor7caa6822009-07-24 20:34:43 +00001568 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001569 }
1570}