blob: 5718e9b69b0cb340ea38dfc938166da64659fab9 [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(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000220 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000221 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000222 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000223 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000224 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000225 Enum->startDefinition();
226
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000227 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000228
229 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000230 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
231 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000232 EC != ECEnd; ++EC) {
233 // The specified value for the enumerator.
234 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000235 if (Expr *UninstValue = EC->getInitExpr()) {
236 // The enumerator's value expression is not potentially evaluated.
237 EnterExpressionEvaluationContext Unevaluated(SemaRef,
238 Action::Unevaluated);
239
Douglas Gregor7e063902009-05-11 23:53:27 +0000240 Value = SemaRef.InstantiateExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000241 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000242
243 // Drop the initial value and continue.
244 bool isInvalid = false;
245 if (Value.isInvalid()) {
246 Value = SemaRef.Owned((Expr *)0);
247 isInvalid = true;
248 }
249
250 EnumConstantDecl *EnumConst
251 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
252 EC->getLocation(), EC->getIdentifier(),
253 move(Value));
254
255 if (isInvalid) {
256 if (EnumConst)
257 EnumConst->setInvalidDecl();
258 Enum->setInvalidDecl();
259 }
260
261 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000262 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000263 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000264 LastEnumConst = EnumConst;
265 }
266 }
267
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000268 // FIXME: Fixup LBraceLoc and RBraceLoc
269 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
270 Sema::DeclPtrTy::make(Enum),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000271 &Enumerators[0], Enumerators.size());
272
273 return Enum;
274}
275
Douglas Gregor6477b692009-03-25 15:04:13 +0000276Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
277 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
278 return 0;
279}
280
Douglas Gregord475b8d2009-03-25 21:17:03 +0000281Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
282 CXXRecordDecl *PrevDecl = 0;
283 if (D->isInjectedClassName())
284 PrevDecl = cast<CXXRecordDecl>(Owner);
285
286 CXXRecordDecl *Record
287 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000288 D->getLocation(), D->getIdentifier(),
289 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000290 Record->setImplicit(D->isImplicit());
291 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000292 if (!D->isInjectedClassName())
293 Record->setInstantiationOfMemberClass(D);
294
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000295 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000296 return Record;
297}
298
Douglas Gregore53060f2009-06-25 22:08:12 +0000299Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000300 // Check whether there is already a function template specialization for
301 // this declaration.
302 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
303 void *InsertPos = 0;
304 if (FunctionTemplate) {
305 llvm::FoldingSetNodeID ID;
306 FunctionTemplateSpecializationInfo::Profile(ID,
307 TemplateArgs.getFlatArgumentList(),
308 TemplateArgs.flat_size());
309
310 FunctionTemplateSpecializationInfo *Info
311 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
312 InsertPos);
313
314 // If we already have a function template specialization, return it.
315 if (Info)
316 return Info->Function;
317 }
Douglas Gregore53060f2009-06-25 22:08:12 +0000318
319 Sema::LocalInstantiationScope Scope(SemaRef);
320
321 llvm::SmallVector<ParmVarDecl *, 4> Params;
322 QualType T = InstantiateFunctionType(D, Params);
323 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000324 return 0;
Douglas Gregore53060f2009-06-25 22:08:12 +0000325
326 // Build the instantiated method declaration.
327 FunctionDecl *Function
328 = FunctionDecl::Create(SemaRef.Context, Owner, D->getLocation(),
329 D->getDeclName(), T, D->getStorageClass(),
330 D->isInline(), D->hasWrittenPrototype(),
331 D->getTypeSpecStartLoc());
332
333 // FIXME: friend functions
334
335 // Attach the parameters
336 for (unsigned P = 0; P < Params.size(); ++P)
337 Params[P]->setOwningFunction(Function);
338 Function->setParams(SemaRef.Context, Params.data(), Params.size());
339
340 if (InitFunctionInstantiation(Function, D))
341 Function->setInvalidDecl();
342
343 bool Redeclaration = false;
344 bool OverloadableAttrRequired = false;
345 NamedDecl *PrevDecl = 0;
346 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration,
347 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000348
Douglas Gregor127102b2009-06-29 20:59:39 +0000349 if (FunctionTemplate) {
350 // Record this function template specialization.
351 Function->setFunctionTemplateSpecialization(SemaRef.Context,
352 FunctionTemplate,
353 &TemplateArgs,
354 InsertPos);
355 }
356
Douglas Gregore53060f2009-06-25 22:08:12 +0000357 return Function;
358}
359
360Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
361 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000362 Sema::LocalInstantiationScope Scope(SemaRef);
363
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000364 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor5545e162009-03-24 00:38:23 +0000365 QualType T = InstantiateFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000366 if (T.isNull())
367 return 0;
368
369 // Build the instantiated method declaration.
370 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
371 CXXMethodDecl *Method
372 = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
373 D->getDeclName(), T, D->isStatic(),
374 D->isInline());
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000375 Method->setInstantiationOfMemberFunction(D);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000376
Douglas Gregor5545e162009-03-24 00:38:23 +0000377 // Attach the parameters
378 for (unsigned P = 0; P < Params.size(); ++P)
379 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000380 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000381
382 if (InitMethodInstantiation(Method, D))
383 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000384
385 NamedDecl *PrevDecl
386 = SemaRef.LookupQualifiedName(Owner, Method->getDeclName(),
387 Sema::LookupOrdinaryName, true);
388 // In C++, the previous declaration we find might be a tag type
389 // (class or enum). In this case, the new declaration will hide the
390 // tag type. Note that this does does not apply if we're declaring a
391 // typedef (C++ [dcl.typedef]p4).
392 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
393 PrevDecl = 0;
394 bool Redeclaration = false;
395 bool OverloadableAttrRequired = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000396 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration,
397 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000398
399 if (!Method->isInvalidDecl() || !PrevDecl)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000400 Owner->addDecl(Method);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000401 return Method;
402}
403
Douglas Gregor615c5d42009-03-24 16:43:20 +0000404Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000405 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000406 Sema::LocalInstantiationScope Scope(SemaRef);
407
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000408 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor615c5d42009-03-24 16:43:20 +0000409 QualType T = InstantiateFunctionType(D, Params);
410 if (T.isNull())
411 return 0;
412
413 // Build the instantiated method declaration.
414 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
415 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
416 DeclarationName Name
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000417 = SemaRef.Context.DeclarationNames.getCXXConstructorName(
418 SemaRef.Context.getCanonicalType(ClassTy));
Douglas Gregor615c5d42009-03-24 16:43:20 +0000419 CXXConstructorDecl *Constructor
420 = CXXConstructorDecl::Create(SemaRef.Context, Record, D->getLocation(),
421 Name, T, D->isExplicit(), D->isInline(),
422 false);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000423 Constructor->setInstantiationOfMemberFunction(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000424
425 // Attach the parameters
426 for (unsigned P = 0; P < Params.size(); ++P)
427 Params[P]->setOwningFunction(Constructor);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000428 Constructor->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor615c5d42009-03-24 16:43:20 +0000429
430 if (InitMethodInstantiation(Constructor, D))
431 Constructor->setInvalidDecl();
432
433 NamedDecl *PrevDecl
434 = SemaRef.LookupQualifiedName(Owner, Name, Sema::LookupOrdinaryName, true);
435
436 // In C++, the previous declaration we find might be a tag type
437 // (class or enum). In this case, the new declaration will hide the
438 // tag type. Note that this does does not apply if we're declaring a
439 // typedef (C++ [dcl.typedef]p4).
440 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
441 PrevDecl = 0;
442 bool Redeclaration = false;
443 bool OverloadableAttrRequired = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000444 SemaRef.CheckFunctionDeclaration(Constructor, PrevDecl, Redeclaration,
445 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000446
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000447 Record->addedConstructor(SemaRef.Context, Constructor);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000448 Owner->addDecl(Constructor);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000449 return Constructor;
450}
451
Douglas Gregor03b2b072009-03-24 00:15:49 +0000452Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000453 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000454 Sema::LocalInstantiationScope Scope(SemaRef);
455
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000456 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregor5545e162009-03-24 00:38:23 +0000457 QualType T = InstantiateFunctionType(D, Params);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000458 if (T.isNull())
459 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +0000460 assert(Params.size() == 0 && "Destructor with parameters?");
461
Douglas Gregor03b2b072009-03-24 00:15:49 +0000462 // Build the instantiated destructor declaration.
463 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregor49f25ec2009-05-15 21:18:27 +0000464 QualType ClassTy =
465 SemaRef.Context.getCanonicalType(SemaRef.Context.getTypeDeclType(Record));
Douglas Gregor03b2b072009-03-24 00:15:49 +0000466 CXXDestructorDecl *Destructor
467 = CXXDestructorDecl::Create(SemaRef.Context, Record,
468 D->getLocation(),
469 SemaRef.Context.DeclarationNames.getCXXDestructorName(ClassTy),
470 T, D->isInline(), false);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000471 Destructor->setInstantiationOfMemberFunction(D);
Douglas Gregor5545e162009-03-24 00:38:23 +0000472 if (InitMethodInstantiation(Destructor, D))
473 Destructor->setInvalidDecl();
Douglas Gregor03b2b072009-03-24 00:15:49 +0000474
475 bool Redeclaration = false;
476 bool OverloadableAttrRequired = false;
477 NamedDecl *PrevDecl = 0;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000478 SemaRef.CheckFunctionDeclaration(Destructor, PrevDecl, Redeclaration,
479 /*FIXME:*/OverloadableAttrRequired);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000480 Owner->addDecl(Destructor);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000481 return Destructor;
482}
483
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000484Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000485 // FIXME: Look for existing, explicit specializations.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000486 Sema::LocalInstantiationScope Scope(SemaRef);
487
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000488 llvm::SmallVector<ParmVarDecl *, 4> Params;
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000489 QualType T = InstantiateFunctionType(D, Params);
490 if (T.isNull())
491 return 0;
492 assert(Params.size() == 0 && "Destructor with parameters?");
493
494 // Build the instantiated conversion declaration.
495 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
496 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
497 QualType ConvTy
498 = SemaRef.Context.getCanonicalType(T->getAsFunctionType()->getResultType());
499 CXXConversionDecl *Conversion
500 = CXXConversionDecl::Create(SemaRef.Context, Record,
501 D->getLocation(),
502 SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(ConvTy),
503 T, D->isInline(), D->isExplicit());
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000504 Conversion->setInstantiationOfMemberFunction(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000505 if (InitMethodInstantiation(Conversion, D))
506 Conversion->setInvalidDecl();
507
508 bool Redeclaration = false;
509 bool OverloadableAttrRequired = false;
510 NamedDecl *PrevDecl = 0;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000511 SemaRef.CheckFunctionDeclaration(Conversion, PrevDecl, Redeclaration,
512 /*FIXME:*/OverloadableAttrRequired);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000513 Owner->addDecl(Conversion);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000514 return Conversion;
515}
516
Douglas Gregor6477b692009-03-25 15:04:13 +0000517ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000518 QualType OrigT = SemaRef.InstantiateType(D->getOriginalType(), TemplateArgs,
Douglas Gregor7e063902009-05-11 23:53:27 +0000519 D->getLocation(), D->getDeclName());
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000520 if (OrigT.isNull())
521 return 0;
522
523 QualType T = SemaRef.adjustParameterType(OrigT);
524
525 if (D->getDefaultArg()) {
526 // FIXME: Leave a marker for "uninstantiated" default
527 // arguments. They only get instantiated on demand at the call
528 // site.
529 unsigned DiagID = SemaRef.Diags.getCustomDiagID(Diagnostic::Warning,
530 "sorry, dropping default argument during template instantiation");
531 SemaRef.Diag(D->getDefaultArg()->getSourceRange().getBegin(), DiagID)
532 << D->getDefaultArg()->getSourceRange();
533 }
534
535 // Allocate the parameter
536 ParmVarDecl *Param = 0;
537 if (T == OrigT)
538 Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
539 D->getIdentifier(), T, D->getStorageClass(),
540 0);
541 else
542 Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner,
543 D->getLocation(), D->getIdentifier(),
544 T, OrigT, D->getStorageClass(), 0);
545
546 // Note: we don't try to instantiate function parameters until after
547 // we've instantiated the function's type. Therefore, we don't have
548 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000549 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000550 return Param;
551}
552
553Decl *
554TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
555 // Since parameter types can decay either before or after
556 // instantiation, we simply treat OriginalParmVarDecls as
557 // ParmVarDecls the same way, and create one or the other depending
558 // on what happens after template instantiation.
559 return VisitParmVarDecl(D);
560}
561
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000562Decl *Sema::InstantiateDecl(Decl *D, DeclContext *Owner,
Douglas Gregor7e063902009-05-11 23:53:27 +0000563 const TemplateArgumentList &TemplateArgs) {
564 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000565 return Instantiator.Visit(D);
566}
567
Douglas Gregor5545e162009-03-24 00:38:23 +0000568/// \brief Instantiates the type of the given function, including
569/// instantiating all of the function parameters.
570///
571/// \param D The function that we will be instantiated
572///
573/// \param Params the instantiated parameter declarations
574
575/// \returns the instantiated function's type if successfull, a NULL
576/// type if there was an error.
577QualType
578TemplateDeclInstantiator::InstantiateFunctionType(FunctionDecl *D,
579 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
580 bool InvalidDecl = false;
581
582 // Instantiate the function parameters
Douglas Gregor7e063902009-05-11 23:53:27 +0000583 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000584 llvm::SmallVector<QualType, 4> ParamTys;
Douglas Gregor5545e162009-03-24 00:38:23 +0000585 for (FunctionDecl::param_iterator P = D->param_begin(),
586 PEnd = D->param_end();
587 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +0000588 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +0000589 if (PInst->getType()->isVoidType()) {
590 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
591 PInst->setInvalidDecl();
592 }
593 else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
594 PInst->getType(),
595 diag::err_abstract_type_in_decl,
Anders Carlsson8211eff2009-03-24 01:19:16 +0000596 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +0000597 PInst->setInvalidDecl();
598
599 Params.push_back(PInst);
600 ParamTys.push_back(PInst->getType());
601
602 if (PInst->isInvalidDecl())
603 InvalidDecl = true;
604 } else
605 InvalidDecl = true;
606 }
607
608 // FIXME: Deallocate dead declarations.
609 if (InvalidDecl)
610 return QualType();
611
612 const FunctionProtoType *Proto = D->getType()->getAsFunctionProtoType();
613 assert(Proto && "Missing prototype?");
614 QualType ResultType
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000615 = SemaRef.InstantiateType(Proto->getResultType(), TemplateArgs,
Douglas Gregor5545e162009-03-24 00:38:23 +0000616 D->getLocation(), D->getDeclName());
617 if (ResultType.isNull())
618 return QualType();
619
Jay Foadbeaaccd2009-05-21 09:52:38 +0000620 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +0000621 Proto->isVariadic(), Proto->getTypeQuals(),
622 D->getLocation(), D->getDeclName());
623}
624
Douglas Gregore53060f2009-06-25 22:08:12 +0000625/// \brief Initializes the common fields of an instantiation function
626/// declaration (New) from the corresponding fields of its template (Tmpl).
627///
628/// \returns true if there was an error
629bool
630TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
631 FunctionDecl *Tmpl) {
632 if (Tmpl->isDeleted())
633 New->setDeleted();
Douglas Gregorcca9e962009-07-01 22:01:06 +0000634
635 // If we are performing substituting explicitly-specified template arguments
636 // or deduced template arguments into a function template and we reach this
637 // point, we are now past the point where SFINAE applies and have committed
638 // to keeping the new function template specialization. We therefore
639 // convert the active template instantiation for the function template
640 // into a template instantiation for this specific function template
641 // specialization, which is not a SFINAE context, so that we diagnose any
642 // further errors in the declaration itself.
643 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
644 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
645 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
646 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
647 if (FunctionTemplateDecl *FunTmpl
648 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
649 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
650 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +0000651 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000652 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
653 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
654 }
655 }
656
Douglas Gregore53060f2009-06-25 22:08:12 +0000657 return false;
658}
659
Douglas Gregor5545e162009-03-24 00:38:23 +0000660/// \brief Initializes common fields of an instantiated method
661/// declaration (New) from the corresponding fields of its template
662/// (Tmpl).
663///
664/// \returns true if there was an error
665bool
666TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
667 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +0000668 if (InitFunctionInstantiation(New, Tmpl))
669 return true;
670
Douglas Gregor5545e162009-03-24 00:38:23 +0000671 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
672 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +0000673 if (Tmpl->isVirtualAsWritten()) {
674 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +0000675 Record->setAggregate(false);
676 Record->setPOD(false);
677 Record->setPolymorphic(true);
678 }
Douglas Gregor5545e162009-03-24 00:38:23 +0000679 if (Tmpl->isPure()) {
680 New->setPure();
681 Record->setAbstract(true);
682 }
683
684 // FIXME: attributes
685 // FIXME: New needs a pointer to Tmpl
686 return false;
687}
Douglas Gregora58861f2009-05-13 20:28:22 +0000688
689/// \brief Instantiate the definition of the given function from its
690/// template.
691///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000692/// \param PointOfInstantiation the point at which the instantiation was
693/// required. Note that this is not precisely a "point of instantiation"
694/// for the function, but it's close.
695///
Douglas Gregora58861f2009-05-13 20:28:22 +0000696/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000697/// function template specialization or member function of a class template
698/// specialization.
699///
700/// \param Recursive if true, recursively instantiates any functions that
701/// are required by this instantiation.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000702void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000703 FunctionDecl *Function,
704 bool Recursive) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000705 if (Function->isInvalidDecl())
706 return;
707
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000708 assert(!Function->getBody() && "Already instantiated!");
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000709
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000710 // Find the function body that we'll be substituting.
Douglas Gregor1637be72009-06-26 00:10:03 +0000711 const FunctionDecl *PatternDecl = 0;
712 if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate())
713 PatternDecl = Primary->getTemplatedDecl();
714 else
715 PatternDecl = Function->getInstantiatedFromMemberFunction();
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000716 Stmt *Pattern = 0;
717 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000718 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +0000719
720 if (!Pattern)
721 return;
722
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000723 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
724 if (Inst)
725 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000726
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000727 // If we're performing recursive template instantiation, create our own
728 // queue of pending implicit instantiations that we will instantiate later,
729 // while we're still within our own instantiation context.
730 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
731 if (Recursive)
732 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
733
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000734 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
735
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000736 // Introduce a new scope where local variable instantiations will be
737 // recorded.
738 LocalInstantiationScope Scope(*this);
739
740 // Introduce the instantiated function parameters into the local
741 // instantiation scope.
742 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
743 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
744 Function->getParamDecl(I));
745
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000746 // Enter the scope of this instantiation. We don't use
747 // PushDeclContext because we don't have a scope.
748 DeclContext *PreviousContext = CurContext;
749 CurContext = Function;
750
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000751 // Instantiate the function body.
752 OwningStmtResult Body
753 = InstantiateStmt(Pattern, getTemplateInstantiationArgs(Function));
Douglas Gregore2c31ff2009-05-15 17:59:04 +0000754
755 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
756 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000757
758 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +0000759
760 DeclGroupRef DG(Function);
761 Consumer.HandleTopLevelDecl(DG);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000762
763 if (Recursive) {
764 // Instantiate any pending implicit instantiations found during the
765 // instantiation of this template.
766 PerformPendingImplicitInstantiations();
767
768 // Restore the set of pending implicit instantiations.
769 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
770 }
Douglas Gregora58861f2009-05-13 20:28:22 +0000771}
772
773/// \brief Instantiate the definition of the given variable from its
774/// template.
775///
776/// \param Var the already-instantiated declaration of a variable.
777void Sema::InstantiateVariableDefinition(VarDecl *Var) {
778 // FIXME: Implement this!
779}
Douglas Gregor815215d2009-05-27 05:35:12 +0000780
781static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
782 if (D->getKind() != Other->getKind())
783 return false;
784
785 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +0000786 return Record->getInstantiatedFromMemberClass()->getCanonicalDecl()
787 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +0000788
789 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +0000790 return Function->getInstantiatedFromMemberFunction()->getCanonicalDecl()
791 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +0000792
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000793 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +0000794 return Enum->getInstantiatedFromMemberEnum()->getCanonicalDecl()
795 == D->getCanonicalDecl();
Douglas Gregor815215d2009-05-27 05:35:12 +0000796
797 // FIXME: How can we find instantiations of anonymous unions?
798
799 return D->getDeclName() && isa<NamedDecl>(Other) &&
800 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
801}
802
803template<typename ForwardIterator>
804static NamedDecl *findInstantiationOf(ASTContext &Ctx,
805 NamedDecl *D,
806 ForwardIterator first,
807 ForwardIterator last) {
808 for (; first != last; ++first)
809 if (isInstantiationOf(Ctx, D, *first))
810 return cast<NamedDecl>(*first);
811
812 return 0;
813}
814
Douglas Gregored961e72009-05-27 17:54:46 +0000815/// \brief Find the instantiation of the given declaration within the
816/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +0000817///
818/// This routine is intended to be used when \p D is a declaration
819/// referenced from within a template, that needs to mapped into the
820/// corresponding declaration within an instantiation. For example,
821/// given:
822///
823/// \code
824/// template<typename T>
825/// struct X {
826/// enum Kind {
827/// KnownValue = sizeof(T)
828/// };
829///
830/// bool getKind() const { return KnownValue; }
831/// };
832///
833/// template struct X<int>;
834/// \endcode
835///
836/// In the instantiation of X<int>::getKind(), we need to map the
837/// EnumConstantDecl for KnownValue (which refers to
838/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +0000839/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
840/// this mapping from within the instantiation of X<int>.
841NamedDecl * Sema::InstantiateCurrentDeclRef(NamedDecl *D) {
Douglas Gregor815215d2009-05-27 05:35:12 +0000842 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +0000843 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
844 // D is a local of some kind. Look into the map of local
845 // declarations to their instantiations.
846 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
847 }
Douglas Gregor815215d2009-05-27 05:35:12 +0000848
Douglas Gregor2bba76b2009-05-27 17:07:49 +0000849 if (NamedDecl *ParentDecl = dyn_cast<NamedDecl>(ParentDC)) {
Douglas Gregored961e72009-05-27 17:54:46 +0000850 ParentDecl = InstantiateCurrentDeclRef(ParentDecl);
Douglas Gregor815215d2009-05-27 05:35:12 +0000851 if (!ParentDecl)
852 return 0;
853
854 ParentDC = cast<DeclContext>(ParentDecl);
855 }
856
Douglas Gregor815215d2009-05-27 05:35:12 +0000857 if (ParentDC != D->getDeclContext()) {
858 // We performed some kind of instantiation in the parent context,
859 // so now we need to look into the instantiated parent context to
860 // find the instantiation of the declaration D.
861 NamedDecl *Result = 0;
862 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000863 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +0000864 Result = findInstantiationOf(Context, D, Found.first, Found.second);
865 } else {
866 // Since we don't have a name for the entity we're looking for,
867 // our only option is to walk through all of the declarations to
868 // find that name. This will occur in a few cases:
869 //
870 // - anonymous struct/union within a template
871 // - unnamed class/struct/union/enum within a template
872 //
873 // FIXME: Find a better way to find these instantiations!
874 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000875 ParentDC->decls_begin(),
876 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +0000877 }
878 assert(Result && "Unable to find instantiation of declaration!");
879 D = Result;
880 }
881
Douglas Gregor815215d2009-05-27 05:35:12 +0000882 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
Douglas Gregored961e72009-05-27 17:54:46 +0000883 if (ClassTemplateDecl *ClassTemplate
884 = Record->getDescribedClassTemplate()) {
885 // When the declaration D was parsed, it referred to the current
886 // instantiation. Therefore, look through the current context,
887 // which contains actual instantiations, to find the
888 // instantiation of the "current instantiation" that D refers
889 // to. Alternatively, we could just instantiate the
890 // injected-class-name with the current template arguments, but
891 // such an instantiation is far more expensive.
892 for (DeclContext *DC = CurContext; !DC->isFileContext();
893 DC = DC->getParent()) {
894 if (ClassTemplateSpecializationDecl *Spec
895 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +0000896 if (Spec->getSpecializedTemplate()->getCanonicalDecl()
897 == ClassTemplate->getCanonicalDecl())
Douglas Gregored961e72009-05-27 17:54:46 +0000898 return Spec;
899 }
900
901 assert(false &&
902 "Unable to find declaration for the current instantiation");
Douglas Gregor815215d2009-05-27 05:35:12 +0000903 }
904
905 return D;
906}
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000907
908/// \brief Performs template instantiation for all implicit template
909/// instantiations we have seen until this point.
910void Sema::PerformPendingImplicitInstantiations() {
911 while (!PendingImplicitInstantiations.empty()) {
912 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000913 PendingImplicitInstantiations.pop_front();
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000914
915 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first))
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000916 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +0000917 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000918
Douglas Gregor751f9a42009-06-30 15:47:41 +0000919 // FIXME: instantiate static member variables
Douglas Gregord7f37bf2009-06-22 23:06:13 +0000920 }
921}