blob: b8690f6eb287fe404095b0b1bb1305f35710d7bb [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//===----------------------------------------------------------------------===/
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000013#include "clang/Sema/Lookup.h"
John McCallf312b1e2010-08-26 23:41:50 +000014#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall7cd088e2010-08-24 07:21:54 +000015#include "clang/Sema/Template.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000016#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000020#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000021#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000022#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000023#include "clang/AST/TypeLoc.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025
26using namespace clang;
27
28namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000029 class TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000030 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000031 Sema &SemaRef;
32 DeclContext *Owner;
Douglas Gregord6350ae2009-08-28 20:31:08 +000033 const MultiLevelTemplateArgumentList &TemplateArgs;
Mike Stump1eb44332009-09-09 15:08:12 +000034
Douglas Gregor8dbc2692009-03-17 21:15:40 +000035 public:
Douglas Gregor8dbc2692009-03-17 21:15:40 +000036 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
Sean Hunt9a555912010-05-30 07:21:58 +000042 // clang/AST/DeclNodes.inc.
Douglas Gregor4f722be2009-03-25 15:45:12 +000043 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
44 Decl *VisitNamespaceDecl(NamespaceDecl *D);
John McCall3dbd3d52010-02-16 06:53:13 +000045 Decl *VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000046 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000047 Decl *VisitVarDecl(VarDecl *D);
Abramo Bagnara6206d532010-06-05 05:09:32 +000048 Decl *VisitAccessSpecDecl(AccessSpecDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000049 Decl *VisitFieldDecl(FieldDecl *D);
50 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
51 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000052 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000053 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregora735b202009-10-13 14:39:41 +000054 Decl *VisitFunctionDecl(FunctionDecl *D,
55 TemplateParameterList *TemplateParams = 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +000056 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000057 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
58 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000059 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000060 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000061 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000062 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000063 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000064 Decl *VisitClassTemplatePartialSpecializationDecl(
65 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000066 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000067 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor33642df2009-10-23 23:25:44 +000068 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Douglas Gregor9106ef72009-11-11 16:58:32 +000069 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Douglas Gregor48c32a72009-11-17 06:07:40 +000070 Decl *VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
John McCalled976492009-12-04 22:46:56 +000071 Decl *VisitUsingDecl(UsingDecl *D);
72 Decl *VisitUsingShadowDecl(UsingShadowDecl *D);
John McCall7ba107a2009-11-18 02:36:19 +000073 Decl *VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
74 Decl *VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000075
Douglas Gregor8dbc2692009-03-17 21:15:40 +000076 // Base case. FIXME: Remove once we can instantiate everything.
Douglas Gregor48c32a72009-11-17 06:07:40 +000077 Decl *VisitDecl(Decl *D) {
78 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
79 Diagnostic::Error,
80 "cannot instantiate %0 yet");
81 SemaRef.Diag(D->getLocation(), DiagID)
82 << D->getDeclKindName();
83
Douglas Gregor8dbc2692009-03-17 21:15:40 +000084 return 0;
85 }
Douglas Gregor5545e162009-03-24 00:38:23 +000086
87 // Helper functions for instantiating methods.
John McCall21ef0fa2010-03-11 09:03:00 +000088 TypeSourceInfo *SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000089 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000090 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000091 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000092
93 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000094 SubstTemplateParams(TemplateParameterList *List);
John McCallb6217662010-03-15 10:12:16 +000095
96 bool SubstQualifier(const DeclaratorDecl *OldDecl,
97 DeclaratorDecl *NewDecl);
98 bool SubstQualifier(const TagDecl *OldDecl,
99 TagDecl *NewDecl);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000100
101 bool InstantiateClassTemplatePartialSpecialization(
102 ClassTemplateDecl *ClassTemplate,
103 ClassTemplatePartialSpecializationDecl *PartialSpec);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000104 };
105}
106
John McCallb6217662010-03-15 10:12:16 +0000107bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
108 DeclaratorDecl *NewDecl) {
109 NestedNameSpecifier *OldQual = OldDecl->getQualifier();
110 if (!OldQual) return false;
111
112 SourceRange QualRange = OldDecl->getQualifierRange();
113
114 NestedNameSpecifier *NewQual
115 = SemaRef.SubstNestedNameSpecifier(OldQual, QualRange, TemplateArgs);
116 if (!NewQual)
117 return true;
118
119 NewDecl->setQualifierInfo(NewQual, QualRange);
120 return false;
121}
122
123bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
124 TagDecl *NewDecl) {
125 NestedNameSpecifier *OldQual = OldDecl->getQualifier();
126 if (!OldQual) return false;
127
128 SourceRange QualRange = OldDecl->getQualifierRange();
129
130 NestedNameSpecifier *NewQual
131 = SemaRef.SubstNestedNameSpecifier(OldQual, QualRange, TemplateArgs);
132 if (!NewQual)
133 return true;
134
135 NewDecl->setQualifierInfo(NewQual, QualRange);
136 return false;
137}
138
Chandler Carruth4ced79f2010-06-25 03:22:07 +0000139// FIXME: Is this still too simple?
John McCall1d8d1cc2010-08-01 02:01:53 +0000140void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
141 Decl *Tmpl, Decl *New) {
Sean Huntcf807c42010-08-18 23:23:40 +0000142 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
143 i != e; ++i) {
144 const Attr *TmplAttr = *i;
Chandler Carruth4ced79f2010-06-25 03:22:07 +0000145 // FIXME: This should be generalized to more than just the AlignedAttr.
146 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +0000147 if (Aligned->isAlignmentDependent()) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +0000148 // The alignment expression is not potentially evaluated.
John McCall1d8d1cc2010-08-01 02:01:53 +0000149 EnterExpressionEvaluationContext Unevaluated(*this,
John McCallf312b1e2010-08-26 23:41:50 +0000150 Sema::Unevaluated);
Chandler Carruth4ced79f2010-06-25 03:22:07 +0000151
Sean Huntcf807c42010-08-18 23:23:40 +0000152 if (Aligned->isAlignmentExpr()) {
John McCall60d7b3a2010-08-24 06:29:42 +0000153 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Sean Huntcf807c42010-08-18 23:23:40 +0000154 TemplateArgs);
155 if (!Result.isInvalid())
156 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
157 }
158 else {
159 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
160 TemplateArgs,
161 Aligned->getLocation(),
162 DeclarationName());
163 if (Result)
164 AddAlignedAttr(Aligned->getLocation(), New, Result);
165 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +0000166 continue;
167 }
168 }
169
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000170 // FIXME: Is cloning correct for all attributes?
John McCall1d8d1cc2010-08-01 02:01:53 +0000171 Attr *NewAttr = TmplAttr->clone(Context);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000172 New->addAttr(NewAttr);
173 }
174}
175
Douglas Gregor4f722be2009-03-25 15:45:12 +0000176Decl *
177TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
178 assert(false && "Translation units cannot be instantiated");
179 return D;
180}
181
182Decl *
183TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
184 assert(false && "Namespaces cannot be instantiated");
185 return D;
186}
187
John McCall3dbd3d52010-02-16 06:53:13 +0000188Decl *
189TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
190 NamespaceAliasDecl *Inst
191 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
192 D->getNamespaceLoc(),
193 D->getAliasLoc(),
194 D->getNamespace()->getIdentifier(),
195 D->getQualifierRange(),
196 D->getQualifier(),
197 D->getTargetNameLoc(),
198 D->getNamespace());
199 Owner->addDecl(Inst);
200 return Inst;
201}
202
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000203Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
204 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000205 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor836adf62010-05-24 17:22:01 +0000206 if (DI->getType()->isDependentType() ||
207 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000208 DI = SemaRef.SubstType(DI, TemplateArgs,
209 D->getLocation(), D->getDeclName());
210 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000211 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000212 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000213 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000214 } else {
215 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000216 }
Mike Stump1eb44332009-09-09 15:08:12 +0000217
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000218 // Create the new typedef
219 TypedefDecl *Typedef
220 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
John McCallba6a9bd2009-10-24 08:00:42 +0000221 D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000222 if (Invalid)
223 Typedef->setInvalidDecl();
224
Douglas Gregord57a38e2010-04-23 16:25:07 +0000225 if (const TagType *TT = DI->getType()->getAs<TagType>()) {
226 TagDecl *TD = TT->getDecl();
227
228 // If the TagDecl that the TypedefDecl points to is an anonymous decl
229 // keep track of the TypedefDecl.
230 if (!TD->getIdentifier() && !TD->getTypedefForAnonDecl())
231 TD->setTypedefForAnonDecl(Typedef);
232 }
233
John McCall5126fd02009-12-30 00:31:22 +0000234 if (TypedefDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000235 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
236 TemplateArgs);
John McCall5126fd02009-12-30 00:31:22 +0000237 Typedef->setPreviousDeclaration(cast<TypedefDecl>(InstPrev));
238 }
239
John McCall1d8d1cc2010-08-01 02:01:53 +0000240 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000241
John McCall46460a62010-01-20 21:53:11 +0000242 Typedef->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000243 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000245 return Typedef;
246}
247
Douglas Gregor6eef5192009-12-14 19:27:10 +0000248/// \brief Instantiate the arguments provided as part of initialization.
249///
250/// \returns true if an error occurred, false otherwise.
251static bool InstantiateInitializationArguments(Sema &SemaRef,
252 Expr **Args, unsigned NumArgs,
253 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallca0408f2010-08-23 06:44:23 +0000254 ASTOwningVector<Expr*> &InitArgs) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000255 for (unsigned I = 0; I != NumArgs; ++I) {
256 // When we hit the first defaulted argument, break out of the loop:
257 // we don't pass those default arguments on.
258 if (Args[I]->isDefaultArgument())
259 break;
260
John McCall60d7b3a2010-08-24 06:29:42 +0000261 ExprResult Arg = SemaRef.SubstExpr(Args[I], TemplateArgs);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000262 if (Arg.isInvalid())
263 return true;
264
Douglas Gregor6eef5192009-12-14 19:27:10 +0000265 InitArgs.push_back(Arg.release());
Douglas Gregor6eef5192009-12-14 19:27:10 +0000266 }
267
268 return false;
269}
270
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000271/// \brief Instantiate an initializer, breaking it into separate
272/// initialization arguments.
273///
274/// \param S The semantic analysis object.
275///
276/// \param Init The initializer to instantiate.
277///
278/// \param TemplateArgs Template arguments to be substituted into the
279/// initializer.
280///
281/// \param NewArgs Will be filled in with the instantiation arguments.
282///
283/// \returns true if an error occurred, false otherwise
284static bool InstantiateInitializer(Sema &S, Expr *Init,
285 const MultiLevelTemplateArgumentList &TemplateArgs,
286 SourceLocation &LParenLoc,
John McCallca0408f2010-08-23 06:44:23 +0000287 ASTOwningVector<Expr*> &NewArgs,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000288 SourceLocation &RParenLoc) {
289 NewArgs.clear();
290 LParenLoc = SourceLocation();
291 RParenLoc = SourceLocation();
292
293 if (!Init)
294 return false;
295
296 if (CXXExprWithTemporaries *ExprTemp = dyn_cast<CXXExprWithTemporaries>(Init))
297 Init = ExprTemp->getSubExpr();
298
299 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
300 Init = Binder->getSubExpr();
301
302 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
303 Init = ICE->getSubExprAsWritten();
304
305 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
306 LParenLoc = ParenList->getLParenLoc();
307 RParenLoc = ParenList->getRParenLoc();
308 return InstantiateInitializationArguments(S, ParenList->getExprs(),
309 ParenList->getNumExprs(),
Douglas Gregora1a04782010-09-09 16:33:13 +0000310 TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000311 }
312
313 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000314 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
315 if (InstantiateInitializationArguments(S,
316 Construct->getArgs(),
317 Construct->getNumArgs(),
Douglas Gregora1a04782010-09-09 16:33:13 +0000318 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000319 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000320
Douglas Gregor28329e52010-03-24 21:22:47 +0000321 // FIXME: Fake locations!
322 LParenLoc = S.PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000323 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000324 return false;
325 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000326 }
327
John McCall60d7b3a2010-08-24 06:29:42 +0000328 ExprResult Result = S.SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000329 if (Result.isInvalid())
330 return true;
331
332 NewArgs.push_back(Result.takeAs<Expr>());
333 return false;
334}
335
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000336Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000337 // If this is the variable for an anonymous struct or union,
338 // instantiate the anonymous struct/union type first.
339 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
340 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
341 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
342 return 0;
343
John McCallce3ff2b2009-08-25 22:02:44 +0000344 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000345 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000346 TemplateArgs,
347 D->getTypeSpecStartLoc(),
348 D->getDeclName());
349 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000350 return 0;
351
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000352 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000353 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
354 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000355 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000356 D->getStorageClass(),
357 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000358 Var->setThreadSpecified(D->isThreadSpecified());
359 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Mike Stump1eb44332009-09-09 15:08:12 +0000360
John McCallb6217662010-03-15 10:12:16 +0000361 // Substitute the nested name specifier, if any.
362 if (SubstQualifier(D, Var))
363 return 0;
364
Mike Stump1eb44332009-09-09 15:08:12 +0000365 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000366 // out-of-line, the instantiation will have the same lexical
367 // context (which will be a namespace scope) as the template.
368 if (D->isOutOfLine())
369 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000370
John McCall46460a62010-01-20 21:53:11 +0000371 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000372
373 if (!D->isStaticDataMember())
374 Var->setUsed(D->isUsed(false));
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000375
Mike Stump390b4cc2009-05-16 07:39:55 +0000376 // FIXME: In theory, we could have a previous declaration for variables that
377 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000378 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000379 // FIXME: having to fake up a LookupResult is dumb.
380 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000381 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000382 if (D->isStaticDataMember())
383 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000384 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Douglas Gregor7caa6822009-07-24 20:34:43 +0000386 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000387 if (!D->isStaticDataMember())
388 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000389 Owner->makeDeclVisibleInContext(Var);
390 } else {
391 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000392 if (Owner->isFunctionOrMethod())
393 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000394 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000395 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000396
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000397 // Link instantiations of static data members back to the template from
398 // which they were instantiated.
399 if (Var->isStaticDataMember())
400 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000401 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000402
Douglas Gregor60c93c92010-02-09 07:26:29 +0000403 if (Var->getAnyInitializer()) {
404 // We already have an initializer in the class.
405 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000406 if (Var->isStaticDataMember() && !D->isOutOfLine())
407 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
408 else
409 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
410
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000411 // Instantiate the initializer.
412 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000413 ASTOwningVector<Expr*> InitArgs(SemaRef);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000414 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
Douglas Gregora1a04782010-09-09 16:33:13 +0000415 InitArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000416 // Attach the initializer to the declaration.
417 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000418 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000419 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000420 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000421 move_arg(InitArgs),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000422 RParenLoc);
423 } else if (InitArgs.size() == 1) {
John McCall9ae2f072010-08-23 23:25:46 +0000424 Expr *Init = InitArgs.take()[0];
425 SemaRef.AddInitializerToDecl(Var, Init, false);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000426 } else {
427 assert(InitArgs.size() == 0);
John McCalld226f652010-08-21 09:40:31 +0000428 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000429 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000430 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000431 // FIXME: Not too happy about invalidating the declaration
432 // because of a bogus initializer.
433 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000434 }
435
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000436 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000437 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
John McCalld226f652010-08-21 09:40:31 +0000438 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000439
Douglas Gregor5764f612010-05-08 23:05:03 +0000440 // Diagnose unused local variables.
441 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed())
442 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000443
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000444 return Var;
445}
446
Abramo Bagnara6206d532010-06-05 05:09:32 +0000447Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
448 AccessSpecDecl* AD
449 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
450 D->getAccessSpecifierLoc(), D->getColonLoc());
451 Owner->addHiddenDecl(AD);
452 return AD;
453}
454
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000455Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
456 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000457 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor836adf62010-05-24 17:22:01 +0000458 if (DI->getType()->isDependentType() ||
459 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000460 DI = SemaRef.SubstType(DI, TemplateArgs,
461 D->getLocation(), D->getDeclName());
462 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000463 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000464 Invalid = true;
465 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000466 // C++ [temp.arg.type]p3:
467 // If a declaration acquires a function type through a type
468 // dependent on a template-parameter and this causes a
469 // declaration that does not use the syntactic form of a
470 // function declarator to have function type, the program is
471 // ill-formed.
472 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000473 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474 Invalid = true;
475 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000476 } else {
477 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000478 }
479
480 Expr *BitWidth = D->getBitWidth();
481 if (Invalid)
482 BitWidth = 0;
483 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000484 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000485 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000486
John McCall60d7b3a2010-08-24 06:29:42 +0000487 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000488 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000489 if (InstantiatedBitWidth.isInvalid()) {
490 Invalid = true;
491 BitWidth = 0;
492 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000493 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000494 }
495
John McCall07fb6be2009-10-22 23:33:21 +0000496 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
497 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000498 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000499 D->getLocation(),
500 D->isMutable(),
501 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000502 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000503 D->getAccess(),
504 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000505 if (!Field) {
506 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000507 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000508 }
Mike Stump1eb44332009-09-09 15:08:12 +0000509
John McCall1d8d1cc2010-08-01 02:01:53 +0000510 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000511
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000512 if (Invalid)
513 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000514
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000515 if (!Field->getDeclName()) {
516 // Keep track of where this decl came from.
517 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000518 }
519 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
520 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000521 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000522 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000523 }
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000525 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000526 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000527 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000528
529 return Field;
530}
531
John McCall02cace72009-08-28 07:59:38 +0000532Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000533 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000534 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000535 if (TypeSourceInfo *Ty = D->getFriendType()) {
536 TypeSourceInfo *InstTy =
537 SemaRef.SubstType(Ty, TemplateArgs,
538 D->getLocation(), DeclarationName());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000539 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000540 return 0;
John McCall02cace72009-08-28 07:59:38 +0000541
Douglas Gregor06245bf2010-04-07 17:57:12 +0000542 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
543 if (!FD)
544 return 0;
545
546 FD->setAccess(AS_public);
547 Owner->addDecl(FD);
548 return FD;
549 }
550
551 NamedDecl *ND = D->getFriendDecl();
552 assert(ND && "friend decl must be a decl or a type!");
553
John McCallaf2094e2010-04-08 09:05:18 +0000554 // All of the Visit implementations for the various potential friend
555 // declarations have to be carefully written to work for friend
556 // objects, with the most important detail being that the target
557 // decl should almost certainly not be placed in Owner.
558 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000559 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000560
John McCall02cace72009-08-28 07:59:38 +0000561 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000562 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
563 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000564 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000565 Owner->addDecl(FD);
566 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000567}
568
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000569Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
570 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Douglas Gregorac7610d2009-06-22 20:57:11 +0000572 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000573 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000574
John McCall60d7b3a2010-08-24 06:29:42 +0000575 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000576 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000577 if (InstantiatedAssertExpr.isInvalid())
578 return 0;
579
John McCall60d7b3a2010-08-24 06:29:42 +0000580 ExprResult Message(D->getMessage());
Douglas Gregor43d9d922009-08-08 01:41:12 +0000581 D->getMessage()->Retain();
John McCalld226f652010-08-21 09:40:31 +0000582 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000583 InstantiatedAssertExpr.get(),
584 Message.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000585}
586
587Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000588 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000589 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000590 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000591 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000592 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000593 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000594 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000595 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000596 Enum->startDefinition();
597
Douglas Gregor96084f12010-03-01 19:00:07 +0000598 if (D->getDeclContext()->isFunctionOrMethod())
599 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
600
John McCalld226f652010-08-21 09:40:31 +0000601 llvm::SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000602
603 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000604 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
605 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000606 EC != ECEnd; ++EC) {
607 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000608 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000609 if (Expr *UninstValue = EC->getInitExpr()) {
610 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000611 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000612 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000613
John McCallce3ff2b2009-08-25 22:02:44 +0000614 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000615 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000616
617 // Drop the initial value and continue.
618 bool isInvalid = false;
619 if (Value.isInvalid()) {
620 Value = SemaRef.Owned((Expr *)0);
621 isInvalid = true;
622 }
623
Mike Stump1eb44332009-09-09 15:08:12 +0000624 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000625 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
626 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000627 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000628
629 if (isInvalid) {
630 if (EnumConst)
631 EnumConst->setInvalidDecl();
632 Enum->setInvalidDecl();
633 }
634
635 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000636 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000637 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000638 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000639 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000640
641 if (D->getDeclContext()->isFunctionOrMethod()) {
642 // If the enumeration is within a function or method, record the enum
643 // constant as a local.
644 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
645 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000646 }
647 }
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000649 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000650 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000651 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000652 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000653 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000654 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000655
656 return Enum;
657}
658
Douglas Gregor6477b692009-03-25 15:04:13 +0000659Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
660 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
661 return 0;
662}
663
John McCalle29ba202009-08-20 01:44:21 +0000664Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000665 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
666
Douglas Gregor550d9b22009-10-31 17:21:17 +0000667 // Create a local instantiation scope for this class template, which
668 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000669 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000670 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000671 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000672 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000673 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000674
675 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000676
677 // Instantiate the qualifier. We have to do this first in case
678 // we're a friend declaration, because if we are then we need to put
679 // the new declaration in the appropriate context.
680 NestedNameSpecifier *Qualifier = Pattern->getQualifier();
681 if (Qualifier) {
682 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
683 Pattern->getQualifierRange(),
684 TemplateArgs);
685 if (!Qualifier) return 0;
686 }
687
688 CXXRecordDecl *PrevDecl = 0;
689 ClassTemplateDecl *PrevClassTemplate = 0;
690
691 // If this isn't a friend, then it's a member template, in which
692 // case we just want to build the instantiation in the
693 // specialization. If it is a friend, we want to build it in
694 // the appropriate context.
695 DeclContext *DC = Owner;
696 if (isFriend) {
697 if (Qualifier) {
698 CXXScopeSpec SS;
699 SS.setScopeRep(Qualifier);
700 SS.setRange(Pattern->getQualifierRange());
701 DC = SemaRef.computeDeclContext(SS);
702 if (!DC) return 0;
703 } else {
704 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
705 Pattern->getDeclContext(),
706 TemplateArgs);
707 }
708
709 // Look for a previous declaration of the template in the owning
710 // context.
711 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
712 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
713 SemaRef.LookupQualifiedName(R, DC);
714
715 if (R.isSingleResult()) {
716 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
717 if (PrevClassTemplate)
718 PrevDecl = PrevClassTemplate->getTemplatedDecl();
719 }
720
721 if (!PrevClassTemplate && Qualifier) {
722 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000723 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
724 << Pattern->getQualifierRange();
John McCall93ba8572010-03-25 06:39:04 +0000725 return 0;
726 }
727
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000728 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000729 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000730 bool Complain = true;
731
732 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
733 // template for struct std::tr1::__detail::_Map_base, where the
734 // template parameters of the friend declaration don't match the
735 // template parameters of the original declaration. In this one
736 // case, we don't complain about the ill-formed friend
737 // declaration.
738 if (isFriend && Pattern->getIdentifier() &&
739 Pattern->getIdentifier()->isStr("_Map_base") &&
740 DC->isNamespace() &&
741 cast<NamespaceDecl>(DC)->getIdentifier() &&
742 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
743 DeclContext *DCParent = DC->getParent();
744 if (DCParent->isNamespace() &&
745 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
746 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
747 DeclContext *DCParent2 = DCParent->getParent();
748 if (DCParent2->isNamespace() &&
749 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
750 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
751 DCParent2->getParent()->isTranslationUnit())
752 Complain = false;
753 }
754 }
755
John McCall93ba8572010-03-25 06:39:04 +0000756 TemplateParameterList *PrevParams
757 = PrevClassTemplate->getTemplateParameters();
758
759 // Make sure the parameter lists match.
760 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000761 Complain,
762 Sema::TPL_TemplateMatch)) {
763 if (Complain)
764 return 0;
765
766 AdoptedPreviousTemplateParams = true;
767 InstParams = PrevParams;
768 }
John McCall93ba8572010-03-25 06:39:04 +0000769
770 // Do some additional validation, then merge default arguments
771 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000772 if (!AdoptedPreviousTemplateParams &&
773 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000774 Sema::TPC_ClassTemplate))
775 return 0;
776 }
777 }
778
John McCalle29ba202009-08-20 01:44:21 +0000779 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000780 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000781 Pattern->getLocation(), Pattern->getIdentifier(),
John McCall93ba8572010-03-25 06:39:04 +0000782 Pattern->getTagKeywordLoc(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000783 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000784
John McCall93ba8572010-03-25 06:39:04 +0000785 if (Qualifier)
786 RecordInst->setQualifierInfo(Qualifier, Pattern->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000787
John McCalle29ba202009-08-20 01:44:21 +0000788 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000789 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
790 D->getIdentifier(), InstParams, RecordInst,
791 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000792 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000793
John McCall93ba8572010-03-25 06:39:04 +0000794 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000795 if (PrevClassTemplate)
796 Inst->setAccess(PrevClassTemplate->getAccess());
797 else
798 Inst->setAccess(D->getAccess());
799
John McCall93ba8572010-03-25 06:39:04 +0000800 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
801 // TODO: do we want to track the instantiation progeny of this
802 // friend target decl?
803 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000804 Inst->setAccess(D->getAccess());
John McCall93ba8572010-03-25 06:39:04 +0000805 Inst->setInstantiatedFromMemberTemplate(D);
806 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000807
808 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000809 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000810 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000811
Douglas Gregor259571e2009-10-30 22:42:42 +0000812 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000813 if (isFriend) {
814 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000815 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000816 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000817
John McCalle29ba202009-08-20 01:44:21 +0000818 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000819
Douglas Gregored9c0f92009-10-29 00:04:11 +0000820 // Instantiate all of the partial specializations of this member class
821 // template.
Douglas Gregordc60c1e2010-04-30 05:56:50 +0000822 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
823 D->getPartialSpecializations(PartialSpecs);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000824 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
825 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
826
John McCalle29ba202009-08-20 01:44:21 +0000827 return Inst;
828}
829
Douglas Gregord60e1052009-08-27 16:57:43 +0000830Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000831TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
832 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000833 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
834
835 // Lookup the already-instantiated declaration in the instantiation
836 // of the class template and return that.
837 DeclContext::lookup_result Found
838 = Owner->lookup(ClassTemplate->getDeclName());
839 if (Found.first == Found.second)
840 return 0;
841
842 ClassTemplateDecl *InstClassTemplate
843 = dyn_cast<ClassTemplateDecl>(*Found.first);
844 if (!InstClassTemplate)
845 return 0;
846
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +0000847 return InstClassTemplate->findPartialSpecInstantiatedFromMember(D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000848}
849
850Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000851TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000852 // Create a local instantiation scope for this function template, which
853 // will contain the instantiations of the template parameters and then get
854 // merged with the local instantiation scope for the function template
855 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000856 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000857
Douglas Gregord60e1052009-08-27 16:57:43 +0000858 TemplateParameterList *TempParams = D->getTemplateParameters();
859 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000860 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000861 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000862
Douglas Gregora735b202009-10-13 14:39:41 +0000863 FunctionDecl *Instantiated = 0;
864 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
865 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
866 InstParams));
867 else
868 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
869 D->getTemplatedDecl(),
870 InstParams));
871
872 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000873 return 0;
874
John McCall46460a62010-01-20 21:53:11 +0000875 Instantiated->setAccess(D->getAccess());
876
Mike Stump1eb44332009-09-09 15:08:12 +0000877 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000878 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000879 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000880 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000881 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000882 assert(InstTemplate &&
883 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000884
John McCallb1a56e72010-03-26 23:10:15 +0000885 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
886
John McCalle976ffe2009-12-14 23:19:40 +0000887 // Link the instantiation back to the pattern *unless* this is a
888 // non-definition friend declaration.
889 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000890 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000891 InstTemplate->setInstantiatedFromMemberTemplate(D);
892
John McCallb1a56e72010-03-26 23:10:15 +0000893 // Make declarations visible in the appropriate context.
894 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000895 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000896
Douglas Gregord60e1052009-08-27 16:57:43 +0000897 return InstTemplate;
898}
899
Douglas Gregord475b8d2009-03-25 21:17:03 +0000900Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
901 CXXRecordDecl *PrevDecl = 0;
902 if (D->isInjectedClassName())
903 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000904 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000905 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
906 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000907 TemplateArgs);
908 if (!Prev) return 0;
909 PrevDecl = cast<CXXRecordDecl>(Prev);
910 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000911
912 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000913 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000914 D->getLocation(), D->getIdentifier(),
915 D->getTagKeywordLoc(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000916
917 // Substitute the nested name specifier, if any.
918 if (SubstQualifier(D, Record))
919 return 0;
920
Douglas Gregord475b8d2009-03-25 21:17:03 +0000921 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000922 // FIXME: Check against AS_none is an ugly hack to work around the issue that
923 // the tag decls introduced by friend class declarations don't have an access
924 // specifier. Remove once this area of the code gets sorted out.
925 if (D->getAccess() != AS_none)
926 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000927 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000928 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000929
John McCall02cace72009-08-28 07:59:38 +0000930 // If the original function was part of a friend declaration,
931 // inherit its namespace state.
932 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
933 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
934
Douglas Gregor9901c572010-05-21 00:31:19 +0000935 // Make sure that anonymous structs and unions are recorded.
936 if (D->isAnonymousStructOrUnion()) {
937 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000938 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000939 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
940 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000941
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000942 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000943 return Record;
944}
945
John McCall02cace72009-08-28 07:59:38 +0000946/// Normal class members are of more specific types and therefore
947/// don't make it here. This function serves two purposes:
948/// 1) instantiating function templates
949/// 2) substituting friend declarations
950/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000951Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000952 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000953 // Check whether there is already a function template specialization for
954 // this declaration.
955 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
956 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000957 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +0000958 std::pair<const TemplateArgument *, unsigned> Innermost
959 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +0000960
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000961 FunctionDecl *SpecFunc
962 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
963 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000964
Douglas Gregor127102b2009-06-29 20:59:39 +0000965 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000966 if (SpecFunc)
967 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +0000968 }
Mike Stump1eb44332009-09-09 15:08:12 +0000969
John McCallb0cb0222010-03-27 05:57:59 +0000970 bool isFriend;
971 if (FunctionTemplate)
972 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
973 else
974 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
975
Douglas Gregor79c22782010-01-16 20:21:20 +0000976 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +0000977 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +0000978 !(isa<Decl>(Owner) &&
979 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +0000980 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000981
Douglas Gregore53060f2009-06-25 22:08:12 +0000982 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000983 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
984 TInfo = SubstFunctionType(D, Params);
985 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000986 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000987 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000988
John McCalld325daa2010-03-26 04:53:08 +0000989 NestedNameSpecifier *Qualifier = D->getQualifier();
990 if (Qualifier) {
991 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
992 D->getQualifierRange(),
993 TemplateArgs);
994 if (!Qualifier) return 0;
995 }
996
John McCall68b6b872010-02-06 01:50:47 +0000997 // If we're instantiating a local function declaration, put the result
998 // in the owner; otherwise we need to find the instantiated context.
999 DeclContext *DC;
1000 if (D->getDeclContext()->isFunctionOrMethod())
1001 DC = Owner;
John McCalld325daa2010-03-26 04:53:08 +00001002 else if (isFriend && Qualifier) {
1003 CXXScopeSpec SS;
1004 SS.setScopeRep(Qualifier);
1005 SS.setRange(D->getQualifierRange());
1006 DC = SemaRef.computeDeclContext(SS);
1007 if (!DC) return 0;
1008 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001009 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1010 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001011 }
John McCall68b6b872010-02-06 01:50:47 +00001012
John McCall02cace72009-08-28 07:59:38 +00001013 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +00001014 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001015 D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001016 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001017 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +00001018
John McCalld325daa2010-03-26 04:53:08 +00001019 if (Qualifier)
1020 Function->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +00001021
John McCallb1a56e72010-03-26 23:10:15 +00001022 DeclContext *LexicalDC = Owner;
1023 if (!isFriend && D->isOutOfLine()) {
1024 assert(D->getDeclContext()->isFileContext());
1025 LexicalDC = D->getDeclContext();
1026 }
1027
1028 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001029
Douglas Gregore53060f2009-06-25 22:08:12 +00001030 // Attach the parameters
1031 for (unsigned P = 0; P < Params.size(); ++P)
1032 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +00001033 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +00001034
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001035 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001036 if (TemplateParams) {
1037 // Our resulting instantiation is actually a function template, since we
1038 // are substituting only the outer template parameters. For example, given
1039 //
1040 // template<typename T>
1041 // struct X {
1042 // template<typename U> friend void f(T, U);
1043 // };
1044 //
1045 // X<int> x;
1046 //
1047 // We are instantiating the friend function template "f" within X<int>,
1048 // which means substituting int for T, but leaving "f" as a friend function
1049 // template.
1050 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001051 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001052 Function->getLocation(),
1053 Function->getDeclName(),
1054 TemplateParams, Function);
1055 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001056
1057 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001058
1059 if (isFriend && D->isThisDeclarationADefinition()) {
1060 // TODO: should we remember this connection regardless of whether
1061 // the friend declaration provided a body?
1062 FunctionTemplate->setInstantiatedFromMemberTemplate(
1063 D->getDescribedFunctionTemplate());
1064 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001065 } else if (FunctionTemplate) {
1066 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001067 std::pair<const TemplateArgument *, unsigned> Innermost
1068 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001069 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor24bae922010-07-08 18:37:38 +00001070 new (SemaRef.Context) TemplateArgumentList(SemaRef.Context,
1071 Innermost.first,
1072 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001073 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001074 } else if (isFriend && D->isThisDeclarationADefinition()) {
1075 // TODO: should we remember this connection regardless of whether
1076 // the friend declaration provided a body?
1077 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001078 }
Douglas Gregora735b202009-10-13 14:39:41 +00001079
Douglas Gregore53060f2009-06-25 22:08:12 +00001080 if (InitFunctionInstantiation(Function, D))
1081 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001082
Douglas Gregore53060f2009-06-25 22:08:12 +00001083 bool Redeclaration = false;
1084 bool OverloadableAttrRequired = false;
John McCallaf2094e2010-04-08 09:05:18 +00001085 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001086
John McCall68263142009-11-18 22:49:29 +00001087 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1088 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1089
John McCallaf2094e2010-04-08 09:05:18 +00001090 if (DependentFunctionTemplateSpecializationInfo *Info
1091 = D->getDependentSpecializationInfo()) {
1092 assert(isFriend && "non-friend has dependent specialization info?");
1093
1094 // This needs to be set now for future sanity.
1095 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1096
1097 // Instantiate the explicit template arguments.
1098 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1099 Info->getRAngleLoc());
1100 for (unsigned I = 0, E = Info->getNumTemplateArgs(); I != E; ++I) {
1101 TemplateArgumentLoc Loc;
1102 if (SemaRef.Subst(Info->getTemplateArg(I), Loc, TemplateArgs))
1103 return 0;
1104
1105 ExplicitArgs.addArgument(Loc);
1106 }
1107
1108 // Map the candidate templates to their instantiations.
1109 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1110 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1111 Info->getTemplate(I),
1112 TemplateArgs);
1113 if (!Temp) return 0;
1114
1115 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1116 }
1117
1118 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1119 &ExplicitArgs,
1120 Previous))
1121 Function->setInvalidDecl();
1122
1123 isExplicitSpecialization = true;
1124
1125 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001126 // Look only into the namespace where the friend would be declared to
1127 // find a previous declaration. This is the innermost enclosing namespace,
1128 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001129 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001130
Douglas Gregora735b202009-10-13 14:39:41 +00001131 // In C++, the previous declaration we find might be a tag type
1132 // (class or enum). In this case, the new declaration will hide the
1133 // tag type. Note that this does does not apply if we're declaring a
1134 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001135 if (Previous.isSingleTagDecl())
1136 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001137 }
1138
John McCall9f54ad42009-12-10 09:41:52 +00001139 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
John McCallaf2094e2010-04-08 09:05:18 +00001140 isExplicitSpecialization, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +00001141 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001142
John McCall76d32642010-04-24 01:30:58 +00001143 NamedDecl *PrincipalDecl = (TemplateParams
1144 ? cast<NamedDecl>(FunctionTemplate)
1145 : Function);
1146
Douglas Gregora735b202009-10-13 14:39:41 +00001147 // If the original function was part of a friend declaration,
1148 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001149 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001150 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001151 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001152 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001153 else
Douglas Gregora735b202009-10-13 14:39:41 +00001154 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001155
1156 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1157 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001158
Gabor Greif77535df2010-08-30 22:25:56 +00001159 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001160
Douglas Gregor238058c2010-05-18 05:45:02 +00001161 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1162 D->isThisDeclarationADefinition()) {
1163 // Check for a function body.
1164 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001165 if (Function->hasBody(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001166 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1167 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1168 << Function->getDeclName();
1169 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1170 Function->setInvalidDecl();
1171 }
1172 // Check for redefinitions due to other instantiations of this or
1173 // a similar friend function.
1174 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1175 REnd = Function->redecls_end();
1176 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001177 if (*R == Function)
1178 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001179 switch (R->getFriendObjectKind()) {
1180 case Decl::FOK_None:
1181 if (!queuedInstantiation && R->isUsed(false)) {
1182 if (MemberSpecializationInfo *MSInfo
1183 = Function->getMemberSpecializationInfo()) {
1184 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1185 SourceLocation Loc = R->getLocation(); // FIXME
1186 MSInfo->setPointOfInstantiation(Loc);
1187 SemaRef.PendingLocalImplicitInstantiations.push_back(
1188 std::make_pair(Function, Loc));
1189 queuedInstantiation = true;
1190 }
1191 }
1192 }
1193 break;
1194 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001195 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001196 = R->getTemplateInstantiationPattern())
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001197 if (RPattern->hasBody(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001198 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1199 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001200 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001201 Function->setInvalidDecl();
1202 break;
1203 }
1204 }
1205 }
1206 }
Douglas Gregora735b202009-10-13 14:39:41 +00001207 }
1208
John McCall76d32642010-04-24 01:30:58 +00001209 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1210 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1211 PrincipalDecl->setNonMemberOperator();
1212
Douglas Gregore53060f2009-06-25 22:08:12 +00001213 return Function;
1214}
1215
Douglas Gregord60e1052009-08-27 16:57:43 +00001216Decl *
1217TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1218 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001219 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1220 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001221 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001222 // We are creating a function template specialization from a function
1223 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001224 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001225 std::pair<const TemplateArgument *, unsigned> Innermost
1226 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001228 FunctionDecl *SpecFunc
1229 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1230 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001231
Douglas Gregor6b906862009-08-21 00:16:32 +00001232 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001233 if (SpecFunc)
1234 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001235 }
1236
John McCallb0cb0222010-03-27 05:57:59 +00001237 bool isFriend;
1238 if (FunctionTemplate)
1239 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1240 else
1241 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1242
Douglas Gregor79c22782010-01-16 20:21:20 +00001243 bool MergeWithParentScope = (TemplateParams != 0) ||
1244 !(isa<Decl>(Owner) &&
1245 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001246 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001247
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001248 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001249 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1250 TInfo = SubstFunctionType(D, Params);
1251 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001252 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001253 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001254
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001255 // \brief If the type of this function is not *directly* a function
1256 // type, then we're instantiating the a function that was declared
1257 // via a typedef, e.g.,
1258 //
1259 // typedef int functype(int, int);
1260 // functype func;
1261 //
1262 // In this case, we'll just go instantiate the ParmVarDecls that we
1263 // synthesized in the method declaration.
1264 if (!isa<FunctionProtoType>(T)) {
1265 assert(!Params.size() && "Instantiating type could not yield parameters");
1266 for (unsigned I = 0, N = D->getNumParams(); I != N; ++I) {
1267 ParmVarDecl *P = SemaRef.SubstParmVarDecl(D->getParamDecl(I),
1268 TemplateArgs);
1269 if (!P)
1270 return 0;
1271
1272 Params.push_back(P);
1273 }
1274 }
1275
John McCallb0cb0222010-03-27 05:57:59 +00001276 NestedNameSpecifier *Qualifier = D->getQualifier();
1277 if (Qualifier) {
1278 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
1279 D->getQualifierRange(),
1280 TemplateArgs);
1281 if (!Qualifier) return 0;
1282 }
1283
1284 DeclContext *DC = Owner;
1285 if (isFriend) {
1286 if (Qualifier) {
1287 CXXScopeSpec SS;
1288 SS.setScopeRep(Qualifier);
1289 SS.setRange(D->getQualifierRange());
1290 DC = SemaRef.computeDeclContext(SS);
1291 } else {
1292 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1293 D->getDeclContext(),
1294 TemplateArgs);
1295 }
1296 if (!DC) return 0;
1297 }
1298
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001299 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001300 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001301 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Abramo Bagnara25777432010-08-11 22:01:17 +00001303 DeclarationNameInfo NameInfo
1304 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001305 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001306 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001307 NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001308 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001309 Constructor->isInlineSpecified(),
1310 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001311 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001312 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001313 NameInfo, T,
1314 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001315 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001316 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001317 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001318 NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001319 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001320 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001321 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001322 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
1323 NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001324 D->isStatic(),
1325 D->getStorageClassAsWritten(),
1326 D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001327 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001328
John McCallb0cb0222010-03-27 05:57:59 +00001329 if (Qualifier)
1330 Method->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +00001331
Douglas Gregord60e1052009-08-27 16:57:43 +00001332 if (TemplateParams) {
1333 // Our resulting instantiation is actually a function template, since we
1334 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001335 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001336 // template<typename T>
1337 // struct X {
1338 // template<typename U> void f(T, U);
1339 // };
1340 //
1341 // X<int> x;
1342 //
1343 // We are instantiating the member template "f" within X<int>, which means
1344 // substituting int for T, but leaving "f" as a member function template.
1345 // Build the function template itself.
1346 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1347 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001348 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001349 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001350 if (isFriend) {
1351 FunctionTemplate->setLexicalDeclContext(Owner);
1352 FunctionTemplate->setObjectOfFriendDecl(true);
1353 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001354 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001355 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001356 } else if (FunctionTemplate) {
1357 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001358 std::pair<const TemplateArgument *, unsigned> Innermost
1359 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001360 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor24bae922010-07-08 18:37:38 +00001361 new (SemaRef.Context) TemplateArgumentList(SemaRef.Context,
1362 Innermost.first,
1363 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001364 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001365 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001366 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001367 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001368 }
1369
Mike Stump1eb44332009-09-09 15:08:12 +00001370 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001371 // out-of-line, the instantiation will have the same lexical
1372 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001373 if (isFriend) {
1374 Method->setLexicalDeclContext(Owner);
1375 Method->setObjectOfFriendDecl(true);
1376 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001377 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001378
Douglas Gregor5545e162009-03-24 00:38:23 +00001379 // Attach the parameters
1380 for (unsigned P = 0; P < Params.size(); ++P)
1381 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001382 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001383
1384 if (InitMethodInstantiation(Method, D))
1385 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001386
Abramo Bagnara25777432010-08-11 22:01:17 +00001387 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1388 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001389
John McCallb0cb0222010-03-27 05:57:59 +00001390 if (!FunctionTemplate || TemplateParams || isFriend) {
1391 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001392
Douglas Gregordec06662009-08-21 18:42:58 +00001393 // In C++, the previous declaration we find might be a tag type
1394 // (class or enum). In this case, the new declaration will hide the
1395 // tag type. Note that this does does not apply if we're declaring a
1396 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001397 if (Previous.isSingleTagDecl())
1398 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001399 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001400
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001401 bool Redeclaration = false;
1402 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +00001403 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001404 /*FIXME:*/OverloadableAttrRequired);
1405
Douglas Gregor4ba31362009-12-01 17:24:26 +00001406 if (D->isPure())
1407 SemaRef.CheckPureMethod(Method, SourceRange());
1408
John McCall46460a62010-01-20 21:53:11 +00001409 Method->setAccess(D->getAccess());
1410
John McCallb0cb0222010-03-27 05:57:59 +00001411 if (FunctionTemplate) {
1412 // If there's a function template, let our caller handle it.
1413 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1414 // Don't hide a (potentially) valid declaration with an invalid one.
1415 } else {
1416 NamedDecl *DeclToAdd = (TemplateParams
1417 ? cast<NamedDecl>(FunctionTemplate)
1418 : Method);
1419 if (isFriend)
1420 Record->makeDeclVisibleInContext(DeclToAdd);
1421 else
1422 Owner->addDecl(DeclToAdd);
1423 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001424
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001425 return Method;
1426}
1427
Douglas Gregor615c5d42009-03-24 16:43:20 +00001428Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001429 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001430}
1431
Douglas Gregor03b2b072009-03-24 00:15:49 +00001432Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001433 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001434}
1435
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001436Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001437 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001438}
1439
Douglas Gregor6477b692009-03-25 15:04:13 +00001440ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001441 return SemaRef.SubstParmVarDecl(D, TemplateArgs);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001442}
1443
John McCalle29ba202009-08-20 01:44:21 +00001444Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1445 TemplateTypeParmDecl *D) {
1446 // TODO: don't always clone when decls are refcounted.
Douglas Gregorefed5c82010-06-16 15:23:05 +00001447 const Type* T = D->getTypeForDecl();
1448 assert(T->isTemplateTypeParmType());
1449 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001450
John McCalle29ba202009-08-20 01:44:21 +00001451 TemplateTypeParmDecl *Inst =
1452 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001453 TTPT->getDepth() - TemplateArgs.getNumLevels(),
1454 TTPT->getIndex(),TTPT->getName(),
John McCalle29ba202009-08-20 01:44:21 +00001455 D->wasDeclaredWithTypename(),
1456 D->isParameterPack());
1457
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001458 if (D->hasDefaultArgument())
1459 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001460
Douglas Gregor550d9b22009-10-31 17:21:17 +00001461 // Introduce this template parameter's instantiation into the instantiation
1462 // scope.
1463 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1464
John McCalle29ba202009-08-20 01:44:21 +00001465 return Inst;
1466}
1467
Douglas Gregor33642df2009-10-23 23:25:44 +00001468Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1469 NonTypeTemplateParmDecl *D) {
1470 // Substitute into the type of the non-type template parameter.
1471 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001472 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001473 if (DI) {
1474 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1475 D->getDeclName());
1476 if (DI) T = DI->getType();
1477 } else {
1478 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1479 D->getDeclName());
1480 DI = 0;
1481 }
1482 if (T.isNull())
1483 return 0;
1484
1485 // Check that this type is acceptable for a non-type template parameter.
1486 bool Invalid = false;
1487 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1488 if (T.isNull()) {
1489 T = SemaRef.Context.IntTy;
1490 Invalid = true;
1491 }
1492
1493 NonTypeTemplateParmDecl *Param
1494 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001495 D->getDepth() - TemplateArgs.getNumLevels(),
1496 D->getPosition(), D->getIdentifier(), T,
1497 DI);
Douglas Gregor33642df2009-10-23 23:25:44 +00001498 if (Invalid)
1499 Param->setInvalidDecl();
1500
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001501 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001502
1503 // Introduce this template parameter's instantiation into the instantiation
1504 // scope.
1505 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001506 return Param;
1507}
1508
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001509Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001510TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1511 TemplateTemplateParmDecl *D) {
1512 // Instantiate the template parameter list of the template template parameter.
1513 TemplateParameterList *TempParams = D->getTemplateParameters();
1514 TemplateParameterList *InstParams;
1515 {
1516 // Perform the actual substitution of template parameters within a new,
1517 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001518 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001519 InstParams = SubstTemplateParams(TempParams);
1520 if (!InstParams)
1521 return NULL;
1522 }
1523
1524 // Build the template template parameter.
1525 TemplateTemplateParmDecl *Param
1526 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001527 D->getDepth() - TemplateArgs.getNumLevels(),
1528 D->getPosition(), D->getIdentifier(),
1529 InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001530 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001531
Douglas Gregor9106ef72009-11-11 16:58:32 +00001532 // Introduce this template parameter's instantiation into the instantiation
1533 // scope.
1534 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1535
1536 return Param;
1537}
1538
Douglas Gregor48c32a72009-11-17 06:07:40 +00001539Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1540 // Using directives are never dependent, so they require no explicit
1541
1542 UsingDirectiveDecl *Inst
1543 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1544 D->getNamespaceKeyLocation(),
1545 D->getQualifierRange(), D->getQualifier(),
1546 D->getIdentLocation(),
1547 D->getNominatedNamespace(),
1548 D->getCommonAncestor());
1549 Owner->addDecl(Inst);
1550 return Inst;
1551}
1552
John McCalled976492009-12-04 22:46:56 +00001553Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1554 // The nested name specifier is non-dependent, so no transformation
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001555 // is required. The same holds for the name info.
1556 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001557
John McCall9f54ad42009-12-10 09:41:52 +00001558 // We only need to do redeclaration lookups if we're in a class
1559 // scope (in fact, it's not really even possible in non-class
1560 // scopes).
1561 bool CheckRedeclaration = Owner->isRecord();
1562
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001563 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1564 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001565
John McCalled976492009-12-04 22:46:56 +00001566 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001567 D->getNestedNameRange(),
1568 D->getUsingLocation(),
1569 D->getTargetNestedNameDecl(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001570 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001571 D->isTypeName());
1572
1573 CXXScopeSpec SS;
1574 SS.setScopeRep(D->getTargetNestedNameDecl());
1575 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001576
1577 if (CheckRedeclaration) {
1578 Prev.setHideTags(false);
1579 SemaRef.LookupQualifiedName(Prev, Owner);
1580
1581 // Check for invalid redeclarations.
1582 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1583 D->isTypeName(), SS,
1584 D->getLocation(), Prev))
1585 NewUD->setInvalidDecl();
1586
1587 }
1588
1589 if (!NewUD->isInvalidDecl() &&
1590 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001591 D->getLocation()))
1592 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001593
John McCalled976492009-12-04 22:46:56 +00001594 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1595 NewUD->setAccess(D->getAccess());
1596 Owner->addDecl(NewUD);
1597
John McCall9f54ad42009-12-10 09:41:52 +00001598 // Don't process the shadow decls for an invalid decl.
1599 if (NewUD->isInvalidDecl())
1600 return NewUD;
1601
John McCall323c3102009-12-22 22:26:37 +00001602 bool isFunctionScope = Owner->isFunctionOrMethod();
1603
John McCall9f54ad42009-12-10 09:41:52 +00001604 // Process the shadow decls.
1605 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1606 I != E; ++I) {
1607 UsingShadowDecl *Shadow = *I;
1608 NamedDecl *InstTarget =
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001609 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getLocation(),
1610 Shadow->getTargetDecl(),
John McCall9f54ad42009-12-10 09:41:52 +00001611 TemplateArgs));
1612
1613 if (CheckRedeclaration &&
1614 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1615 continue;
1616
1617 UsingShadowDecl *InstShadow
1618 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1619 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001620
1621 if (isFunctionScope)
1622 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001623 }
John McCalled976492009-12-04 22:46:56 +00001624
1625 return NewUD;
1626}
1627
1628Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001629 // Ignore these; we handle them in bulk when processing the UsingDecl.
1630 return 0;
John McCalled976492009-12-04 22:46:56 +00001631}
1632
John McCall7ba107a2009-11-18 02:36:19 +00001633Decl * TemplateDeclInstantiator
1634 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001635 NestedNameSpecifier *NNS =
1636 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1637 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001638 TemplateArgs);
1639 if (!NNS)
1640 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001642 CXXScopeSpec SS;
1643 SS.setRange(D->getTargetNestedNameRange());
1644 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001646 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1647 // Hence, no tranformation is required for it.
1648 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001649 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001650 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001651 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001652 /*instantiation*/ true,
1653 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001654 if (UD)
John McCalled976492009-12-04 22:46:56 +00001655 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1656
John McCall7ba107a2009-11-18 02:36:19 +00001657 return UD;
1658}
1659
1660Decl * TemplateDeclInstantiator
1661 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1662 NestedNameSpecifier *NNS =
1663 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1664 D->getTargetNestedNameRange(),
1665 TemplateArgs);
1666 if (!NNS)
1667 return 0;
1668
1669 CXXScopeSpec SS;
1670 SS.setRange(D->getTargetNestedNameRange());
1671 SS.setScopeRep(NNS);
1672
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001673 DeclarationNameInfo NameInfo
1674 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1675
John McCall7ba107a2009-11-18 02:36:19 +00001676 NamedDecl *UD =
1677 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001678 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001679 /*instantiation*/ true,
1680 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001681 if (UD)
John McCalled976492009-12-04 22:46:56 +00001682 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1683
Anders Carlsson0d8df782009-08-29 19:37:28 +00001684 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001685}
1686
John McCallce3ff2b2009-08-25 22:02:44 +00001687Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001688 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001689 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001690 if (D->isInvalidDecl())
1691 return 0;
1692
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001693 return Instantiator.Visit(D);
1694}
1695
John McCalle29ba202009-08-20 01:44:21 +00001696/// \brief Instantiates a nested template parameter list in the current
1697/// instantiation context.
1698///
1699/// \param L The parameter list to instantiate
1700///
1701/// \returns NULL if there was an error
1702TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001703TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001704 // Get errors for all the parameters before bailing out.
1705 bool Invalid = false;
1706
1707 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001708 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001709 ParamVector Params;
1710 Params.reserve(N);
1711 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1712 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001713 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001714 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001715 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001716 }
1717
1718 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001719 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001720 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001721
1722 TemplateParameterList *InstL
1723 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1724 L->getLAngleLoc(), &Params.front(), N,
1725 L->getRAngleLoc());
1726 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001727}
John McCalle29ba202009-08-20 01:44:21 +00001728
Douglas Gregored9c0f92009-10-29 00:04:11 +00001729/// \brief Instantiate the declaration of a class template partial
1730/// specialization.
1731///
1732/// \param ClassTemplate the (instantiated) class template that is partially
1733// specialized by the instantiation of \p PartialSpec.
1734///
1735/// \param PartialSpec the (uninstantiated) class template partial
1736/// specialization that we are instantiating.
1737///
1738/// \returns true if there was an error, false otherwise.
1739bool
1740TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1741 ClassTemplateDecl *ClassTemplate,
1742 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001743 // Create a local instantiation scope for this class template partial
1744 // specialization, which will contain the instantiations of the template
1745 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00001746 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001747
Douglas Gregored9c0f92009-10-29 00:04:11 +00001748 // Substitute into the template parameters of the class template partial
1749 // specialization.
1750 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1751 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1752 if (!InstParams)
1753 return true;
1754
1755 // Substitute into the template arguments of the class template partial
1756 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001757 const TemplateArgumentLoc *PartialSpecTemplateArgs
1758 = PartialSpec->getTemplateArgsAsWritten();
1759 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1760
John McCalld5532b62009-11-23 01:53:49 +00001761 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001762 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001763 TemplateArgumentLoc Loc;
1764 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001765 return true;
John McCalld5532b62009-11-23 01:53:49 +00001766 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001767 }
1768
1769
1770 // Check that the template argument list is well-formed for this
1771 // class template.
1772 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1773 InstTemplateArgs.size());
1774 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1775 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001776 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001777 false,
1778 Converted))
1779 return true;
1780
1781 // Figure out where to insert this class template partial specialization
1782 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00001783 void *InsertPos = 0;
1784 ClassTemplateSpecializationDecl *PrevDecl
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001785 = ClassTemplate->findPartialSpecialization(Converted.getFlatArguments(),
1786 Converted.flatSize(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001787
1788 // Build the canonical type that describes the converted template
1789 // arguments of the class template partial specialization.
1790 QualType CanonType
1791 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1792 Converted.getFlatArguments(),
1793 Converted.flatSize());
1794
1795 // Build the fully-sugared type for this class template
1796 // specialization as the user wrote in the specialization
1797 // itself. This means that we'll pretty-print the type retrieved
1798 // from the specialization's declaration the way that the user
1799 // actually wrote the specialization, rather than formatting the
1800 // name based on the "canonical" representation used to store the
1801 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001802 TypeSourceInfo *WrittenTy
1803 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1804 TemplateName(ClassTemplate),
1805 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001806 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001807 CanonType);
1808
1809 if (PrevDecl) {
1810 // We've already seen a partial specialization with the same template
1811 // parameters and template arguments. This can happen, for example, when
1812 // substituting the outer template arguments ends up causing two
1813 // class template partial specializations of a member class template
1814 // to have identical forms, e.g.,
1815 //
1816 // template<typename T, typename U>
1817 // struct Outer {
1818 // template<typename X, typename Y> struct Inner;
1819 // template<typename Y> struct Inner<T, Y>;
1820 // template<typename Y> struct Inner<U, Y>;
1821 // };
1822 //
1823 // Outer<int, int> outer; // error: the partial specializations of Inner
1824 // // have the same signature.
1825 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1826 << WrittenTy;
1827 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1828 << SemaRef.Context.getTypeDeclType(PrevDecl);
1829 return true;
1830 }
1831
1832
1833 // Create the class template partial specialization declaration.
1834 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00001835 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
1836 PartialSpec->getTagKind(),
1837 Owner,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001838 PartialSpec->getLocation(),
1839 InstParams,
1840 ClassTemplate,
1841 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001842 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001843 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001844 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001845 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00001846 // Substitute the nested name specifier, if any.
1847 if (SubstQualifier(PartialSpec, InstPartialSpec))
1848 return 0;
1849
Douglas Gregored9c0f92009-10-29 00:04:11 +00001850 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001851 InstPartialSpec->setTypeAsWritten(WrittenTy);
1852
Douglas Gregored9c0f92009-10-29 00:04:11 +00001853 // Add this partial specialization to the set of class template partial
1854 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001855 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001856 return false;
1857}
1858
John McCall21ef0fa2010-03-11 09:03:00 +00001859TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001860TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001861 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001862 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1863 assert(OldTInfo && "substituting function without type source info");
1864 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00001865 TypeSourceInfo *NewTInfo
1866 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
1867 D->getTypeSpecStartLoc(),
1868 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00001869 if (!NewTInfo)
1870 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001871
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001872 if (NewTInfo != OldTInfo) {
1873 // Get parameters from the new type info.
Douglas Gregor895162d2010-04-30 18:55:50 +00001874 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001875 if (FunctionProtoTypeLoc *OldProtoLoc
1876 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1877 TypeLoc NewTL = NewTInfo->getTypeLoc();
1878 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
1879 assert(NewProtoLoc && "Missing prototype?");
1880 for (unsigned i = 0, i_end = NewProtoLoc->getNumArgs(); i != i_end; ++i) {
1881 // FIXME: Variadic templates will break this.
1882 Params.push_back(NewProtoLoc->getArg(i));
1883 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
Douglas Gregor895162d2010-04-30 18:55:50 +00001884 OldProtoLoc->getArg(i),
1885 NewProtoLoc->getArg(i));
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001886 }
Douglas Gregor895162d2010-04-30 18:55:50 +00001887 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001888 } else {
1889 // The function type itself was not dependent and therefore no
1890 // substitution occurred. However, we still need to instantiate
1891 // the function parameters themselves.
1892 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001893 if (FunctionProtoTypeLoc *OldProtoLoc
1894 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1895 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
1896 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
1897 if (!Parm)
1898 return 0;
1899 Params.push_back(Parm);
1900 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001901 }
1902 }
John McCall21ef0fa2010-03-11 09:03:00 +00001903 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00001904}
1905
Mike Stump1eb44332009-09-09 15:08:12 +00001906/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001907/// declaration (New) from the corresponding fields of its template (Tmpl).
1908///
1909/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001910bool
1911TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001912 FunctionDecl *Tmpl) {
1913 if (Tmpl->isDeleted())
1914 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Douglas Gregorcca9e962009-07-01 22:01:06 +00001916 // If we are performing substituting explicitly-specified template arguments
1917 // or deduced template arguments into a function template and we reach this
1918 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001919 // to keeping the new function template specialization. We therefore
1920 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001921 // into a template instantiation for this specific function template
1922 // specialization, which is not a SFINAE context, so that we diagnose any
1923 // further errors in the declaration itself.
1924 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1925 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1926 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1927 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001928 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001929 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001930 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001931 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001932 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001933 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1934 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001935 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001936 }
1937 }
Mike Stump1eb44332009-09-09 15:08:12 +00001938
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001939 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1940 assert(Proto && "Function template without prototype?");
1941
1942 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1943 Proto->getNoReturnAttr()) {
1944 // The function has an exception specification or a "noreturn"
1945 // attribute. Substitute into each of the exception types.
1946 llvm::SmallVector<QualType, 4> Exceptions;
1947 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1948 // FIXME: Poor location information!
1949 QualType T
1950 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1951 New->getLocation(), New->getDeclName());
1952 if (T.isNull() ||
1953 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1954 continue;
1955
1956 Exceptions.push_back(T);
1957 }
1958
1959 // Rebuild the function type
1960
1961 const FunctionProtoType *NewProto
1962 = New->getType()->getAs<FunctionProtoType>();
1963 assert(NewProto && "Template instantiation without function prototype?");
1964 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
1965 NewProto->arg_type_begin(),
1966 NewProto->getNumArgs(),
1967 NewProto->isVariadic(),
1968 NewProto->getTypeQuals(),
1969 Proto->hasExceptionSpec(),
1970 Proto->hasAnyExceptionSpec(),
1971 Exceptions.size(),
1972 Exceptions.data(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001973 Proto->getExtInfo()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001974 }
1975
John McCall1d8d1cc2010-08-01 02:01:53 +00001976 SemaRef.InstantiateAttrs(TemplateArgs, Tmpl, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00001977
Douglas Gregore53060f2009-06-25 22:08:12 +00001978 return false;
1979}
1980
Douglas Gregor5545e162009-03-24 00:38:23 +00001981/// \brief Initializes common fields of an instantiated method
1982/// declaration (New) from the corresponding fields of its template
1983/// (Tmpl).
1984///
1985/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001986bool
1987TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001988 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001989 if (InitFunctionInstantiation(New, Tmpl))
1990 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001991
Douglas Gregor5545e162009-03-24 00:38:23 +00001992 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1993 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00001994 if (Tmpl->isVirtualAsWritten())
1995 Record->setMethodAsVirtual(New);
Douglas Gregor5545e162009-03-24 00:38:23 +00001996
1997 // FIXME: attributes
1998 // FIXME: New needs a pointer to Tmpl
1999 return false;
2000}
Douglas Gregora58861f2009-05-13 20:28:22 +00002001
2002/// \brief Instantiate the definition of the given function from its
2003/// template.
2004///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002005/// \param PointOfInstantiation the point at which the instantiation was
2006/// required. Note that this is not precisely a "point of instantiation"
2007/// for the function, but it's close.
2008///
Douglas Gregora58861f2009-05-13 20:28:22 +00002009/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002010/// function template specialization or member function of a class template
2011/// specialization.
2012///
2013/// \param Recursive if true, recursively instantiates any functions that
2014/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002015///
2016/// \param DefinitionRequired if true, then we are performing an explicit
2017/// instantiation where the body of the function is required. Complain if
2018/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002019void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002020 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002021 bool Recursive,
2022 bool DefinitionRequired) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002023 if (Function->isInvalidDecl() || Function->hasBody())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002024 return;
2025
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002026 // Never instantiate an explicit specialization.
2027 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2028 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002029
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002030 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002031 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002032 Stmt *Pattern = 0;
2033 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002034 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002035
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002036 if (!Pattern) {
2037 if (DefinitionRequired) {
2038 if (Function->getPrimaryTemplate())
2039 Diag(PointOfInstantiation,
2040 diag::err_explicit_instantiation_undefined_func_template)
2041 << Function->getPrimaryTemplate();
2042 else
2043 Diag(PointOfInstantiation,
2044 diag::err_explicit_instantiation_undefined_member)
2045 << 1 << Function->getDeclName() << Function->getDeclContext();
2046
2047 if (PatternDecl)
2048 Diag(PatternDecl->getLocation(),
2049 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002050 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002051 } else if (Function->getTemplateSpecializationKind()
2052 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002053 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002054 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002055 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002056
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002057 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002058 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002059
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002060 // C++0x [temp.explicit]p9:
2061 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002062 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002063 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002064 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002065 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002066 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002067 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002068
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002069 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2070 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002071 return;
2072
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002073 // If we're performing recursive template instantiation, create our own
2074 // queue of pending implicit instantiations that we will instantiate later,
2075 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002076 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002077 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002078 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Douglas Gregor9679caf2010-05-12 17:27:19 +00002080 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002081 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002082 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002083
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002084 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002085 // recorded, unless we're actually a member function within a local
2086 // class, in which case we need to merge our results with the parent
2087 // scope (of the enclosing function).
2088 bool MergeWithParentScope = false;
2089 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2090 MergeWithParentScope = Rec->isLocalClass();
2091
2092 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002093
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002094 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002095 // instantiation scope, and set the parameter names to those used
2096 // in the template.
2097 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2098 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2099 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2100 FunctionParam->setDeclName(PatternParam->getDeclName());
2101 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2102 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002103
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002104 // Enter the scope of this instantiation. We don't use
2105 // PushDeclContext because we don't have a scope.
2106 DeclContext *PreviousContext = CurContext;
2107 CurContext = Function;
2108
Mike Stump1eb44332009-09-09 15:08:12 +00002109 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002110 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002111
2112 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002113 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00002114 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2115 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2116 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002117 }
2118
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002119 // Instantiate the function body.
John McCall60d7b3a2010-08-24 06:29:42 +00002120 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002121
Douglas Gregor52604ab2009-09-11 21:19:12 +00002122 if (Body.isInvalid())
2123 Function->setInvalidDecl();
2124
John McCall9ae2f072010-08-23 23:25:46 +00002125 ActOnFinishFunctionBody(Function, Body.get(),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002126 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002127
John McCall0c01d182010-03-24 05:22:00 +00002128 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2129
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002130 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002131
2132 DeclGroupRef DG(Function);
2133 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002134
Douglas Gregor60406be2010-01-16 22:29:39 +00002135 // This class may have local implicit instantiations that need to be
2136 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002137 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002138 Scope.Exit();
2139
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002140 if (Recursive) {
2141 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002142 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002143 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002144
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002145 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002146 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002147 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002148}
2149
2150/// \brief Instantiate the definition of the given variable from its
2151/// template.
2152///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002153/// \param PointOfInstantiation the point at which the instantiation was
2154/// required. Note that this is not precisely a "point of instantiation"
2155/// for the function, but it's close.
2156///
2157/// \param Var the already-instantiated declaration of a static member
2158/// variable of a class template specialization.
2159///
2160/// \param Recursive if true, recursively instantiates any functions that
2161/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002162///
2163/// \param DefinitionRequired if true, then we are performing an explicit
2164/// instantiation where an out-of-line definition of the member variable
2165/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002166void Sema::InstantiateStaticDataMemberDefinition(
2167 SourceLocation PointOfInstantiation,
2168 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002169 bool Recursive,
2170 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002171 if (Var->isInvalidDecl())
2172 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002173
Douglas Gregor7caa6822009-07-24 20:34:43 +00002174 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002175 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002176 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002177 assert(Def->isStaticDataMember() && "Not a static data member?");
2178 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002179
Douglas Gregor0d035142009-10-27 18:42:08 +00002180 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002181 // We did not find an out-of-line definition of this static data member,
2182 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002183 // instantiate this definition (or provide a specialization for it) in
2184 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002185 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002186 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002187 Diag(PointOfInstantiation,
2188 diag::err_explicit_instantiation_undefined_member)
2189 << 2 << Var->getDeclName() << Var->getDeclContext();
2190 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002191 } else if (Var->getTemplateSpecializationKind()
2192 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002193 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002194 std::make_pair(Var, PointOfInstantiation));
2195 }
2196
Douglas Gregor7caa6822009-07-24 20:34:43 +00002197 return;
2198 }
2199
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002200 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002201 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002202 return;
2203
2204 // C++0x [temp.explicit]p9:
2205 // Except for inline functions, other explicit instantiation declarations
2206 // have the effect of suppressing the implicit instantiation of the entity
2207 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002208 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002209 == TSK_ExplicitInstantiationDeclaration)
2210 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002211
Douglas Gregor7caa6822009-07-24 20:34:43 +00002212 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2213 if (Inst)
2214 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002215
Douglas Gregor7caa6822009-07-24 20:34:43 +00002216 // If we're performing recursive template instantiation, create our own
2217 // queue of pending implicit instantiations that we will instantiate later,
2218 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002219 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregor7caa6822009-07-24 20:34:43 +00002220 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002221 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002222
Douglas Gregor7caa6822009-07-24 20:34:43 +00002223 // Enter the scope of this instantiation. We don't use
2224 // PushDeclContext because we don't have a scope.
2225 DeclContext *PreviousContext = CurContext;
2226 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002227
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002228 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002229 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00002230 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00002231 CurContext = PreviousContext;
2232
2233 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002234 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2235 assert(MSInfo && "Missing member specialization information?");
2236 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2237 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002238 DeclGroupRef DG(Var);
2239 Consumer.HandleTopLevelDecl(DG);
2240 }
Mike Stump1eb44332009-09-09 15:08:12 +00002241
Douglas Gregor7caa6822009-07-24 20:34:43 +00002242 if (Recursive) {
2243 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002244 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002245 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002246
Douglas Gregor7caa6822009-07-24 20:34:43 +00002247 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002248 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002249 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002250}
Douglas Gregor815215d2009-05-27 05:35:12 +00002251
Anders Carlsson09025312009-08-29 05:16:22 +00002252void
2253Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2254 const CXXConstructorDecl *Tmpl,
2255 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002256
Anders Carlsson09025312009-08-29 05:16:22 +00002257 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002258 bool AnyErrors = false;
2259
Anders Carlsson09025312009-08-29 05:16:22 +00002260 // Instantiate all the initializers.
2261 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002262 InitsEnd = Tmpl->init_end();
2263 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00002264 CXXBaseOrMemberInitializer *Init = *Inits;
2265
Chandler Carruth030ef472010-09-03 21:54:20 +00002266 // Only instantiate written initializers, let Sema re-construct implicit
2267 // ones.
2268 if (!Init->isWritten())
2269 continue;
2270
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002271 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002272 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002273
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002274 // Instantiate the initializer.
2275 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002276 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002277 AnyErrors = true;
2278 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002279 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002280
Anders Carlsson09025312009-08-29 05:16:22 +00002281 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002282 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002283 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002284 TemplateArgs,
2285 Init->getSourceLocation(),
2286 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002287 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002288 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002289 New->setInvalidDecl();
2290 continue;
2291 }
2292
John McCalla93c9342009-12-07 02:54:59 +00002293 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002294 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002295 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002296 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002297 Init->getRParenLoc(),
2298 New->getParent());
2299 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002300 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00002301
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002302 // Is this an anonymous union?
2303 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002304 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2305 UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002306 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002307 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2308 Init->getMember(),
Douglas Gregore95b4092009-09-16 18:34:49 +00002309 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00002310
2311 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002312 NewArgs.size(),
2313 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002314 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002315 Init->getRParenLoc());
2316 }
2317
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002318 if (NewInit.isInvalid()) {
2319 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002320 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002321 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002322 // FIXME: It would be nice if ASTOwningVector had a release function.
2323 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002324
Anders Carlsson09025312009-08-29 05:16:22 +00002325 NewInits.push_back((MemInitTy *)NewInit.get());
2326 }
2327 }
Mike Stump1eb44332009-09-09 15:08:12 +00002328
Anders Carlsson09025312009-08-29 05:16:22 +00002329 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002330 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002331 /*FIXME: ColonLoc */
2332 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002333 NewInits.data(), NewInits.size(),
2334 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002335}
2336
John McCall52a575a2009-08-29 08:11:13 +00002337// TODO: this could be templated if the various decl types used the
2338// same method name.
2339static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2340 ClassTemplateDecl *Instance) {
2341 Pattern = Pattern->getCanonicalDecl();
2342
2343 do {
2344 Instance = Instance->getCanonicalDecl();
2345 if (Pattern == Instance) return true;
2346 Instance = Instance->getInstantiatedFromMemberTemplate();
2347 } while (Instance);
2348
2349 return false;
2350}
2351
Douglas Gregor0d696532009-09-28 06:34:35 +00002352static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2353 FunctionTemplateDecl *Instance) {
2354 Pattern = Pattern->getCanonicalDecl();
2355
2356 do {
2357 Instance = Instance->getCanonicalDecl();
2358 if (Pattern == Instance) return true;
2359 Instance = Instance->getInstantiatedFromMemberTemplate();
2360 } while (Instance);
2361
2362 return false;
2363}
2364
Douglas Gregored9c0f92009-10-29 00:04:11 +00002365static bool
2366isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2367 ClassTemplatePartialSpecializationDecl *Instance) {
2368 Pattern
2369 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2370 do {
2371 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2372 Instance->getCanonicalDecl());
2373 if (Pattern == Instance)
2374 return true;
2375 Instance = Instance->getInstantiatedFromMember();
2376 } while (Instance);
2377
2378 return false;
2379}
2380
John McCall52a575a2009-08-29 08:11:13 +00002381static bool isInstantiationOf(CXXRecordDecl *Pattern,
2382 CXXRecordDecl *Instance) {
2383 Pattern = Pattern->getCanonicalDecl();
2384
2385 do {
2386 Instance = Instance->getCanonicalDecl();
2387 if (Pattern == Instance) return true;
2388 Instance = Instance->getInstantiatedFromMemberClass();
2389 } while (Instance);
2390
2391 return false;
2392}
2393
2394static bool isInstantiationOf(FunctionDecl *Pattern,
2395 FunctionDecl *Instance) {
2396 Pattern = Pattern->getCanonicalDecl();
2397
2398 do {
2399 Instance = Instance->getCanonicalDecl();
2400 if (Pattern == Instance) return true;
2401 Instance = Instance->getInstantiatedFromMemberFunction();
2402 } while (Instance);
2403
2404 return false;
2405}
2406
2407static bool isInstantiationOf(EnumDecl *Pattern,
2408 EnumDecl *Instance) {
2409 Pattern = Pattern->getCanonicalDecl();
2410
2411 do {
2412 Instance = Instance->getCanonicalDecl();
2413 if (Pattern == Instance) return true;
2414 Instance = Instance->getInstantiatedFromMemberEnum();
2415 } while (Instance);
2416
2417 return false;
2418}
2419
John McCalled976492009-12-04 22:46:56 +00002420static bool isInstantiationOf(UsingShadowDecl *Pattern,
2421 UsingShadowDecl *Instance,
2422 ASTContext &C) {
2423 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2424}
2425
2426static bool isInstantiationOf(UsingDecl *Pattern,
2427 UsingDecl *Instance,
2428 ASTContext &C) {
2429 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2430}
2431
John McCall7ba107a2009-11-18 02:36:19 +00002432static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2433 UsingDecl *Instance,
2434 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002435 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002436}
2437
2438static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002439 UsingDecl *Instance,
2440 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002441 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002442}
2443
John McCall52a575a2009-08-29 08:11:13 +00002444static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2445 VarDecl *Instance) {
2446 assert(Instance->isStaticDataMember());
2447
2448 Pattern = Pattern->getCanonicalDecl();
2449
2450 do {
2451 Instance = Instance->getCanonicalDecl();
2452 if (Pattern == Instance) return true;
2453 Instance = Instance->getInstantiatedFromStaticDataMember();
2454 } while (Instance);
2455
2456 return false;
2457}
2458
John McCalled976492009-12-04 22:46:56 +00002459// Other is the prospective instantiation
2460// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002461static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002462 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002463 if (UnresolvedUsingTypenameDecl *UUD
2464 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2465 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2466 return isInstantiationOf(UUD, UD, Ctx);
2467 }
2468 }
2469
2470 if (UnresolvedUsingValueDecl *UUD
2471 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002472 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2473 return isInstantiationOf(UUD, UD, Ctx);
2474 }
2475 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002476
Anders Carlsson0d8df782009-08-29 19:37:28 +00002477 return false;
2478 }
Mike Stump1eb44332009-09-09 15:08:12 +00002479
John McCall52a575a2009-08-29 08:11:13 +00002480 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2481 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002482
John McCall52a575a2009-08-29 08:11:13 +00002483 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2484 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002485
John McCall52a575a2009-08-29 08:11:13 +00002486 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2487 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002488
Douglas Gregor7caa6822009-07-24 20:34:43 +00002489 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002490 if (Var->isStaticDataMember())
2491 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2492
2493 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2494 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002495
Douglas Gregor0d696532009-09-28 06:34:35 +00002496 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2497 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2498
Douglas Gregored9c0f92009-10-29 00:04:11 +00002499 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2500 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2501 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2502 PartialSpec);
2503
Anders Carlssond8b285f2009-09-01 04:26:58 +00002504 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2505 if (!Field->getDeclName()) {
2506 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002507 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002508 cast<FieldDecl>(D);
2509 }
2510 }
Mike Stump1eb44332009-09-09 15:08:12 +00002511
John McCalled976492009-12-04 22:46:56 +00002512 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2513 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2514
2515 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2516 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2517
Douglas Gregor815215d2009-05-27 05:35:12 +00002518 return D->getDeclName() && isa<NamedDecl>(Other) &&
2519 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2520}
2521
2522template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002523static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002524 NamedDecl *D,
2525 ForwardIterator first,
2526 ForwardIterator last) {
2527 for (; first != last; ++first)
2528 if (isInstantiationOf(Ctx, D, *first))
2529 return cast<NamedDecl>(*first);
2530
2531 return 0;
2532}
2533
John McCall02cace72009-08-28 07:59:38 +00002534/// \brief Finds the instantiation of the given declaration context
2535/// within the current instantiation.
2536///
2537/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002538DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002539 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002540 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002541 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002542 return cast_or_null<DeclContext>(ID);
2543 } else return DC;
2544}
2545
Douglas Gregored961e72009-05-27 17:54:46 +00002546/// \brief Find the instantiation of the given declaration within the
2547/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002548///
2549/// This routine is intended to be used when \p D is a declaration
2550/// referenced from within a template, that needs to mapped into the
2551/// corresponding declaration within an instantiation. For example,
2552/// given:
2553///
2554/// \code
2555/// template<typename T>
2556/// struct X {
2557/// enum Kind {
2558/// KnownValue = sizeof(T)
2559/// };
2560///
2561/// bool getKind() const { return KnownValue; }
2562/// };
2563///
2564/// template struct X<int>;
2565/// \endcode
2566///
2567/// In the instantiation of X<int>::getKind(), we need to map the
2568/// EnumConstantDecl for KnownValue (which refers to
2569/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002570/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2571/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002572NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002573 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002574 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002575 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002576 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00002577 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002578 // D is a local of some kind. Look into the map of local
2579 // declarations to their instantiations.
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +00002580 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002581 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002582
Douglas Gregore95b4092009-09-16 18:34:49 +00002583 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2584 if (!Record->isDependentContext())
2585 return D;
2586
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002587 // If the RecordDecl is actually the injected-class-name or a
2588 // "templated" declaration for a class template, class template
2589 // partial specialization, or a member class of a class template,
2590 // substitute into the injected-class-name of the class template
2591 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002592 QualType T;
2593 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2594
2595 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00002596 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00002597 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2598 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002599 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002600
2601 // If we call SubstType with an InjectedClassNameType here we
2602 // can end up in an infinite loop.
2603 T = Context.getTypeDeclType(Record);
2604 assert(isa<InjectedClassNameType>(T) &&
2605 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00002606 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00002607 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002608
2609 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002610 // Substitute into the injected-class-name to get the type
2611 // corresponding to the instantiation we want, which may also be
2612 // the current instantiation (if we're in a template
2613 // definition). This substitution should never fail, since we
2614 // know we can instantiate the injected-class-name or we
2615 // wouldn't have gotten to the injected-class-name!
2616
2617 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2618 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002619 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2620 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2621
2622 if (!T->isDependentType()) {
2623 assert(T->isRecordType() && "Instantiation must produce a record type");
2624 return T->getAs<RecordType>()->getDecl();
2625 }
2626
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002627 // We are performing "partial" template instantiation to create
2628 // the member declarations for the members of a class template
2629 // specialization. Therefore, D is actually referring to something
2630 // in the current instantiation. Look through the current
2631 // context, which contains actual instantiations, to find the
2632 // instantiation of the "current instantiation" that D refers
2633 // to.
2634 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002635 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002636 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002637 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002638 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002639 if (isInstantiationOf(ClassTemplate,
2640 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002641 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002642
2643 if (!DC->isDependentContext())
2644 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002645 }
2646
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002647 // We're performing "instantiation" of a member of the current
2648 // instantiation while we are type-checking the
2649 // definition. Compute the declaration context and return that.
2650 assert(!SawNonDependentContext &&
2651 "No dependent context while instantiating record");
2652 DeclContext *DC = computeDeclContext(T);
2653 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002654 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002655 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002656 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002657
Douglas Gregore95b4092009-09-16 18:34:49 +00002658 // Fall through to deal with other dependent record types (e.g.,
2659 // anonymous unions in class templates).
2660 }
John McCall52a575a2009-08-29 08:11:13 +00002661
Douglas Gregore95b4092009-09-16 18:34:49 +00002662 if (!ParentDC->isDependentContext())
2663 return D;
2664
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002665 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002666 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002667 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002668
Douglas Gregor815215d2009-05-27 05:35:12 +00002669 if (ParentDC != D->getDeclContext()) {
2670 // We performed some kind of instantiation in the parent context,
2671 // so now we need to look into the instantiated parent context to
2672 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002673
John McCall3cb0ebd2010-03-10 03:28:59 +00002674 // If our context used to be dependent, we may need to instantiate
2675 // it before performing lookup into that context.
2676 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002677 if (!Spec->isDependentContext()) {
2678 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00002679 const RecordType *Tag = T->getAs<RecordType>();
2680 assert(Tag && "type of non-dependent record is not a RecordType");
2681 if (!Tag->isBeingDefined() &&
2682 RequireCompleteType(Loc, T, diag::err_incomplete_type))
2683 return 0;
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002684 }
2685 }
2686
Douglas Gregor815215d2009-05-27 05:35:12 +00002687 NamedDecl *Result = 0;
2688 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002689 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002690 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2691 } else {
2692 // Since we don't have a name for the entity we're looking for,
2693 // our only option is to walk through all of the declarations to
2694 // find that name. This will occur in a few cases:
2695 //
2696 // - anonymous struct/union within a template
2697 // - unnamed class/struct/union/enum within a template
2698 //
2699 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002700 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002701 ParentDC->decls_begin(),
2702 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002703 }
Mike Stump1eb44332009-09-09 15:08:12 +00002704
John McCall9f54ad42009-12-10 09:41:52 +00002705 // UsingShadowDecls can instantiate to nothing because of using hiding.
Douglas Gregor00225542010-03-01 18:27:54 +00002706 assert((Result || isa<UsingShadowDecl>(D) || D->isInvalidDecl() ||
2707 cast<Decl>(ParentDC)->isInvalidDecl())
John McCall9f54ad42009-12-10 09:41:52 +00002708 && "Unable to find instantiation of declaration!");
2709
Douglas Gregor815215d2009-05-27 05:35:12 +00002710 D = Result;
2711 }
2712
Douglas Gregor815215d2009-05-27 05:35:12 +00002713 return D;
2714}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002715
Mike Stump1eb44332009-09-09 15:08:12 +00002716/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002717/// instantiations we have seen until this point.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002718void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor60406be2010-01-16 22:29:39 +00002719 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00002720 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00002721 PendingImplicitInstantiation Inst;
2722
2723 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002724 Inst = PendingInstantiations.front();
2725 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00002726 } else {
2727 Inst = PendingLocalImplicitInstantiations.front();
2728 PendingLocalImplicitInstantiations.pop_front();
2729 }
Mike Stump1eb44332009-09-09 15:08:12 +00002730
Douglas Gregor7caa6822009-07-24 20:34:43 +00002731 // Instantiate function definitions
2732 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00002733 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
2734 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00002735 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
2736 TSK_ExplicitInstantiationDefinition;
2737 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
2738 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002739 continue;
2740 }
Mike Stump1eb44332009-09-09 15:08:12 +00002741
Douglas Gregor7caa6822009-07-24 20:34:43 +00002742 // Instantiate static data member definitions.
2743 VarDecl *Var = cast<VarDecl>(Inst.first);
2744 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002745
Chandler Carruth291b4412010-02-13 10:17:50 +00002746 // Don't try to instantiate declarations if the most recent redeclaration
2747 // is invalid.
2748 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2749 continue;
2750
2751 // Check if the most recent declaration has changed the specialization kind
2752 // and removed the need for implicit instantiation.
2753 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2754 case TSK_Undeclared:
2755 assert(false && "Cannot instantitiate an undeclared specialization.");
2756 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00002757 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00002758 continue; // No longer need to instantiate this type.
2759 case TSK_ExplicitInstantiationDefinition:
2760 // We only need an instantiation if the pending instantiation *is* the
2761 // explicit instantiation.
2762 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00002763 case TSK_ImplicitInstantiation:
2764 break;
2765 }
2766
John McCallf312b1e2010-08-26 23:41:50 +00002767 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
2768 "instantiating static data member "
2769 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002770
Chandler Carruth58e390e2010-08-25 08:27:02 +00002771 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
2772 TSK_ExplicitInstantiationDefinition;
2773 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
2774 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002775 }
2776}
John McCall0c01d182010-03-24 05:22:00 +00002777
2778void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
2779 const MultiLevelTemplateArgumentList &TemplateArgs) {
2780 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
2781 E = Pattern->ddiag_end(); I != E; ++I) {
2782 DependentDiagnostic *DD = *I;
2783
2784 switch (DD->getKind()) {
2785 case DependentDiagnostic::Access:
2786 HandleDependentAccessCheck(*DD, TemplateArgs);
2787 break;
2788 }
2789 }
2790}
John McCallf312b1e2010-08-26 23:41:50 +00002791