blob: 8ff80af19030d0ba76e21902a7b44dd9aa74e0dd [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"
18#include "llvm/Support/Compiler.h"
19
20using namespace clang;
21
22namespace {
23 class VISIBILITY_HIDDEN TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000024 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025 Sema &SemaRef;
26 DeclContext *Owner;
Douglas Gregor7e063902009-05-11 23:53:27 +000027 const TemplateArgumentList &TemplateArgs;
Douglas Gregor8dbc2692009-03-17 21:15:40 +000028
29 public:
30 typedef Sema::OwningExprResult OwningExprResult;
31
32 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregor7e063902009-05-11 23:53:27 +000033 const TemplateArgumentList &TemplateArgs)
34 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Douglas Gregor8dbc2692009-03-17 21:15:40 +000035
Mike Stump390b4cc2009-05-16 07:39:55 +000036 // FIXME: Once we get closer to completion, replace these manually-written
37 // declarations with automatically-generated ones from
38 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000039 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
40 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000041 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000042 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000043 Decl *VisitFieldDecl(FieldDecl *D);
44 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
45 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000046 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregore53060f2009-06-25 22:08:12 +000047 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregord475b8d2009-03-25 21:17:03 +000048 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +000049 Decl *VisitCXXMethodDecl(CXXMethodDecl *D);
Douglas Gregor615c5d42009-03-24 16:43:20 +000050 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000051 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000052 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000053 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +000054 Decl *VisitOriginalParmVarDecl(OriginalParmVarDecl *D);
Douglas Gregor5545e162009-03-24 00:38:23 +000055
Douglas Gregor8dbc2692009-03-17 21:15:40 +000056 // Base case. FIXME: Remove once we can instantiate everything.
57 Decl *VisitDecl(Decl *) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000058 assert(false && "Template instantiation of unknown declaration kind!");
Douglas Gregor8dbc2692009-03-17 21:15:40 +000059 return 0;
60 }
Douglas Gregor5545e162009-03-24 00:38:23 +000061
62 // Helper functions for instantiating methods.
63 QualType InstantiateFunctionType(FunctionDecl *D,
64 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000065 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000066 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000067 };
68}
69
Douglas Gregor4f722be2009-03-25 15:45:12 +000070Decl *
71TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
72 assert(false && "Translation units cannot be instantiated");
73 return D;
74}
75
76Decl *
77TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
78 assert(false && "Namespaces cannot be instantiated");
79 return D;
80}
81
Douglas Gregor8dbc2692009-03-17 21:15:40 +000082Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
83 bool Invalid = false;
84 QualType T = D->getUnderlyingType();
85 if (T->isDependentType()) {
Douglas Gregor1eee0e72009-05-14 21:06:31 +000086 T = SemaRef.InstantiateType(T, TemplateArgs,
87 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +000088 if (T.isNull()) {
89 Invalid = true;
90 T = SemaRef.Context.IntTy;
91 }
92 }
93
94 // Create the new typedef
95 TypedefDecl *Typedef
96 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
97 D->getIdentifier(), T);
98 if (Invalid)
99 Typedef->setInvalidDecl();
100
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000101 Owner->addDecl(Typedef);
Douglas Gregorbc221632009-05-28 16:34:51 +0000102
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000103 return Typedef;
104}
105
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000106Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
107 // Instantiate the type of the declaration
108 QualType T = SemaRef.InstantiateType(D->getType(), TemplateArgs,
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000109 D->getTypeSpecStartLoc(),
110 D->getDeclName());
111 if (T.isNull())
112 return 0;
113
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000114 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000115 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
116 D->getLocation(), D->getIdentifier(),
117 T, D->getStorageClass(),
118 D->getTypeSpecStartLoc());
119 Var->setThreadSpecified(D->isThreadSpecified());
120 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
121 Var->setDeclaredInCondition(D->isDeclaredInCondition());
122
Mike Stump390b4cc2009-05-16 07:39:55 +0000123 // FIXME: In theory, we could have a previous declaration for variables that
124 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000125 bool Redeclaration = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000126 SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000127 Owner->addDecl(Var);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000128
129 if (D->getInit()) {
130 OwningExprResult Init
Douglas Gregor7e063902009-05-11 23:53:27 +0000131 = SemaRef.InstantiateExpr(D->getInit(), TemplateArgs);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000132 if (Init.isInvalid())
133 Var->setInvalidDecl();
134 else
Chris Lattnerb28317a2009-03-28 19:18:32 +0000135 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000136 D->hasCXXDirectInitializer());
Douglas Gregord308e622009-05-18 20:51:54 +0000137 } else {
138 // FIXME: Call ActOnUninitializedDecl? (Not always)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000139 }
140
141 return Var;
142}
143
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
145 bool Invalid = false;
146 QualType T = D->getType();
147 if (T->isDependentType()) {
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000148 T = SemaRef.InstantiateType(T, TemplateArgs,
149 D->getLocation(), D->getDeclName());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000150 if (!T.isNull() && T->isFunctionType()) {
151 // C++ [temp.arg.type]p3:
152 // If a declaration acquires a function type through a type
153 // dependent on a template-parameter and this causes a
154 // declaration that does not use the syntactic form of a
155 // function declarator to have function type, the program is
156 // ill-formed.
157 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
158 << T;
159 T = QualType();
160 Invalid = true;
161 }
162 }
163
164 Expr *BitWidth = D->getBitWidth();
165 if (Invalid)
166 BitWidth = 0;
167 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000168 // The bit-width expression is not potentially evaluated.
169 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
170
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000171 OwningExprResult InstantiatedBitWidth
Douglas Gregor7e063902009-05-11 23:53:27 +0000172 = SemaRef.InstantiateExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000173 if (InstantiatedBitWidth.isInvalid()) {
174 Invalid = true;
175 BitWidth = 0;
176 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000177 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000178 }
179
180 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), T,
181 cast<RecordDecl>(Owner),
182 D->getLocation(),
183 D->isMutable(),
184 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000185 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000186 D->getAccess(),
187 0);
188 if (Field) {
189 if (Invalid)
190 Field->setInvalidDecl();
191
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000192 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000193 }
194
195 return Field;
196}
197
198Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
199 Expr *AssertExpr = D->getAssertExpr();
200
Douglas Gregorac7610d2009-06-22 20:57:11 +0000201 // The expression in a static assertion is not potentially evaluated.
202 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
203
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000204 OwningExprResult InstantiatedAssertExpr
Douglas Gregor7e063902009-05-11 23:53:27 +0000205 = SemaRef.InstantiateExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000206 if (InstantiatedAssertExpr.isInvalid())
207 return 0;
208
209 OwningExprResult Message = SemaRef.Clone(D->getMessage());
210 Decl *StaticAssert
Chris Lattnerb28317a2009-03-28 19:18:32 +0000211 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
212 move(InstantiatedAssertExpr),
213 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000214 return StaticAssert;
215}
216
217Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
218 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
219 D->getLocation(), D->getIdentifier(),
220 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000221 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000222 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000223 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000224 Enum->startDefinition();
225
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000226 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000227
228 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000229 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
230 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000231 EC != ECEnd; ++EC) {
232 // The specified value for the enumerator.
233 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000234 if (Expr *UninstValue = EC->getInitExpr()) {
235 // The enumerator's value expression is not potentially evaluated.
236 EnterExpressionEvaluationContext Unevaluated(SemaRef,
237 Action::Unevaluated);
238
Douglas Gregor7e063902009-05-11 23:53:27 +0000239 Value = SemaRef.InstantiateExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000240 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000241
242 // Drop the initial value and continue.
243 bool isInvalid = false;
244 if (Value.isInvalid()) {
245 Value = SemaRef.Owned((Expr *)0);
246 isInvalid = true;
247 }
248
249 EnumConstantDecl *EnumConst
250 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
251 EC->getLocation(), EC->getIdentifier(),
252 move(Value));
253
254 if (isInvalid) {
255 if (EnumConst)
256 EnumConst->setInvalidDecl();
257 Enum->setInvalidDecl();
258 }
259
260 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000261 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000262 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000263 LastEnumConst = EnumConst;
264 }
265 }
266
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000267 // FIXME: Fixup LBraceLoc and RBraceLoc
268 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
269 Sema::DeclPtrTy::make(Enum),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000270 &Enumerators[0], Enumerators.size());
271
272 return Enum;
273}
274
Douglas Gregor6477b692009-03-25 15:04:13 +0000275Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
276 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
277 return 0;
278}
279
Douglas Gregord475b8d2009-03-25 21:17:03 +0000280Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
281 CXXRecordDecl *PrevDecl = 0;
282 if (D->isInjectedClassName())
283 PrevDecl = cast<CXXRecordDecl>(Owner);
284
285 CXXRecordDecl *Record
286 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
287 D->getLocation(), D->getIdentifier(), PrevDecl);
288 Record->setImplicit(D->isImplicit());
289 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000290 if (!D->isInjectedClassName())
291 Record->setInstantiationOfMemberClass(D);
292
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000293 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000294 return Record;
295}
296
Douglas Gregore53060f2009-06-25 22:08:12 +0000297Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000298 // Check whether there is already a function template specialization for
299 // this declaration.
300 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
301 void *InsertPos = 0;
302 if (FunctionTemplate) {
303 llvm::FoldingSetNodeID ID;
304 FunctionTemplateSpecializationInfo::Profile(ID,
305 TemplateArgs.getFlatArgumentList(),
306 TemplateArgs.flat_size());
307
308 FunctionTemplateSpecializationInfo *Info
309 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
310 InsertPos);
311
312 // If we already have a function template specialization, return it.
313 if (Info)
314 return Info->Function;
315 }
Douglas Gregore53060f2009-06-25 22:08:12 +0000316
317 Sema::LocalInstantiationScope Scope(SemaRef);
318
319 llvm::SmallVector<ParmVarDecl *, 4> Params;
320 QualType T = InstantiateFunctionType(D, Params);
321 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000322 return 0;
Douglas Gregore53060f2009-06-25 22:08:12 +0000323
324 // Build the instantiated method declaration.
325 FunctionDecl *Function
326 = FunctionDecl::Create(SemaRef.Context, Owner, D->getLocation(),
327 D->getDeclName(), T, D->getStorageClass(),
328 D->isInline(), D->hasWrittenPrototype(),
329 D->getTypeSpecStartLoc());
330
331 // FIXME: friend functions
332
333 // Attach the parameters
334 for (unsigned P = 0; P < Params.size(); ++P)
335 Params[P]->setOwningFunction(Function);
336 Function->setParams(SemaRef.Context, Params.data(), Params.size());
337
338 if (InitFunctionInstantiation(Function, D))
339 Function->setInvalidDecl();
340
341 bool Redeclaration = false;
342 bool OverloadableAttrRequired = false;
343 NamedDecl *PrevDecl = 0;
344 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
345 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000346
Douglas Gregor127102b2009-06-29 20:59:39 +0000347 if (FunctionTemplate) {
348 // Record this function template specialization.
349 Function->setFunctionTemplateSpecialization(SemaRef.Context,
350 FunctionTemplate,
351 &TemplateArgs,
352 InsertPos);
353 }
354
Douglas Gregore53060f2009-06-25 22:08:12 +0000355 return Function;
356}
357
358Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
359 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000360 Sema::LocalInstantiationScope Scope(SemaRef);
361
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000362 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor5545e162009-03-24 00:38:23 +0000363 QualType T = InstantiateFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000364 if (T.isNull())
365 return 0;
366
367 // Build the instantiated method declaration.
368 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
369 CXXMethodDecl *Method
370 = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
371 D->getDeclName(), T, D->isStatic(),
372 D->isInline());
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000373 Method->setInstantiationOfMemberFunction(D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000374
Douglas Gregor5545e162009-03-24 00:38:23 +0000375 // Attach the parameters
376 for (unsigned P = 0; P < Params.size(); ++P)
377 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000378 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000379
380 if (InitMethodInstantiation(Method, D))
381 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000382
383 NamedDecl *PrevDecl
384 = SemaRef.LookupQualifiedName(Owner, Method->getDeclName(),
385 Sema::LookupOrdinaryName, true);
386 // In C++, the previous declaration we find might be a tag type
387 // (class or enum). In this case, the new declaration will hide the
388 // tag type. Note that this does does not apply if we're declaring a
389 // typedef (C++ [dcl.typedef]p4).
390 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
391 PrevDecl = 0;
392 bool Redeclaration = false;
393 bool OverloadableAttrRequired = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000394 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
395 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000396
397 if (!Method->isInvalidDecl() || !PrevDecl)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000398 Owner->addDecl(Method);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000399 return Method;
400}
401
Douglas Gregor615c5d42009-03-24 16:43:20 +0000402Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000403 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000404 Sema::LocalInstantiationScope Scope(SemaRef);
405
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000406 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor615c5d42009-03-24 16:43:20 +0000407 QualType T = InstantiateFunctionType(D, Params);
408 if (T.isNull())
409 return 0;
410
411 // Build the instantiated method declaration.
412 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
413 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
414 DeclarationName Name
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000415 = SemaRef.Context.DeclarationNames.getCXXConstructorName(
416 SemaRef.Context.getCanonicalType(ClassTy));
Douglas Gregor615c5d42009-03-24 16:43:20 +0000417 CXXConstructorDecl *Constructor
418 = CXXConstructorDecl::Create(SemaRef.Context, Record, D->getLocation(),
419 Name, T, D->isExplicit(), D->isInline(),
420 false);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000421 Constructor->setInstantiationOfMemberFunction(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000422
423 // Attach the parameters
424 for (unsigned P = 0; P < Params.size(); ++P)
425 Params[P]->setOwningFunction(Constructor);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000426 Constructor->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor615c5d42009-03-24 16:43:20 +0000427
428 if (InitMethodInstantiation(Constructor, D))
429 Constructor->setInvalidDecl();
430
431 NamedDecl *PrevDecl
432 = SemaRef.LookupQualifiedName(Owner, Name, Sema::LookupOrdinaryName, true);
433
434 // In C++, the previous declaration we find might be a tag type
435 // (class or enum). In this case, the new declaration will hide the
436 // tag type. Note that this does does not apply if we're declaring a
437 // typedef (C++ [dcl.typedef]p4).
438 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
439 PrevDecl = 0;
440 bool Redeclaration = false;
441 bool OverloadableAttrRequired = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000442 SemaRef.CheckFunctionDeclaration(Constructor, PrevDecl, Redeclaration,
443 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000444
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000445 Record->addedConstructor(SemaRef.Context, Constructor);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000446 Owner->addDecl(Constructor);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000447 return Constructor;
448}
449
Douglas Gregor03b2b072009-03-24 00:15:49 +0000450Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000451 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000452 Sema::LocalInstantiationScope Scope(SemaRef);
453
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000454 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor5545e162009-03-24 00:38:23 +0000455 QualType T = InstantiateFunctionType(D, Params);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000456 if (T.isNull())
457 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +0000458 assert(Params.size() == 0 && "Destructor with parameters?");
459
Douglas Gregor03b2b072009-03-24 00:15:49 +0000460 // Build the instantiated destructor declaration.
461 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000462 QualType ClassTy =
463 SemaRef.Context.getCanonicalType(SemaRef.Context.getTypeDeclType(Record));
Douglas Gregor03b2b072009-03-24 00:15:49 +0000464 CXXDestructorDecl *Destructor
465 = CXXDestructorDecl::Create(SemaRef.Context, Record,
466 D->getLocation(),
467 SemaRef.Context.DeclarationNames.getCXXDestructorName(ClassTy),
468 T, D->isInline(), false);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000469 Destructor->setInstantiationOfMemberFunction(D);
Douglas Gregor5545e162009-03-24 00:38:23 +0000470 if (InitMethodInstantiation(Destructor, D))
471 Destructor->setInvalidDecl();
Douglas Gregor03b2b072009-03-24 00:15:49 +0000472
473 bool Redeclaration = false;
474 bool OverloadableAttrRequired = false;
475 NamedDecl *PrevDecl = 0;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000476 SemaRef.CheckFunctionDeclaration(Destructor, PrevDecl, Redeclaration,
477 /*FIXME:*/OverloadableAttrRequired);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000478 Owner->addDecl(Destructor);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000479 return Destructor;
480}
481
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000482Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000483 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000484 Sema::LocalInstantiationScope Scope(SemaRef);
485
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000486 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000487 QualType T = InstantiateFunctionType(D, Params);
488 if (T.isNull())
489 return 0;
490 assert(Params.size() == 0 && "Destructor with parameters?");
491
492 // Build the instantiated conversion declaration.
493 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
494 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
495 QualType ConvTy
496 = SemaRef.Context.getCanonicalType(T->getAsFunctionType()->getResultType());
497 CXXConversionDecl *Conversion
498 = CXXConversionDecl::Create(SemaRef.Context, Record,
499 D->getLocation(),
500 SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(ConvTy),
501 T, D->isInline(), D->isExplicit());
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000502 Conversion->setInstantiationOfMemberFunction(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000503 if (InitMethodInstantiation(Conversion, D))
504 Conversion->setInvalidDecl();
505
506 bool Redeclaration = false;
507 bool OverloadableAttrRequired = false;
508 NamedDecl *PrevDecl = 0;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000509 SemaRef.CheckFunctionDeclaration(Conversion, PrevDecl, Redeclaration,
510 /*FIXME:*/OverloadableAttrRequired);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000511 Owner->addDecl(Conversion);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000512 return Conversion;
513}
514
Douglas Gregor6477b692009-03-25 15:04:13 +0000515ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000516 QualType OrigT = SemaRef.InstantiateType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000517 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000518 if (OrigT.isNull())
519 return 0;
520
521 QualType T = SemaRef.adjustParameterType(OrigT);
522
523 if (D->getDefaultArg()) {
524 // FIXME: Leave a marker for "uninstantiated" default
525 // arguments. They only get instantiated on demand at the call
526 // site.
527 unsigned DiagID = SemaRef.Diags.getCustomDiagID(Diagnostic::Warning,
528 "sorry, dropping default argument during template instantiation");
529 SemaRef.Diag(D->getDefaultArg()->getSourceRange().getBegin(), DiagID)
530 << D->getDefaultArg()->getSourceRange();
531 }
532
533 // Allocate the parameter
534 ParmVarDecl *Param = 0;
535 if (T == OrigT)
536 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
537 D->getIdentifier(), T, D->getStorageClass(),
538 0);
539 else
540 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
541 D->getLocation(), D->getIdentifier(),
542 T, OrigT, D->getStorageClass(), 0);
543
544 // Note: we don't try to instantiate function parameters until after
545 // we've instantiated the function's type. Therefore, we don't have
546 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000547 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000548 return Param;
549}
550
551Decl *
552TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
553 // Since parameter types can decay either before or after
554 // instantiation, we simply treat OriginalParmVarDecls as
555 // ParmVarDecls the same way, and create one or the other depending
556 // on what happens after template instantiation.
557 return VisitParmVarDecl(D);
558}
559
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000560Decl *Sema::InstantiateDecl(Decl *D, DeclContext *Owner,
Douglas Gregor7e063902009-05-11 23:53:27 +0000561 const TemplateArgumentList &TemplateArgs) {
562 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000563 return Instantiator.Visit(D);
564}
565
Douglas Gregor5545e162009-03-24 00:38:23 +0000566/// \brief Instantiates the type of the given function, including
567/// instantiating all of the function parameters.
568///
569/// \param D The function that we will be instantiated
570///
571/// \param Params the instantiated parameter declarations
572
573/// \returns the instantiated function's type if successfull, a NULL
574/// type if there was an error.
575QualType
576TemplateDeclInstantiator::InstantiateFunctionType(FunctionDecl *D,
577 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
578 bool InvalidDecl = false;
579
580 // Instantiate the function parameters
Douglas Gregor7e063902009-05-11 23:53:27 +0000581 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000582 llvm::SmallVector<QualType, 4> ParamTys;
Douglas Gregor5545e162009-03-24 00:38:23 +0000583 for (FunctionDecl::param_iterator P = D->param_begin(),
584 PEnd = D->param_end();
585 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000586 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000587 if (PInst->getType()->isVoidType()) {
588 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
589 PInst->setInvalidDecl();
590 }
591 else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
592 PInst->getType(),
593 diag::err_abstract_type_in_decl,
Anders Carlsson8211eff2009-03-24 01:19:16 +0000594 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000595 PInst->setInvalidDecl();
596
597 Params.push_back(PInst);
598 ParamTys.push_back(PInst->getType());
599
600 if (PInst->isInvalidDecl())
601 InvalidDecl = true;
602 } else
603 InvalidDecl = true;
604 }
605
606 // FIXME: Deallocate dead declarations.
607 if (InvalidDecl)
608 return QualType();
609
610 const FunctionProtoType *Proto = D->getType()->getAsFunctionProtoType();
611 assert(Proto && "Missing prototype?");
612 QualType ResultType
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000613 = SemaRef.InstantiateType(Proto->getResultType(), TemplateArgs,
Douglas Gregor5545e162009-03-24 00:38:23 +0000614 D->getLocation(), D->getDeclName());
615 if (ResultType.isNull())
616 return QualType();
617
Jay Foadbeaaccd2009-05-21 09:52:38 +0000618 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000619 Proto->isVariadic(), Proto->getTypeQuals(),
620 D->getLocation(), D->getDeclName());
621}
622
Douglas Gregore53060f2009-06-25 22:08:12 +0000623/// \brief Initializes the common fields of an instantiation function
624/// declaration (New) from the corresponding fields of its template (Tmpl).
625///
626/// \returns true if there was an error
627bool
628TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
629 FunctionDecl *Tmpl) {
630 if (Tmpl->isDeleted())
631 New->setDeleted();
Douglas Gregorcca9e962009-07-01 22:01:06 +0000632
633 // If we are performing substituting explicitly-specified template arguments
634 // or deduced template arguments into a function template and we reach this
635 // point, we are now past the point where SFINAE applies and have committed
636 // to keeping the new function template specialization. We therefore
637 // convert the active template instantiation for the function template
638 // into a template instantiation for this specific function template
639 // specialization, which is not a SFINAE context, so that we diagnose any
640 // further errors in the declaration itself.
641 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
642 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
643 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
644 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
645 if (FunctionTemplateDecl *FunTmpl
646 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
647 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
648 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000649 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000650 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
651 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
652 }
653 }
654
Douglas Gregore53060f2009-06-25 22:08:12 +0000655 return false;
656}
657
Douglas Gregor5545e162009-03-24 00:38:23 +0000658/// \brief Initializes common fields of an instantiated method
659/// declaration (New) from the corresponding fields of its template
660/// (Tmpl).
661///
662/// \returns true if there was an error
663bool
664TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
665 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000666 if (InitFunctionInstantiation(New, Tmpl))
667 return true;
668
Douglas Gregor5545e162009-03-24 00:38:23 +0000669 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
670 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000671 if (Tmpl->isVirtualAsWritten()) {
672 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000673 Record->setAggregate(false);
674 Record->setPOD(false);
675 Record->setPolymorphic(true);
676 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000677 if (Tmpl->isPure()) {
678 New->setPure();
679 Record->setAbstract(true);
680 }
681
682 // FIXME: attributes
683 // FIXME: New needs a pointer to Tmpl
684 return false;
685}
Douglas Gregora58861f2009-05-13 20:28:22 +0000686
687/// \brief Instantiate the definition of the given function from its
688/// template.
689///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000690/// \param PointOfInstantiation the point at which the instantiation was
691/// required. Note that this is not precisely a "point of instantiation"
692/// for the function, but it's close.
693///
Douglas Gregora58861f2009-05-13 20:28:22 +0000694/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000695/// function template specialization or member function of a class template
696/// specialization.
697///
698/// \param Recursive if true, recursively instantiates any functions that
699/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000700void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000701 FunctionDecl *Function,
702 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000703 if (Function->isInvalidDecl())
704 return;
705
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000706 assert(!Function->getBody() && "Already instantiated!");
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000707
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000708 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000709 const FunctionDecl *PatternDecl = 0;
710 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate())
711 PatternDecl = Primary->getTemplatedDecl();
712 else
713 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000714 Stmt *Pattern = 0;
715 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000716 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000717
718 if (!Pattern)
719 return;
720
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000721 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
722 if (Inst)
723 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000724
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000725 // If we're performing recursive template instantiation, create our own
726 // queue of pending implicit instantiations that we will instantiate later,
727 // while we're still within our own instantiation context.
728 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
729 if (Recursive)
730 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
731
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000732 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
733
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000734 // Introduce a new scope where local variable instantiations will be
735 // recorded.
736 LocalInstantiationScope Scope(*this);
737
738 // Introduce the instantiated function parameters into the local
739 // instantiation scope.
740 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
741 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
742 Function->getParamDecl(I));
743
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000744 // Enter the scope of this instantiation. We don't use
745 // PushDeclContext because we don't have a scope.
746 DeclContext *PreviousContext = CurContext;
747 CurContext = Function;
748
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000749 // Instantiate the function body.
750 OwningStmtResult Body
751 = InstantiateStmt(Pattern, getTemplateInstantiationArgs(Function));
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000752
753 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
754 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000755
756 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +0000757
758 DeclGroupRef DG(Function);
759 Consumer.HandleTopLevelDecl(DG);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000760
761 if (Recursive) {
762 // Instantiate any pending implicit instantiations found during the
763 // instantiation of this template.
764 PerformPendingImplicitInstantiations();
765
766 // Restore the set of pending implicit instantiations.
767 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
768 }
Douglas Gregora58861f2009-05-13 20:28:22 +0000769}
770
771/// \brief Instantiate the definition of the given variable from its
772/// template.
773///
774/// \param Var the already-instantiated declaration of a variable.
775void Sema::InstantiateVariableDefinition(VarDecl *Var) {
776 // FIXME: Implement this!
777}
Douglas Gregor815215d2009-05-27 05:35:12 +0000778
779static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
780 if (D->getKind() != Other->getKind())
781 return false;
782
783 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
784 return Ctx.getCanonicalDecl(Record->getInstantiatedFromMemberClass())
785 == Ctx.getCanonicalDecl(D);
786
787 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
788 return Ctx.getCanonicalDecl(Function->getInstantiatedFromMemberFunction())
789 == Ctx.getCanonicalDecl(D);
790
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000791 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
792 return Ctx.getCanonicalDecl(Enum->getInstantiatedFromMemberEnum())
793 == Ctx.getCanonicalDecl(D);
Douglas Gregor815215d2009-05-27 05:35:12 +0000794
795 // FIXME: How can we find instantiations of anonymous unions?
796
797 return D->getDeclName() && isa<NamedDecl>(Other) &&
798 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
799}
800
801template<typename ForwardIterator>
802static NamedDecl *findInstantiationOf(ASTContext &Ctx,
803 NamedDecl *D,
804 ForwardIterator first,
805 ForwardIterator last) {
806 for (; first != last; ++first)
807 if (isInstantiationOf(Ctx, D, *first))
808 return cast<NamedDecl>(*first);
809
810 return 0;
811}
812
Douglas Gregored961e72009-05-27 17:54:46 +0000813/// \brief Find the instantiation of the given declaration within the
814/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +0000815///
816/// This routine is intended to be used when \p D is a declaration
817/// referenced from within a template, that needs to mapped into the
818/// corresponding declaration within an instantiation. For example,
819/// given:
820///
821/// \code
822/// template<typename T>
823/// struct X {
824/// enum Kind {
825/// KnownValue = sizeof(T)
826/// };
827///
828/// bool getKind() const { return KnownValue; }
829/// };
830///
831/// template struct X<int>;
832/// \endcode
833///
834/// In the instantiation of X<int>::getKind(), we need to map the
835/// EnumConstantDecl for KnownValue (which refers to
836/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +0000837/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
838/// this mapping from within the instantiation of X<int>.
839NamedDecl * Sema::InstantiateCurrentDeclRef(NamedDecl *D) {
Douglas Gregor815215d2009-05-27 05:35:12 +0000840 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +0000841 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
842 // D is a local of some kind. Look into the map of local
843 // declarations to their instantiations.
844 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
845 }
Douglas Gregor815215d2009-05-27 05:35:12 +0000846
Douglas Gregor2bba76b2009-05-27 17:07:49 +0000847 if (NamedDecl *ParentDecl = dyn_cast<NamedDecl>(ParentDC)) {
Douglas Gregored961e72009-05-27 17:54:46 +0000848 ParentDecl = InstantiateCurrentDeclRef(ParentDecl);
Douglas Gregor815215d2009-05-27 05:35:12 +0000849 if (!ParentDecl)
850 return 0;
851
852 ParentDC = cast<DeclContext>(ParentDecl);
853 }
854
Douglas Gregor815215d2009-05-27 05:35:12 +0000855 if (ParentDC != D->getDeclContext()) {
856 // We performed some kind of instantiation in the parent context,
857 // so now we need to look into the instantiated parent context to
858 // find the instantiation of the declaration D.
859 NamedDecl *Result = 0;
860 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000861 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +0000862 Result = findInstantiationOf(Context, D, Found.first, Found.second);
863 } else {
864 // Since we don't have a name for the entity we're looking for,
865 // our only option is to walk through all of the declarations to
866 // find that name. This will occur in a few cases:
867 //
868 // - anonymous struct/union within a template
869 // - unnamed class/struct/union/enum within a template
870 //
871 // FIXME: Find a better way to find these instantiations!
872 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000873 ParentDC->decls_begin(),
874 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +0000875 }
876 assert(Result && "Unable to find instantiation of declaration!");
877 D = Result;
878 }
879
Douglas Gregor815215d2009-05-27 05:35:12 +0000880 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
Douglas Gregored961e72009-05-27 17:54:46 +0000881 if (ClassTemplateDecl *ClassTemplate
882 = Record->getDescribedClassTemplate()) {
883 // When the declaration D was parsed, it referred to the current
884 // instantiation. Therefore, look through the current context,
885 // which contains actual instantiations, to find the
886 // instantiation of the "current instantiation" that D refers
887 // to. Alternatively, we could just instantiate the
888 // injected-class-name with the current template arguments, but
889 // such an instantiation is far more expensive.
890 for (DeclContext *DC = CurContext; !DC->isFileContext();
891 DC = DC->getParent()) {
892 if (ClassTemplateSpecializationDecl *Spec
893 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
894 if (Context.getCanonicalDecl(Spec->getSpecializedTemplate())
895 == Context.getCanonicalDecl(ClassTemplate))
896 return Spec;
897 }
898
899 assert(false &&
900 "Unable to find declaration for the current instantiation");
Douglas Gregor815215d2009-05-27 05:35:12 +0000901 }
902
903 return D;
904}
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000905
906/// \brief Performs template instantiation for all implicit template
907/// instantiations we have seen until this point.
908void Sema::PerformPendingImplicitInstantiations() {
909 while (!PendingImplicitInstantiations.empty()) {
910 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000911 PendingImplicitInstantiations.pop_front();
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000912
913 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first))
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000914 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000915 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000916
Douglas Gregor751f9a42009-06-30 15:47:41 +0000917 // FIXME: instantiate static member variables
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000918 }
919}