blob: 0bf832f3ebdf06bf04ccc8a8bbacec2893eb29bf [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"
Douglas Gregor83ddad32009-08-26 21:14:46 +000018#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000019#include "llvm/Support/Compiler.h"
20
21using namespace clang;
22
23namespace {
24 class VISIBILITY_HIDDEN TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000025 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000026 Sema &SemaRef;
27 DeclContext *Owner;
Douglas Gregor7e063902009-05-11 23:53:27 +000028 const TemplateArgumentList &TemplateArgs;
Douglas Gregor8dbc2692009-03-17 21:15:40 +000029
30 public:
31 typedef Sema::OwningExprResult OwningExprResult;
32
33 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregor7e063902009-05-11 23:53:27 +000034 const TemplateArgumentList &TemplateArgs)
35 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Douglas Gregor8dbc2692009-03-17 21:15:40 +000036
Mike Stump390b4cc2009-05-16 07:39:55 +000037 // FIXME: Once we get closer to completion, replace these manually-written
38 // declarations with automatically-generated ones from
39 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000040 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
41 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000042 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000043 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000044 Decl *VisitFieldDecl(FieldDecl *D);
45 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
46 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000047 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000048 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregore53060f2009-06-25 22:08:12 +000049 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregord475b8d2009-03-25 21:17:03 +000050 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000051 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
52 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000053 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000054 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000055 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000056 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +000057 Decl *VisitOriginalParmVarDecl(OriginalParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000058 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000059 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000060 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor5545e162009-03-24 00:38:23 +000061
Douglas Gregor8dbc2692009-03-17 21:15:40 +000062 // Base case. FIXME: Remove once we can instantiate everything.
63 Decl *VisitDecl(Decl *) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000064 assert(false && "Template instantiation of unknown declaration kind!");
Douglas Gregor8dbc2692009-03-17 21:15:40 +000065 return 0;
66 }
Douglas Gregor5545e162009-03-24 00:38:23 +000067
John McCallfd810b12009-08-14 02:03:10 +000068 const LangOptions &getLangOptions() {
69 return SemaRef.getLangOptions();
70 }
71
Douglas Gregor5545e162009-03-24 00:38:23 +000072 // Helper functions for instantiating methods.
John McCallce3ff2b2009-08-25 22:02:44 +000073 QualType SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000074 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000075 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000076 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000077
78 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000079 SubstTemplateParams(TemplateParameterList *List);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000080 };
81}
82
Douglas Gregor4f722be2009-03-25 15:45:12 +000083Decl *
84TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
85 assert(false && "Translation units cannot be instantiated");
86 return D;
87}
88
89Decl *
90TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
91 assert(false && "Namespaces cannot be instantiated");
92 return D;
93}
94
Douglas Gregor8dbc2692009-03-17 21:15:40 +000095Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
96 bool Invalid = false;
97 QualType T = D->getUnderlyingType();
98 if (T->isDependentType()) {
John McCallce3ff2b2009-08-25 22:02:44 +000099 T = SemaRef.SubstType(T, TemplateArgs,
100 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000101 if (T.isNull()) {
102 Invalid = true;
103 T = SemaRef.Context.IntTy;
104 }
105 }
106
107 // Create the new typedef
108 TypedefDecl *Typedef
109 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
110 D->getIdentifier(), T);
111 if (Invalid)
112 Typedef->setInvalidDecl();
113
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000114 Owner->addDecl(Typedef);
Douglas Gregorbc221632009-05-28 16:34:51 +0000115
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000116 return Typedef;
117}
118
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000119Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000120 // Do substitution on the type of the declaration
121 QualType T = SemaRef.SubstType(D->getType(), TemplateArgs,
122 D->getTypeSpecStartLoc(),
123 D->getDeclName());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000124 if (T.isNull())
125 return 0;
126
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000127 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000128 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
129 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000130 T, D->getDeclaratorInfo(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000131 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000132 Var->setThreadSpecified(D->isThreadSpecified());
133 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
134 Var->setDeclaredInCondition(D->isDeclaredInCondition());
135
Douglas Gregor7caa6822009-07-24 20:34:43 +0000136 // If we are instantiating a static data member defined
137 // out-of-line, the instantiation will have the same lexical
138 // context (which will be a namespace scope) as the template.
139 if (D->isOutOfLine())
140 Var->setLexicalDeclContext(D->getLexicalDeclContext());
141
Mike Stump390b4cc2009-05-16 07:39:55 +0000142 // FIXME: In theory, we could have a previous declaration for variables that
143 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000144 bool Redeclaration = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000145 SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000146
147 if (D->isOutOfLine()) {
148 D->getLexicalDeclContext()->addDecl(Var);
149 Owner->makeDeclVisibleInContext(Var);
150 } else {
151 Owner->addDecl(Var);
152 }
153
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000154 if (D->getInit()) {
155 OwningExprResult Init
John McCallce3ff2b2009-08-25 22:02:44 +0000156 = SemaRef.SubstExpr(D->getInit(), TemplateArgs);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000157 if (Init.isInvalid())
158 Var->setInvalidDecl();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000159 else if (ParenListExpr *PLE = dyn_cast<ParenListExpr>((Expr *)Init.get())) {
160 // FIXME: We're faking all of the comma locations, which is suboptimal.
161 // Do we even need these comma locations?
162 llvm::SmallVector<SourceLocation, 4> FakeCommaLocs;
163 if (PLE->getNumExprs() > 0) {
164 FakeCommaLocs.reserve(PLE->getNumExprs() - 1);
165 for (unsigned I = 0, N = PLE->getNumExprs() - 1; I != N; ++I) {
166 Expr *E = PLE->getExpr(I)->Retain();
167 FakeCommaLocs.push_back(
168 SemaRef.PP.getLocForEndOfToken(E->getLocEnd()));
169 }
Douglas Gregore9f8eb62009-08-26 23:26:04 +0000170 PLE->getExpr(PLE->getNumExprs() - 1)->Retain();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000171 }
172
173 // Add the direct initializer to the declaration.
174 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
175 PLE->getLParenLoc(),
176 Sema::MultiExprArg(SemaRef,
177 (void**)PLE->getExprs(),
178 PLE->getNumExprs()),
179 FakeCommaLocs.data(),
180 PLE->getRParenLoc());
181
182 // When Init is destroyed, it will destroy the instantiated ParenListExpr;
183 // we've explicitly retained all of its subexpressions already.
184 } else
Chris Lattnerb28317a2009-03-28 19:18:32 +0000185 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000186 D->hasCXXDirectInitializer());
Douglas Gregor65b90052009-07-27 17:43:39 +0000187 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
188 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000189
Douglas Gregor7caa6822009-07-24 20:34:43 +0000190 // Link instantiations of static data members back to the template from
191 // which they were instantiated.
192 if (Var->isStaticDataMember())
193 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D);
194
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000195 return Var;
196}
197
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000198Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
199 bool Invalid = false;
200 QualType T = D->getType();
201 if (T->isDependentType()) {
John McCallce3ff2b2009-08-25 22:02:44 +0000202 T = SemaRef.SubstType(T, TemplateArgs,
203 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000204 if (!T.isNull() && T->isFunctionType()) {
205 // C++ [temp.arg.type]p3:
206 // If a declaration acquires a function type through a type
207 // dependent on a template-parameter and this causes a
208 // declaration that does not use the syntactic form of a
209 // function declarator to have function type, the program is
210 // ill-formed.
211 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
212 << T;
213 T = QualType();
214 Invalid = true;
215 }
216 }
217
218 Expr *BitWidth = D->getBitWidth();
219 if (Invalid)
220 BitWidth = 0;
221 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000222 // The bit-width expression is not potentially evaluated.
223 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
224
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000225 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000226 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000227 if (InstantiatedBitWidth.isInvalid()) {
228 Invalid = true;
229 BitWidth = 0;
230 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000231 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000232 }
233
234 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), T,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000235 D->getDeclaratorInfo(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000236 cast<RecordDecl>(Owner),
237 D->getLocation(),
238 D->isMutable(),
239 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000240 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000241 D->getAccess(),
242 0);
243 if (Field) {
244 if (Invalid)
245 Field->setInvalidDecl();
246
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000247 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000248 }
249
250 return Field;
251}
252
John McCall02cace72009-08-28 07:59:38 +0000253Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
254 FriendDecl::FriendUnion FU;
255
256 // Handle friend type expressions by simply substituting template
257 // parameters into the pattern type.
258 if (Type *Ty = D->getFriendType()) {
259 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
260 D->getLocation(), DeclarationName());
261 if (T.isNull()) return 0;
262
263 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
264 FU = T.getTypePtr();
265
266 // Handle everything else by appropriate substitution.
267 } else {
268 NamedDecl *ND = D->getFriendDecl();
269 assert(ND && "friend decl must be a decl or a type!");
270
271 Decl *NewND = Visit(ND);
272 if (!NewND) return 0;
273
274 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000275 }
John McCall02cace72009-08-28 07:59:38 +0000276
277 FriendDecl *FD =
278 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
279 D->getFriendLoc());
280 Owner->addDecl(FD);
281 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000282}
283
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000284Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
285 Expr *AssertExpr = D->getAssertExpr();
286
Douglas Gregorac7610d2009-06-22 20:57:11 +0000287 // The expression in a static assertion is not potentially evaluated.
288 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
289
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000290 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000291 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000292 if (InstantiatedAssertExpr.isInvalid())
293 return 0;
294
Douglas Gregor43d9d922009-08-08 01:41:12 +0000295 OwningExprResult Message(SemaRef, D->getMessage());
296 D->getMessage()->Retain();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000297 Decl *StaticAssert
Chris Lattnerb28317a2009-03-28 19:18:32 +0000298 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
299 move(InstantiatedAssertExpr),
300 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000301 return StaticAssert;
302}
303
304Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
305 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
306 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000307 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000308 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000309 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000310 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000311 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000312 Enum->startDefinition();
313
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000314 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000315
316 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000317 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
318 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000319 EC != ECEnd; ++EC) {
320 // The specified value for the enumerator.
321 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000322 if (Expr *UninstValue = EC->getInitExpr()) {
323 // The enumerator's value expression is not potentially evaluated.
324 EnterExpressionEvaluationContext Unevaluated(SemaRef,
325 Action::Unevaluated);
326
John McCallce3ff2b2009-08-25 22:02:44 +0000327 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000328 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000329
330 // Drop the initial value and continue.
331 bool isInvalid = false;
332 if (Value.isInvalid()) {
333 Value = SemaRef.Owned((Expr *)0);
334 isInvalid = true;
335 }
336
337 EnumConstantDecl *EnumConst
338 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
339 EC->getLocation(), EC->getIdentifier(),
340 move(Value));
341
342 if (isInvalid) {
343 if (EnumConst)
344 EnumConst->setInvalidDecl();
345 Enum->setInvalidDecl();
346 }
347
348 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000349 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000350 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000351 LastEnumConst = EnumConst;
352 }
353 }
354
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000355 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000356 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000357 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
358 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000359 &Enumerators[0], Enumerators.size(),
360 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000361
362 return Enum;
363}
364
Douglas Gregor6477b692009-03-25 15:04:13 +0000365Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
366 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
367 return 0;
368}
369
John McCalle29ba202009-08-20 01:44:21 +0000370Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
371 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000372 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Douglas Gregord60e1052009-08-27 16:57:43 +0000373 if (!InstParams)
374 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000375
376 CXXRecordDecl *Pattern = D->getTemplatedDecl();
377 CXXRecordDecl *RecordInst
378 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), Owner,
379 Pattern->getLocation(), Pattern->getIdentifier(),
380 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL);
381
382 ClassTemplateDecl *Inst
383 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
384 D->getIdentifier(), InstParams, RecordInst, 0);
385 RecordInst->setDescribedClassTemplate(Inst);
386 Inst->setAccess(D->getAccess());
387 Inst->setInstantiatedFromMemberTemplate(D);
388
389 Owner->addDecl(Inst);
390 return Inst;
391}
392
Douglas Gregord60e1052009-08-27 16:57:43 +0000393Decl *
394TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
395 TemplateParameterList *TempParams = D->getTemplateParameters();
396 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
397 if (!InstParams)
398 return NULL;
399
400 // FIXME: Handle instantiation of nested function templates that aren't
401 // member function templates. This could happen inside a FriendDecl.
402 assert(isa<CXXMethodDecl>(D->getTemplatedDecl()));
403 CXXMethodDecl *InstMethod
404 = cast_or_null<CXXMethodDecl>(
405 VisitCXXMethodDecl(cast<CXXMethodDecl>(D->getTemplatedDecl()),
406 InstParams));
407 if (!InstMethod)
408 return 0;
409
410 // Link the instantiated function template declaration to the function
411 // template from which it was instantiated.
412 FunctionTemplateDecl *InstTemplate = InstMethod->getDescribedFunctionTemplate();
413 assert(InstTemplate && "VisitCXXMethodDecl didn't create a template!");
414 InstTemplate->setInstantiatedFromMemberTemplate(D);
415 Owner->addDecl(InstTemplate);
416 return InstTemplate;
417}
418
Douglas Gregord475b8d2009-03-25 21:17:03 +0000419Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
420 CXXRecordDecl *PrevDecl = 0;
421 if (D->isInjectedClassName())
422 PrevDecl = cast<CXXRecordDecl>(Owner);
423
424 CXXRecordDecl *Record
425 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000426 D->getLocation(), D->getIdentifier(),
427 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000428 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000429 // FIXME: Check against AS_none is an ugly hack to work around the issue that
430 // the tag decls introduced by friend class declarations don't have an access
431 // specifier. Remove once this area of the code gets sorted out.
432 if (D->getAccess() != AS_none)
433 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000434 if (!D->isInjectedClassName())
435 Record->setInstantiationOfMemberClass(D);
436
John McCall02cace72009-08-28 07:59:38 +0000437 // If the original function was part of a friend declaration,
438 // inherit its namespace state.
439 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
440 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
441
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000442 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000443 return Record;
444}
445
John McCall02cace72009-08-28 07:59:38 +0000446/// Normal class members are of more specific types and therefore
447/// don't make it here. This function serves two purposes:
448/// 1) instantiating function templates
449/// 2) substituting friend declarations
450/// FIXME: preserve function definitions in case #2
Douglas Gregore53060f2009-06-25 22:08:12 +0000451Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000452 // Check whether there is already a function template specialization for
453 // this declaration.
454 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
455 void *InsertPos = 0;
456 if (FunctionTemplate) {
457 llvm::FoldingSetNodeID ID;
458 FunctionTemplateSpecializationInfo::Profile(ID,
459 TemplateArgs.getFlatArgumentList(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000460 TemplateArgs.flat_size(),
461 SemaRef.Context);
Douglas Gregor127102b2009-06-29 20:59:39 +0000462
463 FunctionTemplateSpecializationInfo *Info
464 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
465 InsertPos);
466
467 // If we already have a function template specialization, return it.
468 if (Info)
469 return Info->Function;
470 }
Douglas Gregore53060f2009-06-25 22:08:12 +0000471
472 Sema::LocalInstantiationScope Scope(SemaRef);
473
474 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000475 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000476 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000477 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000478
Douglas Gregore53060f2009-06-25 22:08:12 +0000479 // Build the instantiated method declaration.
John McCall02cace72009-08-28 07:59:38 +0000480 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext());
481 FunctionDecl *Function =
482 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000483 D->getDeclName(), T, D->getDeclaratorInfo(),
484 D->getStorageClass(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000485 D->isInline(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000486 Function->setLexicalDeclContext(Owner);
487
Douglas Gregore53060f2009-06-25 22:08:12 +0000488 // Attach the parameters
489 for (unsigned P = 0; P < Params.size(); ++P)
490 Params[P]->setOwningFunction(Function);
491 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000492
493 // If the original function was part of a friend declaration,
494 // inherit its namespace state and add it to the owner.
495 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind()) {
496 bool WasDeclared = (FOK == Decl::FOK_Declared);
497 Function->setObjectOfFriendDecl(WasDeclared);
498 if (!Owner->isDependentContext())
499 DC->makeDeclVisibleInContext(Function);
500 }
Douglas Gregore53060f2009-06-25 22:08:12 +0000501
502 if (InitFunctionInstantiation(Function, D))
503 Function->setInvalidDecl();
504
505 bool Redeclaration = false;
506 bool OverloadableAttrRequired = false;
507 NamedDecl *PrevDecl = 0;
508 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
509 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000510
Douglas Gregor127102b2009-06-29 20:59:39 +0000511 if (FunctionTemplate) {
512 // Record this function template specialization.
513 Function->setFunctionTemplateSpecialization(SemaRef.Context,
514 FunctionTemplate,
515 &TemplateArgs,
516 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000517 }
518
Douglas Gregore53060f2009-06-25 22:08:12 +0000519 return Function;
520}
521
Douglas Gregord60e1052009-08-27 16:57:43 +0000522Decl *
523TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
524 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000525 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
526 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000527 if (FunctionTemplate && !TemplateParams) {
528 // We are creating a function template specialization from a function
529 // template. Check whether there is already a function template
530 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000531 llvm::FoldingSetNodeID ID;
532 FunctionTemplateSpecializationInfo::Profile(ID,
533 TemplateArgs.getFlatArgumentList(),
534 TemplateArgs.flat_size(),
535 SemaRef.Context);
536
537 FunctionTemplateSpecializationInfo *Info
538 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
539 InsertPos);
540
541 // If we already have a function template specialization, return it.
542 if (Info)
543 return Info->Function;
544 }
545
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000546 Sema::LocalInstantiationScope Scope(SemaRef);
547
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000548 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000549 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000550 if (T.isNull())
551 return 0;
552
553 // Build the instantiated method declaration.
554 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000555 CXXMethodDecl *Method = 0;
556
557 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000558 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000559 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
560 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
561 SemaRef.Context.getCanonicalType(ClassTy));
562 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000563 Constructor->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000564 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000565 Constructor->getDeclaratorInfo(),
566 Constructor->isExplicit(),
567 Constructor->isInline(), false);
568 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
569 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
570 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
571 SemaRef.Context.getCanonicalType(ClassTy));
572 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
573 Destructor->getLocation(), Name,
574 T, Destructor->isInline(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000575 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
576 CanQualType ConvTy
577 = SemaRef.Context.getCanonicalType(
578 T->getAsFunctionType()->getResultType());
579 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
580 ConvTy);
581 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
582 Conversion->getLocation(), Name,
583 T, Conversion->getDeclaratorInfo(),
584 Conversion->isInline(),
585 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000586 } else {
587 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
588 D->getDeclName(), T, D->getDeclaratorInfo(),
589 D->isStatic(), D->isInline());
590 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000591
Douglas Gregord60e1052009-08-27 16:57:43 +0000592 if (TemplateParams) {
593 // Our resulting instantiation is actually a function template, since we
594 // are substituting only the outer template parameters. For example, given
595 //
596 // template<typename T>
597 // struct X {
598 // template<typename U> void f(T, U);
599 // };
600 //
601 // X<int> x;
602 //
603 // We are instantiating the member template "f" within X<int>, which means
604 // substituting int for T, but leaving "f" as a member function template.
605 // Build the function template itself.
606 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
607 Method->getLocation(),
608 Method->getDeclName(),
609 TemplateParams, Method);
610 if (D->isOutOfLine())
611 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
612 Method->setDescribedFunctionTemplate(FunctionTemplate);
613 } else if (!FunctionTemplate)
Douglas Gregor6b906862009-08-21 00:16:32 +0000614 Method->setInstantiationOfMemberFunction(D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000615
Douglas Gregor7caa6822009-07-24 20:34:43 +0000616 // If we are instantiating a member function defined
617 // out-of-line, the instantiation will have the same lexical
618 // context (which will be a namespace scope) as the template.
619 if (D->isOutOfLine())
620 Method->setLexicalDeclContext(D->getLexicalDeclContext());
621
Douglas Gregor5545e162009-03-24 00:38:23 +0000622 // Attach the parameters
623 for (unsigned P = 0; P < Params.size(); ++P)
624 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000625 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000626
627 if (InitMethodInstantiation(Method, D))
628 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000629
Douglas Gregordec06662009-08-21 18:42:58 +0000630 NamedDecl *PrevDecl = 0;
631
Douglas Gregord60e1052009-08-27 16:57:43 +0000632 if (!FunctionTemplate || TemplateParams) {
Douglas Gregordec06662009-08-21 18:42:58 +0000633 PrevDecl = SemaRef.LookupQualifiedName(Owner, Name,
634 Sema::LookupOrdinaryName, true);
635
636 // In C++, the previous declaration we find might be a tag type
637 // (class or enum). In this case, the new declaration will hide the
638 // tag type. Note that this does does not apply if we're declaring a
639 // typedef (C++ [dcl.typedef]p4).
640 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
641 PrevDecl = 0;
642 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000643
Douglas Gregord60e1052009-08-27 16:57:43 +0000644 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000645 // Record this function template specialization.
646 Method->setFunctionTemplateSpecialization(SemaRef.Context,
647 FunctionTemplate,
648 &TemplateArgs,
649 InsertPos);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000650
651 bool Redeclaration = false;
652 bool OverloadableAttrRequired = false;
653 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
654 /*FIXME:*/OverloadableAttrRequired);
655
656 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl))
Douglas Gregordec06662009-08-21 18:42:58 +0000657 Owner->addDecl(Method);
658
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000659 return Method;
660}
661
Douglas Gregor615c5d42009-03-24 16:43:20 +0000662Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000663 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000664}
665
Douglas Gregor03b2b072009-03-24 00:15:49 +0000666Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000667 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000668}
669
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000670Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000671 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000672}
673
Douglas Gregor6477b692009-03-25 15:04:13 +0000674ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000675 QualType OrigT = SemaRef.SubstType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000676 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000677 if (OrigT.isNull())
678 return 0;
679
680 QualType T = SemaRef.adjustParameterType(OrigT);
681
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000682 // Allocate the parameter
683 ParmVarDecl *Param = 0;
684 if (T == OrigT)
685 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000686 D->getIdentifier(), T, D->getDeclaratorInfo(),
687 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000688 else
689 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
690 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000691 T, D->getDeclaratorInfo(), OrigT,
692 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000693
Anders Carlsson9351c172009-08-25 03:18:48 +0000694 // Mark the default argument as being uninstantiated.
695 if (Expr *Arg = D->getDefaultArg())
696 Param->setUninstantiatedDefaultArg(Arg);
697
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000698 // Note: we don't try to instantiate function parameters until after
699 // we've instantiated the function's type. Therefore, we don't have
700 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000701 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000702 return Param;
703}
704
705Decl *
706TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
707 // Since parameter types can decay either before or after
708 // instantiation, we simply treat OriginalParmVarDecls as
709 // ParmVarDecls the same way, and create one or the other depending
710 // on what happens after template instantiation.
711 return VisitParmVarDecl(D);
712}
713
John McCalle29ba202009-08-20 01:44:21 +0000714Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
715 TemplateTypeParmDecl *D) {
716 // TODO: don't always clone when decls are refcounted.
717 const Type* T = D->getTypeForDecl();
718 assert(T->isTemplateTypeParmType());
719 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
720
721 TemplateTypeParmDecl *Inst =
722 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
723 TTPT->getDepth(), TTPT->getIndex(),
724 TTPT->getName(),
725 D->wasDeclaredWithTypename(),
726 D->isParameterPack());
727
728 if (D->hasDefaultArgument()) {
729 QualType DefaultPattern = D->getDefaultArgument();
730 QualType DefaultInst
John McCallce3ff2b2009-08-25 22:02:44 +0000731 = SemaRef.SubstType(DefaultPattern, TemplateArgs,
732 D->getDefaultArgumentLoc(),
733 D->getDeclName());
John McCalle29ba202009-08-20 01:44:21 +0000734
735 Inst->setDefaultArgument(DefaultInst,
736 D->getDefaultArgumentLoc(),
737 D->defaultArgumentWasInherited() /* preserve? */);
738 }
739
740 return Inst;
741}
742
John McCallce3ff2b2009-08-25 22:02:44 +0000743Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
744 const TemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +0000745 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000746 return Instantiator.Visit(D);
747}
748
John McCalle29ba202009-08-20 01:44:21 +0000749/// \brief Instantiates a nested template parameter list in the current
750/// instantiation context.
751///
752/// \param L The parameter list to instantiate
753///
754/// \returns NULL if there was an error
755TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000756TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +0000757 // Get errors for all the parameters before bailing out.
758 bool Invalid = false;
759
760 unsigned N = L->size();
761 typedef llvm::SmallVector<Decl*,8> ParamVector;
762 ParamVector Params;
763 Params.reserve(N);
764 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
765 PI != PE; ++PI) {
766 Decl *D = Visit(*PI);
767 Params.push_back(D);
768 Invalid = Invalid || !D;
769 }
770
771 // Clean up if we had an error.
772 if (Invalid) {
773 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
774 PI != PE; ++PI)
775 if (*PI)
776 (*PI)->Destroy(SemaRef.Context);
777 return NULL;
778 }
779
780 TemplateParameterList *InstL
781 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
782 L->getLAngleLoc(), &Params.front(), N,
783 L->getRAngleLoc());
784 return InstL;
785}
786
John McCallce3ff2b2009-08-25 22:02:44 +0000787/// \brief Does substitution on the type of the given function, including
788/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +0000789///
John McCallce3ff2b2009-08-25 22:02:44 +0000790/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +0000791///
792/// \param Params the instantiated parameter declarations
793
John McCallce3ff2b2009-08-25 22:02:44 +0000794/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +0000795/// type if there was an error.
796QualType
John McCallce3ff2b2009-08-25 22:02:44 +0000797TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +0000798 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
799 bool InvalidDecl = false;
800
John McCallce3ff2b2009-08-25 22:02:44 +0000801 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +0000802 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000803 llvm::SmallVector<QualType, 4> ParamTys;
Douglas Gregor5545e162009-03-24 00:38:23 +0000804 for (FunctionDecl::param_iterator P = D->param_begin(),
805 PEnd = D->param_end();
806 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000807 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000808 if (PInst->getType()->isVoidType()) {
809 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
810 PInst->setInvalidDecl();
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000811 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
812 PInst->getType(),
813 diag::err_abstract_type_in_decl,
814 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000815 PInst->setInvalidDecl();
816
817 Params.push_back(PInst);
818 ParamTys.push_back(PInst->getType());
819
820 if (PInst->isInvalidDecl())
821 InvalidDecl = true;
822 } else
823 InvalidDecl = true;
824 }
825
826 // FIXME: Deallocate dead declarations.
827 if (InvalidDecl)
828 return QualType();
829
830 const FunctionProtoType *Proto = D->getType()->getAsFunctionProtoType();
831 assert(Proto && "Missing prototype?");
832 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +0000833 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
834 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +0000835 if (ResultType.isNull())
836 return QualType();
837
Jay Foadbeaaccd2009-05-21 09:52:38 +0000838 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000839 Proto->isVariadic(), Proto->getTypeQuals(),
840 D->getLocation(), D->getDeclName());
841}
842
Douglas Gregore53060f2009-06-25 22:08:12 +0000843/// \brief Initializes the common fields of an instantiation function
844/// declaration (New) from the corresponding fields of its template (Tmpl).
845///
846/// \returns true if there was an error
847bool
848TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
849 FunctionDecl *Tmpl) {
850 if (Tmpl->isDeleted())
851 New->setDeleted();
Douglas Gregorcca9e962009-07-01 22:01:06 +0000852
853 // If we are performing substituting explicitly-specified template arguments
854 // or deduced template arguments into a function template and we reach this
855 // point, we are now past the point where SFINAE applies and have committed
856 // to keeping the new function template specialization. We therefore
857 // convert the active template instantiation for the function template
858 // into a template instantiation for this specific function template
859 // specialization, which is not a SFINAE context, so that we diagnose any
860 // further errors in the declaration itself.
861 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
862 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
863 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
864 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
865 if (FunctionTemplateDecl *FunTmpl
866 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
867 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
868 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000869 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000870 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
871 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
872 }
873 }
874
Douglas Gregore53060f2009-06-25 22:08:12 +0000875 return false;
876}
877
Douglas Gregor5545e162009-03-24 00:38:23 +0000878/// \brief Initializes common fields of an instantiated method
879/// declaration (New) from the corresponding fields of its template
880/// (Tmpl).
881///
882/// \returns true if there was an error
883bool
884TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
885 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000886 if (InitFunctionInstantiation(New, Tmpl))
887 return true;
888
Douglas Gregor5545e162009-03-24 00:38:23 +0000889 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
890 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000891 if (Tmpl->isVirtualAsWritten()) {
892 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000893 Record->setAggregate(false);
894 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000895 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +0000896 Record->setPolymorphic(true);
897 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000898 if (Tmpl->isPure()) {
899 New->setPure();
900 Record->setAbstract(true);
901 }
902
903 // FIXME: attributes
904 // FIXME: New needs a pointer to Tmpl
905 return false;
906}
Douglas Gregora58861f2009-05-13 20:28:22 +0000907
908/// \brief Instantiate the definition of the given function from its
909/// template.
910///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000911/// \param PointOfInstantiation the point at which the instantiation was
912/// required. Note that this is not precisely a "point of instantiation"
913/// for the function, but it's close.
914///
Douglas Gregora58861f2009-05-13 20:28:22 +0000915/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000916/// function template specialization or member function of a class template
917/// specialization.
918///
919/// \param Recursive if true, recursively instantiates any functions that
920/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000921void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000922 FunctionDecl *Function,
923 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000924 if (Function->isInvalidDecl())
925 return;
926
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000927 assert(!Function->getBody() && "Already instantiated!");
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000928
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000929 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000930 const FunctionDecl *PatternDecl = 0;
931 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate())
932 PatternDecl = Primary->getTemplatedDecl();
933 else
934 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000935 Stmt *Pattern = 0;
936 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000937 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000938
939 if (!Pattern)
940 return;
941
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000942 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
943 if (Inst)
944 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000945
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000946 // If we're performing recursive template instantiation, create our own
947 // queue of pending implicit instantiations that we will instantiate later,
948 // while we're still within our own instantiation context.
949 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
950 if (Recursive)
951 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
952
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000953 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
954
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000955 // Introduce a new scope where local variable instantiations will be
956 // recorded.
957 LocalInstantiationScope Scope(*this);
958
959 // Introduce the instantiated function parameters into the local
960 // instantiation scope.
961 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
962 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
963 Function->getParamDecl(I));
964
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000965 // Enter the scope of this instantiation. We don't use
966 // PushDeclContext because we don't have a scope.
967 DeclContext *PreviousContext = CurContext;
968 CurContext = Function;
969
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000970 // Instantiate the function body.
971 OwningStmtResult Body
John McCallce3ff2b2009-08-25 22:02:44 +0000972 = SubstStmt(Pattern, getTemplateInstantiationArgs(Function));
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000973
974 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
975 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000976
977 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +0000978
979 DeclGroupRef DG(Function);
980 Consumer.HandleTopLevelDecl(DG);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000981
982 if (Recursive) {
983 // Instantiate any pending implicit instantiations found during the
984 // instantiation of this template.
985 PerformPendingImplicitInstantiations();
986
987 // Restore the set of pending implicit instantiations.
988 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
989 }
Douglas Gregora58861f2009-05-13 20:28:22 +0000990}
991
992/// \brief Instantiate the definition of the given variable from its
993/// template.
994///
Douglas Gregor7caa6822009-07-24 20:34:43 +0000995/// \param PointOfInstantiation the point at which the instantiation was
996/// required. Note that this is not precisely a "point of instantiation"
997/// for the function, but it's close.
998///
999/// \param Var the already-instantiated declaration of a static member
1000/// variable of a class template specialization.
1001///
1002/// \param Recursive if true, recursively instantiates any functions that
1003/// are required by this instantiation.
1004void Sema::InstantiateStaticDataMemberDefinition(
1005 SourceLocation PointOfInstantiation,
1006 VarDecl *Var,
1007 bool Recursive) {
1008 if (Var->isInvalidDecl())
1009 return;
1010
1011 // Find the out-of-line definition of this static data member.
1012 // FIXME: Do we have to look for specializations separately?
1013 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
1014 bool FoundOutOfLineDef = false;
1015 assert(Def && "This data member was not instantiated from a template?");
1016 assert(Def->isStaticDataMember() && "Not a static data member?");
1017 for (VarDecl::redecl_iterator RD = Def->redecls_begin(),
1018 RDEnd = Def->redecls_end();
1019 RD != RDEnd; ++RD) {
1020 if (RD->getLexicalDeclContext()->isFileContext()) {
1021 Def = *RD;
1022 FoundOutOfLineDef = true;
1023 }
1024 }
1025
1026 if (!FoundOutOfLineDef) {
1027 // We did not find an out-of-line definition of this static data member,
1028 // so we won't perform any instantiation. Rather, we rely on the user to
1029 // instantiate this definition (or provide a specialization for it) in
1030 // another translation unit.
1031 return;
1032 }
1033
1034 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1035 if (Inst)
1036 return;
1037
1038 // If we're performing recursive template instantiation, create our own
1039 // queue of pending implicit instantiations that we will instantiate later,
1040 // while we're still within our own instantiation context.
1041 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1042 if (Recursive)
1043 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1044
1045 // Enter the scope of this instantiation. We don't use
1046 // PushDeclContext because we don't have a scope.
1047 DeclContext *PreviousContext = CurContext;
1048 CurContext = Var->getDeclContext();
1049
1050#if 0
1051 // Instantiate the initializer of this static data member.
1052 OwningExprResult Init
1053 = InstantiateExpr(Def->getInit(), getTemplateInstantiationArgs(Var));
1054 if (Init.isInvalid()) {
1055 // If instantiation of the initializer failed, mark the declaration invalid
1056 // and don't instantiate anything else that was triggered by this
1057 // instantiation.
1058 Var->setInvalidDecl();
1059
1060 // Restore the set of pending implicit instantiations.
1061 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1062
1063 return;
1064 }
1065
1066 // Type-check the initializer.
1067 if (Init.get())
1068 AddInitializerToDecl(DeclPtrTy::make(Var), move(Init),
1069 Def->hasCXXDirectInitializer());
1070 else
1071 ActOnUninitializedDecl(DeclPtrTy::make(Var), false);
1072#else
John McCallce3ff2b2009-08-25 22:02:44 +00001073 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001074 getTemplateInstantiationArgs(Var)));
1075#endif
1076
1077 CurContext = PreviousContext;
1078
1079 if (Var) {
1080 DeclGroupRef DG(Var);
1081 Consumer.HandleTopLevelDecl(DG);
1082 }
1083
1084 if (Recursive) {
1085 // Instantiate any pending implicit instantiations found during the
1086 // instantiation of this template.
1087 PerformPendingImplicitInstantiations();
1088
1089 // Restore the set of pending implicit instantiations.
1090 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1091 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001092}
Douglas Gregor815215d2009-05-27 05:35:12 +00001093
1094static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
1095 if (D->getKind() != Other->getKind())
1096 return false;
1097
1098 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00001099 return Record->getInstantiatedFromMemberClass()->getCanonicalDecl()
1100 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +00001101
1102 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00001103 return Function->getInstantiatedFromMemberFunction()->getCanonicalDecl()
1104 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +00001105
Douglas Gregor8dbc3c62009-05-27 17:20:35 +00001106 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00001107 return Enum->getInstantiatedFromMemberEnum()->getCanonicalDecl()
1108 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +00001109
Douglas Gregor7caa6822009-07-24 20:34:43 +00001110 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
1111 if (Var->isStaticDataMember())
1112 return Var->getInstantiatedFromStaticDataMember()->getCanonicalDecl()
1113 == D->getCanonicalDecl();
1114
Douglas Gregor815215d2009-05-27 05:35:12 +00001115 // FIXME: How can we find instantiations of anonymous unions?
1116
1117 return D->getDeclName() && isa<NamedDecl>(Other) &&
1118 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1119}
1120
1121template<typename ForwardIterator>
1122static NamedDecl *findInstantiationOf(ASTContext &Ctx,
1123 NamedDecl *D,
1124 ForwardIterator first,
1125 ForwardIterator last) {
1126 for (; first != last; ++first)
1127 if (isInstantiationOf(Ctx, D, *first))
1128 return cast<NamedDecl>(*first);
1129
1130 return 0;
1131}
1132
John McCall02cace72009-08-28 07:59:38 +00001133/// \brief Finds the instantiation of the given declaration context
1134/// within the current instantiation.
1135///
1136/// \returns NULL if there was an error
1137DeclContext *Sema::FindInstantiatedContext(DeclContext* DC) {
1138 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
1139 Decl* ID = FindInstantiatedDecl(D);
1140 return cast_or_null<DeclContext>(ID);
1141 } else return DC;
1142}
1143
Douglas Gregored961e72009-05-27 17:54:46 +00001144/// \brief Find the instantiation of the given declaration within the
1145/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001146///
1147/// This routine is intended to be used when \p D is a declaration
1148/// referenced from within a template, that needs to mapped into the
1149/// corresponding declaration within an instantiation. For example,
1150/// given:
1151///
1152/// \code
1153/// template<typename T>
1154/// struct X {
1155/// enum Kind {
1156/// KnownValue = sizeof(T)
1157/// };
1158///
1159/// bool getKind() const { return KnownValue; }
1160/// };
1161///
1162/// template struct X<int>;
1163/// \endcode
1164///
1165/// In the instantiation of X<int>::getKind(), we need to map the
1166/// EnumConstantDecl for KnownValue (which refers to
1167/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001168/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1169/// this mapping from within the instantiation of X<int>.
John McCallce3ff2b2009-08-25 22:02:44 +00001170NamedDecl * Sema::FindInstantiatedDecl(NamedDecl *D) {
Douglas Gregor815215d2009-05-27 05:35:12 +00001171 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001172 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
1173 // D is a local of some kind. Look into the map of local
1174 // declarations to their instantiations.
1175 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1176 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001177
John McCall02cace72009-08-28 07:59:38 +00001178 ParentDC = FindInstantiatedContext(ParentDC);
1179 if (!ParentDC) return 0;
Douglas Gregor815215d2009-05-27 05:35:12 +00001180
Douglas Gregor815215d2009-05-27 05:35:12 +00001181 if (ParentDC != D->getDeclContext()) {
1182 // We performed some kind of instantiation in the parent context,
1183 // so now we need to look into the instantiated parent context to
1184 // find the instantiation of the declaration D.
1185 NamedDecl *Result = 0;
1186 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001187 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001188 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1189 } else {
1190 // Since we don't have a name for the entity we're looking for,
1191 // our only option is to walk through all of the declarations to
1192 // find that name. This will occur in a few cases:
1193 //
1194 // - anonymous struct/union within a template
1195 // - unnamed class/struct/union/enum within a template
1196 //
1197 // FIXME: Find a better way to find these instantiations!
1198 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001199 ParentDC->decls_begin(),
1200 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001201 }
1202 assert(Result && "Unable to find instantiation of declaration!");
1203 D = Result;
1204 }
1205
Douglas Gregor815215d2009-05-27 05:35:12 +00001206 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
Douglas Gregored961e72009-05-27 17:54:46 +00001207 if (ClassTemplateDecl *ClassTemplate
1208 = Record->getDescribedClassTemplate()) {
1209 // When the declaration D was parsed, it referred to the current
1210 // instantiation. Therefore, look through the current context,
1211 // which contains actual instantiations, to find the
1212 // instantiation of the "current instantiation" that D refers
1213 // to. Alternatively, we could just instantiate the
1214 // injected-class-name with the current template arguments, but
1215 // such an instantiation is far more expensive.
1216 for (DeclContext *DC = CurContext; !DC->isFileContext();
1217 DC = DC->getParent()) {
1218 if (ClassTemplateSpecializationDecl *Spec
1219 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00001220 if (Spec->getSpecializedTemplate()->getCanonicalDecl()
1221 == ClassTemplate->getCanonicalDecl())
Douglas Gregored961e72009-05-27 17:54:46 +00001222 return Spec;
1223 }
1224
1225 assert(false &&
1226 "Unable to find declaration for the current instantiation");
Douglas Gregor815215d2009-05-27 05:35:12 +00001227 }
1228
1229 return D;
1230}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001231
1232/// \brief Performs template instantiation for all implicit template
1233/// instantiations we have seen until this point.
1234void Sema::PerformPendingImplicitInstantiations() {
1235 while (!PendingImplicitInstantiations.empty()) {
1236 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001237 PendingImplicitInstantiations.pop_front();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001238
Douglas Gregor7caa6822009-07-24 20:34:43 +00001239 // Instantiate function definitions
1240 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001241 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001242 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001243 continue;
1244 }
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001245
Douglas Gregor7caa6822009-07-24 20:34:43 +00001246 // Instantiate static data member definitions.
1247 VarDecl *Var = cast<VarDecl>(Inst.first);
1248 assert(Var->isStaticDataMember() && "Not a static data member?");
1249 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001250 }
1251}