blob: 0a05d0e3042a90b7ca49f7715803c129b4e84198 [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
John McCallb6217662010-03-15 10:12:16 +000028bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29 DeclaratorDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000030 if (!OldDecl->getQualifierLoc())
31 return false;
32
33 NestedNameSpecifierLoc NewQualifierLoc
34 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
35 TemplateArgs);
36
37 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000039
40 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000041 return false;
42}
43
44bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45 TagDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000046 if (!OldDecl->getQualifierLoc())
47 return false;
48
49 NestedNameSpecifierLoc NewQualifierLoc
50 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
51 TemplateArgs);
52
53 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000055
56 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
Chandler Carruth4ced79f2010-06-25 03:22:07 +000060// FIXME: Is this still too simple?
John McCall1d8d1cc2010-08-01 02:01:53 +000061void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
62 Decl *Tmpl, Decl *New) {
Sean Huntcf807c42010-08-18 23:23:40 +000063 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
64 i != e; ++i) {
65 const Attr *TmplAttr = *i;
Chandler Carruth4ced79f2010-06-25 03:22:07 +000066 // FIXME: This should be generalized to more than just the AlignedAttr.
67 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000068 if (Aligned->isAlignmentDependent()) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +000069 // The alignment expression is not potentially evaluated.
John McCall1d8d1cc2010-08-01 02:01:53 +000070 EnterExpressionEvaluationContext Unevaluated(*this,
John McCallf312b1e2010-08-26 23:41:50 +000071 Sema::Unevaluated);
Chandler Carruth4ced79f2010-06-25 03:22:07 +000072
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentExpr()) {
John McCall60d7b3a2010-08-24 06:29:42 +000074 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000075 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000076 if (!Result.isInvalid())
77 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
78 }
79 else {
80 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000081 TemplateArgs,
82 Aligned->getLocation(),
83 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000084 if (Result)
85 AddAlignedAttr(Aligned->getLocation(), New, Result);
86 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000087 continue;
88 }
89 }
90
Anders Carlssond8fe2d52009-11-07 06:07:58 +000091 // FIXME: Is cloning correct for all attributes?
John McCall1d8d1cc2010-08-01 02:01:53 +000092 Attr *NewAttr = TmplAttr->clone(Context);
Anders Carlssond8fe2d52009-11-07 06:07:58 +000093 New->addAttr(NewAttr);
94 }
95}
96
Douglas Gregor4f722be2009-03-25 15:45:12 +000097Decl *
98TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
99 assert(false && "Translation units cannot be instantiated");
100 return D;
101}
102
103Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000104TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
105 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
106 D->getIdentifier());
107 Owner->addDecl(Inst);
108 return Inst;
109}
110
111Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000112TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
113 assert(false && "Namespaces cannot be instantiated");
114 return D;
115}
116
John McCall3dbd3d52010-02-16 06:53:13 +0000117Decl *
118TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
119 NamespaceAliasDecl *Inst
120 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
121 D->getNamespaceLoc(),
122 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000123 D->getIdentifier(),
124 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000125 D->getTargetNameLoc(),
126 D->getNamespace());
127 Owner->addDecl(Inst);
128 return Inst;
129}
130
Richard Smith3e4c6c42011-05-05 21:57:07 +0000131Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
132 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000133 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000134 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000135 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000136 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000137 DI = SemaRef.SubstType(DI, TemplateArgs,
138 D->getLocation(), D->getDeclName());
139 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000140 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000141 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000142 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000143 } else {
144 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000145 }
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000147 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000148 TypedefNameDecl *Typedef;
149 if (IsTypeAlias)
150 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
151 D->getLocation(), D->getIdentifier(), DI);
152 else
153 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
154 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000155 if (Invalid)
156 Typedef->setInvalidDecl();
157
John McCallcde5a402011-02-01 08:20:08 +0000158 // If the old typedef was the name for linkage purposes of an anonymous
159 // tag decl, re-establish that relationship for the new typedef.
160 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
161 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000162 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000163 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000164 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
165 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000166 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000167 }
168
Richard Smith162e1c12011-04-15 14:24:37 +0000169 if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000170 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
171 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000172 if (!InstPrev)
173 return 0;
174
Richard Smith162e1c12011-04-15 14:24:37 +0000175 Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
John McCall5126fd02009-12-30 00:31:22 +0000176 }
177
John McCall1d8d1cc2010-08-01 02:01:53 +0000178 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000179
John McCall46460a62010-01-20 21:53:11 +0000180 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000182 return Typedef;
183}
184
Richard Smith162e1c12011-04-15 14:24:37 +0000185Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000186 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
187 Owner->addDecl(Typedef);
188 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000189}
190
191Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000192 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
193 Owner->addDecl(Typedef);
194 return Typedef;
195}
196
197Decl *
198TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
199 // Create a local instantiation scope for this type alias template, which
200 // will contain the instantiations of the template parameters.
201 LocalInstantiationScope Scope(SemaRef);
202
203 TemplateParameterList *TempParams = D->getTemplateParameters();
204 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
205 if (!InstParams)
206 return 0;
207
208 TypeAliasDecl *Pattern = D->getTemplatedDecl();
209
210 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
211 if (Pattern->getPreviousDeclaration()) {
212 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
213 if (Found.first != Found.second) {
214 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
215 }
216 }
217
218 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
219 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
220 if (!AliasInst)
221 return 0;
222
223 TypeAliasTemplateDecl *Inst
224 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
225 D->getDeclName(), InstParams, AliasInst);
226 if (PrevAliasTemplate)
227 Inst->setPreviousDeclaration(PrevAliasTemplate);
228
229 Inst->setAccess(D->getAccess());
230
231 if (!PrevAliasTemplate)
232 Inst->setInstantiatedFromMemberTemplate(D);
233
234 Owner->addDecl(Inst);
235
236 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000237}
238
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000239/// \brief Instantiate an initializer, breaking it into separate
240/// initialization arguments.
241///
242/// \param S The semantic analysis object.
243///
244/// \param Init The initializer to instantiate.
245///
246/// \param TemplateArgs Template arguments to be substituted into the
247/// initializer.
248///
249/// \param NewArgs Will be filled in with the instantiation arguments.
250///
251/// \returns true if an error occurred, false otherwise
252static bool InstantiateInitializer(Sema &S, Expr *Init,
253 const MultiLevelTemplateArgumentList &TemplateArgs,
254 SourceLocation &LParenLoc,
Nick Lewycky7663f392010-11-20 01:29:55 +0000255 ASTOwningVector<Expr*> &NewArgs,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000256 SourceLocation &RParenLoc) {
257 NewArgs.clear();
258 LParenLoc = SourceLocation();
259 RParenLoc = SourceLocation();
260
261 if (!Init)
262 return false;
263
John McCall4765fa02010-12-06 08:20:24 +0000264 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000265 Init = ExprTemp->getSubExpr();
266
267 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
268 Init = Binder->getSubExpr();
269
270 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
271 Init = ICE->getSubExprAsWritten();
272
273 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
274 LParenLoc = ParenList->getLParenLoc();
275 RParenLoc = ParenList->getRParenLoc();
Douglas Gregor91fc73e2011-01-07 19:35:17 +0000276 return S.SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
277 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000278 }
279
280 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000281 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Douglas Gregor91fc73e2011-01-07 19:35:17 +0000282 if (S.SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
283 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000284 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000285
Douglas Gregor28329e52010-03-24 21:22:47 +0000286 // FIXME: Fake locations!
287 LParenLoc = S.PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000288 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000289 return false;
290 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000291 }
292
John McCall60d7b3a2010-08-24 06:29:42 +0000293 ExprResult Result = S.SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000294 if (Result.isInvalid())
295 return true;
296
297 NewArgs.push_back(Result.takeAs<Expr>());
298 return false;
299}
300
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000301Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000302 // If this is the variable for an anonymous struct or union,
303 // instantiate the anonymous struct/union type first.
304 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
305 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
306 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
307 return 0;
308
John McCallce3ff2b2009-08-25 22:02:44 +0000309 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000310 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000311 TemplateArgs,
312 D->getTypeSpecStartLoc(),
313 D->getDeclName());
314 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000315 return 0;
316
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000317 if (DI->getType()->isFunctionType()) {
318 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
319 << D->isStaticDataMember() << DI->getType();
320 return 0;
321 }
322
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000323 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000324 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000325 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000327 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000328 D->getStorageClass(),
329 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000330 Var->setThreadSpecified(D->isThreadSpecified());
331 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000332 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCallb6217662010-03-15 10:12:16 +0000334 // Substitute the nested name specifier, if any.
335 if (SubstQualifier(D, Var))
336 return 0;
337
Mike Stump1eb44332009-09-09 15:08:12 +0000338 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000339 // out-of-line, the instantiation will have the same lexical
340 // context (which will be a namespace scope) as the template.
341 if (D->isOutOfLine())
342 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000343
John McCall46460a62010-01-20 21:53:11 +0000344 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000345
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000346 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000347 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000348 Var->setReferenced(D->isReferenced());
349 }
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000350
Mike Stump390b4cc2009-05-16 07:39:55 +0000351 // FIXME: In theory, we could have a previous declaration for variables that
352 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000353 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000354 // FIXME: having to fake up a LookupResult is dumb.
355 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000356 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000357 if (D->isStaticDataMember())
358 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000359 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Douglas Gregor7caa6822009-07-24 20:34:43 +0000361 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000362 if (!D->isStaticDataMember())
363 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000364 Owner->makeDeclVisibleInContext(Var);
365 } else {
366 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000367 if (Owner->isFunctionOrMethod())
368 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000369 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000370 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000371
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000372 // Link instantiations of static data members back to the template from
373 // which they were instantiated.
374 if (Var->isStaticDataMember())
375 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000376 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000377
Douglas Gregor60c93c92010-02-09 07:26:29 +0000378 if (Var->getAnyInitializer()) {
379 // We already have an initializer in the class.
380 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000381 if (Var->isStaticDataMember() && !D->isOutOfLine())
382 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
383 else
384 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
385
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000386 // Instantiate the initializer.
387 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000388 ASTOwningVector<Expr*> InitArgs(SemaRef);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000389 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
Douglas Gregora1a04782010-09-09 16:33:13 +0000390 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000391 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000392 // Attach the initializer to the declaration, if we have one.
393 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000394 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000395 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000396 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000397 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000398 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000399 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000400 RParenLoc,
401 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000402 } else {
403 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000404 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000405 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000406 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000407 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000408 // FIXME: Not too happy about invalidating the declaration
409 // because of a bogus initializer.
410 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000411 }
412
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000413 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000414 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
415 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000416 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000417
Richard Smithe3499ca2011-06-21 23:42:09 +0000418 // Diagnose unused local variables with dependent types, where the diagnostic
419 // will have been deferred.
420 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
421 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000422 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000423
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000424 return Var;
425}
426
Abramo Bagnara6206d532010-06-05 05:09:32 +0000427Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
428 AccessSpecDecl* AD
429 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
430 D->getAccessSpecifierLoc(), D->getColonLoc());
431 Owner->addHiddenDecl(AD);
432 return AD;
433}
434
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000435Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
436 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000437 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000438 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000439 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000440 DI = SemaRef.SubstType(DI, TemplateArgs,
441 D->getLocation(), D->getDeclName());
442 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000443 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000444 Invalid = true;
445 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000446 // C++ [temp.arg.type]p3:
447 // If a declaration acquires a function type through a type
448 // dependent on a template-parameter and this causes a
449 // declaration that does not use the syntactic form of a
450 // function declarator to have function type, the program is
451 // ill-formed.
452 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000453 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 Invalid = true;
455 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000456 } else {
457 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000458 }
459
460 Expr *BitWidth = D->getBitWidth();
461 if (Invalid)
462 BitWidth = 0;
463 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000464 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000465 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000466
John McCall60d7b3a2010-08-24 06:29:42 +0000467 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000468 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000469 if (InstantiatedBitWidth.isInvalid()) {
470 Invalid = true;
471 BitWidth = 0;
472 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000473 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474 }
475
John McCall07fb6be2009-10-22 23:33:21 +0000476 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
477 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000478 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000479 D->getLocation(),
480 D->isMutable(),
481 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000482 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000483 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000484 D->getAccess(),
485 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000486 if (!Field) {
487 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000488 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000489 }
Mike Stump1eb44332009-09-09 15:08:12 +0000490
John McCall1d8d1cc2010-08-01 02:01:53 +0000491 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000492
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000493 if (Invalid)
494 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000496 if (!Field->getDeclName()) {
497 // Keep track of where this decl came from.
498 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000499 }
500 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
501 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000502 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000503 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000504 }
Mike Stump1eb44332009-09-09 15:08:12 +0000505
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000506 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000507 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000508 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000509
510 return Field;
511}
512
Francois Pichet87c2e122010-11-21 06:08:52 +0000513Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
514 NamedDecl **NamedChain =
515 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
516
517 int i = 0;
518 for (IndirectFieldDecl::chain_iterator PI =
519 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000520 PI != PE; ++PI) {
521 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
522 TemplateArgs);
523 if (!Next)
524 return 0;
525
526 NamedChain[i++] = Next;
527 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000528
Francois Pichet40e17752010-12-09 10:07:54 +0000529 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000530 IndirectFieldDecl* IndirectField
531 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000532 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000533 NamedChain, D->getChainingSize());
534
535
536 IndirectField->setImplicit(D->isImplicit());
537 IndirectField->setAccess(D->getAccess());
538 Owner->addDecl(IndirectField);
539 return IndirectField;
540}
541
John McCall02cace72009-08-28 07:59:38 +0000542Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000543 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000544 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000545 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000546 TypeSourceInfo *InstTy;
547 // If this is an unsupported friend, don't bother substituting template
548 // arguments into it. The actual type referred to won't be used by any
549 // parts of Clang, and may not be valid for instantiating. Just use the
550 // same info for the instantiated friend.
551 if (D->isUnsupportedFriend()) {
552 InstTy = Ty;
553 } else {
554 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
555 D->getLocation(), DeclarationName());
556 }
557 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000558 return 0;
John McCall02cace72009-08-28 07:59:38 +0000559
Douglas Gregor06245bf2010-04-07 17:57:12 +0000560 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
561 if (!FD)
562 return 0;
563
564 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000565 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000566 Owner->addDecl(FD);
567 return FD;
568 }
569
570 NamedDecl *ND = D->getFriendDecl();
571 assert(ND && "friend decl must be a decl or a type!");
572
John McCallaf2094e2010-04-08 09:05:18 +0000573 // All of the Visit implementations for the various potential friend
574 // declarations have to be carefully written to work for friend
575 // objects, with the most important detail being that the target
576 // decl should almost certainly not be placed in Owner.
577 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000578 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000579
John McCall02cace72009-08-28 07:59:38 +0000580 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000581 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
582 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000583 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000584 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000585 Owner->addDecl(FD);
586 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000587}
588
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000589Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
590 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Douglas Gregorac7610d2009-06-22 20:57:11 +0000592 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000593 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000594
John McCall60d7b3a2010-08-24 06:29:42 +0000595 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000596 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000597 if (InstantiatedAssertExpr.isInvalid())
598 return 0;
599
John McCall60d7b3a2010-08-24 06:29:42 +0000600 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000601 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000602 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000603 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000604 Message.get(),
605 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000606}
607
608Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000609 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000610 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000611 /*PrevDecl=*/0, D->isScoped(),
612 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000613 if (D->isFixed()) {
614 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
615 // If we have type source information for the underlying type, it means it
616 // has been explicitly set by the user. Perform substitution on it before
617 // moving on.
618 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
619 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
620 TemplateArgs,
621 UnderlyingLoc,
622 DeclarationName()));
623
624 if (!Enum->getIntegerTypeSourceInfo())
625 Enum->setIntegerType(SemaRef.Context.IntTy);
626 }
627 else {
628 assert(!D->getIntegerType()->isDependentType()
629 && "Dependent type without type source info");
630 Enum->setIntegerType(D->getIntegerType());
631 }
632 }
633
John McCall5b629aa2010-10-22 23:36:17 +0000634 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
635
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000636 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000637 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000638 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000639 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000640 Enum->startDefinition();
641
Douglas Gregor96084f12010-03-01 19:00:07 +0000642 if (D->getDeclContext()->isFunctionOrMethod())
643 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
644
John McCalld226f652010-08-21 09:40:31 +0000645 llvm::SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000646
647 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000648 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
649 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000650 EC != ECEnd; ++EC) {
651 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000652 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000653 if (Expr *UninstValue = EC->getInitExpr()) {
654 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000655 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000656 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000657
John McCallce3ff2b2009-08-25 22:02:44 +0000658 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000659 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000660
661 // Drop the initial value and continue.
662 bool isInvalid = false;
663 if (Value.isInvalid()) {
664 Value = SemaRef.Owned((Expr *)0);
665 isInvalid = true;
666 }
667
Mike Stump1eb44332009-09-09 15:08:12 +0000668 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000669 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
670 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000671 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000672
673 if (isInvalid) {
674 if (EnumConst)
675 EnumConst->setInvalidDecl();
676 Enum->setInvalidDecl();
677 }
678
679 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000680 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
681
John McCall3b85ecf2010-01-23 22:37:59 +0000682 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000683 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000684 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000685 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000686
687 if (D->getDeclContext()->isFunctionOrMethod()) {
688 // If the enumeration is within a function or method, record the enum
689 // constant as a local.
690 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
691 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000692 }
693 }
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000695 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000696 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000697 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000698 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000699 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000700 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000701
702 return Enum;
703}
704
Douglas Gregor6477b692009-03-25 15:04:13 +0000705Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
706 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
707 return 0;
708}
709
John McCalle29ba202009-08-20 01:44:21 +0000710Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000711 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
712
Douglas Gregor550d9b22009-10-31 17:21:17 +0000713 // Create a local instantiation scope for this class template, which
714 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000715 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000716 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000717 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000718 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000719 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000720
721 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000722
723 // Instantiate the qualifier. We have to do this first in case
724 // we're a friend declaration, because if we are then we need to put
725 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000726 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
727 if (QualifierLoc) {
728 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
729 TemplateArgs);
730 if (!QualifierLoc)
731 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000732 }
733
734 CXXRecordDecl *PrevDecl = 0;
735 ClassTemplateDecl *PrevClassTemplate = 0;
736
Nick Lewycky37574f52010-11-08 23:29:42 +0000737 if (!isFriend && Pattern->getPreviousDeclaration()) {
738 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
739 if (Found.first != Found.second) {
740 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
741 if (PrevClassTemplate)
742 PrevDecl = PrevClassTemplate->getTemplatedDecl();
743 }
744 }
745
John McCall93ba8572010-03-25 06:39:04 +0000746 // If this isn't a friend, then it's a member template, in which
747 // case we just want to build the instantiation in the
748 // specialization. If it is a friend, we want to build it in
749 // the appropriate context.
750 DeclContext *DC = Owner;
751 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000752 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000753 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000754 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000755 DC = SemaRef.computeDeclContext(SS);
756 if (!DC) return 0;
757 } else {
758 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
759 Pattern->getDeclContext(),
760 TemplateArgs);
761 }
762
763 // Look for a previous declaration of the template in the owning
764 // context.
765 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
766 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
767 SemaRef.LookupQualifiedName(R, DC);
768
769 if (R.isSingleResult()) {
770 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
771 if (PrevClassTemplate)
772 PrevDecl = PrevClassTemplate->getTemplatedDecl();
773 }
774
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000775 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000776 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000777 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000778 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000779 return 0;
780 }
781
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000782 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000783 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000784 bool Complain = true;
785
786 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
787 // template for struct std::tr1::__detail::_Map_base, where the
788 // template parameters of the friend declaration don't match the
789 // template parameters of the original declaration. In this one
790 // case, we don't complain about the ill-formed friend
791 // declaration.
792 if (isFriend && Pattern->getIdentifier() &&
793 Pattern->getIdentifier()->isStr("_Map_base") &&
794 DC->isNamespace() &&
795 cast<NamespaceDecl>(DC)->getIdentifier() &&
796 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
797 DeclContext *DCParent = DC->getParent();
798 if (DCParent->isNamespace() &&
799 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
800 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
801 DeclContext *DCParent2 = DCParent->getParent();
802 if (DCParent2->isNamespace() &&
803 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
804 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
805 DCParent2->getParent()->isTranslationUnit())
806 Complain = false;
807 }
808 }
809
John McCall93ba8572010-03-25 06:39:04 +0000810 TemplateParameterList *PrevParams
811 = PrevClassTemplate->getTemplateParameters();
812
813 // Make sure the parameter lists match.
814 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000815 Complain,
816 Sema::TPL_TemplateMatch)) {
817 if (Complain)
818 return 0;
819
820 AdoptedPreviousTemplateParams = true;
821 InstParams = PrevParams;
822 }
John McCall93ba8572010-03-25 06:39:04 +0000823
824 // Do some additional validation, then merge default arguments
825 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000826 if (!AdoptedPreviousTemplateParams &&
827 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000828 Sema::TPC_ClassTemplate))
829 return 0;
830 }
831 }
832
John McCalle29ba202009-08-20 01:44:21 +0000833 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000834 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000835 Pattern->getLocStart(), Pattern->getLocation(),
836 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000837 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000838
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000839 if (QualifierLoc)
840 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000841
John McCalle29ba202009-08-20 01:44:21 +0000842 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000843 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
844 D->getIdentifier(), InstParams, RecordInst,
845 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000846 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000847
John McCall93ba8572010-03-25 06:39:04 +0000848 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000849 if (PrevClassTemplate)
850 Inst->setAccess(PrevClassTemplate->getAccess());
851 else
852 Inst->setAccess(D->getAccess());
853
John McCall93ba8572010-03-25 06:39:04 +0000854 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
855 // TODO: do we want to track the instantiation progeny of this
856 // friend target decl?
857 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000858 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000859 if (!PrevClassTemplate)
860 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000861 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000862
863 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000864 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000865 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000866
Douglas Gregor259571e2009-10-30 22:42:42 +0000867 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000868 if (isFriend) {
869 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000870 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000871 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000872
John McCalle29ba202009-08-20 01:44:21 +0000873 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000874
875 if (!PrevClassTemplate) {
876 // Queue up any out-of-line partial specializations of this member
877 // class template; the client will force their instantiation once
878 // the enclosing class has been instantiated.
879 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
880 D->getPartialSpecializations(PartialSpecs);
881 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
882 if (PartialSpecs[I]->isOutOfLine())
883 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
884 }
885
John McCalle29ba202009-08-20 01:44:21 +0000886 return Inst;
887}
888
Douglas Gregord60e1052009-08-27 16:57:43 +0000889Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000890TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
891 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000892 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
893
894 // Lookup the already-instantiated declaration in the instantiation
895 // of the class template and return that.
896 DeclContext::lookup_result Found
897 = Owner->lookup(ClassTemplate->getDeclName());
898 if (Found.first == Found.second)
899 return 0;
900
901 ClassTemplateDecl *InstClassTemplate
902 = dyn_cast<ClassTemplateDecl>(*Found.first);
903 if (!InstClassTemplate)
904 return 0;
905
Douglas Gregord65587f2010-11-10 19:44:59 +0000906 if (ClassTemplatePartialSpecializationDecl *Result
907 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
908 return Result;
909
910 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000911}
912
913Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000914TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000915 // Create a local instantiation scope for this function template, which
916 // will contain the instantiations of the template parameters and then get
917 // merged with the local instantiation scope for the function template
918 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000919 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000920
Douglas Gregord60e1052009-08-27 16:57:43 +0000921 TemplateParameterList *TempParams = D->getTemplateParameters();
922 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000923 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000924 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000925
Douglas Gregora735b202009-10-13 14:39:41 +0000926 FunctionDecl *Instantiated = 0;
927 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
928 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
929 InstParams));
930 else
931 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
932 D->getTemplatedDecl(),
933 InstParams));
934
935 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000936 return 0;
937
John McCall46460a62010-01-20 21:53:11 +0000938 Instantiated->setAccess(D->getAccess());
939
Mike Stump1eb44332009-09-09 15:08:12 +0000940 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000941 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000942 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000943 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000944 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000945 assert(InstTemplate &&
946 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000947
John McCallb1a56e72010-03-26 23:10:15 +0000948 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
949
John McCalle976ffe2009-12-14 23:19:40 +0000950 // Link the instantiation back to the pattern *unless* this is a
951 // non-definition friend declaration.
952 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000953 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000954 InstTemplate->setInstantiatedFromMemberTemplate(D);
955
John McCallb1a56e72010-03-26 23:10:15 +0000956 // Make declarations visible in the appropriate context.
957 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000958 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000959
Douglas Gregord60e1052009-08-27 16:57:43 +0000960 return InstTemplate;
961}
962
Douglas Gregord475b8d2009-03-25 21:17:03 +0000963Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
964 CXXRecordDecl *PrevDecl = 0;
965 if (D->isInjectedClassName())
966 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000967 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000968 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
969 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000970 TemplateArgs);
971 if (!Prev) return 0;
972 PrevDecl = cast<CXXRecordDecl>(Prev);
973 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000974
975 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000976 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000977 D->getLocStart(), D->getLocation(),
978 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000979
980 // Substitute the nested name specifier, if any.
981 if (SubstQualifier(D, Record))
982 return 0;
983
Douglas Gregord475b8d2009-03-25 21:17:03 +0000984 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000985 // FIXME: Check against AS_none is an ugly hack to work around the issue that
986 // the tag decls introduced by friend class declarations don't have an access
987 // specifier. Remove once this area of the code gets sorted out.
988 if (D->getAccess() != AS_none)
989 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000990 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000991 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000992
John McCall02cace72009-08-28 07:59:38 +0000993 // If the original function was part of a friend declaration,
994 // inherit its namespace state.
995 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
996 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
997
Douglas Gregor9901c572010-05-21 00:31:19 +0000998 // Make sure that anonymous structs and unions are recorded.
999 if (D->isAnonymousStructOrUnion()) {
1000 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001001 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001002 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1003 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001004
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001005 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001006 return Record;
1007}
1008
John McCall02cace72009-08-28 07:59:38 +00001009/// Normal class members are of more specific types and therefore
1010/// don't make it here. This function serves two purposes:
1011/// 1) instantiating function templates
1012/// 2) substituting friend declarations
1013/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001014Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001015 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001016 // Check whether there is already a function template specialization for
1017 // this declaration.
1018 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1019 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001020 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +00001021 std::pair<const TemplateArgument *, unsigned> Innermost
1022 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001024 FunctionDecl *SpecFunc
1025 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1026 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Douglas Gregor127102b2009-06-29 20:59:39 +00001028 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001029 if (SpecFunc)
1030 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001031 }
Mike Stump1eb44332009-09-09 15:08:12 +00001032
John McCallb0cb0222010-03-27 05:57:59 +00001033 bool isFriend;
1034 if (FunctionTemplate)
1035 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1036 else
1037 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1038
Douglas Gregor79c22782010-01-16 20:21:20 +00001039 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001040 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +00001041 !(isa<Decl>(Owner) &&
1042 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001043 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Douglas Gregore53060f2009-06-25 22:08:12 +00001045 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001046 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1047 TInfo = SubstFunctionType(D, Params);
1048 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001049 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001050 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001051
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001052 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1053 if (QualifierLoc) {
1054 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1055 TemplateArgs);
1056 if (!QualifierLoc)
1057 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001058 }
1059
John McCall68b6b872010-02-06 01:50:47 +00001060 // If we're instantiating a local function declaration, put the result
1061 // in the owner; otherwise we need to find the instantiated context.
1062 DeclContext *DC;
1063 if (D->getDeclContext()->isFunctionOrMethod())
1064 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001065 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001066 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001067 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001068 DC = SemaRef.computeDeclContext(SS);
1069 if (!DC) return 0;
1070 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001071 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1072 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001073 }
John McCall68b6b872010-02-06 01:50:47 +00001074
John McCall02cace72009-08-28 07:59:38 +00001075 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001076 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1077 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001078 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001079 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +00001080
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001081 if (QualifierLoc)
1082 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001083
John McCallb1a56e72010-03-26 23:10:15 +00001084 DeclContext *LexicalDC = Owner;
1085 if (!isFriend && D->isOutOfLine()) {
1086 assert(D->getDeclContext()->isFileContext());
1087 LexicalDC = D->getDeclContext();
1088 }
1089
1090 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001091
Douglas Gregore53060f2009-06-25 22:08:12 +00001092 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001093 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001094 // Adopt the already-instantiated parameters into our own context.
1095 for (unsigned P = 0; P < Params.size(); ++P)
1096 if (Params[P])
1097 Params[P]->setOwningFunction(Function);
1098 } else {
1099 // Since we were instantiated via a typedef of a function type, create
1100 // new parameters.
1101 const FunctionProtoType *Proto
1102 = Function->getType()->getAs<FunctionProtoType>();
1103 assert(Proto && "No function prototype in template instantiation?");
1104 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1105 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1106 ParmVarDecl *Param
1107 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1108 *AI);
1109 Param->setScopeInfo(0, Params.size());
1110 Params.push_back(Param);
1111 }
1112 }
Douglas Gregor838db382010-02-11 01:19:42 +00001113 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +00001114
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001115 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001116 if (TemplateParams) {
1117 // Our resulting instantiation is actually a function template, since we
1118 // are substituting only the outer template parameters. For example, given
1119 //
1120 // template<typename T>
1121 // struct X {
1122 // template<typename U> friend void f(T, U);
1123 // };
1124 //
1125 // X<int> x;
1126 //
1127 // We are instantiating the friend function template "f" within X<int>,
1128 // which means substituting int for T, but leaving "f" as a friend function
1129 // template.
1130 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001131 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001132 Function->getLocation(),
1133 Function->getDeclName(),
1134 TemplateParams, Function);
1135 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001136
1137 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001138
1139 if (isFriend && D->isThisDeclarationADefinition()) {
1140 // TODO: should we remember this connection regardless of whether
1141 // the friend declaration provided a body?
1142 FunctionTemplate->setInstantiatedFromMemberTemplate(
1143 D->getDescribedFunctionTemplate());
1144 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001145 } else if (FunctionTemplate) {
1146 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001147 std::pair<const TemplateArgument *, unsigned> Innermost
1148 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001149 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001150 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001151 Innermost.first,
1152 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001153 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001154 } else if (isFriend && D->isThisDeclarationADefinition()) {
1155 // TODO: should we remember this connection regardless of whether
1156 // the friend declaration provided a body?
1157 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001158 }
Douglas Gregora735b202009-10-13 14:39:41 +00001159
Douglas Gregore53060f2009-06-25 22:08:12 +00001160 if (InitFunctionInstantiation(Function, D))
1161 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Douglas Gregore53060f2009-06-25 22:08:12 +00001163 bool Redeclaration = false;
John McCallaf2094e2010-04-08 09:05:18 +00001164 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001165
John McCall68263142009-11-18 22:49:29 +00001166 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1167 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1168
John McCallaf2094e2010-04-08 09:05:18 +00001169 if (DependentFunctionTemplateSpecializationInfo *Info
1170 = D->getDependentSpecializationInfo()) {
1171 assert(isFriend && "non-friend has dependent specialization info?");
1172
1173 // This needs to be set now for future sanity.
1174 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1175
1176 // Instantiate the explicit template arguments.
1177 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1178 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001179 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1180 ExplicitArgs, TemplateArgs))
1181 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001182
1183 // Map the candidate templates to their instantiations.
1184 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1185 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1186 Info->getTemplate(I),
1187 TemplateArgs);
1188 if (!Temp) return 0;
1189
1190 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1191 }
1192
1193 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1194 &ExplicitArgs,
1195 Previous))
1196 Function->setInvalidDecl();
1197
1198 isExplicitSpecialization = true;
1199
1200 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001201 // Look only into the namespace where the friend would be declared to
1202 // find a previous declaration. This is the innermost enclosing namespace,
1203 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001204 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001205
Douglas Gregora735b202009-10-13 14:39:41 +00001206 // In C++, the previous declaration we find might be a tag type
1207 // (class or enum). In this case, the new declaration will hide the
1208 // tag type. Note that this does does not apply if we're declaring a
1209 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001210 if (Previous.isSingleTagDecl())
1211 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001212 }
1213
John McCall9f54ad42009-12-10 09:41:52 +00001214 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Peter Collingbournec80e8112011-01-21 02:08:54 +00001215 isExplicitSpecialization, Redeclaration);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001216
John McCall76d32642010-04-24 01:30:58 +00001217 NamedDecl *PrincipalDecl = (TemplateParams
1218 ? cast<NamedDecl>(FunctionTemplate)
1219 : Function);
1220
Douglas Gregora735b202009-10-13 14:39:41 +00001221 // If the original function was part of a friend declaration,
1222 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001223 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001224 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001225 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001226 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001227 else
Douglas Gregora735b202009-10-13 14:39:41 +00001228 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001229
1230 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1231 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001232
Gabor Greif77535df2010-08-30 22:25:56 +00001233 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001234
Douglas Gregor238058c2010-05-18 05:45:02 +00001235 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1236 D->isThisDeclarationADefinition()) {
1237 // Check for a function body.
1238 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001239 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001240 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1241 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1242 << Function->getDeclName();
1243 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1244 Function->setInvalidDecl();
1245 }
1246 // Check for redefinitions due to other instantiations of this or
1247 // a similar friend function.
1248 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1249 REnd = Function->redecls_end();
1250 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001251 if (*R == Function)
1252 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001253 switch (R->getFriendObjectKind()) {
1254 case Decl::FOK_None:
1255 if (!queuedInstantiation && R->isUsed(false)) {
1256 if (MemberSpecializationInfo *MSInfo
1257 = Function->getMemberSpecializationInfo()) {
1258 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1259 SourceLocation Loc = R->getLocation(); // FIXME
1260 MSInfo->setPointOfInstantiation(Loc);
1261 SemaRef.PendingLocalImplicitInstantiations.push_back(
1262 std::make_pair(Function, Loc));
1263 queuedInstantiation = true;
1264 }
1265 }
1266 }
1267 break;
1268 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001269 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001270 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001271 if (RPattern->isDefined(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001272 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1273 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001274 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001275 Function->setInvalidDecl();
1276 break;
1277 }
1278 }
1279 }
1280 }
Douglas Gregora735b202009-10-13 14:39:41 +00001281 }
1282
John McCall76d32642010-04-24 01:30:58 +00001283 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1284 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1285 PrincipalDecl->setNonMemberOperator();
1286
Sean Hunteb88ae52011-05-23 21:07:59 +00001287 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001288 return Function;
1289}
1290
Douglas Gregord60e1052009-08-27 16:57:43 +00001291Decl *
1292TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1293 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001294 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1295 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001296 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001297 // We are creating a function template specialization from a function
1298 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001299 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001300 std::pair<const TemplateArgument *, unsigned> Innermost
1301 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001303 FunctionDecl *SpecFunc
1304 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1305 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Douglas Gregor6b906862009-08-21 00:16:32 +00001307 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001308 if (SpecFunc)
1309 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001310 }
1311
John McCallb0cb0222010-03-27 05:57:59 +00001312 bool isFriend;
1313 if (FunctionTemplate)
1314 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1315 else
1316 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1317
Douglas Gregor79c22782010-01-16 20:21:20 +00001318 bool MergeWithParentScope = (TemplateParams != 0) ||
1319 !(isa<Decl>(Owner) &&
1320 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001321 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001322
John McCall4eab39f2010-10-19 02:26:41 +00001323 // Instantiate enclosing template arguments for friends.
1324 llvm::SmallVector<TemplateParameterList *, 4> TempParamLists;
1325 unsigned NumTempParamLists = 0;
1326 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1327 TempParamLists.set_size(NumTempParamLists);
1328 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1329 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1330 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1331 if (!InstParams)
1332 return NULL;
1333 TempParamLists[I] = InstParams;
1334 }
1335 }
1336
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001337 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001338 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1339 TInfo = SubstFunctionType(D, Params);
1340 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001341 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001342 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001343
Abramo Bagnara723df242010-12-14 22:11:44 +00001344 // \brief If the type of this function, after ignoring parentheses,
1345 // is not *directly* a function type, then we're instantiating a function
1346 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001347 //
1348 // typedef int functype(int, int);
1349 // functype func;
1350 //
1351 // In this case, we'll just go instantiate the ParmVarDecls that we
1352 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001353 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001354 assert(!Params.size() && "Instantiating type could not yield parameters");
Douglas Gregor12c9c002011-01-07 16:43:16 +00001355 llvm::SmallVector<QualType, 4> ParamTypes;
1356 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1357 D->getNumParams(), TemplateArgs, ParamTypes,
1358 &Params))
1359 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001360 }
1361
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001362 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1363 if (QualifierLoc) {
1364 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001365 TemplateArgs);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001366 if (!QualifierLoc)
1367 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001368 }
1369
1370 DeclContext *DC = Owner;
1371 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001372 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001373 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001374 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001375 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001376
1377 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1378 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001379 } else {
1380 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1381 D->getDeclContext(),
1382 TemplateArgs);
1383 }
1384 if (!DC) return 0;
1385 }
1386
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001387 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001388 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001389 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001391 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001392 DeclarationNameInfo NameInfo
1393 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001394 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001395 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001396 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001397 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001398 Constructor->isInlineSpecified(),
Sean Hunt5f802e52011-05-06 00:11:07 +00001399 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001400 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001401 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001402 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001403 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001404 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001405 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001406 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001407 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001408 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001409 Conversion->isExplicit(),
1410 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001411 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001412 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001413 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001414 D->isStatic(),
1415 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001416 D->isInlineSpecified(),
1417 D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001418 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001419
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001420 if (QualifierLoc)
1421 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001422
Douglas Gregord60e1052009-08-27 16:57:43 +00001423 if (TemplateParams) {
1424 // Our resulting instantiation is actually a function template, since we
1425 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001426 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001427 // template<typename T>
1428 // struct X {
1429 // template<typename U> void f(T, U);
1430 // };
1431 //
1432 // X<int> x;
1433 //
1434 // We are instantiating the member template "f" within X<int>, which means
1435 // substituting int for T, but leaving "f" as a member function template.
1436 // Build the function template itself.
1437 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1438 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001439 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001440 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001441 if (isFriend) {
1442 FunctionTemplate->setLexicalDeclContext(Owner);
1443 FunctionTemplate->setObjectOfFriendDecl(true);
1444 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001445 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001446 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001447 } else if (FunctionTemplate) {
1448 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001449 std::pair<const TemplateArgument *, unsigned> Innermost
1450 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001451 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001452 TemplateArgumentList::CreateCopy(SemaRef.Context,
1453 Innermost.first,
1454 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001455 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001456 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001457 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001458 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001459 }
1460
Mike Stump1eb44332009-09-09 15:08:12 +00001461 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001462 // out-of-line, the instantiation will have the same lexical
1463 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001464 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001465 if (NumTempParamLists)
1466 Method->setTemplateParameterListsInfo(SemaRef.Context,
1467 NumTempParamLists,
1468 TempParamLists.data());
1469
John McCallb0cb0222010-03-27 05:57:59 +00001470 Method->setLexicalDeclContext(Owner);
1471 Method->setObjectOfFriendDecl(true);
1472 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001473 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001474
Douglas Gregor5545e162009-03-24 00:38:23 +00001475 // Attach the parameters
1476 for (unsigned P = 0; P < Params.size(); ++P)
1477 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001478 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001479
1480 if (InitMethodInstantiation(Method, D))
1481 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001482
Abramo Bagnara25777432010-08-11 22:01:17 +00001483 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1484 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001485
John McCallb0cb0222010-03-27 05:57:59 +00001486 if (!FunctionTemplate || TemplateParams || isFriend) {
1487 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001488
Douglas Gregordec06662009-08-21 18:42:58 +00001489 // In C++, the previous declaration we find might be a tag type
1490 // (class or enum). In this case, the new declaration will hide the
1491 // tag type. Note that this does does not apply if we're declaring a
1492 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001493 if (Previous.isSingleTagDecl())
1494 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001495 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001496
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001497 bool Redeclaration = false;
Peter Collingbournec80e8112011-01-21 02:08:54 +00001498 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001499
Douglas Gregor4ba31362009-12-01 17:24:26 +00001500 if (D->isPure())
1501 SemaRef.CheckPureMethod(Method, SourceRange());
1502
John McCall46460a62010-01-20 21:53:11 +00001503 Method->setAccess(D->getAccess());
1504
Anders Carlsson9eefa222011-01-20 06:52:44 +00001505 SemaRef.CheckOverrideControl(Method);
1506
John McCallb0cb0222010-03-27 05:57:59 +00001507 if (FunctionTemplate) {
1508 // If there's a function template, let our caller handle it.
1509 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1510 // Don't hide a (potentially) valid declaration with an invalid one.
1511 } else {
1512 NamedDecl *DeclToAdd = (TemplateParams
1513 ? cast<NamedDecl>(FunctionTemplate)
1514 : Method);
1515 if (isFriend)
1516 Record->makeDeclVisibleInContext(DeclToAdd);
1517 else
1518 Owner->addDecl(DeclToAdd);
1519 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001520
1521 if (D->isExplicitlyDefaulted()) {
1522 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1523 } else {
1524 assert(!D->isDefaulted() &&
1525 "should not implicitly default uninstantiated function");
1526 }
1527
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001528 return Method;
1529}
1530
Douglas Gregor615c5d42009-03-24 16:43:20 +00001531Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001532 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001533}
1534
Douglas Gregor03b2b072009-03-24 00:15:49 +00001535Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001536 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001537}
1538
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001539Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001540 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001541}
1542
Douglas Gregor6477b692009-03-25 15:04:13 +00001543ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001544 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1545 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001546}
1547
John McCalle29ba202009-08-20 01:44:21 +00001548Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1549 TemplateTypeParmDecl *D) {
1550 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001551 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001552
John McCalle29ba202009-08-20 01:44:21 +00001553 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001554 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1555 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001556 D->getDepth() - TemplateArgs.getNumLevels(),
1557 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001558 D->wasDeclaredWithTypename(),
1559 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001560 Inst->setAccess(AS_public);
1561
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001562 if (D->hasDefaultArgument())
1563 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001564
Douglas Gregor550d9b22009-10-31 17:21:17 +00001565 // Introduce this template parameter's instantiation into the instantiation
1566 // scope.
1567 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1568
John McCalle29ba202009-08-20 01:44:21 +00001569 return Inst;
1570}
1571
Douglas Gregor33642df2009-10-23 23:25:44 +00001572Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1573 NonTypeTemplateParmDecl *D) {
1574 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001575 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
1576 llvm::SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1577 llvm::SmallVector<QualType, 4> ExpandedParameterPackTypes;
1578 bool IsExpandedParameterPack = false;
1579 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001580 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001581 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001582
1583 if (D->isExpandedParameterPack()) {
1584 // The non-type template parameter pack is an already-expanded pack
1585 // expansion of types. Substitute into each of the expanded types.
1586 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1587 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1588 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1589 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1590 TemplateArgs,
1591 D->getLocation(),
1592 D->getDeclName());
1593 if (!NewDI)
1594 return 0;
1595
1596 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1597 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1598 D->getLocation());
1599 if (NewT.isNull())
1600 return 0;
1601 ExpandedParameterPackTypes.push_back(NewT);
1602 }
1603
1604 IsExpandedParameterPack = true;
1605 DI = D->getTypeSourceInfo();
1606 T = DI->getType();
1607 } else if (isa<PackExpansionTypeLoc>(TL)) {
1608 // The non-type template parameter pack's type is a pack expansion of types.
1609 // Determine whether we need to expand this parameter pack into separate
1610 // types.
1611 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1612 TypeLoc Pattern = Expansion.getPatternLoc();
1613 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1614 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1615
1616 // Determine whether the set of unexpanded parameter packs can and should
1617 // be expanded.
1618 bool Expand = true;
1619 bool RetainExpansion = false;
1620 llvm::Optional<unsigned> OrigNumExpansions
1621 = Expansion.getTypePtr()->getNumExpansions();
1622 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1623 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1624 Pattern.getSourceRange(),
1625 Unexpanded.data(),
1626 Unexpanded.size(),
1627 TemplateArgs,
1628 Expand, RetainExpansion,
1629 NumExpansions))
1630 return 0;
1631
1632 if (Expand) {
1633 for (unsigned I = 0; I != *NumExpansions; ++I) {
1634 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1635 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1636 D->getLocation(),
1637 D->getDeclName());
1638 if (!NewDI)
1639 return 0;
1640
1641 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1642 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1643 NewDI->getType(),
1644 D->getLocation());
1645 if (NewT.isNull())
1646 return 0;
1647 ExpandedParameterPackTypes.push_back(NewT);
1648 }
1649
1650 // Note that we have an expanded parameter pack. The "type" of this
1651 // expanded parameter pack is the original expansion type, but callers
1652 // will end up using the expanded parameter pack types for type-checking.
1653 IsExpandedParameterPack = true;
1654 DI = D->getTypeSourceInfo();
1655 T = DI->getType();
1656 } else {
1657 // We cannot fully expand the pack expansion now, so substitute into the
1658 // pattern and create a new pack expansion type.
1659 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1660 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1661 D->getLocation(),
1662 D->getDeclName());
1663 if (!NewPattern)
1664 return 0;
1665
1666 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1667 NumExpansions);
1668 if (!DI)
1669 return 0;
1670
1671 T = DI->getType();
1672 }
1673 } else {
1674 // Simple case: substitution into a parameter that is not a parameter pack.
1675 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1676 D->getLocation(), D->getDeclName());
1677 if (!DI)
1678 return 0;
1679
1680 // Check that this type is acceptable for a non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001681 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1682 D->getLocation());
1683 if (T.isNull()) {
1684 T = SemaRef.Context.IntTy;
1685 Invalid = true;
1686 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001687 }
1688
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001689 NonTypeTemplateParmDecl *Param;
1690 if (IsExpandedParameterPack)
1691 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001692 D->getInnerLocStart(),
1693 D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001694 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001695 D->getPosition(),
1696 D->getIdentifier(), T,
1697 DI,
1698 ExpandedParameterPackTypes.data(),
1699 ExpandedParameterPackTypes.size(),
1700 ExpandedParameterPackTypesAsWritten.data());
1701 else
1702 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001703 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001704 D->getLocation(),
1705 D->getDepth() - TemplateArgs.getNumLevels(),
1706 D->getPosition(),
1707 D->getIdentifier(), T,
1708 D->isParameterPack(), DI);
1709
Douglas Gregor9a299e02011-03-04 17:52:15 +00001710 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001711 if (Invalid)
1712 Param->setInvalidDecl();
1713
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001714 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001715
1716 // Introduce this template parameter's instantiation into the instantiation
1717 // scope.
1718 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001719 return Param;
1720}
1721
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001722Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001723TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1724 TemplateTemplateParmDecl *D) {
1725 // Instantiate the template parameter list of the template template parameter.
1726 TemplateParameterList *TempParams = D->getTemplateParameters();
1727 TemplateParameterList *InstParams;
1728 {
1729 // Perform the actual substitution of template parameters within a new,
1730 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001731 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001732 InstParams = SubstTemplateParams(TempParams);
1733 if (!InstParams)
1734 return NULL;
1735 }
1736
1737 // Build the template template parameter.
1738 TemplateTemplateParmDecl *Param
1739 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001740 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001741 D->getPosition(), D->isParameterPack(),
1742 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001743 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001744 Param->setAccess(AS_public);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001745
Douglas Gregor9106ef72009-11-11 16:58:32 +00001746 // Introduce this template parameter's instantiation into the instantiation
1747 // scope.
1748 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1749
1750 return Param;
1751}
1752
Douglas Gregor48c32a72009-11-17 06:07:40 +00001753Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001754 // Using directives are never dependent (and never contain any types or
1755 // expressions), so they require no explicit instantiation work.
Douglas Gregor48c32a72009-11-17 06:07:40 +00001756
1757 UsingDirectiveDecl *Inst
1758 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1759 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001760 D->getQualifierLoc(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001761 D->getIdentLocation(),
1762 D->getNominatedNamespace(),
1763 D->getCommonAncestor());
1764 Owner->addDecl(Inst);
1765 return Inst;
1766}
1767
John McCalled976492009-12-04 22:46:56 +00001768Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001769
1770 // The nested name specifier may be dependent, for example
1771 // template <typename T> struct t {
1772 // struct s1 { T f1(); };
1773 // struct s2 : s1 { using s1::f1; };
1774 // };
1775 // template struct t<int>;
1776 // Here, in using s1::f1, s1 refers to t<T>::s1;
1777 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001778 NestedNameSpecifierLoc QualifierLoc
1779 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1780 TemplateArgs);
1781 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001782 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001783
1784 // The name info is non-dependent, so no transformation
1785 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001786 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001787
John McCall9f54ad42009-12-10 09:41:52 +00001788 // We only need to do redeclaration lookups if we're in a class
1789 // scope (in fact, it's not really even possible in non-class
1790 // scopes).
1791 bool CheckRedeclaration = Owner->isRecord();
1792
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001793 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1794 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001795
John McCalled976492009-12-04 22:46:56 +00001796 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001797 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001798 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001799 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001800 D->isTypeName());
1801
Douglas Gregor5149f372011-02-25 15:54:31 +00001802 CXXScopeSpec SS;
1803 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001804 if (CheckRedeclaration) {
1805 Prev.setHideTags(false);
1806 SemaRef.LookupQualifiedName(Prev, Owner);
1807
1808 // Check for invalid redeclarations.
1809 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1810 D->isTypeName(), SS,
1811 D->getLocation(), Prev))
1812 NewUD->setInvalidDecl();
1813
1814 }
1815
1816 if (!NewUD->isInvalidDecl() &&
1817 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001818 D->getLocation()))
1819 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001820
John McCalled976492009-12-04 22:46:56 +00001821 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1822 NewUD->setAccess(D->getAccess());
1823 Owner->addDecl(NewUD);
1824
John McCall9f54ad42009-12-10 09:41:52 +00001825 // Don't process the shadow decls for an invalid decl.
1826 if (NewUD->isInvalidDecl())
1827 return NewUD;
1828
John McCall323c3102009-12-22 22:26:37 +00001829 bool isFunctionScope = Owner->isFunctionOrMethod();
1830
John McCall9f54ad42009-12-10 09:41:52 +00001831 // Process the shadow decls.
1832 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1833 I != E; ++I) {
1834 UsingShadowDecl *Shadow = *I;
1835 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001836 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1837 Shadow->getLocation(),
1838 Shadow->getTargetDecl(),
1839 TemplateArgs));
1840 if (!InstTarget)
1841 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001842
1843 if (CheckRedeclaration &&
1844 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1845 continue;
1846
1847 UsingShadowDecl *InstShadow
1848 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1849 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001850
1851 if (isFunctionScope)
1852 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001853 }
John McCalled976492009-12-04 22:46:56 +00001854
1855 return NewUD;
1856}
1857
1858Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001859 // Ignore these; we handle them in bulk when processing the UsingDecl.
1860 return 0;
John McCalled976492009-12-04 22:46:56 +00001861}
1862
John McCall7ba107a2009-11-18 02:36:19 +00001863Decl * TemplateDeclInstantiator
1864 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001865 NestedNameSpecifierLoc QualifierLoc
1866 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1867 TemplateArgs);
1868 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001869 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001870
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001871 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001872 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001873
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001874 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1875 // Hence, no tranformation is required for it.
1876 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001877 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001878 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001879 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001880 /*instantiation*/ true,
1881 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001882 if (UD)
John McCalled976492009-12-04 22:46:56 +00001883 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1884
John McCall7ba107a2009-11-18 02:36:19 +00001885 return UD;
1886}
1887
1888Decl * TemplateDeclInstantiator
1889 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001890 NestedNameSpecifierLoc QualifierLoc
1891 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1892 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001893 return 0;
Douglas Gregor5149f372011-02-25 15:54:31 +00001894
John McCall7ba107a2009-11-18 02:36:19 +00001895 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001896 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001897
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001898 DeclarationNameInfo NameInfo
1899 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1900
John McCall7ba107a2009-11-18 02:36:19 +00001901 NamedDecl *UD =
1902 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001903 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001904 /*instantiation*/ true,
1905 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001906 if (UD)
John McCalled976492009-12-04 22:46:56 +00001907 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1908
Anders Carlsson0d8df782009-08-29 19:37:28 +00001909 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001910}
1911
John McCallce3ff2b2009-08-25 22:02:44 +00001912Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001913 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001914 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001915 if (D->isInvalidDecl())
1916 return 0;
1917
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001918 return Instantiator.Visit(D);
1919}
1920
John McCalle29ba202009-08-20 01:44:21 +00001921/// \brief Instantiates a nested template parameter list in the current
1922/// instantiation context.
1923///
1924/// \param L The parameter list to instantiate
1925///
1926/// \returns NULL if there was an error
1927TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001928TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001929 // Get errors for all the parameters before bailing out.
1930 bool Invalid = false;
1931
1932 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001933 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001934 ParamVector Params;
1935 Params.reserve(N);
1936 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1937 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001938 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001939 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001940 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001941 }
1942
1943 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001944 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001945 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001946
1947 TemplateParameterList *InstL
1948 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1949 L->getLAngleLoc(), &Params.front(), N,
1950 L->getRAngleLoc());
1951 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001952}
John McCalle29ba202009-08-20 01:44:21 +00001953
Douglas Gregored9c0f92009-10-29 00:04:11 +00001954/// \brief Instantiate the declaration of a class template partial
1955/// specialization.
1956///
1957/// \param ClassTemplate the (instantiated) class template that is partially
1958// specialized by the instantiation of \p PartialSpec.
1959///
1960/// \param PartialSpec the (uninstantiated) class template partial
1961/// specialization that we are instantiating.
1962///
Douglas Gregord65587f2010-11-10 19:44:59 +00001963/// \returns The instantiated partial specialization, if successful; otherwise,
1964/// NULL to indicate an error.
1965ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001966TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1967 ClassTemplateDecl *ClassTemplate,
1968 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001969 // Create a local instantiation scope for this class template partial
1970 // specialization, which will contain the instantiations of the template
1971 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00001972 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001973
Douglas Gregored9c0f92009-10-29 00:04:11 +00001974 // Substitute into the template parameters of the class template partial
1975 // specialization.
1976 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1977 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1978 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00001979 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001980
1981 // Substitute into the template arguments of the class template partial
1982 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00001983 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
Douglas Gregore02e2622010-12-22 21:19:48 +00001984 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
1985 PartialSpec->getNumTemplateArgsAsWritten(),
1986 InstTemplateArgs, TemplateArgs))
1987 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001988
Douglas Gregored9c0f92009-10-29 00:04:11 +00001989 // Check that the template argument list is well-formed for this
1990 // class template.
Douglas Gregor910f8002010-11-07 23:05:16 +00001991 llvm::SmallVector<TemplateArgument, 4> Converted;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001992 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1993 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001994 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001995 false,
1996 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00001997 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001998
1999 // Figure out where to insert this class template partial specialization
2000 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002001 void *InsertPos = 0;
2002 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002003 = ClassTemplate->findPartialSpecialization(Converted.data(),
2004 Converted.size(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00002005
2006 // Build the canonical type that describes the converted template
2007 // arguments of the class template partial specialization.
2008 QualType CanonType
2009 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002010 Converted.data(),
2011 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002012
2013 // Build the fully-sugared type for this class template
2014 // specialization as the user wrote in the specialization
2015 // itself. This means that we'll pretty-print the type retrieved
2016 // from the specialization's declaration the way that the user
2017 // actually wrote the specialization, rather than formatting the
2018 // name based on the "canonical" representation used to store the
2019 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002020 TypeSourceInfo *WrittenTy
2021 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2022 TemplateName(ClassTemplate),
2023 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002024 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025 CanonType);
2026
2027 if (PrevDecl) {
2028 // We've already seen a partial specialization with the same template
2029 // parameters and template arguments. This can happen, for example, when
2030 // substituting the outer template arguments ends up causing two
2031 // class template partial specializations of a member class template
2032 // to have identical forms, e.g.,
2033 //
2034 // template<typename T, typename U>
2035 // struct Outer {
2036 // template<typename X, typename Y> struct Inner;
2037 // template<typename Y> struct Inner<T, Y>;
2038 // template<typename Y> struct Inner<U, Y>;
2039 // };
2040 //
2041 // Outer<int, int> outer; // error: the partial specializations of Inner
2042 // // have the same signature.
2043 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002044 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002045 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2046 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002047 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002048 }
2049
2050
2051 // Create the class template partial specialization declaration.
2052 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00002053 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
2054 PartialSpec->getTagKind(),
2055 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002056 PartialSpec->getLocStart(),
2057 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002058 InstParams,
2059 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002060 Converted.data(),
2061 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002062 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002063 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002064 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002065 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002066 // Substitute the nested name specifier, if any.
2067 if (SubstQualifier(PartialSpec, InstPartialSpec))
2068 return 0;
2069
Douglas Gregored9c0f92009-10-29 00:04:11 +00002070 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002071 InstPartialSpec->setTypeAsWritten(WrittenTy);
2072
Douglas Gregored9c0f92009-10-29 00:04:11 +00002073 // Add this partial specialization to the set of class template partial
2074 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002075 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002076 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002077}
2078
John McCall21ef0fa2010-03-11 09:03:00 +00002079TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002080TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00002081 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002082 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2083 assert(OldTInfo && "substituting function without type source info");
2084 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002085 TypeSourceInfo *NewTInfo
2086 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2087 D->getTypeSpecStartLoc(),
2088 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002089 if (!NewTInfo)
2090 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002091
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002092 if (NewTInfo != OldTInfo) {
2093 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002094 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002095 if (FunctionProtoTypeLoc *OldProtoLoc
2096 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002097 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002098 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2099 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002100 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2101 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2102 OldIdx != NumOldParams; ++OldIdx) {
2103 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2104 if (!OldParam->isParameterPack() ||
2105 (NewIdx < NumNewParams &&
2106 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2107 // Simple case: normal parameter, or a parameter pack that's
2108 // instantiated to a (still-dependent) parameter pack.
2109 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2110 Params.push_back(NewParam);
2111 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2112 NewParam);
2113 continue;
2114 }
2115
2116 // Parameter pack: make the instantiation an argument pack.
2117 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2118 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002119 unsigned NumArgumentsInExpansion
2120 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2121 TemplateArgs);
2122 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002123 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2124 Params.push_back(NewParam);
2125 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2126 NewParam);
2127 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002128 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002129 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002130 } else {
2131 // The function type itself was not dependent and therefore no
2132 // substitution occurred. However, we still need to instantiate
2133 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002134 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002135 if (FunctionProtoTypeLoc *OldProtoLoc
2136 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2137 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2138 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2139 if (!Parm)
2140 return 0;
2141 Params.push_back(Parm);
2142 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002143 }
2144 }
John McCall21ef0fa2010-03-11 09:03:00 +00002145 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002146}
2147
Mike Stump1eb44332009-09-09 15:08:12 +00002148/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002149/// declaration (New) from the corresponding fields of its template (Tmpl).
2150///
2151/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002152bool
2153TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002154 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002155 if (Tmpl->isDeletedAsWritten())
2156 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002157
Douglas Gregorcca9e962009-07-01 22:01:06 +00002158 // If we are performing substituting explicitly-specified template arguments
2159 // or deduced template arguments into a function template and we reach this
2160 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002161 // to keeping the new function template specialization. We therefore
2162 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002163 // into a template instantiation for this specific function template
2164 // specialization, which is not a SFINAE context, so that we diagnose any
2165 // further errors in the declaration itself.
2166 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2167 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2168 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2169 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002170 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002171 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002172 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002173 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002174 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002175 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2176 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002177 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002178 }
2179 }
Mike Stump1eb44332009-09-09 15:08:12 +00002180
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002181 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2182 assert(Proto && "Function template without prototype?");
2183
Sebastian Redl60618fa2011-03-12 11:50:43 +00002184 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002185 // The function has an exception specification or a "noreturn"
2186 // attribute. Substitute into each of the exception types.
2187 llvm::SmallVector<QualType, 4> Exceptions;
2188 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2189 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002190 if (const PackExpansionType *PackExpansion
2191 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2192 // We have a pack expansion. Instantiate it.
2193 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2194 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2195 Unexpanded);
2196 assert(!Unexpanded.empty() &&
2197 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002198
Douglas Gregorb99268b2010-12-21 00:52:54 +00002199 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002200 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002201 llvm::Optional<unsigned> NumExpansions
2202 = PackExpansion->getNumExpansions();
Douglas Gregorb99268b2010-12-21 00:52:54 +00002203 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2204 SourceRange(),
2205 Unexpanded.data(),
2206 Unexpanded.size(),
2207 TemplateArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002208 Expand,
2209 RetainExpansion,
2210 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002211 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002212
Douglas Gregorb99268b2010-12-21 00:52:54 +00002213 if (!Expand) {
2214 // We can't expand this pack expansion into separate arguments yet;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002215 // just substitute into the pattern and create a new pack expansion
2216 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002217 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2218 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2219 TemplateArgs,
2220 New->getLocation(), New->getDeclName());
2221 if (T.isNull())
2222 break;
2223
Douglas Gregorcded4f62011-01-14 17:04:44 +00002224 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002225 Exceptions.push_back(T);
2226 continue;
2227 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002228
Douglas Gregorb99268b2010-12-21 00:52:54 +00002229 // Substitute into the pack expansion pattern for each template
2230 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002231 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002232 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2233
2234 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2235 TemplateArgs,
2236 New->getLocation(), New->getDeclName());
2237 if (T.isNull()) {
2238 Invalid = true;
2239 break;
2240 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002241
Douglas Gregorb99268b2010-12-21 00:52:54 +00002242 Exceptions.push_back(T);
2243 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002244
Douglas Gregorb99268b2010-12-21 00:52:54 +00002245 if (Invalid)
2246 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002247
Douglas Gregorb99268b2010-12-21 00:52:54 +00002248 continue;
2249 }
2250
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002251 QualType T
2252 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2253 New->getLocation(), New->getDeclName());
2254 if (T.isNull() ||
2255 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2256 continue;
2257
2258 Exceptions.push_back(T);
2259 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002260 Expr *NoexceptExpr = 0;
2261 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Douglas Gregor3617e192011-06-01 15:55:51 +00002262 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002263 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2264 if (E.isUsable())
2265 NoexceptExpr = E.take();
2266 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002267
2268 // Rebuild the function type
2269
John McCalle23cf432010-12-14 08:05:40 +00002270 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002271 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002272 EPI.NumExceptions = Exceptions.size();
2273 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002274 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002275 EPI.ExtInfo = Proto->getExtInfo();
2276
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002277 const FunctionProtoType *NewProto
2278 = New->getType()->getAs<FunctionProtoType>();
2279 assert(NewProto && "Template instantiation without function prototype?");
2280 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2281 NewProto->arg_type_begin(),
2282 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002283 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002284 }
2285
John McCall1d8d1cc2010-08-01 02:01:53 +00002286 SemaRef.InstantiateAttrs(TemplateArgs, Tmpl, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002287
Douglas Gregore53060f2009-06-25 22:08:12 +00002288 return false;
2289}
2290
Douglas Gregor5545e162009-03-24 00:38:23 +00002291/// \brief Initializes common fields of an instantiated method
2292/// declaration (New) from the corresponding fields of its template
2293/// (Tmpl).
2294///
2295/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002296bool
2297TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002298 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002299 if (InitFunctionInstantiation(New, Tmpl))
2300 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002301
Douglas Gregor5545e162009-03-24 00:38:23 +00002302 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002303 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002304 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002305
2306 // FIXME: attributes
2307 // FIXME: New needs a pointer to Tmpl
2308 return false;
2309}
Douglas Gregora58861f2009-05-13 20:28:22 +00002310
2311/// \brief Instantiate the definition of the given function from its
2312/// template.
2313///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002314/// \param PointOfInstantiation the point at which the instantiation was
2315/// required. Note that this is not precisely a "point of instantiation"
2316/// for the function, but it's close.
2317///
Douglas Gregora58861f2009-05-13 20:28:22 +00002318/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002319/// function template specialization or member function of a class template
2320/// specialization.
2321///
2322/// \param Recursive if true, recursively instantiates any functions that
2323/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002324///
2325/// \param DefinitionRequired if true, then we are performing an explicit
2326/// instantiation where the body of the function is required. Complain if
2327/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002328void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002329 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002330 bool Recursive,
2331 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002332 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002333 return;
2334
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002335 // Never instantiate an explicit specialization.
2336 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2337 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002338
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002339 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002340 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002341 assert(PatternDecl && "instantiating a non-template");
2342
2343 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2344 assert(PatternDecl && "template definition is not a template");
2345 if (!Pattern) {
2346 // Try to find a defaulted definition
2347 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002348 }
Sean Huntf996e052011-05-27 20:00:14 +00002349 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002350
Francois Pichet8387e2a2011-04-22 22:18:13 +00002351 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002352 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002353 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002354 PendingInstantiations.push_back(
2355 std::make_pair(Function, PointOfInstantiation));
2356 return;
2357 }
2358
2359 // Call the LateTemplateParser callback if there a need to late parse
2360 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002361 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002362 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002363 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002364 Pattern = PatternDecl->getBody(PatternDecl);
2365 }
2366
Sean Huntf996e052011-05-27 20:00:14 +00002367 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002368 if (DefinitionRequired) {
2369 if (Function->getPrimaryTemplate())
2370 Diag(PointOfInstantiation,
2371 diag::err_explicit_instantiation_undefined_func_template)
2372 << Function->getPrimaryTemplate();
2373 else
2374 Diag(PointOfInstantiation,
2375 diag::err_explicit_instantiation_undefined_member)
2376 << 1 << Function->getDeclName() << Function->getDeclContext();
2377
2378 if (PatternDecl)
2379 Diag(PatternDecl->getLocation(),
2380 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002381 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002382 } else if (Function->getTemplateSpecializationKind()
2383 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002384 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002385 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002386 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002387
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002388 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002389 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002390
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002391 // C++0x [temp.explicit]p9:
2392 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002393 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002394 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002395 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002396 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002397 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002398 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002399
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002400 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2401 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002402 return;
2403
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002404 // If we're performing recursive template instantiation, create our own
2405 // queue of pending implicit instantiations that we will instantiate later,
2406 // while we're still within our own instantiation context.
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002407 llvm::SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002408 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002409 if (Recursive) {
2410 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002411 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002412 }
Mike Stump1eb44332009-09-09 15:08:12 +00002413
Douglas Gregor9679caf2010-05-12 17:27:19 +00002414 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002415 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002416 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002417
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002418 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002419 // recorded, unless we're actually a member function within a local
2420 // class, in which case we need to merge our results with the parent
2421 // scope (of the enclosing function).
2422 bool MergeWithParentScope = false;
2423 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2424 MergeWithParentScope = Rec->isLocalClass();
2425
2426 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002427
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002428 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002429 // instantiation scope, and set the parameter names to those used
2430 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002431 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002432 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2433 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002434 if (!PatternParam->isParameterPack()) {
2435 // Simple case: not a parameter pack.
2436 assert(FParamIdx < Function->getNumParams());
2437 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2438 FunctionParam->setDeclName(PatternParam->getDeclName());
2439 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2440 ++FParamIdx;
2441 continue;
2442 }
2443
2444 // Expand the parameter pack.
2445 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2446 for (unsigned NumFParams = Function->getNumParams();
2447 FParamIdx < NumFParams;
2448 ++FParamIdx) {
2449 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2450 FunctionParam->setDeclName(PatternParam->getDeclName());
2451 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2452 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002453 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002454
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002455 // Enter the scope of this instantiation. We don't use
2456 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002457 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002458
Mike Stump1eb44332009-09-09 15:08:12 +00002459 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002460 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002461
Sean Huntcd10dec2011-05-23 23:14:04 +00002462 if (PatternDecl->isDefaulted()) {
2463 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2464
2465 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002466 } else {
2467 // If this is a constructor, instantiate the member initializers.
2468 if (const CXXConstructorDecl *Ctor =
2469 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2470 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2471 TemplateArgs);
2472 }
2473
2474 // Instantiate the function body.
2475 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2476
2477 if (Body.isInvalid())
2478 Function->setInvalidDecl();
2479
2480 ActOnFinishFunctionBody(Function, Body.get(),
2481 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002482 }
2483
John McCall0c01d182010-03-24 05:22:00 +00002484 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2485
John McCalleee1d542011-02-14 07:13:47 +00002486 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002487
2488 DeclGroupRef DG(Function);
2489 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002490
Douglas Gregor60406be2010-01-16 22:29:39 +00002491 // This class may have local implicit instantiations that need to be
2492 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002493 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002494 Scope.Exit();
2495
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002496 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002497 // Define any pending vtables.
2498 DefineUsedVTables();
2499
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002500 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002501 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002502 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002503
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002504 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002505 assert(VTableUses.empty() &&
2506 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002507 VTableUses.swap(SavedVTableUses);
2508
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002509 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002510 assert(PendingInstantiations.empty() &&
2511 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002512 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002513 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002514}
2515
2516/// \brief Instantiate the definition of the given variable from its
2517/// template.
2518///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002519/// \param PointOfInstantiation the point at which the instantiation was
2520/// required. Note that this is not precisely a "point of instantiation"
2521/// for the function, but it's close.
2522///
2523/// \param Var the already-instantiated declaration of a static member
2524/// variable of a class template specialization.
2525///
2526/// \param Recursive if true, recursively instantiates any functions that
2527/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002528///
2529/// \param DefinitionRequired if true, then we are performing an explicit
2530/// instantiation where an out-of-line definition of the member variable
2531/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002532void Sema::InstantiateStaticDataMemberDefinition(
2533 SourceLocation PointOfInstantiation,
2534 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002535 bool Recursive,
2536 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002537 if (Var->isInvalidDecl())
2538 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002539
Douglas Gregor7caa6822009-07-24 20:34:43 +00002540 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002541 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002542 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002543 assert(Def->isStaticDataMember() && "Not a static data member?");
2544 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002545
Douglas Gregor0d035142009-10-27 18:42:08 +00002546 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002547 // We did not find an out-of-line definition of this static data member,
2548 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002549 // instantiate this definition (or provide a specialization for it) in
2550 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002551 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002552 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002553 Diag(PointOfInstantiation,
2554 diag::err_explicit_instantiation_undefined_member)
2555 << 2 << Var->getDeclName() << Var->getDeclContext();
2556 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002557 } else if (Var->getTemplateSpecializationKind()
2558 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002559 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002560 std::make_pair(Var, PointOfInstantiation));
2561 }
2562
Douglas Gregor7caa6822009-07-24 20:34:43 +00002563 return;
2564 }
2565
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002566 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002567 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002568 return;
2569
2570 // C++0x [temp.explicit]p9:
2571 // Except for inline functions, other explicit instantiation declarations
2572 // have the effect of suppressing the implicit instantiation of the entity
2573 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002574 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002575 == TSK_ExplicitInstantiationDeclaration)
2576 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002577
Douglas Gregorf15748a2011-06-03 03:35:07 +00002578 // If we already have a definition, we're done.
2579 if (Var->getDefinition())
2580 return;
2581
Douglas Gregor7caa6822009-07-24 20:34:43 +00002582 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2583 if (Inst)
2584 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002585
Douglas Gregor7caa6822009-07-24 20:34:43 +00002586 // If we're performing recursive template instantiation, create our own
2587 // queue of pending implicit instantiations that we will instantiate later,
2588 // while we're still within our own instantiation context.
Nick Lewycky81559102011-05-31 07:58:42 +00002589 llvm::SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002590 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002591 if (Recursive) {
2592 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002593 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002594 }
Mike Stump1eb44332009-09-09 15:08:12 +00002595
Douglas Gregor7caa6822009-07-24 20:34:43 +00002596 // Enter the scope of this instantiation. We don't use
2597 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002598 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002599
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002600 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002601 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002602 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002603
2604 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002605
2606 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002607 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2608 assert(MSInfo && "Missing member specialization information?");
2609 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2610 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002611 DeclGroupRef DG(Var);
2612 Consumer.HandleTopLevelDecl(DG);
2613 }
Mike Stump1eb44332009-09-09 15:08:12 +00002614
Douglas Gregor7caa6822009-07-24 20:34:43 +00002615 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002616 // Define any newly required vtables.
2617 DefineUsedVTables();
2618
Douglas Gregor7caa6822009-07-24 20:34:43 +00002619 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002620 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002621 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002622
Nick Lewycky81559102011-05-31 07:58:42 +00002623 // Restore the set of pending vtables.
2624 assert(VTableUses.empty() &&
2625 "VTableUses should be empty before it is discarded, "
2626 "while instantiating static data member.");
2627 VTableUses.swap(SavedVTableUses);
2628
Douglas Gregor7caa6822009-07-24 20:34:43 +00002629 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002630 assert(PendingInstantiations.empty() &&
2631 "PendingInstantiations should be empty before it is discarded, "
2632 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002633 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002634 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002635}
Douglas Gregor815215d2009-05-27 05:35:12 +00002636
Anders Carlsson09025312009-08-29 05:16:22 +00002637void
2638Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2639 const CXXConstructorDecl *Tmpl,
2640 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002641
Anders Carlsson09025312009-08-29 05:16:22 +00002642 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002643 bool AnyErrors = false;
2644
Anders Carlsson09025312009-08-29 05:16:22 +00002645 // Instantiate all the initializers.
2646 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002647 InitsEnd = Tmpl->init_end();
2648 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002649 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002650
Chandler Carruth030ef472010-09-03 21:54:20 +00002651 // Only instantiate written initializers, let Sema re-construct implicit
2652 // ones.
2653 if (!Init->isWritten())
2654 continue;
2655
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002656 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002657 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002658
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002659 SourceLocation EllipsisLoc;
2660
2661 if (Init->isPackExpansion()) {
2662 // This is a pack expansion. We should expand it now.
2663 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
2664 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2665 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2666 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002667 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002668 llvm::Optional<unsigned> NumExpansions;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002669 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2670 BaseTL.getSourceRange(),
2671 Unexpanded.data(),
2672 Unexpanded.size(),
2673 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002674 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002675 NumExpansions)) {
2676 AnyErrors = true;
2677 New->setInvalidDecl();
2678 continue;
2679 }
2680 assert(ShouldExpand && "Partial instantiation of base initializer?");
2681
2682 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002683 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002684 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2685
2686 // Instantiate the initializer.
2687 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2688 LParenLoc, NewArgs, RParenLoc)) {
2689 AnyErrors = true;
2690 break;
2691 }
2692
2693 // Instantiate the base type.
2694 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2695 TemplateArgs,
2696 Init->getSourceLocation(),
2697 New->getDeclName());
2698 if (!BaseTInfo) {
2699 AnyErrors = true;
2700 break;
2701 }
2702
2703 // Build the initializer.
2704 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2705 BaseTInfo,
2706 (Expr **)NewArgs.data(),
2707 NewArgs.size(),
2708 Init->getLParenLoc(),
2709 Init->getRParenLoc(),
2710 New->getParent(),
2711 SourceLocation());
2712 if (NewInit.isInvalid()) {
2713 AnyErrors = true;
2714 break;
2715 }
2716
2717 NewInits.push_back(NewInit.get());
2718 NewArgs.clear();
2719 }
2720
2721 continue;
2722 }
2723
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002724 // Instantiate the initializer.
2725 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002726 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002727 AnyErrors = true;
2728 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002729 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002730
Anders Carlsson09025312009-08-29 05:16:22 +00002731 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002732 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002733 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002734 TemplateArgs,
2735 Init->getSourceLocation(),
2736 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002737 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002738 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002739 New->setInvalidDecl();
2740 continue;
2741 }
2742
John McCalla93c9342009-12-07 02:54:59 +00002743 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002744 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002745 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002746 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002747 Init->getRParenLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002748 New->getParent(),
2749 EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002750 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002751 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002752 Init->getMemberLocation(),
2753 Init->getMember(),
2754 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002755 if (!Member) {
2756 AnyErrors = true;
2757 New->setInvalidDecl();
2758 continue;
2759 }
Mike Stump1eb44332009-09-09 15:08:12 +00002760
2761 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002762 NewArgs.size(),
2763 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002764 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002765 Init->getRParenLoc());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002766 } else if (Init->isIndirectMemberInitializer()) {
2767 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002768 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002769 Init->getMemberLocation(),
2770 Init->getIndirectMember(), TemplateArgs));
2771
Douglas Gregorb7107222011-03-04 19:46:35 +00002772 if (!IndirectMember) {
2773 AnyErrors = true;
2774 New->setInvalidDecl();
2775 continue;
2776 }
2777
Francois Pichet00eb3f92010-12-04 09:14:42 +00002778 NewInit = BuildMemberInitializer(IndirectMember, (Expr **)NewArgs.data(),
2779 NewArgs.size(),
2780 Init->getSourceLocation(),
2781 Init->getLParenLoc(),
2782 Init->getRParenLoc());
Anders Carlsson09025312009-08-29 05:16:22 +00002783 }
2784
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002785 if (NewInit.isInvalid()) {
2786 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002787 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002788 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002789 // FIXME: It would be nice if ASTOwningVector had a release function.
2790 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002791
Anders Carlsson09025312009-08-29 05:16:22 +00002792 NewInits.push_back((MemInitTy *)NewInit.get());
2793 }
2794 }
Mike Stump1eb44332009-09-09 15:08:12 +00002795
Anders Carlsson09025312009-08-29 05:16:22 +00002796 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002797 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002798 /*FIXME: ColonLoc */
2799 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002800 NewInits.data(), NewInits.size(),
2801 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002802}
2803
John McCall52a575a2009-08-29 08:11:13 +00002804// TODO: this could be templated if the various decl types used the
2805// same method name.
2806static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2807 ClassTemplateDecl *Instance) {
2808 Pattern = Pattern->getCanonicalDecl();
2809
2810 do {
2811 Instance = Instance->getCanonicalDecl();
2812 if (Pattern == Instance) return true;
2813 Instance = Instance->getInstantiatedFromMemberTemplate();
2814 } while (Instance);
2815
2816 return false;
2817}
2818
Douglas Gregor0d696532009-09-28 06:34:35 +00002819static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2820 FunctionTemplateDecl *Instance) {
2821 Pattern = Pattern->getCanonicalDecl();
2822
2823 do {
2824 Instance = Instance->getCanonicalDecl();
2825 if (Pattern == Instance) return true;
2826 Instance = Instance->getInstantiatedFromMemberTemplate();
2827 } while (Instance);
2828
2829 return false;
2830}
2831
Douglas Gregored9c0f92009-10-29 00:04:11 +00002832static bool
2833isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2834 ClassTemplatePartialSpecializationDecl *Instance) {
2835 Pattern
2836 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2837 do {
2838 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2839 Instance->getCanonicalDecl());
2840 if (Pattern == Instance)
2841 return true;
2842 Instance = Instance->getInstantiatedFromMember();
2843 } while (Instance);
2844
2845 return false;
2846}
2847
John McCall52a575a2009-08-29 08:11:13 +00002848static bool isInstantiationOf(CXXRecordDecl *Pattern,
2849 CXXRecordDecl *Instance) {
2850 Pattern = Pattern->getCanonicalDecl();
2851
2852 do {
2853 Instance = Instance->getCanonicalDecl();
2854 if (Pattern == Instance) return true;
2855 Instance = Instance->getInstantiatedFromMemberClass();
2856 } while (Instance);
2857
2858 return false;
2859}
2860
2861static bool isInstantiationOf(FunctionDecl *Pattern,
2862 FunctionDecl *Instance) {
2863 Pattern = Pattern->getCanonicalDecl();
2864
2865 do {
2866 Instance = Instance->getCanonicalDecl();
2867 if (Pattern == Instance) return true;
2868 Instance = Instance->getInstantiatedFromMemberFunction();
2869 } while (Instance);
2870
2871 return false;
2872}
2873
2874static bool isInstantiationOf(EnumDecl *Pattern,
2875 EnumDecl *Instance) {
2876 Pattern = Pattern->getCanonicalDecl();
2877
2878 do {
2879 Instance = Instance->getCanonicalDecl();
2880 if (Pattern == Instance) return true;
2881 Instance = Instance->getInstantiatedFromMemberEnum();
2882 } while (Instance);
2883
2884 return false;
2885}
2886
John McCalled976492009-12-04 22:46:56 +00002887static bool isInstantiationOf(UsingShadowDecl *Pattern,
2888 UsingShadowDecl *Instance,
2889 ASTContext &C) {
2890 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2891}
2892
2893static bool isInstantiationOf(UsingDecl *Pattern,
2894 UsingDecl *Instance,
2895 ASTContext &C) {
2896 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2897}
2898
John McCall7ba107a2009-11-18 02:36:19 +00002899static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2900 UsingDecl *Instance,
2901 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002902 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002903}
2904
2905static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002906 UsingDecl *Instance,
2907 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002908 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002909}
2910
John McCall52a575a2009-08-29 08:11:13 +00002911static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2912 VarDecl *Instance) {
2913 assert(Instance->isStaticDataMember());
2914
2915 Pattern = Pattern->getCanonicalDecl();
2916
2917 do {
2918 Instance = Instance->getCanonicalDecl();
2919 if (Pattern == Instance) return true;
2920 Instance = Instance->getInstantiatedFromStaticDataMember();
2921 } while (Instance);
2922
2923 return false;
2924}
2925
John McCalled976492009-12-04 22:46:56 +00002926// Other is the prospective instantiation
2927// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002928static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002929 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002930 if (UnresolvedUsingTypenameDecl *UUD
2931 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2932 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2933 return isInstantiationOf(UUD, UD, Ctx);
2934 }
2935 }
2936
2937 if (UnresolvedUsingValueDecl *UUD
2938 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002939 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2940 return isInstantiationOf(UUD, UD, Ctx);
2941 }
2942 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002943
Anders Carlsson0d8df782009-08-29 19:37:28 +00002944 return false;
2945 }
Mike Stump1eb44332009-09-09 15:08:12 +00002946
John McCall52a575a2009-08-29 08:11:13 +00002947 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2948 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002949
John McCall52a575a2009-08-29 08:11:13 +00002950 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2951 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002952
John McCall52a575a2009-08-29 08:11:13 +00002953 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2954 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002955
Douglas Gregor7caa6822009-07-24 20:34:43 +00002956 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002957 if (Var->isStaticDataMember())
2958 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2959
2960 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2961 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002962
Douglas Gregor0d696532009-09-28 06:34:35 +00002963 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2964 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2965
Douglas Gregored9c0f92009-10-29 00:04:11 +00002966 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2967 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2968 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2969 PartialSpec);
2970
Anders Carlssond8b285f2009-09-01 04:26:58 +00002971 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2972 if (!Field->getDeclName()) {
2973 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002974 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002975 cast<FieldDecl>(D);
2976 }
2977 }
Mike Stump1eb44332009-09-09 15:08:12 +00002978
John McCalled976492009-12-04 22:46:56 +00002979 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2980 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2981
2982 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2983 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2984
Douglas Gregor815215d2009-05-27 05:35:12 +00002985 return D->getDeclName() && isa<NamedDecl>(Other) &&
2986 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2987}
2988
2989template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002990static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002991 NamedDecl *D,
2992 ForwardIterator first,
2993 ForwardIterator last) {
2994 for (; first != last; ++first)
2995 if (isInstantiationOf(Ctx, D, *first))
2996 return cast<NamedDecl>(*first);
2997
2998 return 0;
2999}
3000
John McCall02cace72009-08-28 07:59:38 +00003001/// \brief Finds the instantiation of the given declaration context
3002/// within the current instantiation.
3003///
3004/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003005DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003006 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003007 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003008 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003009 return cast_or_null<DeclContext>(ID);
3010 } else return DC;
3011}
3012
Douglas Gregored961e72009-05-27 17:54:46 +00003013/// \brief Find the instantiation of the given declaration within the
3014/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003015///
3016/// This routine is intended to be used when \p D is a declaration
3017/// referenced from within a template, that needs to mapped into the
3018/// corresponding declaration within an instantiation. For example,
3019/// given:
3020///
3021/// \code
3022/// template<typename T>
3023/// struct X {
3024/// enum Kind {
3025/// KnownValue = sizeof(T)
3026/// };
3027///
3028/// bool getKind() const { return KnownValue; }
3029/// };
3030///
3031/// template struct X<int>;
3032/// \endcode
3033///
3034/// In the instantiation of X<int>::getKind(), we need to map the
3035/// EnumConstantDecl for KnownValue (which refers to
3036/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003037/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3038/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003039NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003040 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003041 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003042 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003043 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003044 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003045 // D is a local of some kind. Look into the map of local
3046 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003047 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3048 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3049 = CurrentInstantiationScope->findInstantiationOf(D);
Chris Lattnerd8e54992011-02-17 19:47:42 +00003050
Chris Lattner57ad3782011-02-17 20:34:02 +00003051 if (Found) {
3052 if (Decl *FD = Found->dyn_cast<Decl *>())
3053 return cast<NamedDecl>(FD);
3054
3055 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3056 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3057 }
3058
3059 // If we didn't find the decl, then we must have a label decl that hasn't
3060 // been found yet. Lazily instantiate it and return it now.
3061 assert(isa<LabelDecl>(D));
Chris Lattnerd8e54992011-02-17 19:47:42 +00003062
Chris Lattner57ad3782011-02-17 20:34:02 +00003063 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3064 assert(Inst && "Failed to instantiate label??");
3065
3066 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3067 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003068 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003069
Douglas Gregore95b4092009-09-16 18:34:49 +00003070 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3071 if (!Record->isDependentContext())
3072 return D;
3073
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003074 // If the RecordDecl is actually the injected-class-name or a
3075 // "templated" declaration for a class template, class template
3076 // partial specialization, or a member class of a class template,
3077 // substitute into the injected-class-name of the class template
3078 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00003079 QualType T;
3080 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
3081
3082 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00003083 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00003084 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3085 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00003086 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00003087
3088 // If we call SubstType with an InjectedClassNameType here we
3089 // can end up in an infinite loop.
3090 T = Context.getTypeDeclType(Record);
3091 assert(isa<InjectedClassNameType>(T) &&
3092 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00003093 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00003094 }
Douglas Gregore95b4092009-09-16 18:34:49 +00003095
3096 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003097 // Substitute into the injected-class-name to get the type
3098 // corresponding to the instantiation we want, which may also be
3099 // the current instantiation (if we're in a template
3100 // definition). This substitution should never fail, since we
3101 // know we can instantiate the injected-class-name or we
3102 // wouldn't have gotten to the injected-class-name!
3103
3104 // FIXME: Can we use the CurrentInstantiationScope to avoid this
3105 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00003106 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00003107 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
3108
3109 if (!T->isDependentType()) {
3110 assert(T->isRecordType() && "Instantiation must produce a record type");
3111 return T->getAs<RecordType>()->getDecl();
3112 }
3113
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003114 // We are performing "partial" template instantiation to create
3115 // the member declarations for the members of a class template
3116 // specialization. Therefore, D is actually referring to something
3117 // in the current instantiation. Look through the current
3118 // context, which contains actual instantiations, to find the
3119 // instantiation of the "current instantiation" that D refers
3120 // to.
3121 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003122 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00003123 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003124 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003125 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00003126 if (isInstantiationOf(ClassTemplate,
3127 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00003128 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003129
3130 if (!DC->isDependentContext())
3131 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00003132 }
3133
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003134 // We're performing "instantiation" of a member of the current
3135 // instantiation while we are type-checking the
3136 // definition. Compute the declaration context and return that.
3137 assert(!SawNonDependentContext &&
3138 "No dependent context while instantiating record");
3139 DeclContext *DC = computeDeclContext(T);
3140 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00003141 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003142 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00003143 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003144
Douglas Gregore95b4092009-09-16 18:34:49 +00003145 // Fall through to deal with other dependent record types (e.g.,
3146 // anonymous unions in class templates).
3147 }
John McCall52a575a2009-08-29 08:11:13 +00003148
Douglas Gregore95b4092009-09-16 18:34:49 +00003149 if (!ParentDC->isDependentContext())
3150 return D;
3151
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003152 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003153 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003154 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003155
Douglas Gregor815215d2009-05-27 05:35:12 +00003156 if (ParentDC != D->getDeclContext()) {
3157 // We performed some kind of instantiation in the parent context,
3158 // so now we need to look into the instantiated parent context to
3159 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003160
John McCall3cb0ebd2010-03-10 03:28:59 +00003161 // If our context used to be dependent, we may need to instantiate
3162 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003163 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003164 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003165 if (!Spec->isDependentContext()) {
3166 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003167 const RecordType *Tag = T->getAs<RecordType>();
3168 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003169 if (Tag->isBeingDefined())
3170 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003171 if (!Tag->isBeingDefined() &&
3172 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3173 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003174
3175 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003176 }
3177 }
3178
Douglas Gregor815215d2009-05-27 05:35:12 +00003179 NamedDecl *Result = 0;
3180 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003181 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003182 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3183 } else {
3184 // Since we don't have a name for the entity we're looking for,
3185 // our only option is to walk through all of the declarations to
3186 // find that name. This will occur in a few cases:
3187 //
3188 // - anonymous struct/union within a template
3189 // - unnamed class/struct/union/enum within a template
3190 //
3191 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003192 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003193 ParentDC->decls_begin(),
3194 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003195 }
Mike Stump1eb44332009-09-09 15:08:12 +00003196
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003197 if (!Result) {
3198 if (isa<UsingShadowDecl>(D)) {
3199 // UsingShadowDecls can instantiate to nothing because of using hiding.
3200 } else if (Diags.hasErrorOccurred()) {
3201 // We've already complained about something, so most likely this
3202 // declaration failed to instantiate. There's no point in complaining
3203 // further, since this is normal in invalid code.
3204 } else if (IsBeingInstantiated) {
3205 // The class in which this member exists is currently being
3206 // instantiated, and we haven't gotten around to instantiating this
3207 // member yet. This can happen when the code uses forward declarations
3208 // of member classes, and introduces ordering dependencies via
3209 // template instantiation.
3210 Diag(Loc, diag::err_member_not_yet_instantiated)
3211 << D->getDeclName()
3212 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3213 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3214 } else {
3215 // We should have found something, but didn't.
3216 llvm_unreachable("Unable to find instantiation of declaration!");
3217 }
3218 }
3219
Douglas Gregor815215d2009-05-27 05:35:12 +00003220 D = Result;
3221 }
3222
Douglas Gregor815215d2009-05-27 05:35:12 +00003223 return D;
3224}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003225
Mike Stump1eb44332009-09-09 15:08:12 +00003226/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003227/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003228void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003229 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003230 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003231 PendingImplicitInstantiation Inst;
3232
3233 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003234 Inst = PendingInstantiations.front();
3235 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003236 } else {
3237 Inst = PendingLocalImplicitInstantiations.front();
3238 PendingLocalImplicitInstantiations.pop_front();
3239 }
Mike Stump1eb44332009-09-09 15:08:12 +00003240
Douglas Gregor7caa6822009-07-24 20:34:43 +00003241 // Instantiate function definitions
3242 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003243 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3244 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003245 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3246 TSK_ExplicitInstantiationDefinition;
3247 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3248 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003249 continue;
3250 }
Mike Stump1eb44332009-09-09 15:08:12 +00003251
Douglas Gregor7caa6822009-07-24 20:34:43 +00003252 // Instantiate static data member definitions.
3253 VarDecl *Var = cast<VarDecl>(Inst.first);
3254 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003255
Chandler Carruth291b4412010-02-13 10:17:50 +00003256 // Don't try to instantiate declarations if the most recent redeclaration
3257 // is invalid.
3258 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3259 continue;
3260
3261 // Check if the most recent declaration has changed the specialization kind
3262 // and removed the need for implicit instantiation.
3263 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3264 case TSK_Undeclared:
3265 assert(false && "Cannot instantitiate an undeclared specialization.");
3266 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003267 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003268 continue; // No longer need to instantiate this type.
3269 case TSK_ExplicitInstantiationDefinition:
3270 // We only need an instantiation if the pending instantiation *is* the
3271 // explicit instantiation.
3272 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003273 case TSK_ImplicitInstantiation:
3274 break;
3275 }
3276
John McCallf312b1e2010-08-26 23:41:50 +00003277 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3278 "instantiating static data member "
3279 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003280
Chandler Carruth58e390e2010-08-25 08:27:02 +00003281 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3282 TSK_ExplicitInstantiationDefinition;
3283 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3284 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003285 }
3286}
John McCall0c01d182010-03-24 05:22:00 +00003287
3288void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3289 const MultiLevelTemplateArgumentList &TemplateArgs) {
3290 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3291 E = Pattern->ddiag_end(); I != E; ++I) {
3292 DependentDiagnostic *DD = *I;
3293
3294 switch (DD->getKind()) {
3295 case DependentDiagnostic::Access:
3296 HandleDependentAccessCheck(*DD, TemplateArgs);
3297 break;
3298 }
3299 }
3300}