blob: db797d6f986bfee72b1154fb27b01cdb17e6eede [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
Anders Carlssond8fe2d52009-11-07 06:07:58 +000031 void InstantiateAttrs(Decl *Tmpl, Decl *New);
32
Douglas Gregor8dbc2692009-03-17 21:15:40 +000033 public:
34 typedef Sema::OwningExprResult OwningExprResult;
35
36 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +000037 const MultiLevelTemplateArgumentList &TemplateArgs)
Douglas Gregor7e063902009-05-11 23:53:27 +000038 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Mike Stump1eb44332009-09-09 15:08:12 +000039
Mike Stump390b4cc2009-05-16 07:39:55 +000040 // FIXME: Once we get closer to completion, replace these manually-written
41 // declarations with automatically-generated ones from
42 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000043 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
44 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000045 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000046 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000047 Decl *VisitFieldDecl(FieldDecl *D);
48 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
49 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000050 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000051 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregora735b202009-10-13 14:39:41 +000052 Decl *VisitFunctionDecl(FunctionDecl *D,
53 TemplateParameterList *TemplateParams = 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +000054 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000055 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
56 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000057 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000058 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000059 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000060 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000061 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000062 Decl *VisitClassTemplatePartialSpecializationDecl(
63 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000064 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000065 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor33642df2009-10-23 23:25:44 +000066 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Douglas Gregor9106ef72009-11-11 16:58:32 +000067 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Anders Carlsson0dde18e2009-08-28 15:18:15 +000068 Decl *VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000069
Douglas Gregor8dbc2692009-03-17 21:15:40 +000070 // Base case. FIXME: Remove once we can instantiate everything.
Mike Stump1eb44332009-09-09 15:08:12 +000071 Decl *VisitDecl(Decl *) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000072 assert(false && "Template instantiation of unknown declaration kind!");
Douglas Gregor8dbc2692009-03-17 21:15:40 +000073 return 0;
74 }
Douglas Gregor5545e162009-03-24 00:38:23 +000075
John McCallfd810b12009-08-14 02:03:10 +000076 const LangOptions &getLangOptions() {
77 return SemaRef.getLangOptions();
78 }
79
Douglas Gregor5545e162009-03-24 00:38:23 +000080 // Helper functions for instantiating methods.
John McCallce3ff2b2009-08-25 22:02:44 +000081 QualType SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000082 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000083 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000084 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000085
86 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000087 SubstTemplateParams(TemplateParameterList *List);
Douglas Gregored9c0f92009-10-29 00:04:11 +000088
89 bool InstantiateClassTemplatePartialSpecialization(
90 ClassTemplateDecl *ClassTemplate,
91 ClassTemplatePartialSpecializationDecl *PartialSpec);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000092 };
93}
94
Anders Carlssond8fe2d52009-11-07 06:07:58 +000095// FIXME: Is this too simple?
96void TemplateDeclInstantiator::InstantiateAttrs(Decl *Tmpl, Decl *New) {
97 for (const Attr *TmplAttr = Tmpl->getAttrs(); TmplAttr;
98 TmplAttr = TmplAttr->getNext()) {
99
100 // FIXME: Is cloning correct for all attributes?
101 Attr *NewAttr = TmplAttr->clone(SemaRef.Context);
102
103 New->addAttr(NewAttr);
104 }
105}
106
Douglas Gregor4f722be2009-03-25 15:45:12 +0000107Decl *
108TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
109 assert(false && "Translation units cannot be instantiated");
110 return D;
111}
112
113Decl *
114TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
115 assert(false && "Namespaces cannot be instantiated");
116 return D;
117}
118
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000119Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
120 bool Invalid = false;
John McCallba6a9bd2009-10-24 08:00:42 +0000121 DeclaratorInfo *DI = D->getTypeDeclaratorInfo();
122 if (DI->getType()->isDependentType()) {
123 DI = SemaRef.SubstType(DI, TemplateArgs,
124 D->getLocation(), D->getDeclName());
125 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000126 Invalid = true;
John McCallba6a9bd2009-10-24 08:00:42 +0000127 DI = SemaRef.Context.getTrivialDeclaratorInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000128 }
129 }
Mike Stump1eb44332009-09-09 15:08:12 +0000130
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000131 // Create the new typedef
132 TypedefDecl *Typedef
133 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
John McCallba6a9bd2009-10-24 08:00:42 +0000134 D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000135 if (Invalid)
136 Typedef->setInvalidDecl();
137
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000138 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000139
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000140 return Typedef;
141}
142
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000143Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000144 // Do substitution on the type of the declaration
John McCall0a5fa062009-10-21 02:39:02 +0000145 DeclaratorInfo *DI = SemaRef.SubstType(D->getDeclaratorInfo(),
146 TemplateArgs,
147 D->getTypeSpecStartLoc(),
148 D->getDeclName());
149 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000150 return 0;
151
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000152 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000153 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
154 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000155 DI->getType(), DI,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000156 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000157 Var->setThreadSpecified(D->isThreadSpecified());
158 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
159 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000160
161 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000162 // out-of-line, the instantiation will have the same lexical
163 // context (which will be a namespace scope) as the template.
164 if (D->isOutOfLine())
165 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000166
Mike Stump390b4cc2009-05-16 07:39:55 +0000167 // FIXME: In theory, we could have a previous declaration for variables that
168 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000169 bool Redeclaration = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000170 SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000171
Douglas Gregor7caa6822009-07-24 20:34:43 +0000172 if (D->isOutOfLine()) {
173 D->getLexicalDeclContext()->addDecl(Var);
174 Owner->makeDeclVisibleInContext(Var);
175 } else {
176 Owner->addDecl(Var);
177 }
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000179 // Link instantiations of static data members back to the template from
180 // which they were instantiated.
181 if (Var->isStaticDataMember())
182 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000183 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000184
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000185 if (D->getInit()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000186 OwningExprResult Init
John McCallce3ff2b2009-08-25 22:02:44 +0000187 = SemaRef.SubstExpr(D->getInit(), TemplateArgs);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000188 if (Init.isInvalid())
189 Var->setInvalidDecl();
Sebastian Redl42dddbe2009-11-08 10:16:43 +0000190 else if (!D->getType()->isDependentType() &&
191 !D->getInit()->isTypeDependent() &&
Douglas Gregore48319a2009-11-09 17:16:50 +0000192 !D->getInit()->isValueDependent()) {
Sebastian Redl42dddbe2009-11-08 10:16:43 +0000193 // If neither the declaration's type nor its initializer are dependent,
194 // we don't want to redo all the checking, especially since the
195 // initializer might have been wrapped by a CXXConstructExpr since we did
196 // it the first time.
197 Var->setInit(SemaRef.Context, Init.takeAs<Expr>());
198 }
Douglas Gregor83ddad32009-08-26 21:14:46 +0000199 else if (ParenListExpr *PLE = dyn_cast<ParenListExpr>((Expr *)Init.get())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000200 // FIXME: We're faking all of the comma locations, which is suboptimal.
Douglas Gregor83ddad32009-08-26 21:14:46 +0000201 // Do we even need these comma locations?
202 llvm::SmallVector<SourceLocation, 4> FakeCommaLocs;
203 if (PLE->getNumExprs() > 0) {
204 FakeCommaLocs.reserve(PLE->getNumExprs() - 1);
205 for (unsigned I = 0, N = PLE->getNumExprs() - 1; I != N; ++I) {
206 Expr *E = PLE->getExpr(I)->Retain();
207 FakeCommaLocs.push_back(
208 SemaRef.PP.getLocForEndOfToken(E->getLocEnd()));
209 }
Douglas Gregore9f8eb62009-08-26 23:26:04 +0000210 PLE->getExpr(PLE->getNumExprs() - 1)->Retain();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000211 }
Mike Stump1eb44332009-09-09 15:08:12 +0000212
Douglas Gregor83ddad32009-08-26 21:14:46 +0000213 // Add the direct initializer to the declaration.
214 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Mike Stump1eb44332009-09-09 15:08:12 +0000215 PLE->getLParenLoc(),
Douglas Gregor83ddad32009-08-26 21:14:46 +0000216 Sema::MultiExprArg(SemaRef,
217 (void**)PLE->getExprs(),
218 PLE->getNumExprs()),
219 FakeCommaLocs.data(),
220 PLE->getRParenLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Douglas Gregor83ddad32009-08-26 21:14:46 +0000222 // When Init is destroyed, it will destroy the instantiated ParenListExpr;
223 // we've explicitly retained all of its subexpressions already.
224 } else
Chris Lattnerb28317a2009-03-28 19:18:32 +0000225 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000226 D->hasCXXDirectInitializer());
Douglas Gregor65b90052009-07-27 17:43:39 +0000227 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
228 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000229
230 return Var;
231}
232
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000233Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
234 bool Invalid = false;
John McCall07fb6be2009-10-22 23:33:21 +0000235 DeclaratorInfo *DI = D->getDeclaratorInfo();
236 if (DI->getType()->isDependentType()) {
237 DI = SemaRef.SubstType(DI, TemplateArgs,
238 D->getLocation(), D->getDeclName());
239 if (!DI) {
240 DI = D->getDeclaratorInfo();
241 Invalid = true;
242 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000243 // C++ [temp.arg.type]p3:
244 // If a declaration acquires a function type through a type
245 // dependent on a template-parameter and this causes a
246 // declaration that does not use the syntactic form of a
247 // function declarator to have function type, the program is
248 // ill-formed.
249 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000250 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000251 Invalid = true;
252 }
253 }
254
255 Expr *BitWidth = D->getBitWidth();
256 if (Invalid)
257 BitWidth = 0;
258 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000259 // The bit-width expression is not potentially evaluated.
260 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000262 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000263 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000264 if (InstantiatedBitWidth.isInvalid()) {
265 Invalid = true;
266 BitWidth = 0;
267 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000268 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000269 }
270
John McCall07fb6be2009-10-22 23:33:21 +0000271 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
272 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000273 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000274 D->getLocation(),
275 D->isMutable(),
276 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000277 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000278 D->getAccess(),
279 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000280 if (!Field) {
281 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000282 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000283 }
Mike Stump1eb44332009-09-09 15:08:12 +0000284
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000285 InstantiateAttrs(D, Field);
286
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000287 if (Invalid)
288 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000290 if (!Field->getDeclName()) {
291 // Keep track of where this decl came from.
292 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000293 }
Mike Stump1eb44332009-09-09 15:08:12 +0000294
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000295 Field->setImplicit(D->isImplicit());
296 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000297
298 return Field;
299}
300
John McCall02cace72009-08-28 07:59:38 +0000301Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
302 FriendDecl::FriendUnion FU;
303
304 // Handle friend type expressions by simply substituting template
305 // parameters into the pattern type.
306 if (Type *Ty = D->getFriendType()) {
307 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
308 D->getLocation(), DeclarationName());
309 if (T.isNull()) return 0;
310
311 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
312 FU = T.getTypePtr();
313
314 // Handle everything else by appropriate substitution.
315 } else {
316 NamedDecl *ND = D->getFriendDecl();
317 assert(ND && "friend decl must be a decl or a type!");
318
Douglas Gregora735b202009-10-13 14:39:41 +0000319 // FIXME: We have a problem here, because the nested call to Visit(ND)
320 // will inject the thing that the friend references into the current
321 // owner, which is wrong.
John McCall02cace72009-08-28 07:59:38 +0000322 Decl *NewND = Visit(ND);
323 if (!NewND) return 0;
324
325 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
John McCall02cace72009-08-28 07:59:38 +0000328 FriendDecl *FD =
329 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
330 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000331 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000332 Owner->addDecl(FD);
333 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000334}
335
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000336Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
337 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Douglas Gregorac7610d2009-06-22 20:57:11 +0000339 // The expression in a static assertion is not potentially evaluated.
340 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000342 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000343 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000344 if (InstantiatedAssertExpr.isInvalid())
345 return 0;
346
Douglas Gregor43d9d922009-08-08 01:41:12 +0000347 OwningExprResult Message(SemaRef, D->getMessage());
348 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000349 Decl *StaticAssert
350 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000351 move(InstantiatedAssertExpr),
352 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000353 return StaticAssert;
354}
355
356Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000357 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000358 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000359 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000360 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000361 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000362 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000363 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000364 Enum->startDefinition();
365
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000366 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000367
368 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000369 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
370 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000371 EC != ECEnd; ++EC) {
372 // The specified value for the enumerator.
373 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000374 if (Expr *UninstValue = EC->getInitExpr()) {
375 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000376 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000377 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000378
John McCallce3ff2b2009-08-25 22:02:44 +0000379 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000380 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000381
382 // Drop the initial value and continue.
383 bool isInvalid = false;
384 if (Value.isInvalid()) {
385 Value = SemaRef.Owned((Expr *)0);
386 isInvalid = true;
387 }
388
Mike Stump1eb44332009-09-09 15:08:12 +0000389 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000390 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
391 EC->getLocation(), EC->getIdentifier(),
392 move(Value));
393
394 if (isInvalid) {
395 if (EnumConst)
396 EnumConst->setInvalidDecl();
397 Enum->setInvalidDecl();
398 }
399
400 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000401 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000402 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000403 LastEnumConst = EnumConst;
404 }
405 }
Mike Stump1eb44332009-09-09 15:08:12 +0000406
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000407 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000408 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000409 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
410 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000411 &Enumerators[0], Enumerators.size(),
412 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000413
414 return Enum;
415}
416
Douglas Gregor6477b692009-03-25 15:04:13 +0000417Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
418 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
419 return 0;
420}
421
Douglas Gregored9c0f92009-10-29 00:04:11 +0000422namespace {
423 class SortDeclByLocation {
424 SourceManager &SourceMgr;
425
426 public:
427 explicit SortDeclByLocation(SourceManager &SourceMgr)
428 : SourceMgr(SourceMgr) { }
429
430 bool operator()(const Decl *X, const Decl *Y) const {
431 return SourceMgr.isBeforeInTranslationUnit(X->getLocation(),
432 Y->getLocation());
433 }
434 };
435}
436
John McCalle29ba202009-08-20 01:44:21 +0000437Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000438 // Create a local instantiation scope for this class template, which
439 // will contain the instantiations of the template parameters.
440 Sema::LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000441 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000442 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000443 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000444 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000445
446 CXXRecordDecl *Pattern = D->getTemplatedDecl();
447 CXXRecordDecl *RecordInst
448 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), Owner,
449 Pattern->getLocation(), Pattern->getIdentifier(),
Douglas Gregorf0510d42009-10-12 23:11:44 +0000450 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL,
451 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000452
453 ClassTemplateDecl *Inst
454 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
455 D->getIdentifier(), InstParams, RecordInst, 0);
456 RecordInst->setDescribedClassTemplate(Inst);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000457 if (D->getFriendObjectKind())
458 Inst->setObjectOfFriendDecl(true);
459 else
460 Inst->setAccess(D->getAccess());
John McCalle29ba202009-08-20 01:44:21 +0000461 Inst->setInstantiatedFromMemberTemplate(D);
Douglas Gregorf0510d42009-10-12 23:11:44 +0000462
463 // Trigger creation of the type for the instantiation.
464 SemaRef.Context.getTypeDeclType(RecordInst);
465
Douglas Gregor259571e2009-10-30 22:42:42 +0000466 // Finish handling of friends.
467 if (Inst->getFriendObjectKind()) {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000468 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000469 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000470
John McCalle29ba202009-08-20 01:44:21 +0000471 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000472
473 // First, we sort the partial specializations by location, so
474 // that we instantiate them in the order they were declared.
475 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
476 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
477 P = D->getPartialSpecializations().begin(),
478 PEnd = D->getPartialSpecializations().end();
479 P != PEnd; ++P)
480 PartialSpecs.push_back(&*P);
481 std::sort(PartialSpecs.begin(), PartialSpecs.end(),
482 SortDeclByLocation(SemaRef.SourceMgr));
483
484 // Instantiate all of the partial specializations of this member class
485 // template.
486 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
487 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
488
John McCalle29ba202009-08-20 01:44:21 +0000489 return Inst;
490}
491
Douglas Gregord60e1052009-08-27 16:57:43 +0000492Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000493TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
494 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000495 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
496
497 // Lookup the already-instantiated declaration in the instantiation
498 // of the class template and return that.
499 DeclContext::lookup_result Found
500 = Owner->lookup(ClassTemplate->getDeclName());
501 if (Found.first == Found.second)
502 return 0;
503
504 ClassTemplateDecl *InstClassTemplate
505 = dyn_cast<ClassTemplateDecl>(*Found.first);
506 if (!InstClassTemplate)
507 return 0;
508
509 Decl *DCanon = D->getCanonicalDecl();
510 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
511 P = InstClassTemplate->getPartialSpecializations().begin(),
512 PEnd = InstClassTemplate->getPartialSpecializations().end();
513 P != PEnd; ++P) {
514 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
515 return &*P;
516 }
517
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000518 return 0;
519}
520
521Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000522TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000523 // Create a local instantiation scope for this function template, which
524 // will contain the instantiations of the template parameters and then get
525 // merged with the local instantiation scope for the function template
526 // itself.
527 Sema::LocalInstantiationScope Scope(SemaRef);
528
Douglas Gregord60e1052009-08-27 16:57:43 +0000529 TemplateParameterList *TempParams = D->getTemplateParameters();
530 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000531 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000532 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000533
Douglas Gregora735b202009-10-13 14:39:41 +0000534 FunctionDecl *Instantiated = 0;
535 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
536 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
537 InstParams));
538 else
539 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
540 D->getTemplatedDecl(),
541 InstParams));
542
543 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000544 return 0;
545
Mike Stump1eb44332009-09-09 15:08:12 +0000546 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000547 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000548 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000549 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000550 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000551 assert(InstTemplate &&
552 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
553 if (!InstTemplate->getInstantiatedFromMemberTemplate())
554 InstTemplate->setInstantiatedFromMemberTemplate(D);
555
556 // Add non-friends into the owner.
557 if (!InstTemplate->getFriendObjectKind())
558 Owner->addDecl(InstTemplate);
Douglas Gregord60e1052009-08-27 16:57:43 +0000559 return InstTemplate;
560}
561
Douglas Gregord475b8d2009-03-25 21:17:03 +0000562Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
563 CXXRecordDecl *PrevDecl = 0;
564 if (D->isInjectedClassName())
565 PrevDecl = cast<CXXRecordDecl>(Owner);
566
567 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000568 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000569 D->getLocation(), D->getIdentifier(),
570 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000571 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000572 // FIXME: Check against AS_none is an ugly hack to work around the issue that
573 // the tag decls introduced by friend class declarations don't have an access
574 // specifier. Remove once this area of the code gets sorted out.
575 if (D->getAccess() != AS_none)
576 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000577 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000578 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000579
John McCall02cace72009-08-28 07:59:38 +0000580 // If the original function was part of a friend declaration,
581 // inherit its namespace state.
582 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
583 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
584
Anders Carlssond8b285f2009-09-01 04:26:58 +0000585 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
586
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000587 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000588 return Record;
589}
590
John McCall02cace72009-08-28 07:59:38 +0000591/// Normal class members are of more specific types and therefore
592/// don't make it here. This function serves two purposes:
593/// 1) instantiating function templates
594/// 2) substituting friend declarations
595/// FIXME: preserve function definitions in case #2
Douglas Gregora735b202009-10-13 14:39:41 +0000596 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
597 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000598 // Check whether there is already a function template specialization for
599 // this declaration.
600 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
601 void *InsertPos = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000602 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000603 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000604 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000605 TemplateArgs.getInnermost().getFlatArgumentList(),
606 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000607 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000608
609 FunctionTemplateSpecializationInfo *Info
610 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000611 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Douglas Gregor127102b2009-06-29 20:59:39 +0000613 // If we already have a function template specialization, return it.
614 if (Info)
615 return Info->Function;
616 }
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Douglas Gregor550d9b22009-10-31 17:21:17 +0000618 Sema::LocalInstantiationScope Scope(SemaRef, TemplateParams != 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Douglas Gregore53060f2009-06-25 22:08:12 +0000620 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000621 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000622 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000623 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000624
Douglas Gregore53060f2009-06-25 22:08:12 +0000625 // Build the instantiated method declaration.
Douglas Gregore95b4092009-09-16 18:34:49 +0000626 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext(),
627 TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +0000628 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000629 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000630 D->getDeclName(), T, D->getDeclaratorInfo(),
631 D->getStorageClass(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000632 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000633 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000634
Douglas Gregore53060f2009-06-25 22:08:12 +0000635 // Attach the parameters
636 for (unsigned P = 0; P < Params.size(); ++P)
637 Params[P]->setOwningFunction(Function);
638 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000639
Douglas Gregora735b202009-10-13 14:39:41 +0000640 if (TemplateParams) {
641 // Our resulting instantiation is actually a function template, since we
642 // are substituting only the outer template parameters. For example, given
643 //
644 // template<typename T>
645 // struct X {
646 // template<typename U> friend void f(T, U);
647 // };
648 //
649 // X<int> x;
650 //
651 // We are instantiating the friend function template "f" within X<int>,
652 // which means substituting int for T, but leaving "f" as a friend function
653 // template.
654 // Build the function template itself.
655 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Owner,
656 Function->getLocation(),
657 Function->getDeclName(),
658 TemplateParams, Function);
659 Function->setDescribedFunctionTemplate(FunctionTemplate);
660 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
John McCall02cace72009-08-28 07:59:38 +0000661 }
Douglas Gregora735b202009-10-13 14:39:41 +0000662
Douglas Gregore53060f2009-06-25 22:08:12 +0000663 if (InitFunctionInstantiation(Function, D))
664 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Douglas Gregore53060f2009-06-25 22:08:12 +0000666 bool Redeclaration = false;
667 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +0000668
Douglas Gregore53060f2009-06-25 22:08:12 +0000669 NamedDecl *PrevDecl = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000670 if (TemplateParams || !FunctionTemplate) {
671 // Look only into the namespace where the friend would be declared to
672 // find a previous declaration. This is the innermost enclosing namespace,
673 // as described in ActOnFriendFunctionDecl.
674 Sema::LookupResult R;
675 SemaRef.LookupQualifiedName(R, DC, Function->getDeclName(),
676 Sema::LookupOrdinaryName, true);
677
678 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
679
680 // In C++, the previous declaration we find might be a tag type
681 // (class or enum). In this case, the new declaration will hide the
682 // tag type. Note that this does does not apply if we're declaring a
683 // typedef (C++ [dcl.typedef]p4).
684 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
685 PrevDecl = 0;
686 }
687
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000688 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +0000689 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000690
Douglas Gregora735b202009-10-13 14:39:41 +0000691 // If the original function was part of a friend declaration,
692 // inherit its namespace state and add it to the owner.
693 NamedDecl *FromFriendD
694 = TemplateParams? cast<NamedDecl>(D->getDescribedFunctionTemplate()) : D;
695 if (FromFriendD->getFriendObjectKind()) {
696 NamedDecl *ToFriendD = 0;
697 if (TemplateParams) {
698 ToFriendD = cast<NamedDecl>(FunctionTemplate);
699 PrevDecl = FunctionTemplate->getPreviousDeclaration();
700 } else {
701 ToFriendD = Function;
702 PrevDecl = Function->getPreviousDeclaration();
703 }
704 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
705 if (!Owner->isDependentContext() && !PrevDecl)
706 DC->makeDeclVisibleInContext(ToFriendD, /* Recoverable = */ false);
707
708 if (!TemplateParams)
709 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
710 }
711
712 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000713 // Record this function template specialization.
714 Function->setFunctionTemplateSpecialization(SemaRef.Context,
715 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000716 &TemplateArgs.getInnermost(),
Douglas Gregor127102b2009-06-29 20:59:39 +0000717 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000718 }
719
Douglas Gregore53060f2009-06-25 22:08:12 +0000720 return Function;
721}
722
Douglas Gregord60e1052009-08-27 16:57:43 +0000723Decl *
724TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
725 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000726 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
727 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000728 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000729 // We are creating a function template specialization from a function
730 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000731 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000732 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000733 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000734 TemplateArgs.getInnermost().getFlatArgumentList(),
735 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000736 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000737
738 FunctionTemplateSpecializationInfo *Info
739 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000740 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000741
Douglas Gregor6b906862009-08-21 00:16:32 +0000742 // If we already have a function template specialization, return it.
743 if (Info)
744 return Info->Function;
745 }
746
Douglas Gregor550d9b22009-10-31 17:21:17 +0000747 Sema::LocalInstantiationScope Scope(SemaRef, TemplateParams != 0);
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000748
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000749 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000750 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000751 if (T.isNull())
752 return 0;
753
754 // Build the instantiated method declaration.
755 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000756 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Douglas Gregordec06662009-08-21 18:42:58 +0000758 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000759 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000760 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
761 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
762 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000763 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
764 Constructor->getLocation(),
765 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000766 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000767 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000768 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +0000769 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
770 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
771 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
772 SemaRef.Context.getCanonicalType(ClassTy));
773 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
774 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000775 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000776 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000777 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000778 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000779 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000780 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
781 ConvTy);
782 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
783 Conversion->getLocation(), Name,
784 T, Conversion->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000785 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000786 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000787 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000788 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000789 D->getDeclName(), T, D->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000790 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +0000791 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000792
Douglas Gregord60e1052009-08-27 16:57:43 +0000793 if (TemplateParams) {
794 // Our resulting instantiation is actually a function template, since we
795 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000796 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000797 // template<typename T>
798 // struct X {
799 // template<typename U> void f(T, U);
800 // };
801 //
802 // X<int> x;
803 //
804 // We are instantiating the member template "f" within X<int>, which means
805 // substituting int for T, but leaving "f" as a member function template.
806 // Build the function template itself.
807 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
808 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000809 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000810 TemplateParams, Method);
811 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000812 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000813 Method->setDescribedFunctionTemplate(FunctionTemplate);
814 } else if (!FunctionTemplate)
Douglas Gregor2db32322009-10-07 23:56:10 +0000815 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000816
Mike Stump1eb44332009-09-09 15:08:12 +0000817 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000818 // out-of-line, the instantiation will have the same lexical
819 // context (which will be a namespace scope) as the template.
820 if (D->isOutOfLine())
821 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Douglas Gregor5545e162009-03-24 00:38:23 +0000823 // Attach the parameters
824 for (unsigned P = 0; P < Params.size(); ++P)
825 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000826 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000827
828 if (InitMethodInstantiation(Method, D))
829 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000830
Douglas Gregordec06662009-08-21 18:42:58 +0000831 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000832
Douglas Gregord60e1052009-08-27 16:57:43 +0000833 if (!FunctionTemplate || TemplateParams) {
John McCallf36e02d2009-10-09 21:13:30 +0000834 Sema::LookupResult R;
835 SemaRef.LookupQualifiedName(R, Owner, Name, Sema::LookupOrdinaryName, true);
836 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000837
Douglas Gregordec06662009-08-21 18:42:58 +0000838 // In C++, the previous declaration we find might be a tag type
839 // (class or enum). In this case, the new declaration will hide the
840 // tag type. Note that this does does not apply if we're declaring a
841 // typedef (C++ [dcl.typedef]p4).
842 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
843 PrevDecl = 0;
844 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000845
Douglas Gregord60e1052009-08-27 16:57:43 +0000846 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000847 // Record this function template specialization.
848 Method->setFunctionTemplateSpecialization(SemaRef.Context,
849 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000850 &TemplateArgs.getInnermost(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000851 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000852
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000853 bool Redeclaration = false;
854 bool OverloadableAttrRequired = false;
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000855 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000856 /*FIXME:*/OverloadableAttrRequired);
857
Douglas Gregora735b202009-10-13 14:39:41 +0000858 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl) &&
859 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +0000860 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000862 return Method;
863}
864
Douglas Gregor615c5d42009-03-24 16:43:20 +0000865Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000866 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000867}
868
Douglas Gregor03b2b072009-03-24 00:15:49 +0000869Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000870 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000871}
872
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000873Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000874 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000875}
876
Douglas Gregor6477b692009-03-25 15:04:13 +0000877ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +0000878 QualType T;
879 DeclaratorInfo *DI = D->getDeclaratorInfo();
880 if (DI) {
881 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
882 D->getDeclName());
883 if (DI) T = DI->getType();
884 } else {
885 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
886 D->getDeclName());
887 DI = 0;
888 }
889
890 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000891 return 0;
892
John McCall58e46772009-10-23 21:48:59 +0000893 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000894
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000895 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +0000896 ParmVarDecl *Param
897 = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
898 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000899
Anders Carlsson9351c172009-08-25 03:18:48 +0000900 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000901 if (D->hasUninstantiatedDefaultArg())
902 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000903 else if (Expr *Arg = D->getDefaultArg())
904 Param->setUninstantiatedDefaultArg(Arg);
905
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000906 // Note: we don't try to instantiate function parameters until after
907 // we've instantiated the function's type. Therefore, we don't have
908 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000909 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000910 return Param;
911}
912
John McCalle29ba202009-08-20 01:44:21 +0000913Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
914 TemplateTypeParmDecl *D) {
915 // TODO: don't always clone when decls are refcounted.
916 const Type* T = D->getTypeForDecl();
917 assert(T->isTemplateTypeParmType());
918 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000919
John McCalle29ba202009-08-20 01:44:21 +0000920 TemplateTypeParmDecl *Inst =
921 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +0000922 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +0000923 TTPT->getName(),
924 D->wasDeclaredWithTypename(),
925 D->isParameterPack());
926
Douglas Gregor0f8716b2009-11-09 19:17:50 +0000927 if (D->hasDefaultArgument())
928 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +0000929
Douglas Gregor550d9b22009-10-31 17:21:17 +0000930 // Introduce this template parameter's instantiation into the instantiation
931 // scope.
932 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
933
John McCalle29ba202009-08-20 01:44:21 +0000934 return Inst;
935}
936
Douglas Gregor33642df2009-10-23 23:25:44 +0000937Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
938 NonTypeTemplateParmDecl *D) {
939 // Substitute into the type of the non-type template parameter.
940 QualType T;
941 DeclaratorInfo *DI = D->getDeclaratorInfo();
942 if (DI) {
943 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
944 D->getDeclName());
945 if (DI) T = DI->getType();
946 } else {
947 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
948 D->getDeclName());
949 DI = 0;
950 }
951 if (T.isNull())
952 return 0;
953
954 // Check that this type is acceptable for a non-type template parameter.
955 bool Invalid = false;
956 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
957 if (T.isNull()) {
958 T = SemaRef.Context.IntTy;
959 Invalid = true;
960 }
961
962 NonTypeTemplateParmDecl *Param
963 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
964 D->getDepth() - 1, D->getPosition(),
965 D->getIdentifier(), T, DI);
966 if (Invalid)
967 Param->setInvalidDecl();
968
969 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +0000970
971 // Introduce this template parameter's instantiation into the instantiation
972 // scope.
973 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +0000974 return Param;
975}
976
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000977Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +0000978TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
979 TemplateTemplateParmDecl *D) {
980 // Instantiate the template parameter list of the template template parameter.
981 TemplateParameterList *TempParams = D->getTemplateParameters();
982 TemplateParameterList *InstParams;
983 {
984 // Perform the actual substitution of template parameters within a new,
985 // local instantiation scope.
986 Sema::LocalInstantiationScope Scope(SemaRef);
987 InstParams = SubstTemplateParams(TempParams);
988 if (!InstParams)
989 return NULL;
990 }
991
992 // Build the template template parameter.
993 TemplateTemplateParmDecl *Param
994 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
995 D->getDepth() - 1, D->getPosition(),
996 D->getIdentifier(), InstParams);
997 Param->setDefaultArgument(D->getDefaultArgument());
998
999 // Introduce this template parameter's instantiation into the instantiation
1000 // scope.
1001 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1002
1003 return Param;
1004}
1005
1006Decl *
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001007TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001008 NestedNameSpecifier *NNS =
1009 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1010 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001011 TemplateArgs);
1012 if (!NNS)
1013 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001015 CXXScopeSpec SS;
1016 SS.setRange(D->getTargetNestedNameRange());
1017 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001018
1019 NamedDecl *UD =
1020 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
1021 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +00001022 D->getTargetName(), 0, D->isTypeName());
1023 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +00001024 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +00001025 D);
1026 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001027}
1028
John McCallce3ff2b2009-08-25 22:02:44 +00001029Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001030 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001031 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001032 return Instantiator.Visit(D);
1033}
1034
John McCalle29ba202009-08-20 01:44:21 +00001035/// \brief Instantiates a nested template parameter list in the current
1036/// instantiation context.
1037///
1038/// \param L The parameter list to instantiate
1039///
1040/// \returns NULL if there was an error
1041TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001042TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001043 // Get errors for all the parameters before bailing out.
1044 bool Invalid = false;
1045
1046 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001047 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001048 ParamVector Params;
1049 Params.reserve(N);
1050 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1051 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001052 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001053 Params.push_back(D);
1054 Invalid = Invalid || !D;
1055 }
1056
1057 // Clean up if we had an error.
1058 if (Invalid) {
1059 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1060 PI != PE; ++PI)
1061 if (*PI)
1062 (*PI)->Destroy(SemaRef.Context);
1063 return NULL;
1064 }
1065
1066 TemplateParameterList *InstL
1067 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1068 L->getLAngleLoc(), &Params.front(), N,
1069 L->getRAngleLoc());
1070 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001071}
John McCalle29ba202009-08-20 01:44:21 +00001072
Douglas Gregored9c0f92009-10-29 00:04:11 +00001073/// \brief Instantiate the declaration of a class template partial
1074/// specialization.
1075///
1076/// \param ClassTemplate the (instantiated) class template that is partially
1077// specialized by the instantiation of \p PartialSpec.
1078///
1079/// \param PartialSpec the (uninstantiated) class template partial
1080/// specialization that we are instantiating.
1081///
1082/// \returns true if there was an error, false otherwise.
1083bool
1084TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1085 ClassTemplateDecl *ClassTemplate,
1086 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001087 // Create a local instantiation scope for this class template partial
1088 // specialization, which will contain the instantiations of the template
1089 // parameters.
1090 Sema::LocalInstantiationScope Scope(SemaRef);
1091
Douglas Gregored9c0f92009-10-29 00:04:11 +00001092 // Substitute into the template parameters of the class template partial
1093 // specialization.
1094 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1095 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1096 if (!InstParams)
1097 return true;
1098
1099 // Substitute into the template arguments of the class template partial
1100 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001101 const TemplateArgumentLoc *PartialSpecTemplateArgs
1102 = PartialSpec->getTemplateArgsAsWritten();
1103 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1104
1105 llvm::SmallVector<TemplateArgumentLoc, 4> InstTemplateArgs(N);
1106 for (unsigned I = 0; I != N; ++I) {
1107 if (SemaRef.Subst(PartialSpecTemplateArgs[I], InstTemplateArgs[I],
1108 TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001109 return true;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001110 }
1111
1112
1113 // Check that the template argument list is well-formed for this
1114 // class template.
1115 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1116 InstTemplateArgs.size());
1117 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1118 PartialSpec->getLocation(),
1119 /*FIXME:*/PartialSpec->getLocation(),
1120 InstTemplateArgs.data(),
1121 InstTemplateArgs.size(),
1122 /*FIXME:*/PartialSpec->getLocation(),
1123 false,
1124 Converted))
1125 return true;
1126
1127 // Figure out where to insert this class template partial specialization
1128 // in the member template's set of class template partial specializations.
1129 llvm::FoldingSetNodeID ID;
1130 ClassTemplatePartialSpecializationDecl::Profile(ID,
1131 Converted.getFlatArguments(),
1132 Converted.flatSize(),
1133 SemaRef.Context);
1134 void *InsertPos = 0;
1135 ClassTemplateSpecializationDecl *PrevDecl
1136 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1137 InsertPos);
1138
1139 // Build the canonical type that describes the converted template
1140 // arguments of the class template partial specialization.
1141 QualType CanonType
1142 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1143 Converted.getFlatArguments(),
1144 Converted.flatSize());
1145
1146 // Build the fully-sugared type for this class template
1147 // specialization as the user wrote in the specialization
1148 // itself. This means that we'll pretty-print the type retrieved
1149 // from the specialization's declaration the way that the user
1150 // actually wrote the specialization, rather than formatting the
1151 // name based on the "canonical" representation used to store the
1152 // template arguments in the specialization.
1153 QualType WrittenTy
1154 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1155 InstTemplateArgs.data(),
1156 InstTemplateArgs.size(),
1157 CanonType);
1158
1159 if (PrevDecl) {
1160 // We've already seen a partial specialization with the same template
1161 // parameters and template arguments. This can happen, for example, when
1162 // substituting the outer template arguments ends up causing two
1163 // class template partial specializations of a member class template
1164 // to have identical forms, e.g.,
1165 //
1166 // template<typename T, typename U>
1167 // struct Outer {
1168 // template<typename X, typename Y> struct Inner;
1169 // template<typename Y> struct Inner<T, Y>;
1170 // template<typename Y> struct Inner<U, Y>;
1171 // };
1172 //
1173 // Outer<int, int> outer; // error: the partial specializations of Inner
1174 // // have the same signature.
1175 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1176 << WrittenTy;
1177 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1178 << SemaRef.Context.getTypeDeclType(PrevDecl);
1179 return true;
1180 }
1181
1182
1183 // Create the class template partial specialization declaration.
1184 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1185 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1186 PartialSpec->getLocation(),
1187 InstParams,
1188 ClassTemplate,
1189 Converted,
John McCall833ca992009-10-29 08:12:44 +00001190 InstTemplateArgs.data(),
1191 InstTemplateArgs.size(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00001192 0);
1193 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1194 InstPartialSpec->setTypeAsWritten(WrittenTy);
1195
1196 // Add this partial specialization to the set of class template partial
1197 // specializations.
1198 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1199 InsertPos);
1200 return false;
1201}
1202
John McCallce3ff2b2009-08-25 22:02:44 +00001203/// \brief Does substitution on the type of the given function, including
1204/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +00001205///
John McCallce3ff2b2009-08-25 22:02:44 +00001206/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +00001207///
1208/// \param Params the instantiated parameter declarations
1209
John McCallce3ff2b2009-08-25 22:02:44 +00001210/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +00001211/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +00001212QualType
John McCallce3ff2b2009-08-25 22:02:44 +00001213TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001214 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
1215 bool InvalidDecl = false;
1216
John McCallce3ff2b2009-08-25 22:02:44 +00001217 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +00001218 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001219 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001220 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001221 PEnd = D->param_end();
1222 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +00001223 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +00001224 if (PInst->getType()->isVoidType()) {
1225 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
1226 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001227 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001228 PInst->getType(),
1229 diag::err_abstract_type_in_decl,
1230 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +00001231 PInst->setInvalidDecl();
1232
1233 Params.push_back(PInst);
1234 ParamTys.push_back(PInst->getType());
1235
1236 if (PInst->isInvalidDecl())
1237 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001238 } else
Douglas Gregor5545e162009-03-24 00:38:23 +00001239 InvalidDecl = true;
1240 }
1241
1242 // FIXME: Deallocate dead declarations.
1243 if (InvalidDecl)
1244 return QualType();
1245
John McCall183700f2009-09-21 23:43:11 +00001246 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +00001247 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +00001248 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +00001249 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
1250 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +00001251 if (ResultType.isNull())
1252 return QualType();
1253
Jay Foadbeaaccd2009-05-21 09:52:38 +00001254 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001255 Proto->isVariadic(), Proto->getTypeQuals(),
1256 D->getLocation(), D->getDeclName());
1257}
1258
Mike Stump1eb44332009-09-09 15:08:12 +00001259/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001260/// declaration (New) from the corresponding fields of its template (Tmpl).
1261///
1262/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001263bool
1264TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001265 FunctionDecl *Tmpl) {
1266 if (Tmpl->isDeleted())
1267 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001268
Douglas Gregorcca9e962009-07-01 22:01:06 +00001269 // If we are performing substituting explicitly-specified template arguments
1270 // or deduced template arguments into a function template and we reach this
1271 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001272 // to keeping the new function template specialization. We therefore
1273 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001274 // into a template instantiation for this specific function template
1275 // specialization, which is not a SFINAE context, so that we diagnose any
1276 // further errors in the declaration itself.
1277 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1278 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1279 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1280 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001281 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001282 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001283 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001284 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001285 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001286 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1287 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
1288 }
1289 }
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Douglas Gregore53060f2009-06-25 22:08:12 +00001291 return false;
1292}
1293
Douglas Gregor5545e162009-03-24 00:38:23 +00001294/// \brief Initializes common fields of an instantiated method
1295/// declaration (New) from the corresponding fields of its template
1296/// (Tmpl).
1297///
1298/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001299bool
1300TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001301 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001302 if (InitFunctionInstantiation(New, Tmpl))
1303 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001304
Douglas Gregor5545e162009-03-24 00:38:23 +00001305 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1306 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +00001307 if (Tmpl->isVirtualAsWritten()) {
1308 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00001309 Record->setAggregate(false);
1310 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +00001311 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +00001312 Record->setPolymorphic(true);
1313 }
Douglas Gregor5545e162009-03-24 00:38:23 +00001314 if (Tmpl->isPure()) {
1315 New->setPure();
1316 Record->setAbstract(true);
1317 }
1318
1319 // FIXME: attributes
1320 // FIXME: New needs a pointer to Tmpl
1321 return false;
1322}
Douglas Gregora58861f2009-05-13 20:28:22 +00001323
1324/// \brief Instantiate the definition of the given function from its
1325/// template.
1326///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001327/// \param PointOfInstantiation the point at which the instantiation was
1328/// required. Note that this is not precisely a "point of instantiation"
1329/// for the function, but it's close.
1330///
Douglas Gregora58861f2009-05-13 20:28:22 +00001331/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001332/// function template specialization or member function of a class template
1333/// specialization.
1334///
1335/// \param Recursive if true, recursively instantiates any functions that
1336/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001337///
1338/// \param DefinitionRequired if true, then we are performing an explicit
1339/// instantiation where the body of the function is required. Complain if
1340/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001341void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001342 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001343 bool Recursive,
1344 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001345 if (Function->isInvalidDecl())
1346 return;
1347
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001348 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001349
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001350 // Never instantiate an explicit specialization.
1351 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1352 return;
1353
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001354 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001355 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001356 Stmt *Pattern = 0;
1357 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001358 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001359
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001360 if (!Pattern) {
1361 if (DefinitionRequired) {
1362 if (Function->getPrimaryTemplate())
1363 Diag(PointOfInstantiation,
1364 diag::err_explicit_instantiation_undefined_func_template)
1365 << Function->getPrimaryTemplate();
1366 else
1367 Diag(PointOfInstantiation,
1368 diag::err_explicit_instantiation_undefined_member)
1369 << 1 << Function->getDeclName() << Function->getDeclContext();
1370
1371 if (PatternDecl)
1372 Diag(PatternDecl->getLocation(),
1373 diag::note_explicit_instantiation_here);
1374 }
1375
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001376 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001377 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001378
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001379 // C++0x [temp.explicit]p9:
1380 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001381 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001382 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001383 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001384 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001385 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001386 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001387
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001388 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1389 if (Inst)
1390 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001391
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001392 // If we're performing recursive template instantiation, create our own
1393 // queue of pending implicit instantiations that we will instantiate later,
1394 // while we're still within our own instantiation context.
1395 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1396 if (Recursive)
1397 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001398
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001399 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1400
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001401 // Introduce a new scope where local variable instantiations will be
1402 // recorded.
1403 LocalInstantiationScope Scope(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001405 // Introduce the instantiated function parameters into the local
1406 // instantiation scope.
1407 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1408 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1409 Function->getParamDecl(I));
1410
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001411 // Enter the scope of this instantiation. We don't use
1412 // PushDeclContext because we don't have a scope.
1413 DeclContext *PreviousContext = CurContext;
1414 CurContext = Function;
1415
Mike Stump1eb44332009-09-09 15:08:12 +00001416 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001417 getTemplateInstantiationArgs(Function);
1418
1419 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001420 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001421 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1422 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1423 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001424 }
1425
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001426 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001427 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001428
Douglas Gregor52604ab2009-09-11 21:19:12 +00001429 if (Body.isInvalid())
1430 Function->setInvalidDecl();
1431
Mike Stump1eb44332009-09-09 15:08:12 +00001432 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001433 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001434
1435 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001436
1437 DeclGroupRef DG(Function);
1438 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001439
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001440 if (Recursive) {
1441 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001442 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001443 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001444
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001445 // Restore the set of pending implicit instantiations.
1446 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1447 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001448}
1449
1450/// \brief Instantiate the definition of the given variable from its
1451/// template.
1452///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001453/// \param PointOfInstantiation the point at which the instantiation was
1454/// required. Note that this is not precisely a "point of instantiation"
1455/// for the function, but it's close.
1456///
1457/// \param Var the already-instantiated declaration of a static member
1458/// variable of a class template specialization.
1459///
1460/// \param Recursive if true, recursively instantiates any functions that
1461/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001462///
1463/// \param DefinitionRequired if true, then we are performing an explicit
1464/// instantiation where an out-of-line definition of the member variable
1465/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001466void Sema::InstantiateStaticDataMemberDefinition(
1467 SourceLocation PointOfInstantiation,
1468 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001469 bool Recursive,
1470 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001471 if (Var->isInvalidDecl())
1472 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001473
Douglas Gregor7caa6822009-07-24 20:34:43 +00001474 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001475 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00001476 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00001477 assert(Def->isStaticDataMember() && "Not a static data member?");
1478 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00001479
Douglas Gregor0d035142009-10-27 18:42:08 +00001480 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001481 // We did not find an out-of-line definition of this static data member,
1482 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001483 // instantiate this definition (or provide a specialization for it) in
1484 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001485 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00001486 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001487 Diag(PointOfInstantiation,
1488 diag::err_explicit_instantiation_undefined_member)
1489 << 2 << Var->getDeclName() << Var->getDeclContext();
1490 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
1491 }
1492
Douglas Gregor7caa6822009-07-24 20:34:43 +00001493 return;
1494 }
1495
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001496 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001497 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001498 return;
1499
1500 // C++0x [temp.explicit]p9:
1501 // Except for inline functions, other explicit instantiation declarations
1502 // have the effect of suppressing the implicit instantiation of the entity
1503 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001504 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001505 == TSK_ExplicitInstantiationDeclaration)
1506 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001507
Douglas Gregor7caa6822009-07-24 20:34:43 +00001508 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1509 if (Inst)
1510 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001511
Douglas Gregor7caa6822009-07-24 20:34:43 +00001512 // If we're performing recursive template instantiation, create our own
1513 // queue of pending implicit instantiations that we will instantiate later,
1514 // while we're still within our own instantiation context.
1515 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1516 if (Recursive)
1517 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001518
Douglas Gregor7caa6822009-07-24 20:34:43 +00001519 // Enter the scope of this instantiation. We don't use
1520 // PushDeclContext because we don't have a scope.
1521 DeclContext *PreviousContext = CurContext;
1522 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001523
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001524 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00001525 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001526 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00001527 CurContext = PreviousContext;
1528
1529 if (Var) {
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001530 Var->setPreviousDeclaration(OldVar);
Douglas Gregor583f33b2009-10-15 18:07:02 +00001531 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
1532 assert(MSInfo && "Missing member specialization information?");
1533 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
1534 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00001535 DeclGroupRef DG(Var);
1536 Consumer.HandleTopLevelDecl(DG);
1537 }
Mike Stump1eb44332009-09-09 15:08:12 +00001538
Douglas Gregor7caa6822009-07-24 20:34:43 +00001539 if (Recursive) {
1540 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001541 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001542 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Douglas Gregor7caa6822009-07-24 20:34:43 +00001544 // Restore the set of pending implicit instantiations.
1545 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001546 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001547}
Douglas Gregor815215d2009-05-27 05:35:12 +00001548
Anders Carlsson09025312009-08-29 05:16:22 +00001549void
1550Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1551 const CXXConstructorDecl *Tmpl,
1552 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001553
Anders Carlsson09025312009-08-29 05:16:22 +00001554 llvm::SmallVector<MemInitTy*, 4> NewInits;
1555
1556 // Instantiate all the initializers.
1557 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001558 InitsEnd = Tmpl->init_end();
1559 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001560 CXXBaseOrMemberInitializer *Init = *Inits;
1561
1562 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001563
Anders Carlsson09025312009-08-29 05:16:22 +00001564 // Instantiate all the arguments.
1565 for (ExprIterator Args = Init->arg_begin(), ArgsEnd = Init->arg_end();
1566 Args != ArgsEnd; ++Args) {
1567 OwningExprResult NewArg = SubstExpr(*Args, TemplateArgs);
1568
1569 if (NewArg.isInvalid())
1570 New->setInvalidDecl();
1571 else
1572 NewArgs.push_back(NewArg.takeAs<Expr>());
1573 }
1574
1575 MemInitResult NewInit;
1576
1577 if (Init->isBaseInitializer()) {
Eli Friedmanc5573a82009-08-29 22:22:07 +00001578 QualType BaseType(Init->getBaseClass(), 0);
1579 BaseType = SubstType(BaseType, TemplateArgs, Init->getSourceLocation(),
1580 New->getDeclName());
Anders Carlsson09025312009-08-29 05:16:22 +00001581
1582 NewInit = BuildBaseInitializer(BaseType,
Mike Stump1eb44332009-09-09 15:08:12 +00001583 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001584 NewArgs.size(),
1585 Init->getSourceLocation(),
1586 Init->getRParenLoc(),
1587 New->getParent());
1588 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001589 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001590
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001591 // Is this an anonymous union?
1592 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001593 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001594 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001595 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1596 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001597
1598 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001599 NewArgs.size(),
1600 Init->getSourceLocation(),
1601 Init->getRParenLoc());
1602 }
1603
1604 if (NewInit.isInvalid())
1605 New->setInvalidDecl();
1606 else {
1607 // FIXME: It would be nice if ASTOwningVector had a release function.
1608 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001609
Anders Carlsson09025312009-08-29 05:16:22 +00001610 NewInits.push_back((MemInitTy *)NewInit.get());
1611 }
1612 }
Mike Stump1eb44332009-09-09 15:08:12 +00001613
Anders Carlsson09025312009-08-29 05:16:22 +00001614 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001615 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001616 /*FIXME: ColonLoc */
1617 SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001618 NewInits.data(), NewInits.size());
Anders Carlsson09025312009-08-29 05:16:22 +00001619}
1620
John McCall52a575a2009-08-29 08:11:13 +00001621// TODO: this could be templated if the various decl types used the
1622// same method name.
1623static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1624 ClassTemplateDecl *Instance) {
1625 Pattern = Pattern->getCanonicalDecl();
1626
1627 do {
1628 Instance = Instance->getCanonicalDecl();
1629 if (Pattern == Instance) return true;
1630 Instance = Instance->getInstantiatedFromMemberTemplate();
1631 } while (Instance);
1632
1633 return false;
1634}
1635
Douglas Gregor0d696532009-09-28 06:34:35 +00001636static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1637 FunctionTemplateDecl *Instance) {
1638 Pattern = Pattern->getCanonicalDecl();
1639
1640 do {
1641 Instance = Instance->getCanonicalDecl();
1642 if (Pattern == Instance) return true;
1643 Instance = Instance->getInstantiatedFromMemberTemplate();
1644 } while (Instance);
1645
1646 return false;
1647}
1648
Douglas Gregored9c0f92009-10-29 00:04:11 +00001649static bool
1650isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
1651 ClassTemplatePartialSpecializationDecl *Instance) {
1652 Pattern
1653 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
1654 do {
1655 Instance = cast<ClassTemplatePartialSpecializationDecl>(
1656 Instance->getCanonicalDecl());
1657 if (Pattern == Instance)
1658 return true;
1659 Instance = Instance->getInstantiatedFromMember();
1660 } while (Instance);
1661
1662 return false;
1663}
1664
John McCall52a575a2009-08-29 08:11:13 +00001665static bool isInstantiationOf(CXXRecordDecl *Pattern,
1666 CXXRecordDecl *Instance) {
1667 Pattern = Pattern->getCanonicalDecl();
1668
1669 do {
1670 Instance = Instance->getCanonicalDecl();
1671 if (Pattern == Instance) return true;
1672 Instance = Instance->getInstantiatedFromMemberClass();
1673 } while (Instance);
1674
1675 return false;
1676}
1677
1678static bool isInstantiationOf(FunctionDecl *Pattern,
1679 FunctionDecl *Instance) {
1680 Pattern = Pattern->getCanonicalDecl();
1681
1682 do {
1683 Instance = Instance->getCanonicalDecl();
1684 if (Pattern == Instance) return true;
1685 Instance = Instance->getInstantiatedFromMemberFunction();
1686 } while (Instance);
1687
1688 return false;
1689}
1690
1691static bool isInstantiationOf(EnumDecl *Pattern,
1692 EnumDecl *Instance) {
1693 Pattern = Pattern->getCanonicalDecl();
1694
1695 do {
1696 Instance = Instance->getCanonicalDecl();
1697 if (Pattern == Instance) return true;
1698 Instance = Instance->getInstantiatedFromMemberEnum();
1699 } while (Instance);
1700
1701 return false;
1702}
1703
Anders Carlsson0d8df782009-08-29 19:37:28 +00001704static bool isInstantiationOf(UnresolvedUsingDecl *Pattern,
1705 UsingDecl *Instance,
1706 ASTContext &C) {
1707 return C.getInstantiatedFromUnresolvedUsingDecl(Instance) == Pattern;
1708}
1709
John McCall52a575a2009-08-29 08:11:13 +00001710static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
1711 VarDecl *Instance) {
1712 assert(Instance->isStaticDataMember());
1713
1714 Pattern = Pattern->getCanonicalDecl();
1715
1716 do {
1717 Instance = Instance->getCanonicalDecl();
1718 if (Pattern == Instance) return true;
1719 Instance = Instance->getInstantiatedFromStaticDataMember();
1720 } while (Instance);
1721
1722 return false;
1723}
1724
Douglas Gregor815215d2009-05-27 05:35:12 +00001725static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00001726 if (D->getKind() != Other->getKind()) {
1727 if (UnresolvedUsingDecl *UUD = dyn_cast<UnresolvedUsingDecl>(D)) {
1728 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
1729 return isInstantiationOf(UUD, UD, Ctx);
1730 }
1731 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001732
Anders Carlsson0d8df782009-08-29 19:37:28 +00001733 return false;
1734 }
Mike Stump1eb44332009-09-09 15:08:12 +00001735
John McCall52a575a2009-08-29 08:11:13 +00001736 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
1737 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001738
John McCall52a575a2009-08-29 08:11:13 +00001739 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
1740 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00001741
John McCall52a575a2009-08-29 08:11:13 +00001742 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
1743 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00001744
Douglas Gregor7caa6822009-07-24 20:34:43 +00001745 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00001746 if (Var->isStaticDataMember())
1747 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
1748
1749 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
1750 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00001751
Douglas Gregor0d696532009-09-28 06:34:35 +00001752 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
1753 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
1754
Douglas Gregored9c0f92009-10-29 00:04:11 +00001755 if (ClassTemplatePartialSpecializationDecl *PartialSpec
1756 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
1757 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
1758 PartialSpec);
1759
Anders Carlssond8b285f2009-09-01 04:26:58 +00001760 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
1761 if (!Field->getDeclName()) {
1762 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00001763 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00001764 cast<FieldDecl>(D);
1765 }
1766 }
Mike Stump1eb44332009-09-09 15:08:12 +00001767
Douglas Gregor815215d2009-05-27 05:35:12 +00001768 return D->getDeclName() && isa<NamedDecl>(Other) &&
1769 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1770}
1771
1772template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00001773static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00001774 NamedDecl *D,
1775 ForwardIterator first,
1776 ForwardIterator last) {
1777 for (; first != last; ++first)
1778 if (isInstantiationOf(Ctx, D, *first))
1779 return cast<NamedDecl>(*first);
1780
1781 return 0;
1782}
1783
John McCall02cace72009-08-28 07:59:38 +00001784/// \brief Finds the instantiation of the given declaration context
1785/// within the current instantiation.
1786///
1787/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00001788DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
1789 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00001790 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00001791 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00001792 return cast_or_null<DeclContext>(ID);
1793 } else return DC;
1794}
1795
Douglas Gregored961e72009-05-27 17:54:46 +00001796/// \brief Find the instantiation of the given declaration within the
1797/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001798///
1799/// This routine is intended to be used when \p D is a declaration
1800/// referenced from within a template, that needs to mapped into the
1801/// corresponding declaration within an instantiation. For example,
1802/// given:
1803///
1804/// \code
1805/// template<typename T>
1806/// struct X {
1807/// enum Kind {
1808/// KnownValue = sizeof(T)
1809/// };
1810///
1811/// bool getKind() const { return KnownValue; }
1812/// };
1813///
1814/// template struct X<int>;
1815/// \endcode
1816///
1817/// In the instantiation of X<int>::getKind(), we need to map the
1818/// EnumConstantDecl for KnownValue (which refers to
1819/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001820/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1821/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00001822NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
1823 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor44c73842009-09-01 17:53:10 +00001824 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
1825 // Transform all of the elements of the overloaded function set.
Mike Stump1eb44332009-09-09 15:08:12 +00001826 OverloadedFunctionDecl *Result
Douglas Gregor44c73842009-09-01 17:53:10 +00001827 = OverloadedFunctionDecl::Create(Context, CurContext, Ovl->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +00001828
Douglas Gregor44c73842009-09-01 17:53:10 +00001829 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
1830 FEnd = Ovl->function_end();
1831 F != FEnd; ++F) {
1832 Result->addOverload(
Douglas Gregore95b4092009-09-16 18:34:49 +00001833 AnyFunctionDecl::getFromNamedDecl(FindInstantiatedDecl(*F,
1834 TemplateArgs)));
Douglas Gregor44c73842009-09-01 17:53:10 +00001835 }
Mike Stump1eb44332009-09-09 15:08:12 +00001836
Douglas Gregor44c73842009-09-01 17:53:10 +00001837 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001838 }
1839
Douglas Gregor815215d2009-05-27 05:35:12 +00001840 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00001841 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
1842 isa<TemplateTypeParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
1843 ParentDC->isFunctionOrMethod()) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001844 // D is a local of some kind. Look into the map of local
1845 // declarations to their instantiations.
1846 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1847 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001848
Douglas Gregore95b4092009-09-16 18:34:49 +00001849 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
1850 if (!Record->isDependentContext())
1851 return D;
1852
1853 // If the RecordDecl is actually the injected-class-name or a "templated"
1854 // declaration for a class template or class template partial
1855 // specialization, substitute into the injected-class-name of the
1856 // class template or partial specialization to find the new DeclContext.
1857 QualType T;
1858 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
1859
1860 if (ClassTemplate) {
1861 T = ClassTemplate->getInjectedClassNameType(Context);
1862 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
1863 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1864 T = Context.getTypeDeclType(Record);
1865 ClassTemplate = PartialSpec->getSpecializedTemplate();
1866 }
1867
1868 if (!T.isNull()) {
1869 // Substitute into the injected-class-name to get the type corresponding
1870 // to the instantiation we want. This substitution should never fail,
1871 // since we know we can instantiate the injected-class-name or we wouldn't
1872 // have gotten to the injected-class-name!
1873 // FIXME: Can we use the CurrentInstantiationScope to avoid this extra
1874 // instantiation in the common case?
1875 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
1876 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
1877
1878 if (!T->isDependentType()) {
1879 assert(T->isRecordType() && "Instantiation must produce a record type");
1880 return T->getAs<RecordType>()->getDecl();
1881 }
1882
1883 // We are performing "partial" template instantiation to create the
1884 // member declarations for the members of a class template
1885 // specialization. Therefore, D is actually referring to something in
1886 // the current instantiation. Look through the current context,
1887 // which contains actual instantiations, to find the instantiation of
1888 // the "current instantiation" that D refers to.
Mike Stump1eb44332009-09-09 15:08:12 +00001889 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00001890 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001891 if (ClassTemplateSpecializationDecl *Spec
John McCall52a575a2009-08-29 08:11:13 +00001892 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00001893 if (isInstantiationOf(ClassTemplate,
1894 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00001895 return Spec;
1896 }
1897
Mike Stump1eb44332009-09-09 15:08:12 +00001898 assert(false &&
John McCall52a575a2009-08-29 08:11:13 +00001899 "Unable to find declaration for the current instantiation");
Douglas Gregore95b4092009-09-16 18:34:49 +00001900 return Record;
John McCall52a575a2009-08-29 08:11:13 +00001901 }
Douglas Gregore95b4092009-09-16 18:34:49 +00001902
1903 // Fall through to deal with other dependent record types (e.g.,
1904 // anonymous unions in class templates).
1905 }
John McCall52a575a2009-08-29 08:11:13 +00001906
Douglas Gregore95b4092009-09-16 18:34:49 +00001907 if (!ParentDC->isDependentContext())
1908 return D;
1909
1910 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001911 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00001912 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001913
Douglas Gregor815215d2009-05-27 05:35:12 +00001914 if (ParentDC != D->getDeclContext()) {
1915 // We performed some kind of instantiation in the parent context,
1916 // so now we need to look into the instantiated parent context to
1917 // find the instantiation of the declaration D.
1918 NamedDecl *Result = 0;
1919 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001920 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001921 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1922 } else {
1923 // Since we don't have a name for the entity we're looking for,
1924 // our only option is to walk through all of the declarations to
1925 // find that name. This will occur in a few cases:
1926 //
1927 // - anonymous struct/union within a template
1928 // - unnamed class/struct/union/enum within a template
1929 //
1930 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00001931 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001932 ParentDC->decls_begin(),
1933 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001934 }
Mike Stump1eb44332009-09-09 15:08:12 +00001935
Douglas Gregor815215d2009-05-27 05:35:12 +00001936 assert(Result && "Unable to find instantiation of declaration!");
1937 D = Result;
1938 }
1939
Douglas Gregor815215d2009-05-27 05:35:12 +00001940 return D;
1941}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001942
Mike Stump1eb44332009-09-09 15:08:12 +00001943/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001944/// instantiations we have seen until this point.
1945void Sema::PerformPendingImplicitInstantiations() {
1946 while (!PendingImplicitInstantiations.empty()) {
1947 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001948 PendingImplicitInstantiations.pop_front();
Mike Stump1eb44332009-09-09 15:08:12 +00001949
Douglas Gregor7caa6822009-07-24 20:34:43 +00001950 // Instantiate function definitions
1951 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001952 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001953 Function->getLocation(), *this,
1954 Context.getSourceManager(),
1955 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001956
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001957 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001958 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001959 continue;
1960 }
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Douglas Gregor7caa6822009-07-24 20:34:43 +00001962 // Instantiate static data member definitions.
1963 VarDecl *Var = cast<VarDecl>(Inst.first);
1964 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001965
Mike Stump1eb44332009-09-09 15:08:12 +00001966 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001967 Var->getLocation(), *this,
1968 Context.getSourceManager(),
1969 "instantiating static data member "
1970 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Douglas Gregor7caa6822009-07-24 20:34:43 +00001972 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001973 }
1974}