blob: 5d50d51df9abff9ace64df55e761f12910787848 [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());
Douglas Gregor66724ea2009-11-14 01:20:54 +0000661 } else if (FunctionTemplate) {
662 // Record this function template specialization.
663 Function->setFunctionTemplateSpecialization(SemaRef.Context,
664 FunctionTemplate,
665 &TemplateArgs.getInnermost(),
666 InsertPos);
John McCall02cace72009-08-28 07:59:38 +0000667 }
Douglas Gregora735b202009-10-13 14:39:41 +0000668
Douglas Gregore53060f2009-06-25 22:08:12 +0000669 if (InitFunctionInstantiation(Function, D))
670 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Douglas Gregore53060f2009-06-25 22:08:12 +0000672 bool Redeclaration = false;
673 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +0000674
Douglas Gregore53060f2009-06-25 22:08:12 +0000675 NamedDecl *PrevDecl = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000676 if (TemplateParams || !FunctionTemplate) {
677 // Look only into the namespace where the friend would be declared to
678 // find a previous declaration. This is the innermost enclosing namespace,
679 // as described in ActOnFriendFunctionDecl.
680 Sema::LookupResult R;
681 SemaRef.LookupQualifiedName(R, DC, Function->getDeclName(),
682 Sema::LookupOrdinaryName, true);
683
684 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
685
686 // In C++, the previous declaration we find might be a tag type
687 // (class or enum). In this case, the new declaration will hide the
688 // tag type. Note that this does does not apply if we're declaring a
689 // typedef (C++ [dcl.typedef]p4).
690 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
691 PrevDecl = 0;
692 }
693
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000694 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +0000695 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000696
Douglas Gregora735b202009-10-13 14:39:41 +0000697 // If the original function was part of a friend declaration,
698 // inherit its namespace state and add it to the owner.
699 NamedDecl *FromFriendD
700 = TemplateParams? cast<NamedDecl>(D->getDescribedFunctionTemplate()) : D;
701 if (FromFriendD->getFriendObjectKind()) {
702 NamedDecl *ToFriendD = 0;
703 if (TemplateParams) {
704 ToFriendD = cast<NamedDecl>(FunctionTemplate);
705 PrevDecl = FunctionTemplate->getPreviousDeclaration();
706 } else {
707 ToFriendD = Function;
708 PrevDecl = Function->getPreviousDeclaration();
709 }
710 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
711 if (!Owner->isDependentContext() && !PrevDecl)
712 DC->makeDeclVisibleInContext(ToFriendD, /* Recoverable = */ false);
713
714 if (!TemplateParams)
715 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
716 }
717
Douglas Gregore53060f2009-06-25 22:08:12 +0000718 return Function;
719}
720
Douglas Gregord60e1052009-08-27 16:57:43 +0000721Decl *
722TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
723 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000724 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
725 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000726 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000727 // We are creating a function template specialization from a function
728 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000729 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000730 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000731 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000732 TemplateArgs.getInnermost().getFlatArgumentList(),
733 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000734 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000735
736 FunctionTemplateSpecializationInfo *Info
737 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000738 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000739
Douglas Gregor6b906862009-08-21 00:16:32 +0000740 // If we already have a function template specialization, return it.
741 if (Info)
742 return Info->Function;
743 }
744
Douglas Gregor550d9b22009-10-31 17:21:17 +0000745 Sema::LocalInstantiationScope Scope(SemaRef, TemplateParams != 0);
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000746
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000747 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000748 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000749 if (T.isNull())
750 return 0;
751
752 // Build the instantiated method declaration.
753 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000754 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Douglas Gregordec06662009-08-21 18:42:58 +0000756 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000757 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000758 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
759 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
760 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000761 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
762 Constructor->getLocation(),
763 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000764 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000765 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000766 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +0000767 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
768 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
769 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
770 SemaRef.Context.getCanonicalType(ClassTy));
771 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
772 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000773 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000774 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000775 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000776 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000777 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000778 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
779 ConvTy);
780 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
781 Conversion->getLocation(), Name,
782 T, Conversion->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000783 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000784 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000785 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000786 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000787 D->getDeclName(), T, D->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000788 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +0000789 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000790
Douglas Gregord60e1052009-08-27 16:57:43 +0000791 if (TemplateParams) {
792 // Our resulting instantiation is actually a function template, since we
793 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000794 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000795 // template<typename T>
796 // struct X {
797 // template<typename U> void f(T, U);
798 // };
799 //
800 // X<int> x;
801 //
802 // We are instantiating the member template "f" within X<int>, which means
803 // substituting int for T, but leaving "f" as a member function template.
804 // Build the function template itself.
805 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
806 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000807 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000808 TemplateParams, Method);
809 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000810 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000811 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +0000812 } else if (FunctionTemplate) {
813 // Record this function template specialization.
814 Method->setFunctionTemplateSpecialization(SemaRef.Context,
815 FunctionTemplate,
816 &TemplateArgs.getInnermost(),
817 InsertPos);
818 } else {
819 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +0000820 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +0000821 }
822
Mike Stump1eb44332009-09-09 15:08:12 +0000823 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000824 // out-of-line, the instantiation will have the same lexical
825 // context (which will be a namespace scope) as the template.
826 if (D->isOutOfLine())
827 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000828
Douglas Gregor5545e162009-03-24 00:38:23 +0000829 // Attach the parameters
830 for (unsigned P = 0; P < Params.size(); ++P)
831 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000832 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000833
834 if (InitMethodInstantiation(Method, D))
835 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000836
Douglas Gregordec06662009-08-21 18:42:58 +0000837 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Douglas Gregord60e1052009-08-27 16:57:43 +0000839 if (!FunctionTemplate || TemplateParams) {
John McCallf36e02d2009-10-09 21:13:30 +0000840 Sema::LookupResult R;
841 SemaRef.LookupQualifiedName(R, Owner, Name, Sema::LookupOrdinaryName, true);
842 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000843
Douglas Gregordec06662009-08-21 18:42:58 +0000844 // In C++, the previous declaration we find might be a tag type
845 // (class or enum). In this case, the new declaration will hide the
846 // tag type. Note that this does does not apply if we're declaring a
847 // typedef (C++ [dcl.typedef]p4).
848 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
849 PrevDecl = 0;
850 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000851
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000852 bool Redeclaration = false;
853 bool OverloadableAttrRequired = false;
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000854 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000855 /*FIXME:*/OverloadableAttrRequired);
856
Douglas Gregora735b202009-10-13 14:39:41 +0000857 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl) &&
858 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +0000859 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000860
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000861 return Method;
862}
863
Douglas Gregor615c5d42009-03-24 16:43:20 +0000864Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000865 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000866}
867
Douglas Gregor03b2b072009-03-24 00:15:49 +0000868Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000869 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000870}
871
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000872Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000873 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000874}
875
Douglas Gregor6477b692009-03-25 15:04:13 +0000876ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +0000877 QualType T;
878 DeclaratorInfo *DI = D->getDeclaratorInfo();
879 if (DI) {
880 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
881 D->getDeclName());
882 if (DI) T = DI->getType();
883 } else {
884 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
885 D->getDeclName());
886 DI = 0;
887 }
888
889 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000890 return 0;
891
John McCall58e46772009-10-23 21:48:59 +0000892 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000893
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000894 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +0000895 ParmVarDecl *Param
896 = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
897 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000898
Anders Carlsson9351c172009-08-25 03:18:48 +0000899 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000900 if (D->hasUninstantiatedDefaultArg())
901 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000902 else if (Expr *Arg = D->getDefaultArg())
903 Param->setUninstantiatedDefaultArg(Arg);
904
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000905 // Note: we don't try to instantiate function parameters until after
906 // we've instantiated the function's type. Therefore, we don't have
907 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000908 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000909 return Param;
910}
911
John McCalle29ba202009-08-20 01:44:21 +0000912Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
913 TemplateTypeParmDecl *D) {
914 // TODO: don't always clone when decls are refcounted.
915 const Type* T = D->getTypeForDecl();
916 assert(T->isTemplateTypeParmType());
917 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000918
John McCalle29ba202009-08-20 01:44:21 +0000919 TemplateTypeParmDecl *Inst =
920 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +0000921 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +0000922 TTPT->getName(),
923 D->wasDeclaredWithTypename(),
924 D->isParameterPack());
925
Douglas Gregor0f8716b2009-11-09 19:17:50 +0000926 if (D->hasDefaultArgument())
927 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +0000928
Douglas Gregor550d9b22009-10-31 17:21:17 +0000929 // Introduce this template parameter's instantiation into the instantiation
930 // scope.
931 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
932
John McCalle29ba202009-08-20 01:44:21 +0000933 return Inst;
934}
935
Douglas Gregor33642df2009-10-23 23:25:44 +0000936Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
937 NonTypeTemplateParmDecl *D) {
938 // Substitute into the type of the non-type template parameter.
939 QualType T;
940 DeclaratorInfo *DI = D->getDeclaratorInfo();
941 if (DI) {
942 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
943 D->getDeclName());
944 if (DI) T = DI->getType();
945 } else {
946 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
947 D->getDeclName());
948 DI = 0;
949 }
950 if (T.isNull())
951 return 0;
952
953 // Check that this type is acceptable for a non-type template parameter.
954 bool Invalid = false;
955 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
956 if (T.isNull()) {
957 T = SemaRef.Context.IntTy;
958 Invalid = true;
959 }
960
961 NonTypeTemplateParmDecl *Param
962 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
963 D->getDepth() - 1, D->getPosition(),
964 D->getIdentifier(), T, DI);
965 if (Invalid)
966 Param->setInvalidDecl();
967
968 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +0000969
970 // Introduce this template parameter's instantiation into the instantiation
971 // scope.
972 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +0000973 return Param;
974}
975
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000976Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +0000977TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
978 TemplateTemplateParmDecl *D) {
979 // Instantiate the template parameter list of the template template parameter.
980 TemplateParameterList *TempParams = D->getTemplateParameters();
981 TemplateParameterList *InstParams;
982 {
983 // Perform the actual substitution of template parameters within a new,
984 // local instantiation scope.
985 Sema::LocalInstantiationScope Scope(SemaRef);
986 InstParams = SubstTemplateParams(TempParams);
987 if (!InstParams)
988 return NULL;
989 }
990
991 // Build the template template parameter.
992 TemplateTemplateParmDecl *Param
993 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
994 D->getDepth() - 1, D->getPosition(),
995 D->getIdentifier(), InstParams);
996 Param->setDefaultArgument(D->getDefaultArgument());
997
998 // Introduce this template parameter's instantiation into the instantiation
999 // scope.
1000 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1001
1002 return Param;
1003}
1004
1005Decl *
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001006TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001007 NestedNameSpecifier *NNS =
1008 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1009 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001010 TemplateArgs);
1011 if (!NNS)
1012 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001014 CXXScopeSpec SS;
1015 SS.setRange(D->getTargetNestedNameRange());
1016 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001017
1018 NamedDecl *UD =
1019 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
1020 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +00001021 D->getTargetName(), 0, D->isTypeName());
1022 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +00001023 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +00001024 D);
1025 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001026}
1027
John McCallce3ff2b2009-08-25 22:02:44 +00001028Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001029 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001030 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001031 return Instantiator.Visit(D);
1032}
1033
John McCalle29ba202009-08-20 01:44:21 +00001034/// \brief Instantiates a nested template parameter list in the current
1035/// instantiation context.
1036///
1037/// \param L The parameter list to instantiate
1038///
1039/// \returns NULL if there was an error
1040TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001041TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001042 // Get errors for all the parameters before bailing out.
1043 bool Invalid = false;
1044
1045 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001046 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001047 ParamVector Params;
1048 Params.reserve(N);
1049 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1050 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001051 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001052 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001053 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001054 }
1055
1056 // Clean up if we had an error.
1057 if (Invalid) {
1058 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1059 PI != PE; ++PI)
1060 if (*PI)
1061 (*PI)->Destroy(SemaRef.Context);
1062 return NULL;
1063 }
1064
1065 TemplateParameterList *InstL
1066 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1067 L->getLAngleLoc(), &Params.front(), N,
1068 L->getRAngleLoc());
1069 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001070}
John McCalle29ba202009-08-20 01:44:21 +00001071
Douglas Gregored9c0f92009-10-29 00:04:11 +00001072/// \brief Instantiate the declaration of a class template partial
1073/// specialization.
1074///
1075/// \param ClassTemplate the (instantiated) class template that is partially
1076// specialized by the instantiation of \p PartialSpec.
1077///
1078/// \param PartialSpec the (uninstantiated) class template partial
1079/// specialization that we are instantiating.
1080///
1081/// \returns true if there was an error, false otherwise.
1082bool
1083TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1084 ClassTemplateDecl *ClassTemplate,
1085 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001086 // Create a local instantiation scope for this class template partial
1087 // specialization, which will contain the instantiations of the template
1088 // parameters.
1089 Sema::LocalInstantiationScope Scope(SemaRef);
1090
Douglas Gregored9c0f92009-10-29 00:04:11 +00001091 // Substitute into the template parameters of the class template partial
1092 // specialization.
1093 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1094 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1095 if (!InstParams)
1096 return true;
1097
1098 // Substitute into the template arguments of the class template partial
1099 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001100 const TemplateArgumentLoc *PartialSpecTemplateArgs
1101 = PartialSpec->getTemplateArgsAsWritten();
1102 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1103
1104 llvm::SmallVector<TemplateArgumentLoc, 4> InstTemplateArgs(N);
1105 for (unsigned I = 0; I != N; ++I) {
1106 if (SemaRef.Subst(PartialSpecTemplateArgs[I], InstTemplateArgs[I],
1107 TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001108 return true;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001109 }
1110
1111
1112 // Check that the template argument list is well-formed for this
1113 // class template.
1114 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1115 InstTemplateArgs.size());
1116 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1117 PartialSpec->getLocation(),
1118 /*FIXME:*/PartialSpec->getLocation(),
1119 InstTemplateArgs.data(),
1120 InstTemplateArgs.size(),
1121 /*FIXME:*/PartialSpec->getLocation(),
1122 false,
1123 Converted))
1124 return true;
1125
1126 // Figure out where to insert this class template partial specialization
1127 // in the member template's set of class template partial specializations.
1128 llvm::FoldingSetNodeID ID;
1129 ClassTemplatePartialSpecializationDecl::Profile(ID,
1130 Converted.getFlatArguments(),
1131 Converted.flatSize(),
1132 SemaRef.Context);
1133 void *InsertPos = 0;
1134 ClassTemplateSpecializationDecl *PrevDecl
1135 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1136 InsertPos);
1137
1138 // Build the canonical type that describes the converted template
1139 // arguments of the class template partial specialization.
1140 QualType CanonType
1141 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1142 Converted.getFlatArguments(),
1143 Converted.flatSize());
1144
1145 // Build the fully-sugared type for this class template
1146 // specialization as the user wrote in the specialization
1147 // itself. This means that we'll pretty-print the type retrieved
1148 // from the specialization's declaration the way that the user
1149 // actually wrote the specialization, rather than formatting the
1150 // name based on the "canonical" representation used to store the
1151 // template arguments in the specialization.
1152 QualType WrittenTy
1153 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1154 InstTemplateArgs.data(),
1155 InstTemplateArgs.size(),
1156 CanonType);
1157
1158 if (PrevDecl) {
1159 // We've already seen a partial specialization with the same template
1160 // parameters and template arguments. This can happen, for example, when
1161 // substituting the outer template arguments ends up causing two
1162 // class template partial specializations of a member class template
1163 // to have identical forms, e.g.,
1164 //
1165 // template<typename T, typename U>
1166 // struct Outer {
1167 // template<typename X, typename Y> struct Inner;
1168 // template<typename Y> struct Inner<T, Y>;
1169 // template<typename Y> struct Inner<U, Y>;
1170 // };
1171 //
1172 // Outer<int, int> outer; // error: the partial specializations of Inner
1173 // // have the same signature.
1174 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1175 << WrittenTy;
1176 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1177 << SemaRef.Context.getTypeDeclType(PrevDecl);
1178 return true;
1179 }
1180
1181
1182 // Create the class template partial specialization declaration.
1183 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1184 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1185 PartialSpec->getLocation(),
1186 InstParams,
1187 ClassTemplate,
1188 Converted,
John McCall833ca992009-10-29 08:12:44 +00001189 InstTemplateArgs.data(),
1190 InstTemplateArgs.size(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00001191 0);
1192 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1193 InstPartialSpec->setTypeAsWritten(WrittenTy);
1194
1195 // Add this partial specialization to the set of class template partial
1196 // specializations.
1197 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1198 InsertPos);
1199 return false;
1200}
1201
John McCallce3ff2b2009-08-25 22:02:44 +00001202/// \brief Does substitution on the type of the given function, including
1203/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +00001204///
John McCallce3ff2b2009-08-25 22:02:44 +00001205/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +00001206///
1207/// \param Params the instantiated parameter declarations
1208
John McCallce3ff2b2009-08-25 22:02:44 +00001209/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +00001210/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +00001211QualType
John McCallce3ff2b2009-08-25 22:02:44 +00001212TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001213 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
1214 bool InvalidDecl = false;
1215
John McCallce3ff2b2009-08-25 22:02:44 +00001216 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +00001217 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001218 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001219 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001220 PEnd = D->param_end();
1221 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +00001222 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +00001223 if (PInst->getType()->isVoidType()) {
1224 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
1225 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001226 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001227 PInst->getType(),
1228 diag::err_abstract_type_in_decl,
1229 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +00001230 PInst->setInvalidDecl();
1231
1232 Params.push_back(PInst);
1233 ParamTys.push_back(PInst->getType());
1234
1235 if (PInst->isInvalidDecl())
1236 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001237 } else
Douglas Gregor5545e162009-03-24 00:38:23 +00001238 InvalidDecl = true;
1239 }
1240
1241 // FIXME: Deallocate dead declarations.
1242 if (InvalidDecl)
1243 return QualType();
1244
John McCall183700f2009-09-21 23:43:11 +00001245 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +00001246 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +00001247 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +00001248 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
1249 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +00001250 if (ResultType.isNull())
1251 return QualType();
1252
Jay Foadbeaaccd2009-05-21 09:52:38 +00001253 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001254 Proto->isVariadic(), Proto->getTypeQuals(),
1255 D->getLocation(), D->getDeclName());
1256}
1257
Mike Stump1eb44332009-09-09 15:08:12 +00001258/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001259/// declaration (New) from the corresponding fields of its template (Tmpl).
1260///
1261/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001262bool
1263TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001264 FunctionDecl *Tmpl) {
1265 if (Tmpl->isDeleted())
1266 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001267
Douglas Gregorcca9e962009-07-01 22:01:06 +00001268 // If we are performing substituting explicitly-specified template arguments
1269 // or deduced template arguments into a function template and we reach this
1270 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001271 // to keeping the new function template specialization. We therefore
1272 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001273 // into a template instantiation for this specific function template
1274 // specialization, which is not a SFINAE context, so that we diagnose any
1275 // further errors in the declaration itself.
1276 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1277 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1278 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1279 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001280 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001281 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001282 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001283 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001284 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001285 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1286 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001287 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001288 }
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}