blob: 0b4b5101b65c97dc24eda99424f25e2f9028d537 [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 Gregorc6dbc3f2010-09-12 07:37:24 +0000352 if (DI->getType()->isFunctionType()) {
353 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
354 << D->isStaticDataMember() << DI->getType();
355 return 0;
356 }
357
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000358 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000359 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
360 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000361 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000362 D->getStorageClass(),
363 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000364 Var->setThreadSpecified(D->isThreadSpecified());
365 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Mike Stump1eb44332009-09-09 15:08:12 +0000366
John McCallb6217662010-03-15 10:12:16 +0000367 // Substitute the nested name specifier, if any.
368 if (SubstQualifier(D, Var))
369 return 0;
370
Mike Stump1eb44332009-09-09 15:08:12 +0000371 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000372 // out-of-line, the instantiation will have the same lexical
373 // context (which will be a namespace scope) as the template.
374 if (D->isOutOfLine())
375 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000376
John McCall46460a62010-01-20 21:53:11 +0000377 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000378
379 if (!D->isStaticDataMember())
380 Var->setUsed(D->isUsed(false));
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000381
Mike Stump390b4cc2009-05-16 07:39:55 +0000382 // FIXME: In theory, we could have a previous declaration for variables that
383 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000384 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000385 // FIXME: having to fake up a LookupResult is dumb.
386 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000387 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000388 if (D->isStaticDataMember())
389 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000390 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Douglas Gregor7caa6822009-07-24 20:34:43 +0000392 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000393 if (!D->isStaticDataMember())
394 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000395 Owner->makeDeclVisibleInContext(Var);
396 } else {
397 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000398 if (Owner->isFunctionOrMethod())
399 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000400 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000401 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000402
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000403 // Link instantiations of static data members back to the template from
404 // which they were instantiated.
405 if (Var->isStaticDataMember())
406 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000407 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000408
Douglas Gregor60c93c92010-02-09 07:26:29 +0000409 if (Var->getAnyInitializer()) {
410 // We already have an initializer in the class.
411 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000412 if (Var->isStaticDataMember() && !D->isOutOfLine())
413 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
414 else
415 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
416
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000417 // Instantiate the initializer.
418 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000419 ASTOwningVector<Expr*> InitArgs(SemaRef);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000420 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
Douglas Gregora1a04782010-09-09 16:33:13 +0000421 InitArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000422 // Attach the initializer to the declaration.
423 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000424 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000425 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000426 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000427 move_arg(InitArgs),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000428 RParenLoc);
429 } else if (InitArgs.size() == 1) {
John McCall9ae2f072010-08-23 23:25:46 +0000430 Expr *Init = InitArgs.take()[0];
431 SemaRef.AddInitializerToDecl(Var, Init, false);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000432 } else {
433 assert(InitArgs.size() == 0);
John McCalld226f652010-08-21 09:40:31 +0000434 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000435 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000436 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000437 // FIXME: Not too happy about invalidating the declaration
438 // because of a bogus initializer.
439 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000440 }
441
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000442 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000443 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
John McCalld226f652010-08-21 09:40:31 +0000444 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000445
Douglas Gregor5764f612010-05-08 23:05:03 +0000446 // Diagnose unused local variables.
447 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed())
448 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000449
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000450 return Var;
451}
452
Abramo Bagnara6206d532010-06-05 05:09:32 +0000453Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
454 AccessSpecDecl* AD
455 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
456 D->getAccessSpecifierLoc(), D->getColonLoc());
457 Owner->addHiddenDecl(AD);
458 return AD;
459}
460
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000461Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
462 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000463 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor836adf62010-05-24 17:22:01 +0000464 if (DI->getType()->isDependentType() ||
465 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000466 DI = SemaRef.SubstType(DI, TemplateArgs,
467 D->getLocation(), D->getDeclName());
468 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000469 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000470 Invalid = true;
471 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000472 // C++ [temp.arg.type]p3:
473 // If a declaration acquires a function type through a type
474 // dependent on a template-parameter and this causes a
475 // declaration that does not use the syntactic form of a
476 // function declarator to have function type, the program is
477 // ill-formed.
478 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000479 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000480 Invalid = true;
481 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000482 } else {
483 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000484 }
485
486 Expr *BitWidth = D->getBitWidth();
487 if (Invalid)
488 BitWidth = 0;
489 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000490 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000491 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000492
John McCall60d7b3a2010-08-24 06:29:42 +0000493 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000494 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000495 if (InstantiatedBitWidth.isInvalid()) {
496 Invalid = true;
497 BitWidth = 0;
498 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000499 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000500 }
501
John McCall07fb6be2009-10-22 23:33:21 +0000502 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
503 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000504 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000505 D->getLocation(),
506 D->isMutable(),
507 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000508 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000509 D->getAccess(),
510 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000511 if (!Field) {
512 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000513 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
John McCall1d8d1cc2010-08-01 02:01:53 +0000516 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000517
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000518 if (Invalid)
519 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000520
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000521 if (!Field->getDeclName()) {
522 // Keep track of where this decl came from.
523 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000524 }
525 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
526 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000527 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000528 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000529 }
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000531 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000532 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000533 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000534
535 return Field;
536}
537
John McCall02cace72009-08-28 07:59:38 +0000538Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000539 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000540 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000541 if (TypeSourceInfo *Ty = D->getFriendType()) {
542 TypeSourceInfo *InstTy =
543 SemaRef.SubstType(Ty, TemplateArgs,
544 D->getLocation(), DeclarationName());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000545 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000546 return 0;
John McCall02cace72009-08-28 07:59:38 +0000547
Douglas Gregor06245bf2010-04-07 17:57:12 +0000548 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
549 if (!FD)
550 return 0;
551
552 FD->setAccess(AS_public);
553 Owner->addDecl(FD);
554 return FD;
555 }
556
557 NamedDecl *ND = D->getFriendDecl();
558 assert(ND && "friend decl must be a decl or a type!");
559
John McCallaf2094e2010-04-08 09:05:18 +0000560 // All of the Visit implementations for the various potential friend
561 // declarations have to be carefully written to work for friend
562 // objects, with the most important detail being that the target
563 // decl should almost certainly not be placed in Owner.
564 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000565 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000566
John McCall02cace72009-08-28 07:59:38 +0000567 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000568 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
569 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000570 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000571 Owner->addDecl(FD);
572 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000573}
574
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000575Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
576 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Douglas Gregorac7610d2009-06-22 20:57:11 +0000578 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000579 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000580
John McCall60d7b3a2010-08-24 06:29:42 +0000581 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000582 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000583 if (InstantiatedAssertExpr.isInvalid())
584 return 0;
585
John McCall60d7b3a2010-08-24 06:29:42 +0000586 ExprResult Message(D->getMessage());
Douglas Gregor43d9d922009-08-08 01:41:12 +0000587 D->getMessage()->Retain();
John McCalld226f652010-08-21 09:40:31 +0000588 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000589 InstantiatedAssertExpr.get(),
590 Message.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000591}
592
593Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000594 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000595 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000596 D->getTagKeywordLoc(),
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000597 /*PrevDecl=*/0,
598 D->isScoped(), D->isFixed());
599 if (D->isFixed()) {
600 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
601 // If we have type source information for the underlying type, it means it
602 // has been explicitly set by the user. Perform substitution on it before
603 // moving on.
604 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
605 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
606 TemplateArgs,
607 UnderlyingLoc,
608 DeclarationName()));
609
610 if (!Enum->getIntegerTypeSourceInfo())
611 Enum->setIntegerType(SemaRef.Context.IntTy);
612 }
613 else {
614 assert(!D->getIntegerType()->isDependentType()
615 && "Dependent type without type source info");
616 Enum->setIntegerType(D->getIntegerType());
617 }
618 }
619
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000620 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000621 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000622 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000623 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000624 Enum->startDefinition();
625
Douglas Gregor96084f12010-03-01 19:00:07 +0000626 if (D->getDeclContext()->isFunctionOrMethod())
627 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
628
John McCalld226f652010-08-21 09:40:31 +0000629 llvm::SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000630
631 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000632 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
633 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000634 EC != ECEnd; ++EC) {
635 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000636 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000637 if (Expr *UninstValue = EC->getInitExpr()) {
638 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000639 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000640 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000641
John McCallce3ff2b2009-08-25 22:02:44 +0000642 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000643 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000644
645 // Drop the initial value and continue.
646 bool isInvalid = false;
647 if (Value.isInvalid()) {
648 Value = SemaRef.Owned((Expr *)0);
649 isInvalid = true;
650 }
651
Mike Stump1eb44332009-09-09 15:08:12 +0000652 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000653 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
654 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000655 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000656
657 if (isInvalid) {
658 if (EnumConst)
659 EnumConst->setInvalidDecl();
660 Enum->setInvalidDecl();
661 }
662
663 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000664 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000665 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000666 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000668
669 if (D->getDeclContext()->isFunctionOrMethod()) {
670 // If the enumeration is within a function or method, record the enum
671 // constant as a local.
672 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
673 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000674 }
675 }
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000677 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000678 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000679 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000680 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000681 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000682 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000683
684 return Enum;
685}
686
Douglas Gregor6477b692009-03-25 15:04:13 +0000687Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
688 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
689 return 0;
690}
691
John McCalle29ba202009-08-20 01:44:21 +0000692Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000693 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
694
Douglas Gregor550d9b22009-10-31 17:21:17 +0000695 // Create a local instantiation scope for this class template, which
696 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000697 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000698 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000699 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000700 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000701 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000702
703 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000704
705 // Instantiate the qualifier. We have to do this first in case
706 // we're a friend declaration, because if we are then we need to put
707 // the new declaration in the appropriate context.
708 NestedNameSpecifier *Qualifier = Pattern->getQualifier();
709 if (Qualifier) {
710 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
711 Pattern->getQualifierRange(),
712 TemplateArgs);
713 if (!Qualifier) return 0;
714 }
715
716 CXXRecordDecl *PrevDecl = 0;
717 ClassTemplateDecl *PrevClassTemplate = 0;
718
719 // If this isn't a friend, then it's a member template, in which
720 // case we just want to build the instantiation in the
721 // specialization. If it is a friend, we want to build it in
722 // the appropriate context.
723 DeclContext *DC = Owner;
724 if (isFriend) {
725 if (Qualifier) {
726 CXXScopeSpec SS;
727 SS.setScopeRep(Qualifier);
728 SS.setRange(Pattern->getQualifierRange());
729 DC = SemaRef.computeDeclContext(SS);
730 if (!DC) return 0;
731 } else {
732 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
733 Pattern->getDeclContext(),
734 TemplateArgs);
735 }
736
737 // Look for a previous declaration of the template in the owning
738 // context.
739 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
740 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
741 SemaRef.LookupQualifiedName(R, DC);
742
743 if (R.isSingleResult()) {
744 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
745 if (PrevClassTemplate)
746 PrevDecl = PrevClassTemplate->getTemplatedDecl();
747 }
748
749 if (!PrevClassTemplate && Qualifier) {
750 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000751 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
752 << Pattern->getQualifierRange();
John McCall93ba8572010-03-25 06:39:04 +0000753 return 0;
754 }
755
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000756 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000757 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000758 bool Complain = true;
759
760 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
761 // template for struct std::tr1::__detail::_Map_base, where the
762 // template parameters of the friend declaration don't match the
763 // template parameters of the original declaration. In this one
764 // case, we don't complain about the ill-formed friend
765 // declaration.
766 if (isFriend && Pattern->getIdentifier() &&
767 Pattern->getIdentifier()->isStr("_Map_base") &&
768 DC->isNamespace() &&
769 cast<NamespaceDecl>(DC)->getIdentifier() &&
770 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
771 DeclContext *DCParent = DC->getParent();
772 if (DCParent->isNamespace() &&
773 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
774 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
775 DeclContext *DCParent2 = DCParent->getParent();
776 if (DCParent2->isNamespace() &&
777 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
778 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
779 DCParent2->getParent()->isTranslationUnit())
780 Complain = false;
781 }
782 }
783
John McCall93ba8572010-03-25 06:39:04 +0000784 TemplateParameterList *PrevParams
785 = PrevClassTemplate->getTemplateParameters();
786
787 // Make sure the parameter lists match.
788 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000789 Complain,
790 Sema::TPL_TemplateMatch)) {
791 if (Complain)
792 return 0;
793
794 AdoptedPreviousTemplateParams = true;
795 InstParams = PrevParams;
796 }
John McCall93ba8572010-03-25 06:39:04 +0000797
798 // Do some additional validation, then merge default arguments
799 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000800 if (!AdoptedPreviousTemplateParams &&
801 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000802 Sema::TPC_ClassTemplate))
803 return 0;
804 }
805 }
806
John McCalle29ba202009-08-20 01:44:21 +0000807 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000808 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000809 Pattern->getLocation(), Pattern->getIdentifier(),
John McCall93ba8572010-03-25 06:39:04 +0000810 Pattern->getTagKeywordLoc(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000811 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000812
John McCall93ba8572010-03-25 06:39:04 +0000813 if (Qualifier)
814 RecordInst->setQualifierInfo(Qualifier, Pattern->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000815
John McCalle29ba202009-08-20 01:44:21 +0000816 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000817 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
818 D->getIdentifier(), InstParams, RecordInst,
819 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000820 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000821
John McCall93ba8572010-03-25 06:39:04 +0000822 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000823 if (PrevClassTemplate)
824 Inst->setAccess(PrevClassTemplate->getAccess());
825 else
826 Inst->setAccess(D->getAccess());
827
John McCall93ba8572010-03-25 06:39:04 +0000828 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
829 // TODO: do we want to track the instantiation progeny of this
830 // friend target decl?
831 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000832 Inst->setAccess(D->getAccess());
John McCall93ba8572010-03-25 06:39:04 +0000833 Inst->setInstantiatedFromMemberTemplate(D);
834 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000835
836 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000837 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000838 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000839
Douglas Gregor259571e2009-10-30 22:42:42 +0000840 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000841 if (isFriend) {
842 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000843 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000844 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000845
John McCalle29ba202009-08-20 01:44:21 +0000846 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000847
Douglas Gregored9c0f92009-10-29 00:04:11 +0000848 // Instantiate all of the partial specializations of this member class
849 // template.
Douglas Gregordc60c1e2010-04-30 05:56:50 +0000850 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
851 D->getPartialSpecializations(PartialSpecs);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000852 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
853 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
854
John McCalle29ba202009-08-20 01:44:21 +0000855 return Inst;
856}
857
Douglas Gregord60e1052009-08-27 16:57:43 +0000858Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000859TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
860 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000861 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
862
863 // Lookup the already-instantiated declaration in the instantiation
864 // of the class template and return that.
865 DeclContext::lookup_result Found
866 = Owner->lookup(ClassTemplate->getDeclName());
867 if (Found.first == Found.second)
868 return 0;
869
870 ClassTemplateDecl *InstClassTemplate
871 = dyn_cast<ClassTemplateDecl>(*Found.first);
872 if (!InstClassTemplate)
873 return 0;
874
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +0000875 return InstClassTemplate->findPartialSpecInstantiatedFromMember(D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000876}
877
878Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000879TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000880 // Create a local instantiation scope for this function template, which
881 // will contain the instantiations of the template parameters and then get
882 // merged with the local instantiation scope for the function template
883 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000884 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000885
Douglas Gregord60e1052009-08-27 16:57:43 +0000886 TemplateParameterList *TempParams = D->getTemplateParameters();
887 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000888 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000889 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000890
Douglas Gregora735b202009-10-13 14:39:41 +0000891 FunctionDecl *Instantiated = 0;
892 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
893 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
894 InstParams));
895 else
896 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
897 D->getTemplatedDecl(),
898 InstParams));
899
900 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000901 return 0;
902
John McCall46460a62010-01-20 21:53:11 +0000903 Instantiated->setAccess(D->getAccess());
904
Mike Stump1eb44332009-09-09 15:08:12 +0000905 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000906 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000907 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000908 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000909 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000910 assert(InstTemplate &&
911 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000912
John McCallb1a56e72010-03-26 23:10:15 +0000913 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
914
John McCalle976ffe2009-12-14 23:19:40 +0000915 // Link the instantiation back to the pattern *unless* this is a
916 // non-definition friend declaration.
917 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000918 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000919 InstTemplate->setInstantiatedFromMemberTemplate(D);
920
John McCallb1a56e72010-03-26 23:10:15 +0000921 // Make declarations visible in the appropriate context.
922 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000923 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000924
Douglas Gregord60e1052009-08-27 16:57:43 +0000925 return InstTemplate;
926}
927
Douglas Gregord475b8d2009-03-25 21:17:03 +0000928Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
929 CXXRecordDecl *PrevDecl = 0;
930 if (D->isInjectedClassName())
931 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000932 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000933 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
934 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000935 TemplateArgs);
936 if (!Prev) return 0;
937 PrevDecl = cast<CXXRecordDecl>(Prev);
938 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000939
940 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000941 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000942 D->getLocation(), D->getIdentifier(),
943 D->getTagKeywordLoc(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000944
945 // Substitute the nested name specifier, if any.
946 if (SubstQualifier(D, Record))
947 return 0;
948
Douglas Gregord475b8d2009-03-25 21:17:03 +0000949 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000950 // FIXME: Check against AS_none is an ugly hack to work around the issue that
951 // the tag decls introduced by friend class declarations don't have an access
952 // specifier. Remove once this area of the code gets sorted out.
953 if (D->getAccess() != AS_none)
954 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000955 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000956 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000957
John McCall02cace72009-08-28 07:59:38 +0000958 // If the original function was part of a friend declaration,
959 // inherit its namespace state.
960 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
961 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
962
Douglas Gregor9901c572010-05-21 00:31:19 +0000963 // Make sure that anonymous structs and unions are recorded.
964 if (D->isAnonymousStructOrUnion()) {
965 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000966 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000967 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
968 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000969
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000970 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000971 return Record;
972}
973
John McCall02cace72009-08-28 07:59:38 +0000974/// Normal class members are of more specific types and therefore
975/// don't make it here. This function serves two purposes:
976/// 1) instantiating function templates
977/// 2) substituting friend declarations
978/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000979Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000980 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000981 // Check whether there is already a function template specialization for
982 // this declaration.
983 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
984 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000985 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +0000986 std::pair<const TemplateArgument *, unsigned> Innermost
987 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000989 FunctionDecl *SpecFunc
990 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
991 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Douglas Gregor127102b2009-06-29 20:59:39 +0000993 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000994 if (SpecFunc)
995 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +0000996 }
Mike Stump1eb44332009-09-09 15:08:12 +0000997
John McCallb0cb0222010-03-27 05:57:59 +0000998 bool isFriend;
999 if (FunctionTemplate)
1000 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1001 else
1002 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1003
Douglas Gregor79c22782010-01-16 20:21:20 +00001004 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001005 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +00001006 !(isa<Decl>(Owner) &&
1007 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001008 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Douglas Gregore53060f2009-06-25 22:08:12 +00001010 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001011 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1012 TInfo = SubstFunctionType(D, Params);
1013 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001014 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001015 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001016
John McCalld325daa2010-03-26 04:53:08 +00001017 NestedNameSpecifier *Qualifier = D->getQualifier();
1018 if (Qualifier) {
1019 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
1020 D->getQualifierRange(),
1021 TemplateArgs);
1022 if (!Qualifier) return 0;
1023 }
1024
John McCall68b6b872010-02-06 01:50:47 +00001025 // If we're instantiating a local function declaration, put the result
1026 // in the owner; otherwise we need to find the instantiated context.
1027 DeclContext *DC;
1028 if (D->getDeclContext()->isFunctionOrMethod())
1029 DC = Owner;
John McCalld325daa2010-03-26 04:53:08 +00001030 else if (isFriend && Qualifier) {
1031 CXXScopeSpec SS;
1032 SS.setScopeRep(Qualifier);
1033 SS.setRange(D->getQualifierRange());
1034 DC = SemaRef.computeDeclContext(SS);
1035 if (!DC) return 0;
1036 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001037 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1038 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001039 }
John McCall68b6b872010-02-06 01:50:47 +00001040
John McCall02cace72009-08-28 07:59:38 +00001041 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +00001042 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001043 D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001044 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001045 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +00001046
John McCalld325daa2010-03-26 04:53:08 +00001047 if (Qualifier)
1048 Function->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +00001049
John McCallb1a56e72010-03-26 23:10:15 +00001050 DeclContext *LexicalDC = Owner;
1051 if (!isFriend && D->isOutOfLine()) {
1052 assert(D->getDeclContext()->isFileContext());
1053 LexicalDC = D->getDeclContext();
1054 }
1055
1056 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Douglas Gregore53060f2009-06-25 22:08:12 +00001058 // Attach the parameters
1059 for (unsigned P = 0; P < Params.size(); ++P)
John McCall3019c442010-09-17 00:50:28 +00001060 if (Params[P])
1061 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +00001062 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +00001063
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001064 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001065 if (TemplateParams) {
1066 // Our resulting instantiation is actually a function template, since we
1067 // are substituting only the outer template parameters. For example, given
1068 //
1069 // template<typename T>
1070 // struct X {
1071 // template<typename U> friend void f(T, U);
1072 // };
1073 //
1074 // X<int> x;
1075 //
1076 // We are instantiating the friend function template "f" within X<int>,
1077 // which means substituting int for T, but leaving "f" as a friend function
1078 // template.
1079 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001080 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001081 Function->getLocation(),
1082 Function->getDeclName(),
1083 TemplateParams, Function);
1084 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001085
1086 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001087
1088 if (isFriend && D->isThisDeclarationADefinition()) {
1089 // TODO: should we remember this connection regardless of whether
1090 // the friend declaration provided a body?
1091 FunctionTemplate->setInstantiatedFromMemberTemplate(
1092 D->getDescribedFunctionTemplate());
1093 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001094 } else if (FunctionTemplate) {
1095 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001096 std::pair<const TemplateArgument *, unsigned> Innermost
1097 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001098 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor24bae922010-07-08 18:37:38 +00001099 new (SemaRef.Context) TemplateArgumentList(SemaRef.Context,
1100 Innermost.first,
1101 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001102 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001103 } else if (isFriend && D->isThisDeclarationADefinition()) {
1104 // TODO: should we remember this connection regardless of whether
1105 // the friend declaration provided a body?
1106 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001107 }
Douglas Gregora735b202009-10-13 14:39:41 +00001108
Douglas Gregore53060f2009-06-25 22:08:12 +00001109 if (InitFunctionInstantiation(Function, D))
1110 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Douglas Gregore53060f2009-06-25 22:08:12 +00001112 bool Redeclaration = false;
1113 bool OverloadableAttrRequired = false;
John McCallaf2094e2010-04-08 09:05:18 +00001114 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001115
John McCall68263142009-11-18 22:49:29 +00001116 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1117 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1118
John McCallaf2094e2010-04-08 09:05:18 +00001119 if (DependentFunctionTemplateSpecializationInfo *Info
1120 = D->getDependentSpecializationInfo()) {
1121 assert(isFriend && "non-friend has dependent specialization info?");
1122
1123 // This needs to be set now for future sanity.
1124 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1125
1126 // Instantiate the explicit template arguments.
1127 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1128 Info->getRAngleLoc());
1129 for (unsigned I = 0, E = Info->getNumTemplateArgs(); I != E; ++I) {
1130 TemplateArgumentLoc Loc;
1131 if (SemaRef.Subst(Info->getTemplateArg(I), Loc, TemplateArgs))
1132 return 0;
1133
1134 ExplicitArgs.addArgument(Loc);
1135 }
1136
1137 // Map the candidate templates to their instantiations.
1138 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1139 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1140 Info->getTemplate(I),
1141 TemplateArgs);
1142 if (!Temp) return 0;
1143
1144 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1145 }
1146
1147 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1148 &ExplicitArgs,
1149 Previous))
1150 Function->setInvalidDecl();
1151
1152 isExplicitSpecialization = true;
1153
1154 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001155 // Look only into the namespace where the friend would be declared to
1156 // find a previous declaration. This is the innermost enclosing namespace,
1157 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001158 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001159
Douglas Gregora735b202009-10-13 14:39:41 +00001160 // In C++, the previous declaration we find might be a tag type
1161 // (class or enum). In this case, the new declaration will hide the
1162 // tag type. Note that this does does not apply if we're declaring a
1163 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001164 if (Previous.isSingleTagDecl())
1165 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001166 }
1167
John McCall9f54ad42009-12-10 09:41:52 +00001168 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
John McCallaf2094e2010-04-08 09:05:18 +00001169 isExplicitSpecialization, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +00001170 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001171
John McCall76d32642010-04-24 01:30:58 +00001172 NamedDecl *PrincipalDecl = (TemplateParams
1173 ? cast<NamedDecl>(FunctionTemplate)
1174 : Function);
1175
Douglas Gregora735b202009-10-13 14:39:41 +00001176 // If the original function was part of a friend declaration,
1177 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001178 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001179 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001180 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001181 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001182 else
Douglas Gregora735b202009-10-13 14:39:41 +00001183 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001184
1185 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1186 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001187
Gabor Greif77535df2010-08-30 22:25:56 +00001188 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001189
Douglas Gregor238058c2010-05-18 05:45:02 +00001190 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1191 D->isThisDeclarationADefinition()) {
1192 // Check for a function body.
1193 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001194 if (Function->hasBody(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001195 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1196 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1197 << Function->getDeclName();
1198 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1199 Function->setInvalidDecl();
1200 }
1201 // Check for redefinitions due to other instantiations of this or
1202 // a similar friend function.
1203 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1204 REnd = Function->redecls_end();
1205 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001206 if (*R == Function)
1207 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001208 switch (R->getFriendObjectKind()) {
1209 case Decl::FOK_None:
1210 if (!queuedInstantiation && R->isUsed(false)) {
1211 if (MemberSpecializationInfo *MSInfo
1212 = Function->getMemberSpecializationInfo()) {
1213 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1214 SourceLocation Loc = R->getLocation(); // FIXME
1215 MSInfo->setPointOfInstantiation(Loc);
1216 SemaRef.PendingLocalImplicitInstantiations.push_back(
1217 std::make_pair(Function, Loc));
1218 queuedInstantiation = true;
1219 }
1220 }
1221 }
1222 break;
1223 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001224 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001225 = R->getTemplateInstantiationPattern())
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001226 if (RPattern->hasBody(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001227 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1228 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001229 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001230 Function->setInvalidDecl();
1231 break;
1232 }
1233 }
1234 }
1235 }
Douglas Gregora735b202009-10-13 14:39:41 +00001236 }
1237
John McCall76d32642010-04-24 01:30:58 +00001238 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1239 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1240 PrincipalDecl->setNonMemberOperator();
1241
Douglas Gregore53060f2009-06-25 22:08:12 +00001242 return Function;
1243}
1244
Douglas Gregord60e1052009-08-27 16:57:43 +00001245Decl *
1246TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1247 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001248 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1249 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001250 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001251 // We are creating a function template specialization from a function
1252 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001253 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001254 std::pair<const TemplateArgument *, unsigned> Innermost
1255 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001256
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001257 FunctionDecl *SpecFunc
1258 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1259 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001260
Douglas Gregor6b906862009-08-21 00:16:32 +00001261 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001262 if (SpecFunc)
1263 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001264 }
1265
John McCallb0cb0222010-03-27 05:57:59 +00001266 bool isFriend;
1267 if (FunctionTemplate)
1268 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1269 else
1270 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1271
Douglas Gregor79c22782010-01-16 20:21:20 +00001272 bool MergeWithParentScope = (TemplateParams != 0) ||
1273 !(isa<Decl>(Owner) &&
1274 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001275 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001276
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001277 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001278 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1279 TInfo = SubstFunctionType(D, Params);
1280 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001281 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001282 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001283
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001284 // \brief If the type of this function is not *directly* a function
1285 // type, then we're instantiating the a function that was declared
1286 // via a typedef, e.g.,
1287 //
1288 // typedef int functype(int, int);
1289 // functype func;
1290 //
1291 // In this case, we'll just go instantiate the ParmVarDecls that we
1292 // synthesized in the method declaration.
1293 if (!isa<FunctionProtoType>(T)) {
1294 assert(!Params.size() && "Instantiating type could not yield parameters");
1295 for (unsigned I = 0, N = D->getNumParams(); I != N; ++I) {
1296 ParmVarDecl *P = SemaRef.SubstParmVarDecl(D->getParamDecl(I),
1297 TemplateArgs);
1298 if (!P)
1299 return 0;
1300
1301 Params.push_back(P);
1302 }
1303 }
1304
John McCallb0cb0222010-03-27 05:57:59 +00001305 NestedNameSpecifier *Qualifier = D->getQualifier();
1306 if (Qualifier) {
1307 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
1308 D->getQualifierRange(),
1309 TemplateArgs);
1310 if (!Qualifier) return 0;
1311 }
1312
1313 DeclContext *DC = Owner;
1314 if (isFriend) {
1315 if (Qualifier) {
1316 CXXScopeSpec SS;
1317 SS.setScopeRep(Qualifier);
1318 SS.setRange(D->getQualifierRange());
1319 DC = SemaRef.computeDeclContext(SS);
1320 } else {
1321 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1322 D->getDeclContext(),
1323 TemplateArgs);
1324 }
1325 if (!DC) return 0;
1326 }
1327
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001328 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001329 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001330 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001331
Abramo Bagnara25777432010-08-11 22:01:17 +00001332 DeclarationNameInfo NameInfo
1333 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001334 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001335 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001336 NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001337 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001338 Constructor->isInlineSpecified(),
1339 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001340 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001341 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001342 NameInfo, T,
1343 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001344 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001345 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001346 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnara25777432010-08-11 22:01:17 +00001347 NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001348 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001349 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001350 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001351 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
1352 NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001353 D->isStatic(),
1354 D->getStorageClassAsWritten(),
1355 D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001356 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001357
John McCallb0cb0222010-03-27 05:57:59 +00001358 if (Qualifier)
1359 Method->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +00001360
Douglas Gregord60e1052009-08-27 16:57:43 +00001361 if (TemplateParams) {
1362 // Our resulting instantiation is actually a function template, since we
1363 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001364 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001365 // template<typename T>
1366 // struct X {
1367 // template<typename U> void f(T, U);
1368 // };
1369 //
1370 // X<int> x;
1371 //
1372 // We are instantiating the member template "f" within X<int>, which means
1373 // substituting int for T, but leaving "f" as a member function template.
1374 // Build the function template itself.
1375 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1376 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001377 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001378 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001379 if (isFriend) {
1380 FunctionTemplate->setLexicalDeclContext(Owner);
1381 FunctionTemplate->setObjectOfFriendDecl(true);
1382 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001383 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001384 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001385 } else if (FunctionTemplate) {
1386 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001387 std::pair<const TemplateArgument *, unsigned> Innermost
1388 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001389 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor24bae922010-07-08 18:37:38 +00001390 new (SemaRef.Context) TemplateArgumentList(SemaRef.Context,
1391 Innermost.first,
1392 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001393 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001394 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001395 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001396 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001397 }
1398
Mike Stump1eb44332009-09-09 15:08:12 +00001399 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001400 // out-of-line, the instantiation will have the same lexical
1401 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001402 if (isFriend) {
1403 Method->setLexicalDeclContext(Owner);
1404 Method->setObjectOfFriendDecl(true);
1405 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001406 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001407
Douglas Gregor5545e162009-03-24 00:38:23 +00001408 // Attach the parameters
1409 for (unsigned P = 0; P < Params.size(); ++P)
1410 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001411 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001412
1413 if (InitMethodInstantiation(Method, D))
1414 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001415
Abramo Bagnara25777432010-08-11 22:01:17 +00001416 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1417 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001418
John McCallb0cb0222010-03-27 05:57:59 +00001419 if (!FunctionTemplate || TemplateParams || isFriend) {
1420 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001421
Douglas Gregordec06662009-08-21 18:42:58 +00001422 // In C++, the previous declaration we find might be a tag type
1423 // (class or enum). In this case, the new declaration will hide the
1424 // tag type. Note that this does does not apply if we're declaring a
1425 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001426 if (Previous.isSingleTagDecl())
1427 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001428 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001429
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001430 bool Redeclaration = false;
1431 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +00001432 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001433 /*FIXME:*/OverloadableAttrRequired);
1434
Douglas Gregor4ba31362009-12-01 17:24:26 +00001435 if (D->isPure())
1436 SemaRef.CheckPureMethod(Method, SourceRange());
1437
John McCall46460a62010-01-20 21:53:11 +00001438 Method->setAccess(D->getAccess());
1439
John McCallb0cb0222010-03-27 05:57:59 +00001440 if (FunctionTemplate) {
1441 // If there's a function template, let our caller handle it.
1442 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1443 // Don't hide a (potentially) valid declaration with an invalid one.
1444 } else {
1445 NamedDecl *DeclToAdd = (TemplateParams
1446 ? cast<NamedDecl>(FunctionTemplate)
1447 : Method);
1448 if (isFriend)
1449 Record->makeDeclVisibleInContext(DeclToAdd);
1450 else
1451 Owner->addDecl(DeclToAdd);
1452 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001453
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001454 return Method;
1455}
1456
Douglas Gregor615c5d42009-03-24 16:43:20 +00001457Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001458 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001459}
1460
Douglas Gregor03b2b072009-03-24 00:15:49 +00001461Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001462 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001463}
1464
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001465Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001466 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001467}
1468
Douglas Gregor6477b692009-03-25 15:04:13 +00001469ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001470 return SemaRef.SubstParmVarDecl(D, TemplateArgs);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001471}
1472
John McCalle29ba202009-08-20 01:44:21 +00001473Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1474 TemplateTypeParmDecl *D) {
1475 // TODO: don't always clone when decls are refcounted.
Douglas Gregorefed5c82010-06-16 15:23:05 +00001476 const Type* T = D->getTypeForDecl();
1477 assert(T->isTemplateTypeParmType());
1478 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001479
John McCalle29ba202009-08-20 01:44:21 +00001480 TemplateTypeParmDecl *Inst =
1481 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001482 TTPT->getDepth() - TemplateArgs.getNumLevels(),
1483 TTPT->getIndex(),TTPT->getName(),
John McCalle29ba202009-08-20 01:44:21 +00001484 D->wasDeclaredWithTypename(),
1485 D->isParameterPack());
1486
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001487 if (D->hasDefaultArgument())
1488 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001489
Douglas Gregor550d9b22009-10-31 17:21:17 +00001490 // Introduce this template parameter's instantiation into the instantiation
1491 // scope.
1492 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1493
John McCalle29ba202009-08-20 01:44:21 +00001494 return Inst;
1495}
1496
Douglas Gregor33642df2009-10-23 23:25:44 +00001497Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1498 NonTypeTemplateParmDecl *D) {
1499 // Substitute into the type of the non-type template parameter.
1500 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001501 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001502 if (DI) {
1503 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1504 D->getDeclName());
1505 if (DI) T = DI->getType();
1506 } else {
1507 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1508 D->getDeclName());
1509 DI = 0;
1510 }
1511 if (T.isNull())
1512 return 0;
1513
1514 // Check that this type is acceptable for a non-type template parameter.
1515 bool Invalid = false;
1516 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1517 if (T.isNull()) {
1518 T = SemaRef.Context.IntTy;
1519 Invalid = true;
1520 }
1521
1522 NonTypeTemplateParmDecl *Param
1523 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001524 D->getDepth() - TemplateArgs.getNumLevels(),
1525 D->getPosition(), D->getIdentifier(), T,
1526 DI);
Douglas Gregor33642df2009-10-23 23:25:44 +00001527 if (Invalid)
1528 Param->setInvalidDecl();
1529
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001530 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001531
1532 // Introduce this template parameter's instantiation into the instantiation
1533 // scope.
1534 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001535 return Param;
1536}
1537
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001538Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001539TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1540 TemplateTemplateParmDecl *D) {
1541 // Instantiate the template parameter list of the template template parameter.
1542 TemplateParameterList *TempParams = D->getTemplateParameters();
1543 TemplateParameterList *InstParams;
1544 {
1545 // Perform the actual substitution of template parameters within a new,
1546 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001547 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001548 InstParams = SubstTemplateParams(TempParams);
1549 if (!InstParams)
1550 return NULL;
1551 }
1552
1553 // Build the template template parameter.
1554 TemplateTemplateParmDecl *Param
1555 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001556 D->getDepth() - TemplateArgs.getNumLevels(),
1557 D->getPosition(), D->getIdentifier(),
1558 InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001559 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001560
Douglas Gregor9106ef72009-11-11 16:58:32 +00001561 // Introduce this template parameter's instantiation into the instantiation
1562 // scope.
1563 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1564
1565 return Param;
1566}
1567
Douglas Gregor48c32a72009-11-17 06:07:40 +00001568Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1569 // Using directives are never dependent, so they require no explicit
1570
1571 UsingDirectiveDecl *Inst
1572 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1573 D->getNamespaceKeyLocation(),
1574 D->getQualifierRange(), D->getQualifier(),
1575 D->getIdentLocation(),
1576 D->getNominatedNamespace(),
1577 D->getCommonAncestor());
1578 Owner->addDecl(Inst);
1579 return Inst;
1580}
1581
John McCalled976492009-12-04 22:46:56 +00001582Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001583
1584 // The nested name specifier may be dependent, for example
1585 // template <typename T> struct t {
1586 // struct s1 { T f1(); };
1587 // struct s2 : s1 { using s1::f1; };
1588 // };
1589 // template struct t<int>;
1590 // Here, in using s1::f1, s1 refers to t<T>::s1;
1591 // we need to substitute for t<int>::s1.
1592 NestedNameSpecifier *NNS =
1593 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameDecl(),
1594 D->getNestedNameRange(),
1595 TemplateArgs);
1596 if (!NNS)
1597 return 0;
1598
1599 // The name info is non-dependent, so no transformation
1600 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001601 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001602
John McCall9f54ad42009-12-10 09:41:52 +00001603 // We only need to do redeclaration lookups if we're in a class
1604 // scope (in fact, it's not really even possible in non-class
1605 // scopes).
1606 bool CheckRedeclaration = Owner->isRecord();
1607
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001608 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1609 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001610
John McCalled976492009-12-04 22:46:56 +00001611 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001612 D->getNestedNameRange(),
1613 D->getUsingLocation(),
Douglas Gregor1b398202010-09-29 17:58:28 +00001614 NNS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001615 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001616 D->isTypeName());
1617
1618 CXXScopeSpec SS;
Douglas Gregor1b398202010-09-29 17:58:28 +00001619 SS.setScopeRep(NNS);
John McCalled976492009-12-04 22:46:56 +00001620 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001621
1622 if (CheckRedeclaration) {
1623 Prev.setHideTags(false);
1624 SemaRef.LookupQualifiedName(Prev, Owner);
1625
1626 // Check for invalid redeclarations.
1627 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1628 D->isTypeName(), SS,
1629 D->getLocation(), Prev))
1630 NewUD->setInvalidDecl();
1631
1632 }
1633
1634 if (!NewUD->isInvalidDecl() &&
1635 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001636 D->getLocation()))
1637 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001638
John McCalled976492009-12-04 22:46:56 +00001639 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1640 NewUD->setAccess(D->getAccess());
1641 Owner->addDecl(NewUD);
1642
John McCall9f54ad42009-12-10 09:41:52 +00001643 // Don't process the shadow decls for an invalid decl.
1644 if (NewUD->isInvalidDecl())
1645 return NewUD;
1646
John McCall323c3102009-12-22 22:26:37 +00001647 bool isFunctionScope = Owner->isFunctionOrMethod();
1648
John McCall9f54ad42009-12-10 09:41:52 +00001649 // Process the shadow decls.
1650 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1651 I != E; ++I) {
1652 UsingShadowDecl *Shadow = *I;
1653 NamedDecl *InstTarget =
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001654 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getLocation(),
1655 Shadow->getTargetDecl(),
John McCall9f54ad42009-12-10 09:41:52 +00001656 TemplateArgs));
1657
1658 if (CheckRedeclaration &&
1659 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1660 continue;
1661
1662 UsingShadowDecl *InstShadow
1663 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1664 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001665
1666 if (isFunctionScope)
1667 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001668 }
John McCalled976492009-12-04 22:46:56 +00001669
1670 return NewUD;
1671}
1672
1673Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001674 // Ignore these; we handle them in bulk when processing the UsingDecl.
1675 return 0;
John McCalled976492009-12-04 22:46:56 +00001676}
1677
John McCall7ba107a2009-11-18 02:36:19 +00001678Decl * TemplateDeclInstantiator
1679 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001680 NestedNameSpecifier *NNS =
1681 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1682 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001683 TemplateArgs);
1684 if (!NNS)
1685 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001686
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001687 CXXScopeSpec SS;
1688 SS.setRange(D->getTargetNestedNameRange());
1689 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001690
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001691 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1692 // Hence, no tranformation is required for it.
1693 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001694 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001695 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001696 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001697 /*instantiation*/ true,
1698 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001699 if (UD)
John McCalled976492009-12-04 22:46:56 +00001700 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1701
John McCall7ba107a2009-11-18 02:36:19 +00001702 return UD;
1703}
1704
1705Decl * TemplateDeclInstantiator
1706 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1707 NestedNameSpecifier *NNS =
1708 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1709 D->getTargetNestedNameRange(),
1710 TemplateArgs);
1711 if (!NNS)
1712 return 0;
1713
1714 CXXScopeSpec SS;
1715 SS.setRange(D->getTargetNestedNameRange());
1716 SS.setScopeRep(NNS);
1717
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001718 DeclarationNameInfo NameInfo
1719 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1720
John McCall7ba107a2009-11-18 02:36:19 +00001721 NamedDecl *UD =
1722 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001723 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001724 /*instantiation*/ true,
1725 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001726 if (UD)
John McCalled976492009-12-04 22:46:56 +00001727 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1728
Anders Carlsson0d8df782009-08-29 19:37:28 +00001729 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001730}
1731
John McCallce3ff2b2009-08-25 22:02:44 +00001732Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001733 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001734 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001735 if (D->isInvalidDecl())
1736 return 0;
1737
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001738 return Instantiator.Visit(D);
1739}
1740
John McCalle29ba202009-08-20 01:44:21 +00001741/// \brief Instantiates a nested template parameter list in the current
1742/// instantiation context.
1743///
1744/// \param L The parameter list to instantiate
1745///
1746/// \returns NULL if there was an error
1747TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001748TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001749 // Get errors for all the parameters before bailing out.
1750 bool Invalid = false;
1751
1752 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001753 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001754 ParamVector Params;
1755 Params.reserve(N);
1756 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1757 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001758 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001759 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001760 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001761 }
1762
1763 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001764 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001765 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001766
1767 TemplateParameterList *InstL
1768 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1769 L->getLAngleLoc(), &Params.front(), N,
1770 L->getRAngleLoc());
1771 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001772}
John McCalle29ba202009-08-20 01:44:21 +00001773
Douglas Gregored9c0f92009-10-29 00:04:11 +00001774/// \brief Instantiate the declaration of a class template partial
1775/// specialization.
1776///
1777/// \param ClassTemplate the (instantiated) class template that is partially
1778// specialized by the instantiation of \p PartialSpec.
1779///
1780/// \param PartialSpec the (uninstantiated) class template partial
1781/// specialization that we are instantiating.
1782///
1783/// \returns true if there was an error, false otherwise.
1784bool
1785TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1786 ClassTemplateDecl *ClassTemplate,
1787 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001788 // Create a local instantiation scope for this class template partial
1789 // specialization, which will contain the instantiations of the template
1790 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00001791 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001792
Douglas Gregored9c0f92009-10-29 00:04:11 +00001793 // Substitute into the template parameters of the class template partial
1794 // specialization.
1795 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1796 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1797 if (!InstParams)
1798 return true;
1799
1800 // Substitute into the template arguments of the class template partial
1801 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001802 const TemplateArgumentLoc *PartialSpecTemplateArgs
1803 = PartialSpec->getTemplateArgsAsWritten();
1804 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1805
John McCalld5532b62009-11-23 01:53:49 +00001806 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001807 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001808 TemplateArgumentLoc Loc;
1809 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001810 return true;
John McCalld5532b62009-11-23 01:53:49 +00001811 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001812 }
1813
1814
1815 // Check that the template argument list is well-formed for this
1816 // class template.
1817 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1818 InstTemplateArgs.size());
1819 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1820 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001821 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001822 false,
1823 Converted))
1824 return true;
1825
1826 // Figure out where to insert this class template partial specialization
1827 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00001828 void *InsertPos = 0;
1829 ClassTemplateSpecializationDecl *PrevDecl
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001830 = ClassTemplate->findPartialSpecialization(Converted.getFlatArguments(),
1831 Converted.flatSize(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001832
1833 // Build the canonical type that describes the converted template
1834 // arguments of the class template partial specialization.
1835 QualType CanonType
1836 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1837 Converted.getFlatArguments(),
1838 Converted.flatSize());
1839
1840 // Build the fully-sugared type for this class template
1841 // specialization as the user wrote in the specialization
1842 // itself. This means that we'll pretty-print the type retrieved
1843 // from the specialization's declaration the way that the user
1844 // actually wrote the specialization, rather than formatting the
1845 // name based on the "canonical" representation used to store the
1846 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001847 TypeSourceInfo *WrittenTy
1848 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1849 TemplateName(ClassTemplate),
1850 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001851 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001852 CanonType);
1853
1854 if (PrevDecl) {
1855 // We've already seen a partial specialization with the same template
1856 // parameters and template arguments. This can happen, for example, when
1857 // substituting the outer template arguments ends up causing two
1858 // class template partial specializations of a member class template
1859 // to have identical forms, e.g.,
1860 //
1861 // template<typename T, typename U>
1862 // struct Outer {
1863 // template<typename X, typename Y> struct Inner;
1864 // template<typename Y> struct Inner<T, Y>;
1865 // template<typename Y> struct Inner<U, Y>;
1866 // };
1867 //
1868 // Outer<int, int> outer; // error: the partial specializations of Inner
1869 // // have the same signature.
1870 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1871 << WrittenTy;
1872 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1873 << SemaRef.Context.getTypeDeclType(PrevDecl);
1874 return true;
1875 }
1876
1877
1878 // Create the class template partial specialization declaration.
1879 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00001880 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
1881 PartialSpec->getTagKind(),
1882 Owner,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001883 PartialSpec->getLocation(),
1884 InstParams,
1885 ClassTemplate,
1886 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001887 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001888 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001889 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001890 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00001891 // Substitute the nested name specifier, if any.
1892 if (SubstQualifier(PartialSpec, InstPartialSpec))
1893 return 0;
1894
Douglas Gregored9c0f92009-10-29 00:04:11 +00001895 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001896 InstPartialSpec->setTypeAsWritten(WrittenTy);
1897
Douglas Gregored9c0f92009-10-29 00:04:11 +00001898 // Add this partial specialization to the set of class template partial
1899 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001900 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001901 return false;
1902}
1903
John McCall21ef0fa2010-03-11 09:03:00 +00001904TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001905TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001906 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001907 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1908 assert(OldTInfo && "substituting function without type source info");
1909 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00001910 TypeSourceInfo *NewTInfo
1911 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
1912 D->getTypeSpecStartLoc(),
1913 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00001914 if (!NewTInfo)
1915 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001916
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001917 if (NewTInfo != OldTInfo) {
1918 // Get parameters from the new type info.
Douglas Gregor895162d2010-04-30 18:55:50 +00001919 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001920 if (FunctionProtoTypeLoc *OldProtoLoc
1921 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1922 TypeLoc NewTL = NewTInfo->getTypeLoc();
1923 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
1924 assert(NewProtoLoc && "Missing prototype?");
1925 for (unsigned i = 0, i_end = NewProtoLoc->getNumArgs(); i != i_end; ++i) {
1926 // FIXME: Variadic templates will break this.
1927 Params.push_back(NewProtoLoc->getArg(i));
1928 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
Douglas Gregor895162d2010-04-30 18:55:50 +00001929 OldProtoLoc->getArg(i),
1930 NewProtoLoc->getArg(i));
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001931 }
Douglas Gregor895162d2010-04-30 18:55:50 +00001932 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001933 } else {
1934 // The function type itself was not dependent and therefore no
1935 // substitution occurred. However, we still need to instantiate
1936 // the function parameters themselves.
1937 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001938 if (FunctionProtoTypeLoc *OldProtoLoc
1939 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1940 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
1941 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
1942 if (!Parm)
1943 return 0;
1944 Params.push_back(Parm);
1945 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001946 }
1947 }
John McCall21ef0fa2010-03-11 09:03:00 +00001948 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00001949}
1950
Mike Stump1eb44332009-09-09 15:08:12 +00001951/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001952/// declaration (New) from the corresponding fields of its template (Tmpl).
1953///
1954/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001955bool
1956TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001957 FunctionDecl *Tmpl) {
1958 if (Tmpl->isDeleted())
1959 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001960
Douglas Gregorcca9e962009-07-01 22:01:06 +00001961 // If we are performing substituting explicitly-specified template arguments
1962 // or deduced template arguments into a function template and we reach this
1963 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001964 // to keeping the new function template specialization. We therefore
1965 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001966 // into a template instantiation for this specific function template
1967 // specialization, which is not a SFINAE context, so that we diagnose any
1968 // further errors in the declaration itself.
1969 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1970 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1971 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1972 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001973 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001974 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001975 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001976 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001977 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001978 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1979 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001980 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001981 }
1982 }
Mike Stump1eb44332009-09-09 15:08:12 +00001983
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001984 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1985 assert(Proto && "Function template without prototype?");
1986
1987 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1988 Proto->getNoReturnAttr()) {
1989 // The function has an exception specification or a "noreturn"
1990 // attribute. Substitute into each of the exception types.
1991 llvm::SmallVector<QualType, 4> Exceptions;
1992 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1993 // FIXME: Poor location information!
1994 QualType T
1995 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1996 New->getLocation(), New->getDeclName());
1997 if (T.isNull() ||
1998 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1999 continue;
2000
2001 Exceptions.push_back(T);
2002 }
2003
2004 // Rebuild the function type
2005
2006 const FunctionProtoType *NewProto
2007 = New->getType()->getAs<FunctionProtoType>();
2008 assert(NewProto && "Template instantiation without function prototype?");
2009 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2010 NewProto->arg_type_begin(),
2011 NewProto->getNumArgs(),
2012 NewProto->isVariadic(),
2013 NewProto->getTypeQuals(),
2014 Proto->hasExceptionSpec(),
2015 Proto->hasAnyExceptionSpec(),
2016 Exceptions.size(),
2017 Exceptions.data(),
Rafael Espindola264ba482010-03-30 20:24:48 +00002018 Proto->getExtInfo()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002019 }
2020
John McCall1d8d1cc2010-08-01 02:01:53 +00002021 SemaRef.InstantiateAttrs(TemplateArgs, Tmpl, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002022
Douglas Gregore53060f2009-06-25 22:08:12 +00002023 return false;
2024}
2025
Douglas Gregor5545e162009-03-24 00:38:23 +00002026/// \brief Initializes common fields of an instantiated method
2027/// declaration (New) from the corresponding fields of its template
2028/// (Tmpl).
2029///
2030/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002031bool
2032TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002033 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002034 if (InitFunctionInstantiation(New, Tmpl))
2035 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002036
Douglas Gregor5545e162009-03-24 00:38:23 +00002037 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002038 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002039 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002040
2041 // FIXME: attributes
2042 // FIXME: New needs a pointer to Tmpl
2043 return false;
2044}
Douglas Gregora58861f2009-05-13 20:28:22 +00002045
2046/// \brief Instantiate the definition of the given function from its
2047/// template.
2048///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002049/// \param PointOfInstantiation the point at which the instantiation was
2050/// required. Note that this is not precisely a "point of instantiation"
2051/// for the function, but it's close.
2052///
Douglas Gregora58861f2009-05-13 20:28:22 +00002053/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002054/// function template specialization or member function of a class template
2055/// specialization.
2056///
2057/// \param Recursive if true, recursively instantiates any functions that
2058/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002059///
2060/// \param DefinitionRequired if true, then we are performing an explicit
2061/// instantiation where the body of the function is required. Complain if
2062/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002063void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002064 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002065 bool Recursive,
2066 bool DefinitionRequired) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002067 if (Function->isInvalidDecl() || Function->hasBody())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002068 return;
2069
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002070 // Never instantiate an explicit specialization.
2071 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2072 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002073
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002074 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002075 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002076 Stmt *Pattern = 0;
2077 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002078 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002079
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002080 if (!Pattern) {
2081 if (DefinitionRequired) {
2082 if (Function->getPrimaryTemplate())
2083 Diag(PointOfInstantiation,
2084 diag::err_explicit_instantiation_undefined_func_template)
2085 << Function->getPrimaryTemplate();
2086 else
2087 Diag(PointOfInstantiation,
2088 diag::err_explicit_instantiation_undefined_member)
2089 << 1 << Function->getDeclName() << Function->getDeclContext();
2090
2091 if (PatternDecl)
2092 Diag(PatternDecl->getLocation(),
2093 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002094 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002095 } else if (Function->getTemplateSpecializationKind()
2096 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002097 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002098 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002099 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002100
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002101 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002102 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002103
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002104 // C++0x [temp.explicit]p9:
2105 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002106 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002107 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002108 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002109 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002110 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002111 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002112
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002113 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2114 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002115 return;
2116
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002117 // If we're performing recursive template instantiation, create our own
2118 // queue of pending implicit instantiations that we will instantiate later,
2119 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002120 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002121 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002122 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002123
Douglas Gregor9679caf2010-05-12 17:27:19 +00002124 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002125 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002126 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002127
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002128 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002129 // recorded, unless we're actually a member function within a local
2130 // class, in which case we need to merge our results with the parent
2131 // scope (of the enclosing function).
2132 bool MergeWithParentScope = false;
2133 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2134 MergeWithParentScope = Rec->isLocalClass();
2135
2136 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002137
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002138 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002139 // instantiation scope, and set the parameter names to those used
2140 // in the template.
2141 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2142 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2143 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2144 FunctionParam->setDeclName(PatternParam->getDeclName());
2145 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2146 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002147
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002148 // Enter the scope of this instantiation. We don't use
2149 // PushDeclContext because we don't have a scope.
2150 DeclContext *PreviousContext = CurContext;
2151 CurContext = Function;
2152
Mike Stump1eb44332009-09-09 15:08:12 +00002153 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002154 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002155
2156 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002157 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00002158 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2159 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2160 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002161 }
2162
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002163 // Instantiate the function body.
John McCall60d7b3a2010-08-24 06:29:42 +00002164 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002165
Douglas Gregor52604ab2009-09-11 21:19:12 +00002166 if (Body.isInvalid())
2167 Function->setInvalidDecl();
2168
John McCall9ae2f072010-08-23 23:25:46 +00002169 ActOnFinishFunctionBody(Function, Body.get(),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002170 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002171
John McCall0c01d182010-03-24 05:22:00 +00002172 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2173
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002174 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002175
2176 DeclGroupRef DG(Function);
2177 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002178
Douglas Gregor60406be2010-01-16 22:29:39 +00002179 // This class may have local implicit instantiations that need to be
2180 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002181 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002182 Scope.Exit();
2183
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002184 if (Recursive) {
2185 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002186 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002187 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002188
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002189 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002190 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002191 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002192}
2193
2194/// \brief Instantiate the definition of the given variable from its
2195/// template.
2196///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002197/// \param PointOfInstantiation the point at which the instantiation was
2198/// required. Note that this is not precisely a "point of instantiation"
2199/// for the function, but it's close.
2200///
2201/// \param Var the already-instantiated declaration of a static member
2202/// variable of a class template specialization.
2203///
2204/// \param Recursive if true, recursively instantiates any functions that
2205/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002206///
2207/// \param DefinitionRequired if true, then we are performing an explicit
2208/// instantiation where an out-of-line definition of the member variable
2209/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002210void Sema::InstantiateStaticDataMemberDefinition(
2211 SourceLocation PointOfInstantiation,
2212 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002213 bool Recursive,
2214 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002215 if (Var->isInvalidDecl())
2216 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002217
Douglas Gregor7caa6822009-07-24 20:34:43 +00002218 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002219 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002220 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002221 assert(Def->isStaticDataMember() && "Not a static data member?");
2222 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002223
Douglas Gregor0d035142009-10-27 18:42:08 +00002224 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002225 // We did not find an out-of-line definition of this static data member,
2226 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002227 // instantiate this definition (or provide a specialization for it) in
2228 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002229 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002230 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002231 Diag(PointOfInstantiation,
2232 diag::err_explicit_instantiation_undefined_member)
2233 << 2 << Var->getDeclName() << Var->getDeclContext();
2234 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002235 } else if (Var->getTemplateSpecializationKind()
2236 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002237 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002238 std::make_pair(Var, PointOfInstantiation));
2239 }
2240
Douglas Gregor7caa6822009-07-24 20:34:43 +00002241 return;
2242 }
2243
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002244 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002245 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002246 return;
2247
2248 // C++0x [temp.explicit]p9:
2249 // Except for inline functions, other explicit instantiation declarations
2250 // have the effect of suppressing the implicit instantiation of the entity
2251 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002252 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002253 == TSK_ExplicitInstantiationDeclaration)
2254 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002255
Douglas Gregor7caa6822009-07-24 20:34:43 +00002256 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2257 if (Inst)
2258 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002259
Douglas Gregor7caa6822009-07-24 20:34:43 +00002260 // If we're performing recursive template instantiation, create our own
2261 // queue of pending implicit instantiations that we will instantiate later,
2262 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002263 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregor7caa6822009-07-24 20:34:43 +00002264 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002265 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002266
Douglas Gregor7caa6822009-07-24 20:34:43 +00002267 // Enter the scope of this instantiation. We don't use
2268 // PushDeclContext because we don't have a scope.
2269 DeclContext *PreviousContext = CurContext;
2270 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002271
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002272 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002273 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00002274 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00002275 CurContext = PreviousContext;
2276
2277 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002278 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2279 assert(MSInfo && "Missing member specialization information?");
2280 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2281 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002282 DeclGroupRef DG(Var);
2283 Consumer.HandleTopLevelDecl(DG);
2284 }
Mike Stump1eb44332009-09-09 15:08:12 +00002285
Douglas Gregor7caa6822009-07-24 20:34:43 +00002286 if (Recursive) {
2287 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002288 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002289 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002290
Douglas Gregor7caa6822009-07-24 20:34:43 +00002291 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002292 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002293 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002294}
Douglas Gregor815215d2009-05-27 05:35:12 +00002295
Anders Carlsson09025312009-08-29 05:16:22 +00002296void
2297Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2298 const CXXConstructorDecl *Tmpl,
2299 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002300
Anders Carlsson09025312009-08-29 05:16:22 +00002301 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002302 bool AnyErrors = false;
2303
Anders Carlsson09025312009-08-29 05:16:22 +00002304 // Instantiate all the initializers.
2305 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002306 InitsEnd = Tmpl->init_end();
2307 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00002308 CXXBaseOrMemberInitializer *Init = *Inits;
2309
Chandler Carruth030ef472010-09-03 21:54:20 +00002310 // Only instantiate written initializers, let Sema re-construct implicit
2311 // ones.
2312 if (!Init->isWritten())
2313 continue;
2314
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002315 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002316 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002317
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002318 // Instantiate the initializer.
2319 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002320 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002321 AnyErrors = true;
2322 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002323 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002324
Anders Carlsson09025312009-08-29 05:16:22 +00002325 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002326 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002327 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002328 TemplateArgs,
2329 Init->getSourceLocation(),
2330 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002331 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002332 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002333 New->setInvalidDecl();
2334 continue;
2335 }
2336
John McCalla93c9342009-12-07 02:54:59 +00002337 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002338 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002339 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002340 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002341 Init->getRParenLoc(),
2342 New->getParent());
2343 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002344 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00002345
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002346 // Is this an anonymous union?
2347 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002348 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2349 UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002350 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002351 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2352 Init->getMember(),
Douglas Gregore95b4092009-09-16 18:34:49 +00002353 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00002354
2355 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002356 NewArgs.size(),
2357 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002358 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002359 Init->getRParenLoc());
2360 }
2361
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002362 if (NewInit.isInvalid()) {
2363 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002364 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002365 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002366 // FIXME: It would be nice if ASTOwningVector had a release function.
2367 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002368
Anders Carlsson09025312009-08-29 05:16:22 +00002369 NewInits.push_back((MemInitTy *)NewInit.get());
2370 }
2371 }
Mike Stump1eb44332009-09-09 15:08:12 +00002372
Anders Carlsson09025312009-08-29 05:16:22 +00002373 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002374 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002375 /*FIXME: ColonLoc */
2376 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002377 NewInits.data(), NewInits.size(),
2378 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002379}
2380
John McCall52a575a2009-08-29 08:11:13 +00002381// TODO: this could be templated if the various decl types used the
2382// same method name.
2383static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2384 ClassTemplateDecl *Instance) {
2385 Pattern = Pattern->getCanonicalDecl();
2386
2387 do {
2388 Instance = Instance->getCanonicalDecl();
2389 if (Pattern == Instance) return true;
2390 Instance = Instance->getInstantiatedFromMemberTemplate();
2391 } while (Instance);
2392
2393 return false;
2394}
2395
Douglas Gregor0d696532009-09-28 06:34:35 +00002396static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2397 FunctionTemplateDecl *Instance) {
2398 Pattern = Pattern->getCanonicalDecl();
2399
2400 do {
2401 Instance = Instance->getCanonicalDecl();
2402 if (Pattern == Instance) return true;
2403 Instance = Instance->getInstantiatedFromMemberTemplate();
2404 } while (Instance);
2405
2406 return false;
2407}
2408
Douglas Gregored9c0f92009-10-29 00:04:11 +00002409static bool
2410isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2411 ClassTemplatePartialSpecializationDecl *Instance) {
2412 Pattern
2413 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2414 do {
2415 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2416 Instance->getCanonicalDecl());
2417 if (Pattern == Instance)
2418 return true;
2419 Instance = Instance->getInstantiatedFromMember();
2420 } while (Instance);
2421
2422 return false;
2423}
2424
John McCall52a575a2009-08-29 08:11:13 +00002425static bool isInstantiationOf(CXXRecordDecl *Pattern,
2426 CXXRecordDecl *Instance) {
2427 Pattern = Pattern->getCanonicalDecl();
2428
2429 do {
2430 Instance = Instance->getCanonicalDecl();
2431 if (Pattern == Instance) return true;
2432 Instance = Instance->getInstantiatedFromMemberClass();
2433 } while (Instance);
2434
2435 return false;
2436}
2437
2438static bool isInstantiationOf(FunctionDecl *Pattern,
2439 FunctionDecl *Instance) {
2440 Pattern = Pattern->getCanonicalDecl();
2441
2442 do {
2443 Instance = Instance->getCanonicalDecl();
2444 if (Pattern == Instance) return true;
2445 Instance = Instance->getInstantiatedFromMemberFunction();
2446 } while (Instance);
2447
2448 return false;
2449}
2450
2451static bool isInstantiationOf(EnumDecl *Pattern,
2452 EnumDecl *Instance) {
2453 Pattern = Pattern->getCanonicalDecl();
2454
2455 do {
2456 Instance = Instance->getCanonicalDecl();
2457 if (Pattern == Instance) return true;
2458 Instance = Instance->getInstantiatedFromMemberEnum();
2459 } while (Instance);
2460
2461 return false;
2462}
2463
John McCalled976492009-12-04 22:46:56 +00002464static bool isInstantiationOf(UsingShadowDecl *Pattern,
2465 UsingShadowDecl *Instance,
2466 ASTContext &C) {
2467 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2468}
2469
2470static bool isInstantiationOf(UsingDecl *Pattern,
2471 UsingDecl *Instance,
2472 ASTContext &C) {
2473 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2474}
2475
John McCall7ba107a2009-11-18 02:36:19 +00002476static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2477 UsingDecl *Instance,
2478 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002479 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002480}
2481
2482static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002483 UsingDecl *Instance,
2484 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002485 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002486}
2487
John McCall52a575a2009-08-29 08:11:13 +00002488static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2489 VarDecl *Instance) {
2490 assert(Instance->isStaticDataMember());
2491
2492 Pattern = Pattern->getCanonicalDecl();
2493
2494 do {
2495 Instance = Instance->getCanonicalDecl();
2496 if (Pattern == Instance) return true;
2497 Instance = Instance->getInstantiatedFromStaticDataMember();
2498 } while (Instance);
2499
2500 return false;
2501}
2502
John McCalled976492009-12-04 22:46:56 +00002503// Other is the prospective instantiation
2504// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002505static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002506 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002507 if (UnresolvedUsingTypenameDecl *UUD
2508 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2509 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2510 return isInstantiationOf(UUD, UD, Ctx);
2511 }
2512 }
2513
2514 if (UnresolvedUsingValueDecl *UUD
2515 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002516 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2517 return isInstantiationOf(UUD, UD, Ctx);
2518 }
2519 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002520
Anders Carlsson0d8df782009-08-29 19:37:28 +00002521 return false;
2522 }
Mike Stump1eb44332009-09-09 15:08:12 +00002523
John McCall52a575a2009-08-29 08:11:13 +00002524 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2525 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002526
John McCall52a575a2009-08-29 08:11:13 +00002527 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2528 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002529
John McCall52a575a2009-08-29 08:11:13 +00002530 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2531 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002532
Douglas Gregor7caa6822009-07-24 20:34:43 +00002533 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002534 if (Var->isStaticDataMember())
2535 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2536
2537 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2538 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002539
Douglas Gregor0d696532009-09-28 06:34:35 +00002540 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2541 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2542
Douglas Gregored9c0f92009-10-29 00:04:11 +00002543 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2544 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2545 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2546 PartialSpec);
2547
Anders Carlssond8b285f2009-09-01 04:26:58 +00002548 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2549 if (!Field->getDeclName()) {
2550 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002551 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002552 cast<FieldDecl>(D);
2553 }
2554 }
Mike Stump1eb44332009-09-09 15:08:12 +00002555
John McCalled976492009-12-04 22:46:56 +00002556 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2557 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2558
2559 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2560 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2561
Douglas Gregor815215d2009-05-27 05:35:12 +00002562 return D->getDeclName() && isa<NamedDecl>(Other) &&
2563 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2564}
2565
2566template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002567static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002568 NamedDecl *D,
2569 ForwardIterator first,
2570 ForwardIterator last) {
2571 for (; first != last; ++first)
2572 if (isInstantiationOf(Ctx, D, *first))
2573 return cast<NamedDecl>(*first);
2574
2575 return 0;
2576}
2577
John McCall02cace72009-08-28 07:59:38 +00002578/// \brief Finds the instantiation of the given declaration context
2579/// within the current instantiation.
2580///
2581/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002582DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002583 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002584 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002585 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002586 return cast_or_null<DeclContext>(ID);
2587 } else return DC;
2588}
2589
Douglas Gregored961e72009-05-27 17:54:46 +00002590/// \brief Find the instantiation of the given declaration within the
2591/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002592///
2593/// This routine is intended to be used when \p D is a declaration
2594/// referenced from within a template, that needs to mapped into the
2595/// corresponding declaration within an instantiation. For example,
2596/// given:
2597///
2598/// \code
2599/// template<typename T>
2600/// struct X {
2601/// enum Kind {
2602/// KnownValue = sizeof(T)
2603/// };
2604///
2605/// bool getKind() const { return KnownValue; }
2606/// };
2607///
2608/// template struct X<int>;
2609/// \endcode
2610///
2611/// In the instantiation of X<int>::getKind(), we need to map the
2612/// EnumConstantDecl for KnownValue (which refers to
2613/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002614/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2615/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002616NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002617 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002618 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002619 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002620 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00002621 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002622 // D is a local of some kind. Look into the map of local
2623 // declarations to their instantiations.
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +00002624 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002625 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002626
Douglas Gregore95b4092009-09-16 18:34:49 +00002627 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2628 if (!Record->isDependentContext())
2629 return D;
2630
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002631 // If the RecordDecl is actually the injected-class-name or a
2632 // "templated" declaration for a class template, class template
2633 // partial specialization, or a member class of a class template,
2634 // substitute into the injected-class-name of the class template
2635 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002636 QualType T;
2637 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2638
2639 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00002640 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00002641 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2642 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002643 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002644
2645 // If we call SubstType with an InjectedClassNameType here we
2646 // can end up in an infinite loop.
2647 T = Context.getTypeDeclType(Record);
2648 assert(isa<InjectedClassNameType>(T) &&
2649 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00002650 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00002651 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002652
2653 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002654 // Substitute into the injected-class-name to get the type
2655 // corresponding to the instantiation we want, which may also be
2656 // the current instantiation (if we're in a template
2657 // definition). This substitution should never fail, since we
2658 // know we can instantiate the injected-class-name or we
2659 // wouldn't have gotten to the injected-class-name!
2660
2661 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2662 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002663 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2664 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2665
2666 if (!T->isDependentType()) {
2667 assert(T->isRecordType() && "Instantiation must produce a record type");
2668 return T->getAs<RecordType>()->getDecl();
2669 }
2670
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002671 // We are performing "partial" template instantiation to create
2672 // the member declarations for the members of a class template
2673 // specialization. Therefore, D is actually referring to something
2674 // in the current instantiation. Look through the current
2675 // context, which contains actual instantiations, to find the
2676 // instantiation of the "current instantiation" that D refers
2677 // to.
2678 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002679 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002680 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002681 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002682 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002683 if (isInstantiationOf(ClassTemplate,
2684 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002685 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002686
2687 if (!DC->isDependentContext())
2688 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002689 }
2690
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002691 // We're performing "instantiation" of a member of the current
2692 // instantiation while we are type-checking the
2693 // definition. Compute the declaration context and return that.
2694 assert(!SawNonDependentContext &&
2695 "No dependent context while instantiating record");
2696 DeclContext *DC = computeDeclContext(T);
2697 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002698 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002699 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002700 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002701
Douglas Gregore95b4092009-09-16 18:34:49 +00002702 // Fall through to deal with other dependent record types (e.g.,
2703 // anonymous unions in class templates).
2704 }
John McCall52a575a2009-08-29 08:11:13 +00002705
Douglas Gregore95b4092009-09-16 18:34:49 +00002706 if (!ParentDC->isDependentContext())
2707 return D;
2708
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002709 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002710 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002711 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002712
Douglas Gregor815215d2009-05-27 05:35:12 +00002713 if (ParentDC != D->getDeclContext()) {
2714 // We performed some kind of instantiation in the parent context,
2715 // so now we need to look into the instantiated parent context to
2716 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002717
John McCall3cb0ebd2010-03-10 03:28:59 +00002718 // If our context used to be dependent, we may need to instantiate
2719 // it before performing lookup into that context.
2720 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002721 if (!Spec->isDependentContext()) {
2722 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00002723 const RecordType *Tag = T->getAs<RecordType>();
2724 assert(Tag && "type of non-dependent record is not a RecordType");
2725 if (!Tag->isBeingDefined() &&
2726 RequireCompleteType(Loc, T, diag::err_incomplete_type))
2727 return 0;
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002728 }
2729 }
2730
Douglas Gregor815215d2009-05-27 05:35:12 +00002731 NamedDecl *Result = 0;
2732 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002733 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002734 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2735 } else {
2736 // Since we don't have a name for the entity we're looking for,
2737 // our only option is to walk through all of the declarations to
2738 // find that name. This will occur in a few cases:
2739 //
2740 // - anonymous struct/union within a template
2741 // - unnamed class/struct/union/enum within a template
2742 //
2743 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002744 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002745 ParentDC->decls_begin(),
2746 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002747 }
Mike Stump1eb44332009-09-09 15:08:12 +00002748
John McCall9f54ad42009-12-10 09:41:52 +00002749 // UsingShadowDecls can instantiate to nothing because of using hiding.
Douglas Gregor00225542010-03-01 18:27:54 +00002750 assert((Result || isa<UsingShadowDecl>(D) || D->isInvalidDecl() ||
2751 cast<Decl>(ParentDC)->isInvalidDecl())
John McCall9f54ad42009-12-10 09:41:52 +00002752 && "Unable to find instantiation of declaration!");
2753
Douglas Gregor815215d2009-05-27 05:35:12 +00002754 D = Result;
2755 }
2756
Douglas Gregor815215d2009-05-27 05:35:12 +00002757 return D;
2758}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002759
Mike Stump1eb44332009-09-09 15:08:12 +00002760/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002761/// instantiations we have seen until this point.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002762void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor60406be2010-01-16 22:29:39 +00002763 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00002764 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00002765 PendingImplicitInstantiation Inst;
2766
2767 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002768 Inst = PendingInstantiations.front();
2769 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00002770 } else {
2771 Inst = PendingLocalImplicitInstantiations.front();
2772 PendingLocalImplicitInstantiations.pop_front();
2773 }
Mike Stump1eb44332009-09-09 15:08:12 +00002774
Douglas Gregor7caa6822009-07-24 20:34:43 +00002775 // Instantiate function definitions
2776 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00002777 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
2778 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00002779 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
2780 TSK_ExplicitInstantiationDefinition;
2781 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
2782 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002783 continue;
2784 }
Mike Stump1eb44332009-09-09 15:08:12 +00002785
Douglas Gregor7caa6822009-07-24 20:34:43 +00002786 // Instantiate static data member definitions.
2787 VarDecl *Var = cast<VarDecl>(Inst.first);
2788 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002789
Chandler Carruth291b4412010-02-13 10:17:50 +00002790 // Don't try to instantiate declarations if the most recent redeclaration
2791 // is invalid.
2792 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2793 continue;
2794
2795 // Check if the most recent declaration has changed the specialization kind
2796 // and removed the need for implicit instantiation.
2797 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2798 case TSK_Undeclared:
2799 assert(false && "Cannot instantitiate an undeclared specialization.");
2800 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00002801 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00002802 continue; // No longer need to instantiate this type.
2803 case TSK_ExplicitInstantiationDefinition:
2804 // We only need an instantiation if the pending instantiation *is* the
2805 // explicit instantiation.
2806 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00002807 case TSK_ImplicitInstantiation:
2808 break;
2809 }
2810
John McCallf312b1e2010-08-26 23:41:50 +00002811 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
2812 "instantiating static data member "
2813 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002814
Chandler Carruth58e390e2010-08-25 08:27:02 +00002815 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
2816 TSK_ExplicitInstantiationDefinition;
2817 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
2818 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002819 }
2820}
John McCall0c01d182010-03-24 05:22:00 +00002821
2822void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
2823 const MultiLevelTemplateArgumentList &TemplateArgs) {
2824 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
2825 E = Pattern->ddiag_end(); I != E; ++I) {
2826 DependentDiagnostic *DD = *I;
2827
2828 switch (DD->getKind()) {
2829 case DependentDiagnostic::Access:
2830 HandleDependentAccessCheck(*DD, TemplateArgs);
2831 break;
2832 }
2833 }
2834}
John McCallf312b1e2010-08-26 23:41:50 +00002835