blob: 916e44329471b96981fe5cbde19eaa884006dd7a [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(),
393 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL);
394
395 ClassTemplateDecl *Inst
396 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
397 D->getIdentifier(), InstParams, RecordInst, 0);
398 RecordInst->setDescribedClassTemplate(Inst);
399 Inst->setAccess(D->getAccess());
400 Inst->setInstantiatedFromMemberTemplate(D);
401
402 Owner->addDecl(Inst);
403 return Inst;
404}
405
Douglas Gregord60e1052009-08-27 16:57:43 +0000406Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000407TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
408 ClassTemplatePartialSpecializationDecl *D) {
409 assert(false &&"Partial specializations of member templates are unsupported");
410 return 0;
411}
412
413Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000414TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregord0e3daf2009-09-04 22:48:11 +0000415 // FIXME: Dig out the out-of-line definition of this function template?
Mike Stump1eb44332009-09-09 15:08:12 +0000416
Douglas Gregord60e1052009-08-27 16:57:43 +0000417 TemplateParameterList *TempParams = D->getTemplateParameters();
418 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000419 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000420 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000421
422 // FIXME: Handle instantiation of nested function templates that aren't
Douglas Gregord60e1052009-08-27 16:57:43 +0000423 // member function templates. This could happen inside a FriendDecl.
424 assert(isa<CXXMethodDecl>(D->getTemplatedDecl()));
Mike Stump1eb44332009-09-09 15:08:12 +0000425 CXXMethodDecl *InstMethod
Douglas Gregord60e1052009-08-27 16:57:43 +0000426 = cast_or_null<CXXMethodDecl>(
Mike Stump1eb44332009-09-09 15:08:12 +0000427 VisitCXXMethodDecl(cast<CXXMethodDecl>(D->getTemplatedDecl()),
Douglas Gregord60e1052009-08-27 16:57:43 +0000428 InstParams));
429 if (!InstMethod)
430 return 0;
431
Mike Stump1eb44332009-09-09 15:08:12 +0000432 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000433 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000434 FunctionTemplateDecl *InstTemplate
435 = InstMethod->getDescribedFunctionTemplate();
436 InstTemplate->setAccess(D->getAccess());
Douglas Gregord60e1052009-08-27 16:57:43 +0000437 assert(InstTemplate && "VisitCXXMethodDecl didn't create a template!");
438 InstTemplate->setInstantiatedFromMemberTemplate(D);
439 Owner->addDecl(InstTemplate);
440 return InstTemplate;
441}
442
Douglas Gregord475b8d2009-03-25 21:17:03 +0000443Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
444 CXXRecordDecl *PrevDecl = 0;
445 if (D->isInjectedClassName())
446 PrevDecl = cast<CXXRecordDecl>(Owner);
447
448 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000449 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000450 D->getLocation(), D->getIdentifier(),
451 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000452 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000453 // FIXME: Check against AS_none is an ugly hack to work around the issue that
454 // the tag decls introduced by friend class declarations don't have an access
455 // specifier. Remove once this area of the code gets sorted out.
456 if (D->getAccess() != AS_none)
457 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000458 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000459 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000460
John McCall02cace72009-08-28 07:59:38 +0000461 // If the original function was part of a friend declaration,
462 // inherit its namespace state.
463 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
464 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
465
Anders Carlssond8b285f2009-09-01 04:26:58 +0000466 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
467
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000468 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000469 return Record;
470}
471
John McCall02cace72009-08-28 07:59:38 +0000472/// Normal class members are of more specific types and therefore
473/// don't make it here. This function serves two purposes:
474/// 1) instantiating function templates
475/// 2) substituting friend declarations
476/// FIXME: preserve function definitions in case #2
Douglas Gregore53060f2009-06-25 22:08:12 +0000477Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000478 // Check whether there is already a function template specialization for
479 // this declaration.
480 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
481 void *InsertPos = 0;
482 if (FunctionTemplate) {
483 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000484 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000485 TemplateArgs.getInnermost().getFlatArgumentList(),
486 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000487 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
489 FunctionTemplateSpecializationInfo *Info
490 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000491 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Douglas Gregor127102b2009-06-29 20:59:39 +0000493 // If we already have a function template specialization, return it.
494 if (Info)
495 return Info->Function;
496 }
Mike Stump1eb44332009-09-09 15:08:12 +0000497
Douglas Gregore53060f2009-06-25 22:08:12 +0000498 Sema::LocalInstantiationScope Scope(SemaRef);
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Douglas Gregore53060f2009-06-25 22:08:12 +0000500 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000501 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000502 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000503 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000504
Douglas Gregore53060f2009-06-25 22:08:12 +0000505 // Build the instantiated method declaration.
Douglas Gregore95b4092009-09-16 18:34:49 +0000506 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext(),
507 TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +0000508 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000509 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000510 D->getDeclName(), T, D->getDeclaratorInfo(),
511 D->getStorageClass(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000512 D->isInline(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000513 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000514
Douglas Gregore53060f2009-06-25 22:08:12 +0000515 // Attach the parameters
516 for (unsigned P = 0; P < Params.size(); ++P)
517 Params[P]->setOwningFunction(Function);
518 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000519
520 // If the original function was part of a friend declaration,
521 // inherit its namespace state and add it to the owner.
522 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind()) {
523 bool WasDeclared = (FOK == Decl::FOK_Declared);
524 Function->setObjectOfFriendDecl(WasDeclared);
525 if (!Owner->isDependentContext())
John McCallab88d972009-08-31 22:39:49 +0000526 DC->makeDeclVisibleInContext(Function, /* Recoverable = */ false);
John McCallf181d8a2009-08-29 03:16:09 +0000527
Douglas Gregor2db32322009-10-07 23:56:10 +0000528 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +0000529 }
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Douglas Gregore53060f2009-06-25 22:08:12 +0000531 if (InitFunctionInstantiation(Function, D))
532 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000533
Douglas Gregore53060f2009-06-25 22:08:12 +0000534 bool Redeclaration = false;
535 bool OverloadableAttrRequired = false;
536 NamedDecl *PrevDecl = 0;
537 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
538 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000539
Douglas Gregor127102b2009-06-29 20:59:39 +0000540 if (FunctionTemplate) {
541 // Record this function template specialization.
542 Function->setFunctionTemplateSpecialization(SemaRef.Context,
543 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000544 &TemplateArgs.getInnermost(),
Douglas Gregor127102b2009-06-29 20:59:39 +0000545 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000546 }
547
Douglas Gregore53060f2009-06-25 22:08:12 +0000548 return Function;
549}
550
Douglas Gregord60e1052009-08-27 16:57:43 +0000551Decl *
552TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
553 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000554 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
555 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000556 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000557 // We are creating a function template specialization from a function
558 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000559 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000560 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000561 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000562 TemplateArgs.getInnermost().getFlatArgumentList(),
563 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000564 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000565
566 FunctionTemplateSpecializationInfo *Info
567 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000568 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000569
Douglas Gregor6b906862009-08-21 00:16:32 +0000570 // If we already have a function template specialization, return it.
571 if (Info)
572 return Info->Function;
573 }
574
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000575 Sema::LocalInstantiationScope Scope(SemaRef);
576
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000577 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000578 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000579 if (T.isNull())
580 return 0;
581
582 // Build the instantiated method declaration.
583 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000584 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Douglas Gregordec06662009-08-21 18:42:58 +0000586 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000587 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000588 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
589 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
590 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000591 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
592 Constructor->getLocation(),
593 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000594 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000595 Constructor->isExplicit(),
Douglas Gregor17e32f32009-08-21 22:43:28 +0000596 Constructor->isInline(), false);
597 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
598 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
599 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
600 SemaRef.Context.getCanonicalType(ClassTy));
601 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
602 Destructor->getLocation(), Name,
603 T, Destructor->isInline(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000604 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000605 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000606 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000607 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000608 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
609 ConvTy);
610 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
611 Conversion->getLocation(), Name,
612 T, Conversion->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000613 Conversion->isInline(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000614 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000615 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000616 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000617 D->getDeclName(), T, D->getDeclaratorInfo(),
618 D->isStatic(), D->isInline());
619 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000620
Douglas Gregord60e1052009-08-27 16:57:43 +0000621 if (TemplateParams) {
622 // Our resulting instantiation is actually a function template, since we
623 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000624 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000625 // template<typename T>
626 // struct X {
627 // template<typename U> void f(T, U);
628 // };
629 //
630 // X<int> x;
631 //
632 // We are instantiating the member template "f" within X<int>, which means
633 // substituting int for T, but leaving "f" as a member function template.
634 // Build the function template itself.
635 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
636 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000637 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000638 TemplateParams, Method);
639 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000640 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000641 Method->setDescribedFunctionTemplate(FunctionTemplate);
642 } else if (!FunctionTemplate)
Douglas Gregor2db32322009-10-07 23:56:10 +0000643 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000644
Mike Stump1eb44332009-09-09 15:08:12 +0000645 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000646 // out-of-line, the instantiation will have the same lexical
647 // context (which will be a namespace scope) as the template.
648 if (D->isOutOfLine())
649 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000650
Douglas Gregor5545e162009-03-24 00:38:23 +0000651 // Attach the parameters
652 for (unsigned P = 0; P < Params.size(); ++P)
653 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000654 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000655
656 if (InitMethodInstantiation(Method, D))
657 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000658
Douglas Gregordec06662009-08-21 18:42:58 +0000659 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000660
Douglas Gregord60e1052009-08-27 16:57:43 +0000661 if (!FunctionTemplate || TemplateParams) {
John McCallf36e02d2009-10-09 21:13:30 +0000662 Sema::LookupResult R;
663 SemaRef.LookupQualifiedName(R, Owner, Name, Sema::LookupOrdinaryName, true);
664 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Douglas Gregordec06662009-08-21 18:42:58 +0000666 // In C++, the previous declaration we find might be a tag type
667 // (class or enum). In this case, the new declaration will hide the
668 // tag type. Note that this does does not apply if we're declaring a
669 // typedef (C++ [dcl.typedef]p4).
670 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
671 PrevDecl = 0;
672 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000673
Douglas Gregord60e1052009-08-27 16:57:43 +0000674 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000675 // Record this function template specialization.
676 Method->setFunctionTemplateSpecialization(SemaRef.Context,
677 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000678 &TemplateArgs.getInnermost(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000679 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000680
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000681 bool Redeclaration = false;
682 bool OverloadableAttrRequired = false;
683 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
684 /*FIXME:*/OverloadableAttrRequired);
685
686 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl))
Douglas Gregordec06662009-08-21 18:42:58 +0000687 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000689 return Method;
690}
691
Douglas Gregor615c5d42009-03-24 16:43:20 +0000692Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000693 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000694}
695
Douglas Gregor03b2b072009-03-24 00:15:49 +0000696Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000697 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000698}
699
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000700Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000701 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000702}
703
Douglas Gregor6477b692009-03-25 15:04:13 +0000704ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000705 QualType OrigT = SemaRef.SubstType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000706 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000707 if (OrigT.isNull())
708 return 0;
709
710 QualType T = SemaRef.adjustParameterType(OrigT);
711
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000712 // Allocate the parameter
713 ParmVarDecl *Param = 0;
714 if (T == OrigT)
715 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000716 D->getIdentifier(), T, D->getDeclaratorInfo(),
717 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000718 else
Mike Stump1eb44332009-09-09 15:08:12 +0000719 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000720 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000721 T, D->getDeclaratorInfo(), OrigT,
722 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000723
Anders Carlsson9351c172009-08-25 03:18:48 +0000724 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000725 if (D->hasUninstantiatedDefaultArg())
726 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000727 else if (Expr *Arg = D->getDefaultArg())
728 Param->setUninstantiatedDefaultArg(Arg);
729
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000730 // Note: we don't try to instantiate function parameters until after
731 // we've instantiated the function's type. Therefore, we don't have
732 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000733 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000734 return Param;
735}
736
737Decl *
738TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
739 // Since parameter types can decay either before or after
740 // instantiation, we simply treat OriginalParmVarDecls as
741 // ParmVarDecls the same way, and create one or the other depending
742 // on what happens after template instantiation.
743 return VisitParmVarDecl(D);
744}
745
John McCalle29ba202009-08-20 01:44:21 +0000746Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
747 TemplateTypeParmDecl *D) {
748 // TODO: don't always clone when decls are refcounted.
749 const Type* T = D->getTypeForDecl();
750 assert(T->isTemplateTypeParmType());
751 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000752
John McCalle29ba202009-08-20 01:44:21 +0000753 TemplateTypeParmDecl *Inst =
754 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
755 TTPT->getDepth(), TTPT->getIndex(),
756 TTPT->getName(),
757 D->wasDeclaredWithTypename(),
758 D->isParameterPack());
759
760 if (D->hasDefaultArgument()) {
761 QualType DefaultPattern = D->getDefaultArgument();
762 QualType DefaultInst
John McCallce3ff2b2009-08-25 22:02:44 +0000763 = SemaRef.SubstType(DefaultPattern, TemplateArgs,
764 D->getDefaultArgumentLoc(),
765 D->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +0000766
John McCalle29ba202009-08-20 01:44:21 +0000767 Inst->setDefaultArgument(DefaultInst,
768 D->getDefaultArgumentLoc(),
769 D->defaultArgumentWasInherited() /* preserve? */);
770 }
771
772 return Inst;
773}
774
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000775Decl *
776TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000777 NestedNameSpecifier *NNS =
778 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
779 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000780 TemplateArgs);
781 if (!NNS)
782 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000784 CXXScopeSpec SS;
785 SS.setRange(D->getTargetNestedNameRange());
786 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +0000787
788 NamedDecl *UD =
789 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
790 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000791 D->getTargetName(), 0, D->isTypeName());
792 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +0000793 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000794 D);
795 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000796}
797
John McCallce3ff2b2009-08-25 22:02:44 +0000798Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000799 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +0000800 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000801 return Instantiator.Visit(D);
802}
803
John McCalle29ba202009-08-20 01:44:21 +0000804/// \brief Instantiates a nested template parameter list in the current
805/// instantiation context.
806///
807/// \param L The parameter list to instantiate
808///
809/// \returns NULL if there was an error
810TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000811TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +0000812 // Get errors for all the parameters before bailing out.
813 bool Invalid = false;
814
815 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000816 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +0000817 ParamVector Params;
818 Params.reserve(N);
819 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
820 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000821 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +0000822 Params.push_back(D);
823 Invalid = Invalid || !D;
824 }
825
826 // Clean up if we had an error.
827 if (Invalid) {
828 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
829 PI != PE; ++PI)
830 if (*PI)
831 (*PI)->Destroy(SemaRef.Context);
832 return NULL;
833 }
834
835 TemplateParameterList *InstL
836 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
837 L->getLAngleLoc(), &Params.front(), N,
838 L->getRAngleLoc());
839 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +0000840}
John McCalle29ba202009-08-20 01:44:21 +0000841
John McCallce3ff2b2009-08-25 22:02:44 +0000842/// \brief Does substitution on the type of the given function, including
843/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +0000844///
John McCallce3ff2b2009-08-25 22:02:44 +0000845/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +0000846///
847/// \param Params the instantiated parameter declarations
848
John McCallce3ff2b2009-08-25 22:02:44 +0000849/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +0000850/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000851QualType
John McCallce3ff2b2009-08-25 22:02:44 +0000852TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +0000853 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
854 bool InvalidDecl = false;
855
John McCallce3ff2b2009-08-25 22:02:44 +0000856 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +0000857 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000858 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000859 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000860 PEnd = D->param_end();
861 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000862 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000863 if (PInst->getType()->isVoidType()) {
864 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
865 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000866 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000867 PInst->getType(),
868 diag::err_abstract_type_in_decl,
869 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000870 PInst->setInvalidDecl();
871
872 Params.push_back(PInst);
873 ParamTys.push_back(PInst->getType());
874
875 if (PInst->isInvalidDecl())
876 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000877 } else
Douglas Gregor5545e162009-03-24 00:38:23 +0000878 InvalidDecl = true;
879 }
880
881 // FIXME: Deallocate dead declarations.
882 if (InvalidDecl)
883 return QualType();
884
John McCall183700f2009-09-21 23:43:11 +0000885 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +0000886 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +0000887 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +0000888 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
889 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +0000890 if (ResultType.isNull())
891 return QualType();
892
Jay Foadbeaaccd2009-05-21 09:52:38 +0000893 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000894 Proto->isVariadic(), Proto->getTypeQuals(),
895 D->getLocation(), D->getDeclName());
896}
897
Mike Stump1eb44332009-09-09 15:08:12 +0000898/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +0000899/// declaration (New) from the corresponding fields of its template (Tmpl).
900///
901/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000902bool
903TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +0000904 FunctionDecl *Tmpl) {
905 if (Tmpl->isDeleted())
906 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +0000907
Douglas Gregorcca9e962009-07-01 22:01:06 +0000908 // If we are performing substituting explicitly-specified template arguments
909 // or deduced template arguments into a function template and we reach this
910 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +0000911 // to keeping the new function template specialization. We therefore
912 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +0000913 // into a template instantiation for this specific function template
914 // specialization, which is not a SFINAE context, so that we diagnose any
915 // further errors in the declaration itself.
916 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
917 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
918 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
919 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +0000920 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +0000921 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000922 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +0000923 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000924 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000925 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
926 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
927 }
928 }
Mike Stump1eb44332009-09-09 15:08:12 +0000929
Douglas Gregore53060f2009-06-25 22:08:12 +0000930 return false;
931}
932
Douglas Gregor5545e162009-03-24 00:38:23 +0000933/// \brief Initializes common fields of an instantiated method
934/// declaration (New) from the corresponding fields of its template
935/// (Tmpl).
936///
937/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000938bool
939TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +0000940 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000941 if (InitFunctionInstantiation(New, Tmpl))
942 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000943
Douglas Gregor5545e162009-03-24 00:38:23 +0000944 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
945 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000946 if (Tmpl->isVirtualAsWritten()) {
947 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000948 Record->setAggregate(false);
949 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000950 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +0000951 Record->setPolymorphic(true);
952 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000953 if (Tmpl->isPure()) {
954 New->setPure();
955 Record->setAbstract(true);
956 }
957
958 // FIXME: attributes
959 // FIXME: New needs a pointer to Tmpl
960 return false;
961}
Douglas Gregora58861f2009-05-13 20:28:22 +0000962
963/// \brief Instantiate the definition of the given function from its
964/// template.
965///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000966/// \param PointOfInstantiation the point at which the instantiation was
967/// required. Note that this is not precisely a "point of instantiation"
968/// for the function, but it's close.
969///
Douglas Gregora58861f2009-05-13 20:28:22 +0000970/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000971/// function template specialization or member function of a class template
972/// specialization.
973///
974/// \param Recursive if true, recursively instantiates any functions that
975/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000976void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000977 FunctionDecl *Function,
978 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000979 if (Function->isInvalidDecl())
980 return;
981
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000982 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000984 // Never instantiate an explicit specialization.
985 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
986 return;
987
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000988 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000989 const FunctionDecl *PatternDecl = 0;
Douglas Gregor5ec178f2009-08-28 21:09:48 +0000990 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate()) {
991 while (Primary->getInstantiatedFromMemberTemplate())
992 Primary = Primary->getInstantiatedFromMemberTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000993
Douglas Gregor1637be72009-06-26 00:10:03 +0000994 PatternDecl = Primary->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000995 } else
Douglas Gregor1637be72009-06-26 00:10:03 +0000996 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000997 Stmt *Pattern = 0;
998 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000999 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001000
1001 if (!Pattern)
1002 return;
1003
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001004 // C++0x [temp.explicit]p9:
1005 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001006 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001007 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001008 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001009 == TSK_ExplicitInstantiationDeclaration &&
1010 PatternDecl->isOutOfLine() && !PatternDecl->isInline())
1011 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001012
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001013 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1014 if (Inst)
1015 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001016
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001017 // If we're performing recursive template instantiation, create our own
1018 // queue of pending implicit instantiations that we will instantiate later,
1019 // while we're still within our own instantiation context.
1020 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1021 if (Recursive)
1022 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001024 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1025
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001026 // Introduce a new scope where local variable instantiations will be
1027 // recorded.
1028 LocalInstantiationScope Scope(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001029
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001030 // Introduce the instantiated function parameters into the local
1031 // instantiation scope.
1032 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1033 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1034 Function->getParamDecl(I));
1035
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001036 // Enter the scope of this instantiation. We don't use
1037 // PushDeclContext because we don't have a scope.
1038 DeclContext *PreviousContext = CurContext;
1039 CurContext = Function;
1040
Mike Stump1eb44332009-09-09 15:08:12 +00001041 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001042 getTemplateInstantiationArgs(Function);
1043
1044 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001045 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001046 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1047 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1048 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001049 }
1050
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001051 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001052 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001053
Douglas Gregor52604ab2009-09-11 21:19:12 +00001054 if (Body.isInvalid())
1055 Function->setInvalidDecl();
1056
Mike Stump1eb44332009-09-09 15:08:12 +00001057 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001058 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001059
1060 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001061
1062 DeclGroupRef DG(Function);
1063 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001065 if (Recursive) {
1066 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001067 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001068 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001069
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001070 // Restore the set of pending implicit instantiations.
1071 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1072 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001073}
1074
1075/// \brief Instantiate the definition of the given variable from its
1076/// template.
1077///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001078/// \param PointOfInstantiation the point at which the instantiation was
1079/// required. Note that this is not precisely a "point of instantiation"
1080/// for the function, but it's close.
1081///
1082/// \param Var the already-instantiated declaration of a static member
1083/// variable of a class template specialization.
1084///
1085/// \param Recursive if true, recursively instantiates any functions that
1086/// are required by this instantiation.
1087void Sema::InstantiateStaticDataMemberDefinition(
1088 SourceLocation PointOfInstantiation,
1089 VarDecl *Var,
1090 bool Recursive) {
1091 if (Var->isInvalidDecl())
1092 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001093
Douglas Gregor7caa6822009-07-24 20:34:43 +00001094 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001095 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
1096 bool FoundOutOfLineDef = false;
1097 assert(Def && "This data member was not instantiated from a template?");
Mike Stump1eb44332009-09-09 15:08:12 +00001098 assert(Def->isStaticDataMember() && "Not a static data member?");
1099 for (VarDecl::redecl_iterator RD = Def->redecls_begin(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001100 RDEnd = Def->redecls_end();
1101 RD != RDEnd; ++RD) {
1102 if (RD->getLexicalDeclContext()->isFileContext()) {
1103 Def = *RD;
1104 FoundOutOfLineDef = true;
1105 }
1106 }
Mike Stump1eb44332009-09-09 15:08:12 +00001107
Douglas Gregor7caa6822009-07-24 20:34:43 +00001108 if (!FoundOutOfLineDef) {
1109 // We did not find an out-of-line definition of this static data member,
1110 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001111 // instantiate this definition (or provide a specialization for it) in
1112 // another translation unit.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001113 return;
1114 }
1115
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001116 // Never instantiate an explicit specialization.
1117 if (Def->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1118 return;
1119
1120 // C++0x [temp.explicit]p9:
1121 // Except for inline functions, other explicit instantiation declarations
1122 // have the effect of suppressing the implicit instantiation of the entity
1123 // to which they refer.
1124 if (Def->getTemplateSpecializationKind()
1125 == TSK_ExplicitInstantiationDeclaration)
1126 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001127
Douglas Gregor7caa6822009-07-24 20:34:43 +00001128 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1129 if (Inst)
1130 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001131
Douglas Gregor7caa6822009-07-24 20:34:43 +00001132 // If we're performing recursive template instantiation, create our own
1133 // queue of pending implicit instantiations that we will instantiate later,
1134 // while we're still within our own instantiation context.
1135 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1136 if (Recursive)
1137 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Douglas Gregor7caa6822009-07-24 20:34:43 +00001139 // Enter the scope of this instantiation. We don't use
1140 // PushDeclContext because we don't have a scope.
1141 DeclContext *PreviousContext = CurContext;
1142 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001143
John McCallce3ff2b2009-08-25 22:02:44 +00001144 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001145 getTemplateInstantiationArgs(Var)));
Mike Stump1eb44332009-09-09 15:08:12 +00001146
Douglas Gregor7caa6822009-07-24 20:34:43 +00001147 CurContext = PreviousContext;
1148
1149 if (Var) {
1150 DeclGroupRef DG(Var);
1151 Consumer.HandleTopLevelDecl(DG);
1152 }
Mike Stump1eb44332009-09-09 15:08:12 +00001153
Douglas Gregor7caa6822009-07-24 20:34:43 +00001154 if (Recursive) {
1155 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001156 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001157 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001158
Douglas Gregor7caa6822009-07-24 20:34:43 +00001159 // Restore the set of pending implicit instantiations.
1160 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001161 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001162}
Douglas Gregor815215d2009-05-27 05:35:12 +00001163
Anders Carlsson09025312009-08-29 05:16:22 +00001164void
1165Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1166 const CXXConstructorDecl *Tmpl,
1167 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Anders Carlsson09025312009-08-29 05:16:22 +00001169 llvm::SmallVector<MemInitTy*, 4> NewInits;
1170
1171 // Instantiate all the initializers.
1172 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001173 InitsEnd = Tmpl->init_end();
1174 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001175 CXXBaseOrMemberInitializer *Init = *Inits;
1176
1177 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001178
Anders Carlsson09025312009-08-29 05:16:22 +00001179 // Instantiate all the arguments.
1180 for (ExprIterator Args = Init->arg_begin(), ArgsEnd = Init->arg_end();
1181 Args != ArgsEnd; ++Args) {
1182 OwningExprResult NewArg = SubstExpr(*Args, TemplateArgs);
1183
1184 if (NewArg.isInvalid())
1185 New->setInvalidDecl();
1186 else
1187 NewArgs.push_back(NewArg.takeAs<Expr>());
1188 }
1189
1190 MemInitResult NewInit;
1191
1192 if (Init->isBaseInitializer()) {
Eli Friedmanc5573a82009-08-29 22:22:07 +00001193 QualType BaseType(Init->getBaseClass(), 0);
1194 BaseType = SubstType(BaseType, TemplateArgs, Init->getSourceLocation(),
1195 New->getDeclName());
Anders Carlsson09025312009-08-29 05:16:22 +00001196
1197 NewInit = BuildBaseInitializer(BaseType,
Mike Stump1eb44332009-09-09 15:08:12 +00001198 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001199 NewArgs.size(),
1200 Init->getSourceLocation(),
1201 Init->getRParenLoc(),
1202 New->getParent());
1203 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001204 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001205
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001206 // Is this an anonymous union?
1207 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001208 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001209 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001210 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1211 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001212
1213 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001214 NewArgs.size(),
1215 Init->getSourceLocation(),
1216 Init->getRParenLoc());
1217 }
1218
1219 if (NewInit.isInvalid())
1220 New->setInvalidDecl();
1221 else {
1222 // FIXME: It would be nice if ASTOwningVector had a release function.
1223 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001224
Anders Carlsson09025312009-08-29 05:16:22 +00001225 NewInits.push_back((MemInitTy *)NewInit.get());
1226 }
1227 }
Mike Stump1eb44332009-09-09 15:08:12 +00001228
Anders Carlsson09025312009-08-29 05:16:22 +00001229 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001230 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001231 /*FIXME: ColonLoc */
1232 SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001233 NewInits.data(), NewInits.size());
Anders Carlsson09025312009-08-29 05:16:22 +00001234}
1235
John McCall52a575a2009-08-29 08:11:13 +00001236// TODO: this could be templated if the various decl types used the
1237// same method name.
1238static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1239 ClassTemplateDecl *Instance) {
1240 Pattern = Pattern->getCanonicalDecl();
1241
1242 do {
1243 Instance = Instance->getCanonicalDecl();
1244 if (Pattern == Instance) return true;
1245 Instance = Instance->getInstantiatedFromMemberTemplate();
1246 } while (Instance);
1247
1248 return false;
1249}
1250
Douglas Gregor0d696532009-09-28 06:34:35 +00001251static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1252 FunctionTemplateDecl *Instance) {
1253 Pattern = Pattern->getCanonicalDecl();
1254
1255 do {
1256 Instance = Instance->getCanonicalDecl();
1257 if (Pattern == Instance) return true;
1258 Instance = Instance->getInstantiatedFromMemberTemplate();
1259 } while (Instance);
1260
1261 return false;
1262}
1263
John McCall52a575a2009-08-29 08:11:13 +00001264static bool isInstantiationOf(CXXRecordDecl *Pattern,
1265 CXXRecordDecl *Instance) {
1266 Pattern = Pattern->getCanonicalDecl();
1267
1268 do {
1269 Instance = Instance->getCanonicalDecl();
1270 if (Pattern == Instance) return true;
1271 Instance = Instance->getInstantiatedFromMemberClass();
1272 } while (Instance);
1273
1274 return false;
1275}
1276
1277static bool isInstantiationOf(FunctionDecl *Pattern,
1278 FunctionDecl *Instance) {
1279 Pattern = Pattern->getCanonicalDecl();
1280
1281 do {
1282 Instance = Instance->getCanonicalDecl();
1283 if (Pattern == Instance) return true;
1284 Instance = Instance->getInstantiatedFromMemberFunction();
1285 } while (Instance);
1286
1287 return false;
1288}
1289
1290static bool isInstantiationOf(EnumDecl *Pattern,
1291 EnumDecl *Instance) {
1292 Pattern = Pattern->getCanonicalDecl();
1293
1294 do {
1295 Instance = Instance->getCanonicalDecl();
1296 if (Pattern == Instance) return true;
1297 Instance = Instance->getInstantiatedFromMemberEnum();
1298 } while (Instance);
1299
1300 return false;
1301}
1302
Anders Carlsson0d8df782009-08-29 19:37:28 +00001303static bool isInstantiationOf(UnresolvedUsingDecl *Pattern,
1304 UsingDecl *Instance,
1305 ASTContext &C) {
1306 return C.getInstantiatedFromUnresolvedUsingDecl(Instance) == Pattern;
1307}
1308
John McCall52a575a2009-08-29 08:11:13 +00001309static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
1310 VarDecl *Instance) {
1311 assert(Instance->isStaticDataMember());
1312
1313 Pattern = Pattern->getCanonicalDecl();
1314
1315 do {
1316 Instance = Instance->getCanonicalDecl();
1317 if (Pattern == Instance) return true;
1318 Instance = Instance->getInstantiatedFromStaticDataMember();
1319 } while (Instance);
1320
1321 return false;
1322}
1323
Douglas Gregor815215d2009-05-27 05:35:12 +00001324static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00001325 if (D->getKind() != Other->getKind()) {
1326 if (UnresolvedUsingDecl *UUD = dyn_cast<UnresolvedUsingDecl>(D)) {
1327 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
1328 return isInstantiationOf(UUD, UD, Ctx);
1329 }
1330 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001331
Anders Carlsson0d8df782009-08-29 19:37:28 +00001332 return false;
1333 }
Mike Stump1eb44332009-09-09 15:08:12 +00001334
John McCall52a575a2009-08-29 08:11:13 +00001335 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
1336 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001337
John McCall52a575a2009-08-29 08:11:13 +00001338 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
1339 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00001340
John McCall52a575a2009-08-29 08:11:13 +00001341 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
1342 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00001343
Douglas Gregor7caa6822009-07-24 20:34:43 +00001344 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00001345 if (Var->isStaticDataMember())
1346 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
1347
1348 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
1349 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00001350
Douglas Gregor0d696532009-09-28 06:34:35 +00001351 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
1352 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
1353
Anders Carlssond8b285f2009-09-01 04:26:58 +00001354 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
1355 if (!Field->getDeclName()) {
1356 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00001357 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00001358 cast<FieldDecl>(D);
1359 }
1360 }
Mike Stump1eb44332009-09-09 15:08:12 +00001361
Douglas Gregor815215d2009-05-27 05:35:12 +00001362 return D->getDeclName() && isa<NamedDecl>(Other) &&
1363 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1364}
1365
1366template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00001367static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00001368 NamedDecl *D,
1369 ForwardIterator first,
1370 ForwardIterator last) {
1371 for (; first != last; ++first)
1372 if (isInstantiationOf(Ctx, D, *first))
1373 return cast<NamedDecl>(*first);
1374
1375 return 0;
1376}
1377
John McCall02cace72009-08-28 07:59:38 +00001378/// \brief Finds the instantiation of the given declaration context
1379/// within the current instantiation.
1380///
1381/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00001382DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
1383 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00001384 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00001385 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00001386 return cast_or_null<DeclContext>(ID);
1387 } else return DC;
1388}
1389
Douglas Gregored961e72009-05-27 17:54:46 +00001390/// \brief Find the instantiation of the given declaration within the
1391/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001392///
1393/// This routine is intended to be used when \p D is a declaration
1394/// referenced from within a template, that needs to mapped into the
1395/// corresponding declaration within an instantiation. For example,
1396/// given:
1397///
1398/// \code
1399/// template<typename T>
1400/// struct X {
1401/// enum Kind {
1402/// KnownValue = sizeof(T)
1403/// };
1404///
1405/// bool getKind() const { return KnownValue; }
1406/// };
1407///
1408/// template struct X<int>;
1409/// \endcode
1410///
1411/// In the instantiation of X<int>::getKind(), we need to map the
1412/// EnumConstantDecl for KnownValue (which refers to
1413/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001414/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1415/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00001416NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
1417 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor44c73842009-09-01 17:53:10 +00001418 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
1419 // Transform all of the elements of the overloaded function set.
Mike Stump1eb44332009-09-09 15:08:12 +00001420 OverloadedFunctionDecl *Result
Douglas Gregor44c73842009-09-01 17:53:10 +00001421 = OverloadedFunctionDecl::Create(Context, CurContext, Ovl->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +00001422
Douglas Gregor44c73842009-09-01 17:53:10 +00001423 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
1424 FEnd = Ovl->function_end();
1425 F != FEnd; ++F) {
1426 Result->addOverload(
Douglas Gregore95b4092009-09-16 18:34:49 +00001427 AnyFunctionDecl::getFromNamedDecl(FindInstantiatedDecl(*F,
1428 TemplateArgs)));
Douglas Gregor44c73842009-09-01 17:53:10 +00001429 }
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Douglas Gregor44c73842009-09-01 17:53:10 +00001431 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001432 }
1433
Douglas Gregor815215d2009-05-27 05:35:12 +00001434 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001435 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
1436 // D is a local of some kind. Look into the map of local
1437 // declarations to their instantiations.
1438 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1439 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001440
Douglas Gregore95b4092009-09-16 18:34:49 +00001441 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
1442 if (!Record->isDependentContext())
1443 return D;
1444
1445 // If the RecordDecl is actually the injected-class-name or a "templated"
1446 // declaration for a class template or class template partial
1447 // specialization, substitute into the injected-class-name of the
1448 // class template or partial specialization to find the new DeclContext.
1449 QualType T;
1450 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
1451
1452 if (ClassTemplate) {
1453 T = ClassTemplate->getInjectedClassNameType(Context);
1454 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
1455 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1456 T = Context.getTypeDeclType(Record);
1457 ClassTemplate = PartialSpec->getSpecializedTemplate();
1458 }
1459
1460 if (!T.isNull()) {
1461 // Substitute into the injected-class-name to get the type corresponding
1462 // to the instantiation we want. This substitution should never fail,
1463 // since we know we can instantiate the injected-class-name or we wouldn't
1464 // have gotten to the injected-class-name!
1465 // FIXME: Can we use the CurrentInstantiationScope to avoid this extra
1466 // instantiation in the common case?
1467 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
1468 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
1469
1470 if (!T->isDependentType()) {
1471 assert(T->isRecordType() && "Instantiation must produce a record type");
1472 return T->getAs<RecordType>()->getDecl();
1473 }
1474
1475 // We are performing "partial" template instantiation to create the
1476 // member declarations for the members of a class template
1477 // specialization. Therefore, D is actually referring to something in
1478 // the current instantiation. Look through the current context,
1479 // which contains actual instantiations, to find the instantiation of
1480 // the "current instantiation" that D refers to.
Mike Stump1eb44332009-09-09 15:08:12 +00001481 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00001482 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001483 if (ClassTemplateSpecializationDecl *Spec
John McCall52a575a2009-08-29 08:11:13 +00001484 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00001485 if (isInstantiationOf(ClassTemplate,
1486 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00001487 return Spec;
1488 }
1489
Mike Stump1eb44332009-09-09 15:08:12 +00001490 assert(false &&
John McCall52a575a2009-08-29 08:11:13 +00001491 "Unable to find declaration for the current instantiation");
Douglas Gregore95b4092009-09-16 18:34:49 +00001492 return Record;
John McCall52a575a2009-08-29 08:11:13 +00001493 }
Douglas Gregore95b4092009-09-16 18:34:49 +00001494
1495 // Fall through to deal with other dependent record types (e.g.,
1496 // anonymous unions in class templates).
1497 }
John McCall52a575a2009-08-29 08:11:13 +00001498
Douglas Gregore95b4092009-09-16 18:34:49 +00001499 if (!ParentDC->isDependentContext())
1500 return D;
1501
1502 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001503 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00001504 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001505
Douglas Gregor815215d2009-05-27 05:35:12 +00001506 if (ParentDC != D->getDeclContext()) {
1507 // We performed some kind of instantiation in the parent context,
1508 // so now we need to look into the instantiated parent context to
1509 // find the instantiation of the declaration D.
1510 NamedDecl *Result = 0;
1511 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001512 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001513 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1514 } else {
1515 // Since we don't have a name for the entity we're looking for,
1516 // our only option is to walk through all of the declarations to
1517 // find that name. This will occur in a few cases:
1518 //
1519 // - anonymous struct/union within a template
1520 // - unnamed class/struct/union/enum within a template
1521 //
1522 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00001523 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001524 ParentDC->decls_begin(),
1525 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001526 }
Mike Stump1eb44332009-09-09 15:08:12 +00001527
Douglas Gregor815215d2009-05-27 05:35:12 +00001528 assert(Result && "Unable to find instantiation of declaration!");
1529 D = Result;
1530 }
1531
Douglas Gregor815215d2009-05-27 05:35:12 +00001532 return D;
1533}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001534
Mike Stump1eb44332009-09-09 15:08:12 +00001535/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001536/// instantiations we have seen until this point.
1537void Sema::PerformPendingImplicitInstantiations() {
1538 while (!PendingImplicitInstantiations.empty()) {
1539 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001540 PendingImplicitInstantiations.pop_front();
Mike Stump1eb44332009-09-09 15:08:12 +00001541
Douglas Gregor7caa6822009-07-24 20:34:43 +00001542 // Instantiate function definitions
1543 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001544 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001545 Function->getLocation(), *this,
1546 Context.getSourceManager(),
1547 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001549 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001550 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001551 continue;
1552 }
Mike Stump1eb44332009-09-09 15:08:12 +00001553
Douglas Gregor7caa6822009-07-24 20:34:43 +00001554 // Instantiate static data member definitions.
1555 VarDecl *Var = cast<VarDecl>(Inst.first);
1556 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001557
Mike Stump1eb44332009-09-09 15:08:12 +00001558 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001559 Var->getLocation(), *this,
1560 Context.getSourceManager(),
1561 "instantiating static data member "
1562 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001563
Douglas Gregor7caa6822009-07-24 20:34:43 +00001564 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001565 }
1566}