blob: bafcea054e1143f4bf710886038f0346c25dc1ab [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.
434 FunctionTemplateDecl *InstTemplate = InstMethod->getDescribedFunctionTemplate();
435 assert(InstTemplate && "VisitCXXMethodDecl didn't create a template!");
436 InstTemplate->setInstantiatedFromMemberTemplate(D);
437 Owner->addDecl(InstTemplate);
438 return InstTemplate;
439}
440
Douglas Gregord475b8d2009-03-25 21:17:03 +0000441Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
442 CXXRecordDecl *PrevDecl = 0;
443 if (D->isInjectedClassName())
444 PrevDecl = cast<CXXRecordDecl>(Owner);
445
446 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000447 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000448 D->getLocation(), D->getIdentifier(),
449 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000450 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000451 // FIXME: Check against AS_none is an ugly hack to work around the issue that
452 // the tag decls introduced by friend class declarations don't have an access
453 // specifier. Remove once this area of the code gets sorted out.
454 if (D->getAccess() != AS_none)
455 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000456 if (!D->isInjectedClassName())
457 Record->setInstantiationOfMemberClass(D);
458
John McCall02cace72009-08-28 07:59:38 +0000459 // If the original function was part of a friend declaration,
460 // inherit its namespace state.
461 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
462 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
463
Anders Carlssond8b285f2009-09-01 04:26:58 +0000464 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
465
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000466 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000467 return Record;
468}
469
John McCall02cace72009-08-28 07:59:38 +0000470/// Normal class members are of more specific types and therefore
471/// don't make it here. This function serves two purposes:
472/// 1) instantiating function templates
473/// 2) substituting friend declarations
474/// FIXME: preserve function definitions in case #2
Douglas Gregore53060f2009-06-25 22:08:12 +0000475Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000476 // Check whether there is already a function template specialization for
477 // this declaration.
478 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
479 void *InsertPos = 0;
480 if (FunctionTemplate) {
481 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000482 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000483 TemplateArgs.getInnermost().getFlatArgumentList(),
484 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000485 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000486
487 FunctionTemplateSpecializationInfo *Info
488 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000489 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Douglas Gregor127102b2009-06-29 20:59:39 +0000491 // If we already have a function template specialization, return it.
492 if (Info)
493 return Info->Function;
494 }
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Douglas Gregore53060f2009-06-25 22:08:12 +0000496 Sema::LocalInstantiationScope Scope(SemaRef);
Mike Stump1eb44332009-09-09 15:08:12 +0000497
Douglas Gregore53060f2009-06-25 22:08:12 +0000498 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000499 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000500 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000501 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000502
Douglas Gregore53060f2009-06-25 22:08:12 +0000503 // Build the instantiated method declaration.
Douglas Gregore95b4092009-09-16 18:34:49 +0000504 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext(),
505 TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +0000506 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000507 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000508 D->getDeclName(), T, D->getDeclaratorInfo(),
509 D->getStorageClass(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000510 D->isInline(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000511 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000512
Douglas Gregore53060f2009-06-25 22:08:12 +0000513 // Attach the parameters
514 for (unsigned P = 0; P < Params.size(); ++P)
515 Params[P]->setOwningFunction(Function);
516 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000517
518 // If the original function was part of a friend declaration,
519 // inherit its namespace state and add it to the owner.
520 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind()) {
521 bool WasDeclared = (FOK == Decl::FOK_Declared);
522 Function->setObjectOfFriendDecl(WasDeclared);
523 if (!Owner->isDependentContext())
John McCallab88d972009-08-31 22:39:49 +0000524 DC->makeDeclVisibleInContext(Function, /* Recoverable = */ false);
John McCallf181d8a2009-08-29 03:16:09 +0000525
Douglas Gregor2db32322009-10-07 23:56:10 +0000526 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +0000527 }
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Douglas Gregore53060f2009-06-25 22:08:12 +0000529 if (InitFunctionInstantiation(Function, D))
530 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Douglas Gregore53060f2009-06-25 22:08:12 +0000532 bool Redeclaration = false;
533 bool OverloadableAttrRequired = false;
534 NamedDecl *PrevDecl = 0;
535 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
536 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000537
Douglas Gregor127102b2009-06-29 20:59:39 +0000538 if (FunctionTemplate) {
539 // Record this function template specialization.
540 Function->setFunctionTemplateSpecialization(SemaRef.Context,
541 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000542 &TemplateArgs.getInnermost(),
Douglas Gregor127102b2009-06-29 20:59:39 +0000543 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000544 }
545
Douglas Gregore53060f2009-06-25 22:08:12 +0000546 return Function;
547}
548
Douglas Gregord60e1052009-08-27 16:57:43 +0000549Decl *
550TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
551 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000552 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
553 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000554 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000555 // We are creating a function template specialization from a function
556 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000557 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000558 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000559 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000560 TemplateArgs.getInnermost().getFlatArgumentList(),
561 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000562 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000563
564 FunctionTemplateSpecializationInfo *Info
565 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000566 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Douglas Gregor6b906862009-08-21 00:16:32 +0000568 // If we already have a function template specialization, return it.
569 if (Info)
570 return Info->Function;
571 }
572
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000573 Sema::LocalInstantiationScope Scope(SemaRef);
574
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000575 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000576 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000577 if (T.isNull())
578 return 0;
579
580 // Build the instantiated method declaration.
581 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000582 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000583
Douglas Gregordec06662009-08-21 18:42:58 +0000584 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000585 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000586 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
587 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
588 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000589 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
590 Constructor->getLocation(),
591 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000592 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000593 Constructor->isExplicit(),
Douglas Gregor17e32f32009-08-21 22:43:28 +0000594 Constructor->isInline(), false);
595 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
596 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
597 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
598 SemaRef.Context.getCanonicalType(ClassTy));
599 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
600 Destructor->getLocation(), Name,
601 T, Destructor->isInline(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000602 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000603 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000604 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000605 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000606 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
607 ConvTy);
608 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
609 Conversion->getLocation(), Name,
610 T, Conversion->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000611 Conversion->isInline(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000612 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000613 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000614 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000615 D->getDeclName(), T, D->getDeclaratorInfo(),
616 D->isStatic(), D->isInline());
617 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000618
Douglas Gregord60e1052009-08-27 16:57:43 +0000619 if (TemplateParams) {
620 // Our resulting instantiation is actually a function template, since we
621 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000622 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000623 // template<typename T>
624 // struct X {
625 // template<typename U> void f(T, U);
626 // };
627 //
628 // X<int> x;
629 //
630 // We are instantiating the member template "f" within X<int>, which means
631 // substituting int for T, but leaving "f" as a member function template.
632 // Build the function template itself.
633 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
634 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000635 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000636 TemplateParams, Method);
637 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000638 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000639 Method->setDescribedFunctionTemplate(FunctionTemplate);
640 } else if (!FunctionTemplate)
Douglas Gregor2db32322009-10-07 23:56:10 +0000641 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000642
Mike Stump1eb44332009-09-09 15:08:12 +0000643 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000644 // out-of-line, the instantiation will have the same lexical
645 // context (which will be a namespace scope) as the template.
646 if (D->isOutOfLine())
647 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Douglas Gregor5545e162009-03-24 00:38:23 +0000649 // Attach the parameters
650 for (unsigned P = 0; P < Params.size(); ++P)
651 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000652 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000653
654 if (InitMethodInstantiation(Method, D))
655 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000656
Douglas Gregordec06662009-08-21 18:42:58 +0000657 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Douglas Gregord60e1052009-08-27 16:57:43 +0000659 if (!FunctionTemplate || TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000660 PrevDecl = SemaRef.LookupQualifiedName(Owner, Name,
Douglas Gregordec06662009-08-21 18:42:58 +0000661 Sema::LookupOrdinaryName, true);
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Douglas Gregordec06662009-08-21 18:42:58 +0000663 // In C++, the previous declaration we find might be a tag type
664 // (class or enum). In this case, the new declaration will hide the
665 // tag type. Note that this does does not apply if we're declaring a
666 // typedef (C++ [dcl.typedef]p4).
667 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
668 PrevDecl = 0;
669 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000670
Douglas Gregord60e1052009-08-27 16:57:43 +0000671 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000672 // Record this function template specialization.
673 Method->setFunctionTemplateSpecialization(SemaRef.Context,
674 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000675 &TemplateArgs.getInnermost(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000676 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000678 bool Redeclaration = false;
679 bool OverloadableAttrRequired = false;
680 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
681 /*FIXME:*/OverloadableAttrRequired);
682
683 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl))
Douglas Gregordec06662009-08-21 18:42:58 +0000684 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000686 return Method;
687}
688
Douglas Gregor615c5d42009-03-24 16:43:20 +0000689Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000690 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000691}
692
Douglas Gregor03b2b072009-03-24 00:15:49 +0000693Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000694 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000695}
696
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000697Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000698 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000699}
700
Douglas Gregor6477b692009-03-25 15:04:13 +0000701ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000702 QualType OrigT = SemaRef.SubstType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000703 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000704 if (OrigT.isNull())
705 return 0;
706
707 QualType T = SemaRef.adjustParameterType(OrigT);
708
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000709 // Allocate the parameter
710 ParmVarDecl *Param = 0;
711 if (T == OrigT)
712 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000713 D->getIdentifier(), T, D->getDeclaratorInfo(),
714 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000715 else
Mike Stump1eb44332009-09-09 15:08:12 +0000716 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000717 D->getLocation(), D->getIdentifier(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000718 T, D->getDeclaratorInfo(), OrigT,
719 D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000720
Anders Carlsson9351c172009-08-25 03:18:48 +0000721 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000722 if (D->hasUninstantiatedDefaultArg())
723 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000724 else if (Expr *Arg = D->getDefaultArg())
725 Param->setUninstantiatedDefaultArg(Arg);
726
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000727 // Note: we don't try to instantiate function parameters until after
728 // we've instantiated the function's type. Therefore, we don't have
729 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000730 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000731 return Param;
732}
733
734Decl *
735TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
736 // Since parameter types can decay either before or after
737 // instantiation, we simply treat OriginalParmVarDecls as
738 // ParmVarDecls the same way, and create one or the other depending
739 // on what happens after template instantiation.
740 return VisitParmVarDecl(D);
741}
742
John McCalle29ba202009-08-20 01:44:21 +0000743Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
744 TemplateTypeParmDecl *D) {
745 // TODO: don't always clone when decls are refcounted.
746 const Type* T = D->getTypeForDecl();
747 assert(T->isTemplateTypeParmType());
748 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000749
John McCalle29ba202009-08-20 01:44:21 +0000750 TemplateTypeParmDecl *Inst =
751 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
752 TTPT->getDepth(), TTPT->getIndex(),
753 TTPT->getName(),
754 D->wasDeclaredWithTypename(),
755 D->isParameterPack());
756
757 if (D->hasDefaultArgument()) {
758 QualType DefaultPattern = D->getDefaultArgument();
759 QualType DefaultInst
John McCallce3ff2b2009-08-25 22:02:44 +0000760 = SemaRef.SubstType(DefaultPattern, TemplateArgs,
761 D->getDefaultArgumentLoc(),
762 D->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +0000763
John McCalle29ba202009-08-20 01:44:21 +0000764 Inst->setDefaultArgument(DefaultInst,
765 D->getDefaultArgumentLoc(),
766 D->defaultArgumentWasInherited() /* preserve? */);
767 }
768
769 return Inst;
770}
771
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000772Decl *
773TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000774 NestedNameSpecifier *NNS =
775 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
776 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000777 TemplateArgs);
778 if (!NNS)
779 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000780
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000781 CXXScopeSpec SS;
782 SS.setRange(D->getTargetNestedNameRange());
783 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +0000784
785 NamedDecl *UD =
786 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
787 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000788 D->getTargetName(), 0, D->isTypeName());
789 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +0000790 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000791 D);
792 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000793}
794
John McCallce3ff2b2009-08-25 22:02:44 +0000795Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000796 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +0000797 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000798 return Instantiator.Visit(D);
799}
800
John McCalle29ba202009-08-20 01:44:21 +0000801/// \brief Instantiates a nested template parameter list in the current
802/// instantiation context.
803///
804/// \param L The parameter list to instantiate
805///
806/// \returns NULL if there was an error
807TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000808TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +0000809 // Get errors for all the parameters before bailing out.
810 bool Invalid = false;
811
812 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000813 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +0000814 ParamVector Params;
815 Params.reserve(N);
816 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
817 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000818 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +0000819 Params.push_back(D);
820 Invalid = Invalid || !D;
821 }
822
823 // Clean up if we had an error.
824 if (Invalid) {
825 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
826 PI != PE; ++PI)
827 if (*PI)
828 (*PI)->Destroy(SemaRef.Context);
829 return NULL;
830 }
831
832 TemplateParameterList *InstL
833 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
834 L->getLAngleLoc(), &Params.front(), N,
835 L->getRAngleLoc());
836 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +0000837}
John McCalle29ba202009-08-20 01:44:21 +0000838
John McCallce3ff2b2009-08-25 22:02:44 +0000839/// \brief Does substitution on the type of the given function, including
840/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +0000841///
John McCallce3ff2b2009-08-25 22:02:44 +0000842/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +0000843///
844/// \param Params the instantiated parameter declarations
845
John McCallce3ff2b2009-08-25 22:02:44 +0000846/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +0000847/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000848QualType
John McCallce3ff2b2009-08-25 22:02:44 +0000849TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +0000850 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
851 bool InvalidDecl = false;
852
John McCallce3ff2b2009-08-25 22:02:44 +0000853 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +0000854 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000855 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000856 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000857 PEnd = D->param_end();
858 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000859 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000860 if (PInst->getType()->isVoidType()) {
861 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
862 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000863 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000864 PInst->getType(),
865 diag::err_abstract_type_in_decl,
866 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000867 PInst->setInvalidDecl();
868
869 Params.push_back(PInst);
870 ParamTys.push_back(PInst->getType());
871
872 if (PInst->isInvalidDecl())
873 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000874 } else
Douglas Gregor5545e162009-03-24 00:38:23 +0000875 InvalidDecl = true;
876 }
877
878 // FIXME: Deallocate dead declarations.
879 if (InvalidDecl)
880 return QualType();
881
John McCall183700f2009-09-21 23:43:11 +0000882 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +0000883 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +0000884 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +0000885 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
886 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +0000887 if (ResultType.isNull())
888 return QualType();
889
Jay Foadbeaaccd2009-05-21 09:52:38 +0000890 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000891 Proto->isVariadic(), Proto->getTypeQuals(),
892 D->getLocation(), D->getDeclName());
893}
894
Mike Stump1eb44332009-09-09 15:08:12 +0000895/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +0000896/// declaration (New) from the corresponding fields of its template (Tmpl).
897///
898/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000899bool
900TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +0000901 FunctionDecl *Tmpl) {
902 if (Tmpl->isDeleted())
903 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +0000904
Douglas Gregorcca9e962009-07-01 22:01:06 +0000905 // If we are performing substituting explicitly-specified template arguments
906 // or deduced template arguments into a function template and we reach this
907 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +0000908 // to keeping the new function template specialization. We therefore
909 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +0000910 // into a template instantiation for this specific function template
911 // specialization, which is not a SFINAE context, so that we diagnose any
912 // further errors in the declaration itself.
913 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
914 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
915 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
916 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +0000917 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +0000918 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000919 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +0000920 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000921 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000922 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
923 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
924 }
925 }
Mike Stump1eb44332009-09-09 15:08:12 +0000926
Douglas Gregore53060f2009-06-25 22:08:12 +0000927 return false;
928}
929
Douglas Gregor5545e162009-03-24 00:38:23 +0000930/// \brief Initializes common fields of an instantiated method
931/// declaration (New) from the corresponding fields of its template
932/// (Tmpl).
933///
934/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +0000935bool
936TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +0000937 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000938 if (InitFunctionInstantiation(New, Tmpl))
939 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000940
Douglas Gregor5545e162009-03-24 00:38:23 +0000941 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
942 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000943 if (Tmpl->isVirtualAsWritten()) {
944 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000945 Record->setAggregate(false);
946 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000947 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +0000948 Record->setPolymorphic(true);
949 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000950 if (Tmpl->isPure()) {
951 New->setPure();
952 Record->setAbstract(true);
953 }
954
955 // FIXME: attributes
956 // FIXME: New needs a pointer to Tmpl
957 return false;
958}
Douglas Gregora58861f2009-05-13 20:28:22 +0000959
960/// \brief Instantiate the definition of the given function from its
961/// template.
962///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000963/// \param PointOfInstantiation the point at which the instantiation was
964/// required. Note that this is not precisely a "point of instantiation"
965/// for the function, but it's close.
966///
Douglas Gregora58861f2009-05-13 20:28:22 +0000967/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000968/// function template specialization or member function of a class template
969/// specialization.
970///
971/// \param Recursive if true, recursively instantiates any functions that
972/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000973void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000974 FunctionDecl *Function,
975 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000976 if (Function->isInvalidDecl())
977 return;
978
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000979 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000981 // Never instantiate an explicit specialization.
982 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
983 return;
984
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000985 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000986 const FunctionDecl *PatternDecl = 0;
Douglas Gregor5ec178f2009-08-28 21:09:48 +0000987 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate()) {
988 while (Primary->getInstantiatedFromMemberTemplate())
989 Primary = Primary->getInstantiatedFromMemberTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Douglas Gregor1637be72009-06-26 00:10:03 +0000991 PatternDecl = Primary->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000992 } else
Douglas Gregor1637be72009-06-26 00:10:03 +0000993 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000994 Stmt *Pattern = 0;
995 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000996 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000997
998 if (!Pattern)
999 return;
1000
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001001 // C++0x [temp.explicit]p9:
1002 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001003 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001004 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001005 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001006 == TSK_ExplicitInstantiationDeclaration &&
1007 PatternDecl->isOutOfLine() && !PatternDecl->isInline())
1008 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001010 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1011 if (Inst)
1012 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001013
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001014 // If we're performing recursive template instantiation, create our own
1015 // queue of pending implicit instantiations that we will instantiate later,
1016 // while we're still within our own instantiation context.
1017 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1018 if (Recursive)
1019 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001021 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1022
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001023 // Introduce a new scope where local variable instantiations will be
1024 // recorded.
1025 LocalInstantiationScope Scope(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001026
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001027 // Introduce the instantiated function parameters into the local
1028 // instantiation scope.
1029 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1030 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1031 Function->getParamDecl(I));
1032
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001033 // Enter the scope of this instantiation. We don't use
1034 // PushDeclContext because we don't have a scope.
1035 DeclContext *PreviousContext = CurContext;
1036 CurContext = Function;
1037
Mike Stump1eb44332009-09-09 15:08:12 +00001038 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001039 getTemplateInstantiationArgs(Function);
1040
1041 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001042 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001043 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1044 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1045 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001046 }
1047
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001048 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001049 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001050
Douglas Gregor52604ab2009-09-11 21:19:12 +00001051 if (Body.isInvalid())
1052 Function->setInvalidDecl();
1053
Mike Stump1eb44332009-09-09 15:08:12 +00001054 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001055 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001056
1057 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001058
1059 DeclGroupRef DG(Function);
1060 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001061
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001062 if (Recursive) {
1063 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001064 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001065 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001067 // Restore the set of pending implicit instantiations.
1068 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1069 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001070}
1071
1072/// \brief Instantiate the definition of the given variable from its
1073/// template.
1074///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001075/// \param PointOfInstantiation the point at which the instantiation was
1076/// required. Note that this is not precisely a "point of instantiation"
1077/// for the function, but it's close.
1078///
1079/// \param Var the already-instantiated declaration of a static member
1080/// variable of a class template specialization.
1081///
1082/// \param Recursive if true, recursively instantiates any functions that
1083/// are required by this instantiation.
1084void Sema::InstantiateStaticDataMemberDefinition(
1085 SourceLocation PointOfInstantiation,
1086 VarDecl *Var,
1087 bool Recursive) {
1088 if (Var->isInvalidDecl())
1089 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001090
Douglas Gregor7caa6822009-07-24 20:34:43 +00001091 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001092 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
1093 bool FoundOutOfLineDef = false;
1094 assert(Def && "This data member was not instantiated from a template?");
Mike Stump1eb44332009-09-09 15:08:12 +00001095 assert(Def->isStaticDataMember() && "Not a static data member?");
1096 for (VarDecl::redecl_iterator RD = Def->redecls_begin(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001097 RDEnd = Def->redecls_end();
1098 RD != RDEnd; ++RD) {
1099 if (RD->getLexicalDeclContext()->isFileContext()) {
1100 Def = *RD;
1101 FoundOutOfLineDef = true;
1102 }
1103 }
Mike Stump1eb44332009-09-09 15:08:12 +00001104
Douglas Gregor7caa6822009-07-24 20:34:43 +00001105 if (!FoundOutOfLineDef) {
1106 // We did not find an out-of-line definition of this static data member,
1107 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001108 // instantiate this definition (or provide a specialization for it) in
1109 // another translation unit.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001110 return;
1111 }
1112
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001113 // Never instantiate an explicit specialization.
1114 if (Def->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1115 return;
1116
1117 // C++0x [temp.explicit]p9:
1118 // Except for inline functions, other explicit instantiation declarations
1119 // have the effect of suppressing the implicit instantiation of the entity
1120 // to which they refer.
1121 if (Def->getTemplateSpecializationKind()
1122 == TSK_ExplicitInstantiationDeclaration)
1123 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Douglas Gregor7caa6822009-07-24 20:34:43 +00001125 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1126 if (Inst)
1127 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001128
Douglas Gregor7caa6822009-07-24 20:34:43 +00001129 // If we're performing recursive template instantiation, create our own
1130 // queue of pending implicit instantiations that we will instantiate later,
1131 // while we're still within our own instantiation context.
1132 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1133 if (Recursive)
1134 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001135
Douglas Gregor7caa6822009-07-24 20:34:43 +00001136 // Enter the scope of this instantiation. We don't use
1137 // PushDeclContext because we don't have a scope.
1138 DeclContext *PreviousContext = CurContext;
1139 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001140
John McCallce3ff2b2009-08-25 22:02:44 +00001141 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001142 getTemplateInstantiationArgs(Var)));
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Douglas Gregor7caa6822009-07-24 20:34:43 +00001144 CurContext = PreviousContext;
1145
1146 if (Var) {
1147 DeclGroupRef DG(Var);
1148 Consumer.HandleTopLevelDecl(DG);
1149 }
Mike Stump1eb44332009-09-09 15:08:12 +00001150
Douglas Gregor7caa6822009-07-24 20:34:43 +00001151 if (Recursive) {
1152 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001153 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001154 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001155
Douglas Gregor7caa6822009-07-24 20:34:43 +00001156 // Restore the set of pending implicit instantiations.
1157 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001158 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001159}
Douglas Gregor815215d2009-05-27 05:35:12 +00001160
Anders Carlsson09025312009-08-29 05:16:22 +00001161void
1162Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1163 const CXXConstructorDecl *Tmpl,
1164 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Anders Carlsson09025312009-08-29 05:16:22 +00001166 llvm::SmallVector<MemInitTy*, 4> NewInits;
1167
1168 // Instantiate all the initializers.
1169 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001170 InitsEnd = Tmpl->init_end();
1171 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001172 CXXBaseOrMemberInitializer *Init = *Inits;
1173
1174 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001175
Anders Carlsson09025312009-08-29 05:16:22 +00001176 // Instantiate all the arguments.
1177 for (ExprIterator Args = Init->arg_begin(), ArgsEnd = Init->arg_end();
1178 Args != ArgsEnd; ++Args) {
1179 OwningExprResult NewArg = SubstExpr(*Args, TemplateArgs);
1180
1181 if (NewArg.isInvalid())
1182 New->setInvalidDecl();
1183 else
1184 NewArgs.push_back(NewArg.takeAs<Expr>());
1185 }
1186
1187 MemInitResult NewInit;
1188
1189 if (Init->isBaseInitializer()) {
Eli Friedmanc5573a82009-08-29 22:22:07 +00001190 QualType BaseType(Init->getBaseClass(), 0);
1191 BaseType = SubstType(BaseType, TemplateArgs, Init->getSourceLocation(),
1192 New->getDeclName());
Anders Carlsson09025312009-08-29 05:16:22 +00001193
1194 NewInit = BuildBaseInitializer(BaseType,
Mike Stump1eb44332009-09-09 15:08:12 +00001195 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001196 NewArgs.size(),
1197 Init->getSourceLocation(),
1198 Init->getRParenLoc(),
1199 New->getParent());
1200 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001201 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001203 // Is this an anonymous union?
1204 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001205 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001206 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001207 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1208 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001209
1210 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001211 NewArgs.size(),
1212 Init->getSourceLocation(),
1213 Init->getRParenLoc());
1214 }
1215
1216 if (NewInit.isInvalid())
1217 New->setInvalidDecl();
1218 else {
1219 // FIXME: It would be nice if ASTOwningVector had a release function.
1220 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001221
Anders Carlsson09025312009-08-29 05:16:22 +00001222 NewInits.push_back((MemInitTy *)NewInit.get());
1223 }
1224 }
Mike Stump1eb44332009-09-09 15:08:12 +00001225
Anders Carlsson09025312009-08-29 05:16:22 +00001226 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001227 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001228 /*FIXME: ColonLoc */
1229 SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001230 NewInits.data(), NewInits.size());
Anders Carlsson09025312009-08-29 05:16:22 +00001231}
1232
John McCall52a575a2009-08-29 08:11:13 +00001233// TODO: this could be templated if the various decl types used the
1234// same method name.
1235static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1236 ClassTemplateDecl *Instance) {
1237 Pattern = Pattern->getCanonicalDecl();
1238
1239 do {
1240 Instance = Instance->getCanonicalDecl();
1241 if (Pattern == Instance) return true;
1242 Instance = Instance->getInstantiatedFromMemberTemplate();
1243 } while (Instance);
1244
1245 return false;
1246}
1247
Douglas Gregor0d696532009-09-28 06:34:35 +00001248static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1249 FunctionTemplateDecl *Instance) {
1250 Pattern = Pattern->getCanonicalDecl();
1251
1252 do {
1253 Instance = Instance->getCanonicalDecl();
1254 if (Pattern == Instance) return true;
1255 Instance = Instance->getInstantiatedFromMemberTemplate();
1256 } while (Instance);
1257
1258 return false;
1259}
1260
John McCall52a575a2009-08-29 08:11:13 +00001261static bool isInstantiationOf(CXXRecordDecl *Pattern,
1262 CXXRecordDecl *Instance) {
1263 Pattern = Pattern->getCanonicalDecl();
1264
1265 do {
1266 Instance = Instance->getCanonicalDecl();
1267 if (Pattern == Instance) return true;
1268 Instance = Instance->getInstantiatedFromMemberClass();
1269 } while (Instance);
1270
1271 return false;
1272}
1273
1274static bool isInstantiationOf(FunctionDecl *Pattern,
1275 FunctionDecl *Instance) {
1276 Pattern = Pattern->getCanonicalDecl();
1277
1278 do {
1279 Instance = Instance->getCanonicalDecl();
1280 if (Pattern == Instance) return true;
1281 Instance = Instance->getInstantiatedFromMemberFunction();
1282 } while (Instance);
1283
1284 return false;
1285}
1286
1287static bool isInstantiationOf(EnumDecl *Pattern,
1288 EnumDecl *Instance) {
1289 Pattern = Pattern->getCanonicalDecl();
1290
1291 do {
1292 Instance = Instance->getCanonicalDecl();
1293 if (Pattern == Instance) return true;
1294 Instance = Instance->getInstantiatedFromMemberEnum();
1295 } while (Instance);
1296
1297 return false;
1298}
1299
Anders Carlsson0d8df782009-08-29 19:37:28 +00001300static bool isInstantiationOf(UnresolvedUsingDecl *Pattern,
1301 UsingDecl *Instance,
1302 ASTContext &C) {
1303 return C.getInstantiatedFromUnresolvedUsingDecl(Instance) == Pattern;
1304}
1305
John McCall52a575a2009-08-29 08:11:13 +00001306static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
1307 VarDecl *Instance) {
1308 assert(Instance->isStaticDataMember());
1309
1310 Pattern = Pattern->getCanonicalDecl();
1311
1312 do {
1313 Instance = Instance->getCanonicalDecl();
1314 if (Pattern == Instance) return true;
1315 Instance = Instance->getInstantiatedFromStaticDataMember();
1316 } while (Instance);
1317
1318 return false;
1319}
1320
Douglas Gregor815215d2009-05-27 05:35:12 +00001321static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00001322 if (D->getKind() != Other->getKind()) {
1323 if (UnresolvedUsingDecl *UUD = dyn_cast<UnresolvedUsingDecl>(D)) {
1324 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
1325 return isInstantiationOf(UUD, UD, Ctx);
1326 }
1327 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001328
Anders Carlsson0d8df782009-08-29 19:37:28 +00001329 return false;
1330 }
Mike Stump1eb44332009-09-09 15:08:12 +00001331
John McCall52a575a2009-08-29 08:11:13 +00001332 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
1333 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001334
John McCall52a575a2009-08-29 08:11:13 +00001335 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
1336 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00001337
John McCall52a575a2009-08-29 08:11:13 +00001338 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
1339 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00001340
Douglas Gregor7caa6822009-07-24 20:34:43 +00001341 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00001342 if (Var->isStaticDataMember())
1343 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
1344
1345 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
1346 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00001347
Douglas Gregor0d696532009-09-28 06:34:35 +00001348 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
1349 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
1350
Anders Carlssond8b285f2009-09-01 04:26:58 +00001351 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
1352 if (!Field->getDeclName()) {
1353 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00001354 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00001355 cast<FieldDecl>(D);
1356 }
1357 }
Mike Stump1eb44332009-09-09 15:08:12 +00001358
Douglas Gregor815215d2009-05-27 05:35:12 +00001359 return D->getDeclName() && isa<NamedDecl>(Other) &&
1360 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1361}
1362
1363template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00001364static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00001365 NamedDecl *D,
1366 ForwardIterator first,
1367 ForwardIterator last) {
1368 for (; first != last; ++first)
1369 if (isInstantiationOf(Ctx, D, *first))
1370 return cast<NamedDecl>(*first);
1371
1372 return 0;
1373}
1374
John McCall02cace72009-08-28 07:59:38 +00001375/// \brief Finds the instantiation of the given declaration context
1376/// within the current instantiation.
1377///
1378/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00001379DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
1380 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00001381 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00001382 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00001383 return cast_or_null<DeclContext>(ID);
1384 } else return DC;
1385}
1386
Douglas Gregored961e72009-05-27 17:54:46 +00001387/// \brief Find the instantiation of the given declaration within the
1388/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001389///
1390/// This routine is intended to be used when \p D is a declaration
1391/// referenced from within a template, that needs to mapped into the
1392/// corresponding declaration within an instantiation. For example,
1393/// given:
1394///
1395/// \code
1396/// template<typename T>
1397/// struct X {
1398/// enum Kind {
1399/// KnownValue = sizeof(T)
1400/// };
1401///
1402/// bool getKind() const { return KnownValue; }
1403/// };
1404///
1405/// template struct X<int>;
1406/// \endcode
1407///
1408/// In the instantiation of X<int>::getKind(), we need to map the
1409/// EnumConstantDecl for KnownValue (which refers to
1410/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001411/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1412/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00001413NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
1414 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor44c73842009-09-01 17:53:10 +00001415 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
1416 // Transform all of the elements of the overloaded function set.
Mike Stump1eb44332009-09-09 15:08:12 +00001417 OverloadedFunctionDecl *Result
Douglas Gregor44c73842009-09-01 17:53:10 +00001418 = OverloadedFunctionDecl::Create(Context, CurContext, Ovl->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +00001419
Douglas Gregor44c73842009-09-01 17:53:10 +00001420 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
1421 FEnd = Ovl->function_end();
1422 F != FEnd; ++F) {
1423 Result->addOverload(
Douglas Gregore95b4092009-09-16 18:34:49 +00001424 AnyFunctionDecl::getFromNamedDecl(FindInstantiatedDecl(*F,
1425 TemplateArgs)));
Douglas Gregor44c73842009-09-01 17:53:10 +00001426 }
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Douglas Gregor44c73842009-09-01 17:53:10 +00001428 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001429 }
1430
Douglas Gregor815215d2009-05-27 05:35:12 +00001431 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001432 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
1433 // D is a local of some kind. Look into the map of local
1434 // declarations to their instantiations.
1435 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1436 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001437
Douglas Gregore95b4092009-09-16 18:34:49 +00001438 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
1439 if (!Record->isDependentContext())
1440 return D;
1441
1442 // If the RecordDecl is actually the injected-class-name or a "templated"
1443 // declaration for a class template or class template partial
1444 // specialization, substitute into the injected-class-name of the
1445 // class template or partial specialization to find the new DeclContext.
1446 QualType T;
1447 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
1448
1449 if (ClassTemplate) {
1450 T = ClassTemplate->getInjectedClassNameType(Context);
1451 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
1452 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1453 T = Context.getTypeDeclType(Record);
1454 ClassTemplate = PartialSpec->getSpecializedTemplate();
1455 }
1456
1457 if (!T.isNull()) {
1458 // Substitute into the injected-class-name to get the type corresponding
1459 // to the instantiation we want. This substitution should never fail,
1460 // since we know we can instantiate the injected-class-name or we wouldn't
1461 // have gotten to the injected-class-name!
1462 // FIXME: Can we use the CurrentInstantiationScope to avoid this extra
1463 // instantiation in the common case?
1464 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
1465 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
1466
1467 if (!T->isDependentType()) {
1468 assert(T->isRecordType() && "Instantiation must produce a record type");
1469 return T->getAs<RecordType>()->getDecl();
1470 }
1471
1472 // We are performing "partial" template instantiation to create the
1473 // member declarations for the members of a class template
1474 // specialization. Therefore, D is actually referring to something in
1475 // the current instantiation. Look through the current context,
1476 // which contains actual instantiations, to find the instantiation of
1477 // the "current instantiation" that D refers to.
Mike Stump1eb44332009-09-09 15:08:12 +00001478 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00001479 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001480 if (ClassTemplateSpecializationDecl *Spec
John McCall52a575a2009-08-29 08:11:13 +00001481 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00001482 if (isInstantiationOf(ClassTemplate,
1483 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00001484 return Spec;
1485 }
1486
Mike Stump1eb44332009-09-09 15:08:12 +00001487 assert(false &&
John McCall52a575a2009-08-29 08:11:13 +00001488 "Unable to find declaration for the current instantiation");
Douglas Gregore95b4092009-09-16 18:34:49 +00001489 return Record;
John McCall52a575a2009-08-29 08:11:13 +00001490 }
Douglas Gregore95b4092009-09-16 18:34:49 +00001491
1492 // Fall through to deal with other dependent record types (e.g.,
1493 // anonymous unions in class templates).
1494 }
John McCall52a575a2009-08-29 08:11:13 +00001495
Douglas Gregore95b4092009-09-16 18:34:49 +00001496 if (!ParentDC->isDependentContext())
1497 return D;
1498
1499 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001500 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00001501 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001502
Douglas Gregor815215d2009-05-27 05:35:12 +00001503 if (ParentDC != D->getDeclContext()) {
1504 // We performed some kind of instantiation in the parent context,
1505 // so now we need to look into the instantiated parent context to
1506 // find the instantiation of the declaration D.
1507 NamedDecl *Result = 0;
1508 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001509 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001510 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1511 } else {
1512 // Since we don't have a name for the entity we're looking for,
1513 // our only option is to walk through all of the declarations to
1514 // find that name. This will occur in a few cases:
1515 //
1516 // - anonymous struct/union within a template
1517 // - unnamed class/struct/union/enum within a template
1518 //
1519 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00001520 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001521 ParentDC->decls_begin(),
1522 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001523 }
Mike Stump1eb44332009-09-09 15:08:12 +00001524
Douglas Gregor815215d2009-05-27 05:35:12 +00001525 assert(Result && "Unable to find instantiation of declaration!");
1526 D = Result;
1527 }
1528
Douglas Gregor815215d2009-05-27 05:35:12 +00001529 return D;
1530}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001531
Mike Stump1eb44332009-09-09 15:08:12 +00001532/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001533/// instantiations we have seen until this point.
1534void Sema::PerformPendingImplicitInstantiations() {
1535 while (!PendingImplicitInstantiations.empty()) {
1536 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001537 PendingImplicitInstantiations.pop_front();
Mike Stump1eb44332009-09-09 15:08:12 +00001538
Douglas Gregor7caa6822009-07-24 20:34:43 +00001539 // Instantiate function definitions
1540 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001541 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001542 Function->getLocation(), *this,
1543 Context.getSourceManager(),
1544 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001545
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001546 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001547 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001548 continue;
1549 }
Mike Stump1eb44332009-09-09 15:08:12 +00001550
Douglas Gregor7caa6822009-07-24 20:34:43 +00001551 // Instantiate static data member definitions.
1552 VarDecl *Var = cast<VarDecl>(Inst.first);
1553 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001554
Mike Stump1eb44332009-09-09 15:08:12 +00001555 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001556 Var->getLocation(), *this,
1557 Context.getSourceManager(),
1558 "instantiating static data member "
1559 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001560
Douglas Gregor7caa6822009-07-24 20:34:43 +00001561 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001562 }
1563}