blob: 60bcbfb255f8f430b9d515c13044045c888724da [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;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000032
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000033 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000034 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000035 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000037 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000039
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000040 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;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000049 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000050 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000051 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000052
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000053 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000056 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000060// Include attribute instantiation code.
61#include "clang/Sema/AttrTemplateInstantiate.inc"
62
John McCall1d8d1cc2010-08-01 02:01:53 +000063void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
Rafael Espindola19f74ac2011-07-06 15:46:09 +000064 const Decl *Tmpl, Decl *New) {
Sean Huntcf807c42010-08-18 23:23:40 +000065 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
66 i != e; ++i) {
67 const Attr *TmplAttr = *i;
Chandler Carruth4ced79f2010-06-25 03:22:07 +000068 // FIXME: This should be generalized to more than just the AlignedAttr.
69 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000070 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000071 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000072 // The alignment expression is a constant expression.
73 EnterExpressionEvaluationContext Unevaluated(*this,
74 Sema::ConstantEvaluated);
75
John McCall60d7b3a2010-08-24 06:29:42 +000076 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000077 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000078 if (!Result.isInvalid())
79 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
Richard Smithf6702a32011-12-20 02:08:33 +000080 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000081 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000082 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000083 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000084 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000085 if (Result)
86 AddAlignedAttr(Aligned->getLocation(), New, Result);
87 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000088 continue;
89 }
90 }
91
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000092 Attr *NewAttr =
93 instantiateTemplateAttribute(TmplAttr, Context, *this, TemplateArgs);
Anders Carlssond8fe2d52009-11-07 06:07:58 +000094 New->addAttr(NewAttr);
95 }
96}
97
Douglas Gregor4f722be2009-03-25 15:45:12 +000098Decl *
99TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000100 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000101}
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) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000113 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000114}
115
John McCall3dbd3d52010-02-16 06:53:13 +0000116Decl *
117TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
118 NamespaceAliasDecl *Inst
119 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
120 D->getNamespaceLoc(),
121 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000122 D->getIdentifier(),
123 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000124 D->getTargetNameLoc(),
125 D->getNamespace());
126 Owner->addDecl(Inst);
127 return Inst;
128}
129
Richard Smith3e4c6c42011-05-05 21:57:07 +0000130Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
131 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000132 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000133 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000134 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000135 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000136 DI = SemaRef.SubstType(DI, TemplateArgs,
137 D->getLocation(), D->getDeclName());
138 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000139 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000140 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000141 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000142 } else {
143 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 }
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000146 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000147 TypedefNameDecl *Typedef;
148 if (IsTypeAlias)
149 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
150 D->getLocation(), D->getIdentifier(), DI);
151 else
152 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
153 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000154 if (Invalid)
155 Typedef->setInvalidDecl();
156
John McCallcde5a402011-02-01 08:20:08 +0000157 // If the old typedef was the name for linkage purposes of an anonymous
158 // tag decl, re-establish that relationship for the new typedef.
159 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
160 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000161 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000162 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000163 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
164 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000165 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000166 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000167
Douglas Gregoref96ee02012-01-14 16:38:05 +0000168 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000169 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
170 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000171 if (!InstPrev)
172 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000173
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000174 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
175
176 // If the typedef types are not identical, reject them.
177 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
178
179 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000180 }
181
John McCall1d8d1cc2010-08-01 02:01:53 +0000182 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000183
John McCall46460a62010-01-20 21:53:11 +0000184 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000186 return Typedef;
187}
188
Richard Smith162e1c12011-04-15 14:24:37 +0000189Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000190 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
191 Owner->addDecl(Typedef);
192 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000193}
194
195Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000196 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
197 Owner->addDecl(Typedef);
198 return Typedef;
199}
200
201Decl *
202TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
203 // Create a local instantiation scope for this type alias template, which
204 // will contain the instantiations of the template parameters.
205 LocalInstantiationScope Scope(SemaRef);
206
207 TemplateParameterList *TempParams = D->getTemplateParameters();
208 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
209 if (!InstParams)
210 return 0;
211
212 TypeAliasDecl *Pattern = D->getTemplatedDecl();
213
214 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000215 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000216 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
217 if (Found.first != Found.second) {
218 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
219 }
220 }
221
222 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
223 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
224 if (!AliasInst)
225 return 0;
226
227 TypeAliasTemplateDecl *Inst
228 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
229 D->getDeclName(), InstParams, AliasInst);
230 if (PrevAliasTemplate)
231 Inst->setPreviousDeclaration(PrevAliasTemplate);
232
233 Inst->setAccess(D->getAccess());
234
235 if (!PrevAliasTemplate)
236 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000237
Richard Smith3e4c6c42011-05-05 21:57:07 +0000238 Owner->addDecl(Inst);
239
240 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000241}
242
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000243/// \brief Instantiate an initializer, breaking it into separate
244/// initialization arguments.
245///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000246/// \param Init The initializer to instantiate.
247///
248/// \param TemplateArgs Template arguments to be substituted into the
249/// initializer.
250///
251/// \param NewArgs Will be filled in with the instantiation arguments.
252///
253/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000254bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000255 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000256 SourceLocation &LParenLoc,
257 ASTOwningVector<Expr*> &NewArgs,
258 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000259 NewArgs.clear();
260 LParenLoc = SourceLocation();
261 RParenLoc = SourceLocation();
262
263 if (!Init)
264 return false;
265
John McCall4765fa02010-12-06 08:20:24 +0000266 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000267 Init = ExprTemp->getSubExpr();
268
269 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
270 Init = Binder->getSubExpr();
271
272 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
273 Init = ICE->getSubExprAsWritten();
274
275 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
276 LParenLoc = ParenList->getLParenLoc();
277 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000278 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
279 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000280 }
281
282 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000283 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000284 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
285 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000286 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000287
Douglas Gregor28329e52010-03-24 21:22:47 +0000288 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000289 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000290 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000291 return false;
292 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000293 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000294
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000295 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000296 if (Result.isInvalid())
297 return true;
298
299 NewArgs.push_back(Result.takeAs<Expr>());
300 return false;
301}
302
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000303Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000304 // If this is the variable for an anonymous struct or union,
305 // instantiate the anonymous struct/union type first.
306 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
307 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
308 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
309 return 0;
310
John McCallce3ff2b2009-08-25 22:02:44 +0000311 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000312 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000313 TemplateArgs,
314 D->getTypeSpecStartLoc(),
315 D->getDeclName());
316 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000317 return 0;
318
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000319 if (DI->getType()->isFunctionType()) {
320 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
321 << D->isStaticDataMember() << DI->getType();
322 return 0;
323 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000324
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000325 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000327 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000328 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000329 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000330 D->getStorageClass(),
331 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000332 Var->setThreadSpecified(D->isThreadSpecified());
333 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000334 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000335 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000336
John McCallb6217662010-03-15 10:12:16 +0000337 // Substitute the nested name specifier, if any.
338 if (SubstQualifier(D, Var))
339 return 0;
340
Mike Stump1eb44332009-09-09 15:08:12 +0000341 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000342 // out-of-line, the instantiation will have the same lexical
343 // context (which will be a namespace scope) as the template.
344 if (D->isOutOfLine())
345 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000346
John McCall46460a62010-01-20 21:53:11 +0000347 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000348
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000349 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000350 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000351 Var->setReferenced(D->isReferenced());
352 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000353
Mike Stump390b4cc2009-05-16 07:39:55 +0000354 // FIXME: In theory, we could have a previous declaration for variables that
355 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000356 // FIXME: having to fake up a LookupResult is dumb.
357 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000358 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000359 if (D->isStaticDataMember())
360 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000361
362 // In ARC, infer 'retaining' for variables of retainable type.
363 if (SemaRef.getLangOptions().ObjCAutoRefCount &&
364 SemaRef.inferObjCARCLifetime(Var))
365 Var->setInvalidDecl();
366
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000367 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Douglas Gregor7caa6822009-07-24 20:34:43 +0000369 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000370 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000371 Owner->makeDeclVisibleInContext(Var);
372 } else {
373 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000374 if (Owner->isFunctionOrMethod())
375 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000376 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000377 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000378
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000379 // Link instantiations of static data members back to the template from
380 // which they were instantiated.
381 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000382 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000383 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000384
Douglas Gregor60c93c92010-02-09 07:26:29 +0000385 if (Var->getAnyInitializer()) {
386 // We already have an initializer in the class.
387 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000388 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000389 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000390 else
391 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
392
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000393 // Instantiate the initializer.
394 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000395 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000396 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
397 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000398 bool TypeMayContainAuto = true;
Eli Friedman6aeaa602012-01-05 22:34:08 +0000399 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000400 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000401 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000402 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000403 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000404 RParenLoc,
405 TypeMayContainAuto);
Eli Friedman6aeaa602012-01-05 22:34:08 +0000406 } else if (InitArgs.size() == 0) {
407 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000408 } else {
409 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000410 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000411 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000412 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000413 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000414 // FIXME: Not too happy about invalidating the declaration
415 // because of a bogus initializer.
416 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000417 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000418
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000419 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000420 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
421 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000422 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000423
Richard Smithe3499ca2011-06-21 23:42:09 +0000424 // Diagnose unused local variables with dependent types, where the diagnostic
425 // will have been deferred.
426 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
427 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000428 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000429
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000430 return Var;
431}
432
Abramo Bagnara6206d532010-06-05 05:09:32 +0000433Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
434 AccessSpecDecl* AD
435 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
436 D->getAccessSpecifierLoc(), D->getColonLoc());
437 Owner->addHiddenDecl(AD);
438 return AD;
439}
440
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000441Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
442 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000443 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000444 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000445 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000446 DI = SemaRef.SubstType(DI, TemplateArgs,
447 D->getLocation(), D->getDeclName());
448 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000449 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000450 Invalid = true;
451 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000452 // C++ [temp.arg.type]p3:
453 // If a declaration acquires a function type through a type
454 // dependent on a template-parameter and this causes a
455 // declaration that does not use the syntactic form of a
456 // function declarator to have function type, the program is
457 // ill-formed.
458 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000459 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000460 Invalid = true;
461 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000462 } else {
463 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000464 }
465
466 Expr *BitWidth = D->getBitWidth();
467 if (Invalid)
468 BitWidth = 0;
469 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000470 // The bit-width expression is a constant expression.
471 EnterExpressionEvaluationContext Unevaluated(SemaRef,
472 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000473
John McCall60d7b3a2010-08-24 06:29:42 +0000474 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000475 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000476 if (InstantiatedBitWidth.isInvalid()) {
477 Invalid = true;
478 BitWidth = 0;
479 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000480 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000481 }
482
John McCall07fb6be2009-10-22 23:33:21 +0000483 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
484 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000485 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000486 D->getLocation(),
487 D->isMutable(),
488 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000489 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000490 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000491 D->getAccess(),
492 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000493 if (!Field) {
494 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000495 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000496 }
Mike Stump1eb44332009-09-09 15:08:12 +0000497
John McCall1d8d1cc2010-08-01 02:01:53 +0000498 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000499
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000500 if (Invalid)
501 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000503 if (!Field->getDeclName()) {
504 // Keep track of where this decl came from.
505 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000506 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000507 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
508 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000509 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000510 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000511 }
Mike Stump1eb44332009-09-09 15:08:12 +0000512
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000513 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000514 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000515 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000516
517 return Field;
518}
519
Francois Pichet87c2e122010-11-21 06:08:52 +0000520Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
521 NamedDecl **NamedChain =
522 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
523
524 int i = 0;
525 for (IndirectFieldDecl::chain_iterator PI =
526 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000527 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000528 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000529 TemplateArgs);
530 if (!Next)
531 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000532
Douglas Gregorb7107222011-03-04 19:46:35 +0000533 NamedChain[i++] = Next;
534 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000535
Francois Pichet40e17752010-12-09 10:07:54 +0000536 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000537 IndirectFieldDecl* IndirectField
538 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000539 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000540 NamedChain, D->getChainingSize());
541
542
543 IndirectField->setImplicit(D->isImplicit());
544 IndirectField->setAccess(D->getAccess());
545 Owner->addDecl(IndirectField);
546 return IndirectField;
547}
548
John McCall02cace72009-08-28 07:59:38 +0000549Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000550 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000551 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000552 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000553 TypeSourceInfo *InstTy;
554 // If this is an unsupported friend, don't bother substituting template
555 // arguments into it. The actual type referred to won't be used by any
556 // parts of Clang, and may not be valid for instantiating. Just use the
557 // same info for the instantiated friend.
558 if (D->isUnsupportedFriend()) {
559 InstTy = Ty;
560 } else {
561 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
562 D->getLocation(), DeclarationName());
563 }
564 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000565 return 0;
John McCall02cace72009-08-28 07:59:38 +0000566
Abramo Bagnara0216df82011-10-29 20:52:52 +0000567 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
568 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000569 if (!FD)
570 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000571
Douglas Gregor06245bf2010-04-07 17:57:12 +0000572 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000573 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000574 Owner->addDecl(FD);
575 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000576 }
577
Douglas Gregor06245bf2010-04-07 17:57:12 +0000578 NamedDecl *ND = D->getFriendDecl();
579 assert(ND && "friend decl must be a decl or a type!");
580
John McCallaf2094e2010-04-08 09:05:18 +0000581 // All of the Visit implementations for the various potential friend
582 // declarations have to be carefully written to work for friend
583 // objects, with the most important detail being that the target
584 // decl should almost certainly not be placed in Owner.
585 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000586 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000587
John McCall02cace72009-08-28 07:59:38 +0000588 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000589 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000590 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000591 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000592 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000593 Owner->addDecl(FD);
594 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000595}
596
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000597Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
598 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Richard Smithf6702a32011-12-20 02:08:33 +0000600 // The expression in a static assertion is a constant expression.
601 EnterExpressionEvaluationContext Unevaluated(SemaRef,
602 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000603
John McCall60d7b3a2010-08-24 06:29:42 +0000604 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000605 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000606 if (InstantiatedAssertExpr.isInvalid())
607 return 0;
608
John McCall60d7b3a2010-08-24 06:29:42 +0000609 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000610 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000611 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000612 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000613 Message.get(),
614 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000615}
616
617Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000618 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000619 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000620 /*PrevDecl=*/0, D->isScoped(),
621 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000622 if (D->isFixed()) {
623 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
624 // If we have type source information for the underlying type, it means it
625 // has been explicitly set by the user. Perform substitution on it before
626 // moving on.
627 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
628 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
629 TemplateArgs,
630 UnderlyingLoc,
631 DeclarationName()));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000632
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000633 if (!Enum->getIntegerTypeSourceInfo())
634 Enum->setIntegerType(SemaRef.Context.IntTy);
635 }
636 else {
637 assert(!D->getIntegerType()->isDependentType()
638 && "Dependent type without type source info");
639 Enum->setIntegerType(D->getIntegerType());
640 }
641 }
642
John McCall5b629aa2010-10-22 23:36:17 +0000643 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
644
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000645 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000646 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000647 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000648 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000649 Enum->startDefinition();
650
Douglas Gregor96084f12010-03-01 19:00:07 +0000651 if (D->getDeclContext()->isFunctionOrMethod())
652 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000653
Chris Lattner5f9e2722011-07-23 10:55:15 +0000654 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000655
656 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000657 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
658 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000659 EC != ECEnd; ++EC) {
660 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000661 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000662 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000663 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000664 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000665 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000666
John McCallce3ff2b2009-08-25 22:02:44 +0000667 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000668 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000669
670 // Drop the initial value and continue.
671 bool isInvalid = false;
672 if (Value.isInvalid()) {
673 Value = SemaRef.Owned((Expr *)0);
674 isInvalid = true;
675 }
676
Mike Stump1eb44332009-09-09 15:08:12 +0000677 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000678 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
679 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000680 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000681
682 if (isInvalid) {
683 if (EnumConst)
684 EnumConst->setInvalidDecl();
685 Enum->setInvalidDecl();
686 }
687
688 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000689 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
690
John McCall3b85ecf2010-01-23 22:37:59 +0000691 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000692 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000693 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000694 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000695
Douglas Gregor96084f12010-03-01 19:00:07 +0000696 if (D->getDeclContext()->isFunctionOrMethod()) {
697 // If the enumeration is within a function or method, record the enum
698 // constant as a local.
699 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
700 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000701 }
702 }
Mike Stump1eb44332009-09-09 15:08:12 +0000703
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000704 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000705 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000706 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000707 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000708 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000709 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000710
711 return Enum;
712}
713
Douglas Gregor6477b692009-03-25 15:04:13 +0000714Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000715 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000716}
717
John McCalle29ba202009-08-20 01:44:21 +0000718Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000719 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
720
Douglas Gregor550d9b22009-10-31 17:21:17 +0000721 // Create a local instantiation scope for this class template, which
722 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000723 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000724 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000725 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000726 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000727 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000728
729 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000730
731 // Instantiate the qualifier. We have to do this first in case
732 // we're a friend declaration, because if we are then we need to put
733 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000734 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
735 if (QualifierLoc) {
736 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
737 TemplateArgs);
738 if (!QualifierLoc)
739 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000740 }
741
742 CXXRecordDecl *PrevDecl = 0;
743 ClassTemplateDecl *PrevClassTemplate = 0;
744
Douglas Gregoref96ee02012-01-14 16:38:05 +0000745 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000746 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
747 if (Found.first != Found.second) {
748 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
749 if (PrevClassTemplate)
750 PrevDecl = PrevClassTemplate->getTemplatedDecl();
751 }
752 }
753
John McCall93ba8572010-03-25 06:39:04 +0000754 // If this isn't a friend, then it's a member template, in which
755 // case we just want to build the instantiation in the
756 // specialization. If it is a friend, we want to build it in
757 // the appropriate context.
758 DeclContext *DC = Owner;
759 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000760 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000761 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000762 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000763 DC = SemaRef.computeDeclContext(SS);
764 if (!DC) return 0;
765 } else {
766 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
767 Pattern->getDeclContext(),
768 TemplateArgs);
769 }
770
771 // Look for a previous declaration of the template in the owning
772 // context.
773 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
774 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
775 SemaRef.LookupQualifiedName(R, DC);
776
777 if (R.isSingleResult()) {
778 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
779 if (PrevClassTemplate)
780 PrevDecl = PrevClassTemplate->getTemplatedDecl();
781 }
782
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000783 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000784 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000785 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000786 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000787 return 0;
788 }
789
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000790 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000791 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000792 bool Complain = true;
793
794 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
795 // template for struct std::tr1::__detail::_Map_base, where the
796 // template parameters of the friend declaration don't match the
797 // template parameters of the original declaration. In this one
798 // case, we don't complain about the ill-formed friend
799 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000800 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000801 Pattern->getIdentifier()->isStr("_Map_base") &&
802 DC->isNamespace() &&
803 cast<NamespaceDecl>(DC)->getIdentifier() &&
804 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
805 DeclContext *DCParent = DC->getParent();
806 if (DCParent->isNamespace() &&
807 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
808 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
809 DeclContext *DCParent2 = DCParent->getParent();
810 if (DCParent2->isNamespace() &&
811 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
812 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
813 DCParent2->getParent()->isTranslationUnit())
814 Complain = false;
815 }
816 }
817
John McCall93ba8572010-03-25 06:39:04 +0000818 TemplateParameterList *PrevParams
819 = PrevClassTemplate->getTemplateParameters();
820
821 // Make sure the parameter lists match.
822 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000823 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000824 Sema::TPL_TemplateMatch)) {
825 if (Complain)
826 return 0;
827
828 AdoptedPreviousTemplateParams = true;
829 InstParams = PrevParams;
830 }
John McCall93ba8572010-03-25 06:39:04 +0000831
832 // Do some additional validation, then merge default arguments
833 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000834 if (!AdoptedPreviousTemplateParams &&
835 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000836 Sema::TPC_ClassTemplate))
837 return 0;
838 }
839 }
840
John McCalle29ba202009-08-20 01:44:21 +0000841 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000842 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000843 Pattern->getLocStart(), Pattern->getLocation(),
844 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000845 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000846
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000847 if (QualifierLoc)
848 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000849
John McCalle29ba202009-08-20 01:44:21 +0000850 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000851 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
852 D->getIdentifier(), InstParams, RecordInst,
853 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000854 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000855
John McCall93ba8572010-03-25 06:39:04 +0000856 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000857 if (PrevClassTemplate)
858 Inst->setAccess(PrevClassTemplate->getAccess());
859 else
860 Inst->setAccess(D->getAccess());
861
John McCall93ba8572010-03-25 06:39:04 +0000862 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
863 // TODO: do we want to track the instantiation progeny of this
864 // friend target decl?
865 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000866 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000867 if (!PrevClassTemplate)
868 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000869 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000870
Douglas Gregorf0510d42009-10-12 23:11:44 +0000871 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000872 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000873 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000874
Douglas Gregor259571e2009-10-30 22:42:42 +0000875 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000876 if (isFriend) {
877 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000878 Inst->setLexicalDeclContext(Owner);
879 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000880 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000881 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000882
Abramo Bagnara4c515482011-11-26 13:33:46 +0000883 if (D->isOutOfLine()) {
884 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
885 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
886 }
887
John McCalle29ba202009-08-20 01:44:21 +0000888 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000889
890 if (!PrevClassTemplate) {
891 // Queue up any out-of-line partial specializations of this member
892 // class template; the client will force their instantiation once
893 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000894 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000895 D->getPartialSpecializations(PartialSpecs);
896 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
897 if (PartialSpecs[I]->isOutOfLine())
898 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
899 }
900
John McCalle29ba202009-08-20 01:44:21 +0000901 return Inst;
902}
903
Douglas Gregord60e1052009-08-27 16:57:43 +0000904Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000905TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
906 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000907 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000908
Douglas Gregored9c0f92009-10-29 00:04:11 +0000909 // Lookup the already-instantiated declaration in the instantiation
910 // of the class template and return that.
911 DeclContext::lookup_result Found
912 = Owner->lookup(ClassTemplate->getDeclName());
913 if (Found.first == Found.second)
914 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000915
Douglas Gregored9c0f92009-10-29 00:04:11 +0000916 ClassTemplateDecl *InstClassTemplate
917 = dyn_cast<ClassTemplateDecl>(*Found.first);
918 if (!InstClassTemplate)
919 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000920
Douglas Gregord65587f2010-11-10 19:44:59 +0000921 if (ClassTemplatePartialSpecializationDecl *Result
922 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
923 return Result;
924
925 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000926}
927
928Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000929TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000930 // Create a local instantiation scope for this function template, which
931 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000932 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000933 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000934 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000935
Douglas Gregord60e1052009-08-27 16:57:43 +0000936 TemplateParameterList *TempParams = D->getTemplateParameters();
937 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000938 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000939 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000940
Douglas Gregora735b202009-10-13 14:39:41 +0000941 FunctionDecl *Instantiated = 0;
942 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000943 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000944 InstParams));
945 else
946 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000947 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000948 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000949
Douglas Gregora735b202009-10-13 14:39:41 +0000950 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000951 return 0;
952
John McCall46460a62010-01-20 21:53:11 +0000953 Instantiated->setAccess(D->getAccess());
954
Mike Stump1eb44332009-09-09 15:08:12 +0000955 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000956 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000957 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000958 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000959 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000960 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000961 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000962
John McCallb1a56e72010-03-26 23:10:15 +0000963 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
964
John McCalle976ffe2009-12-14 23:19:40 +0000965 // Link the instantiation back to the pattern *unless* this is a
966 // non-definition friend declaration.
967 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000968 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000969 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000970
John McCallb1a56e72010-03-26 23:10:15 +0000971 // Make declarations visible in the appropriate context.
972 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000973 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000974
Douglas Gregord60e1052009-08-27 16:57:43 +0000975 return InstTemplate;
976}
977
Douglas Gregord475b8d2009-03-25 21:17:03 +0000978Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
979 CXXRecordDecl *PrevDecl = 0;
980 if (D->isInjectedClassName())
981 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000982 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000983 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000984 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000985 TemplateArgs);
986 if (!Prev) return 0;
987 PrevDecl = cast<CXXRecordDecl>(Prev);
988 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000989
990 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000991 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000992 D->getLocStart(), D->getLocation(),
993 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000994
995 // Substitute the nested name specifier, if any.
996 if (SubstQualifier(D, Record))
997 return 0;
998
Douglas Gregord475b8d2009-03-25 21:17:03 +0000999 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +00001000 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1001 // the tag decls introduced by friend class declarations don't have an access
1002 // specifier. Remove once this area of the code gets sorted out.
1003 if (D->getAccess() != AS_none)
1004 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001005 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001006 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001007
John McCall02cace72009-08-28 07:59:38 +00001008 // If the original function was part of a friend declaration,
1009 // inherit its namespace state.
1010 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
1011 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
1012
Douglas Gregor9901c572010-05-21 00:31:19 +00001013 // Make sure that anonymous structs and unions are recorded.
1014 if (D->isAnonymousStructOrUnion()) {
1015 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001016 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001017 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1018 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001019
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001020 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001021 return Record;
1022}
1023
John McCall02cace72009-08-28 07:59:38 +00001024/// Normal class members are of more specific types and therefore
1025/// don't make it here. This function serves two purposes:
1026/// 1) instantiating function templates
1027/// 2) substituting friend declarations
1028/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001029Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001030 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001031 // Check whether there is already a function template specialization for
1032 // this declaration.
1033 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1034 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001035 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001036 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001037 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001038
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001039 FunctionDecl *SpecFunc
1040 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1041 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Douglas Gregor127102b2009-06-29 20:59:39 +00001043 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001044 if (SpecFunc)
1045 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001046 }
Mike Stump1eb44332009-09-09 15:08:12 +00001047
John McCallb0cb0222010-03-27 05:57:59 +00001048 bool isFriend;
1049 if (FunctionTemplate)
1050 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1051 else
1052 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1053
Douglas Gregor79c22782010-01-16 20:21:20 +00001054 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001055 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001056 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001057 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001058 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001059
Chris Lattner5f9e2722011-07-23 10:55:15 +00001060 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001061 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001062 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001063 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001064 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001065
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001066 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1067 if (QualifierLoc) {
1068 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1069 TemplateArgs);
1070 if (!QualifierLoc)
1071 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001072 }
1073
John McCall68b6b872010-02-06 01:50:47 +00001074 // If we're instantiating a local function declaration, put the result
1075 // in the owner; otherwise we need to find the instantiated context.
1076 DeclContext *DC;
1077 if (D->getDeclContext()->isFunctionOrMethod())
1078 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001079 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001080 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001081 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001082 DC = SemaRef.computeDeclContext(SS);
1083 if (!DC) return 0;
1084 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001085 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001086 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001087 }
John McCall68b6b872010-02-06 01:50:47 +00001088
John McCall02cace72009-08-28 07:59:38 +00001089 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001090 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1091 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001092 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001093 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001094 /*isConstexpr*/ false);
John McCallb6217662010-03-15 10:12:16 +00001095
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001096 if (QualifierLoc)
1097 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001098
John McCallb1a56e72010-03-26 23:10:15 +00001099 DeclContext *LexicalDC = Owner;
1100 if (!isFriend && D->isOutOfLine()) {
1101 assert(D->getDeclContext()->isFileContext());
1102 LexicalDC = D->getDeclContext();
1103 }
1104
1105 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001106
Douglas Gregore53060f2009-06-25 22:08:12 +00001107 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001108 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001109 // Adopt the already-instantiated parameters into our own context.
1110 for (unsigned P = 0; P < Params.size(); ++P)
1111 if (Params[P])
1112 Params[P]->setOwningFunction(Function);
1113 } else {
1114 // Since we were instantiated via a typedef of a function type, create
1115 // new parameters.
1116 const FunctionProtoType *Proto
1117 = Function->getType()->getAs<FunctionProtoType>();
1118 assert(Proto && "No function prototype in template instantiation?");
1119 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1120 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1121 ParmVarDecl *Param
1122 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1123 *AI);
1124 Param->setScopeInfo(0, Params.size());
1125 Params.push_back(Param);
1126 }
1127 }
David Blaikie4278c652011-09-21 18:16:56 +00001128 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001129
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001130 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001131 if (TemplateParams) {
1132 // Our resulting instantiation is actually a function template, since we
1133 // are substituting only the outer template parameters. For example, given
1134 //
1135 // template<typename T>
1136 // struct X {
1137 // template<typename U> friend void f(T, U);
1138 // };
1139 //
1140 // X<int> x;
1141 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001142 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001143 // which means substituting int for T, but leaving "f" as a friend function
1144 // template.
1145 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001146 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001147 Function->getLocation(),
1148 Function->getDeclName(),
1149 TemplateParams, Function);
1150 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001151
1152 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001153
1154 if (isFriend && D->isThisDeclarationADefinition()) {
1155 // TODO: should we remember this connection regardless of whether
1156 // the friend declaration provided a body?
1157 FunctionTemplate->setInstantiatedFromMemberTemplate(
1158 D->getDescribedFunctionTemplate());
1159 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001160 } else if (FunctionTemplate) {
1161 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001162 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001163 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001164 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001165 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001166 Innermost.first,
1167 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001168 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001169 } else if (isFriend) {
1170 // Note, we need this connection even if the friend doesn't have a body.
1171 // Its body may exist but not have been attached yet due to deferred
1172 // parsing.
1173 // FIXME: It might be cleaner to set this when attaching the body to the
1174 // friend function declaration, however that would require finding all the
1175 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001176 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001177 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001178
Douglas Gregore53060f2009-06-25 22:08:12 +00001179 if (InitFunctionInstantiation(Function, D))
1180 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001181
John McCallaf2094e2010-04-08 09:05:18 +00001182 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001183
John McCall68263142009-11-18 22:49:29 +00001184 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1185 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1186
John McCallaf2094e2010-04-08 09:05:18 +00001187 if (DependentFunctionTemplateSpecializationInfo *Info
1188 = D->getDependentSpecializationInfo()) {
1189 assert(isFriend && "non-friend has dependent specialization info?");
1190
1191 // This needs to be set now for future sanity.
1192 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1193
1194 // Instantiate the explicit template arguments.
1195 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1196 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001197 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1198 ExplicitArgs, TemplateArgs))
1199 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001200
1201 // Map the candidate templates to their instantiations.
1202 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1203 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1204 Info->getTemplate(I),
1205 TemplateArgs);
1206 if (!Temp) return 0;
1207
1208 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1209 }
1210
1211 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1212 &ExplicitArgs,
1213 Previous))
1214 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001215
John McCallaf2094e2010-04-08 09:05:18 +00001216 isExplicitSpecialization = true;
1217
1218 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001219 // Look only into the namespace where the friend would be declared to
1220 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001221 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001222 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001223
Douglas Gregora735b202009-10-13 14:39:41 +00001224 // In C++, the previous declaration we find might be a tag type
1225 // (class or enum). In this case, the new declaration will hide the
1226 // tag type. Note that this does does not apply if we're declaring a
1227 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001228 if (Previous.isSingleTagDecl())
1229 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001230 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001231
John McCall9f54ad42009-12-10 09:41:52 +00001232 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001233 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001234
John McCall76d32642010-04-24 01:30:58 +00001235 NamedDecl *PrincipalDecl = (TemplateParams
1236 ? cast<NamedDecl>(FunctionTemplate)
1237 : Function);
1238
Douglas Gregora735b202009-10-13 14:39:41 +00001239 // If the original function was part of a friend declaration,
1240 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001241 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001242 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001243 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001244 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001245 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001246 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001247
1248 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1249 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001250
Gabor Greif77535df2010-08-30 22:25:56 +00001251 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001252
Richard Smith53e53512011-10-19 00:54:10 +00001253 // C++98 [temp.friend]p5: When a function is defined in a friend function
1254 // declaration in a class template, the function is defined at each
1255 // instantiation of the class template. The function is defined even if it
1256 // is never used.
1257 // C++11 [temp.friend]p4: When a function is defined in a friend function
1258 // declaration in a class template, the function is instantiated when the
1259 // function is odr-used.
1260 //
1261 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1262 // redefinition, but don't instantiate the function.
1263 if ((!SemaRef.getLangOptions().CPlusPlus0x ||
1264 SemaRef.Diags.getDiagnosticLevel(
1265 diag::warn_cxx98_compat_friend_redefinition,
1266 Function->getLocation())
1267 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001268 D->isThisDeclarationADefinition()) {
1269 // Check for a function body.
1270 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001271 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001272 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001273 SemaRef.Diag(Function->getLocation(),
1274 SemaRef.getLangOptions().CPlusPlus0x ?
1275 diag::warn_cxx98_compat_friend_redefinition :
1276 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001277 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001278 if (!SemaRef.getLangOptions().CPlusPlus0x)
1279 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001280 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001281 // Check for redefinitions due to other instantiations of this or
1282 // a similar friend function.
1283 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1284 REnd = Function->redecls_end();
1285 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001286 if (*R == Function)
1287 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001288 switch (R->getFriendObjectKind()) {
1289 case Decl::FOK_None:
Richard Smith53e53512011-10-19 00:54:10 +00001290 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1291 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001292 if (MemberSpecializationInfo *MSInfo
1293 = Function->getMemberSpecializationInfo()) {
1294 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1295 SourceLocation Loc = R->getLocation(); // FIXME
1296 MSInfo->setPointOfInstantiation(Loc);
1297 SemaRef.PendingLocalImplicitInstantiations.push_back(
1298 std::make_pair(Function, Loc));
1299 queuedInstantiation = true;
1300 }
1301 }
1302 }
1303 break;
1304 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001305 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001306 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001307 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001308 SemaRef.Diag(Function->getLocation(),
1309 SemaRef.getLangOptions().CPlusPlus0x ?
1310 diag::warn_cxx98_compat_friend_redefinition :
1311 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001312 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001313 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001314 if (!SemaRef.getLangOptions().CPlusPlus0x)
1315 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001316 break;
1317 }
1318 }
1319 }
1320 }
Douglas Gregora735b202009-10-13 14:39:41 +00001321 }
1322
John McCall76d32642010-04-24 01:30:58 +00001323 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1324 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1325 PrincipalDecl->setNonMemberOperator();
1326
Sean Hunteb88ae52011-05-23 21:07:59 +00001327 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001328 return Function;
1329}
1330
Douglas Gregord60e1052009-08-27 16:57:43 +00001331Decl *
1332TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001333 TemplateParameterList *TemplateParams,
1334 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001335 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1336 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001337 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001338 // We are creating a function template specialization from a function
1339 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001340 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001341 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001342 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001343
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001344 FunctionDecl *SpecFunc
1345 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1346 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001347
Douglas Gregor6b906862009-08-21 00:16:32 +00001348 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001349 if (SpecFunc)
1350 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001351 }
1352
John McCallb0cb0222010-03-27 05:57:59 +00001353 bool isFriend;
1354 if (FunctionTemplate)
1355 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1356 else
1357 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1358
Douglas Gregor79c22782010-01-16 20:21:20 +00001359 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001360 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001361 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001362 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001363
John McCall4eab39f2010-10-19 02:26:41 +00001364 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001365 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001366 unsigned NumTempParamLists = 0;
1367 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1368 TempParamLists.set_size(NumTempParamLists);
1369 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1370 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1371 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1372 if (!InstParams)
1373 return NULL;
1374 TempParamLists[I] = InstParams;
1375 }
1376 }
1377
Chris Lattner5f9e2722011-07-23 10:55:15 +00001378 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001379 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001380 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001381 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001382 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001383
Abramo Bagnara723df242010-12-14 22:11:44 +00001384 // \brief If the type of this function, after ignoring parentheses,
1385 // is not *directly* a function type, then we're instantiating a function
1386 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001387 //
1388 // typedef int functype(int, int);
1389 // functype func;
1390 //
1391 // In this case, we'll just go instantiate the ParmVarDecls that we
1392 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001393 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001394 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001395 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001396 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1397 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001398 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001399 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001400 }
1401
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001402 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1403 if (QualifierLoc) {
1404 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001405 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001406 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001407 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001408 }
1409
1410 DeclContext *DC = Owner;
1411 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001412 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001413 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001414 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001415 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001416
1417 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1418 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001419 } else {
1420 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1421 D->getDeclContext(),
1422 TemplateArgs);
1423 }
1424 if (!DC) return 0;
1425 }
1426
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001427 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001428 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001429 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001431 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001432 DeclarationNameInfo NameInfo
1433 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001434 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001435 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001436 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001437 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001438 Constructor->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001439 false, /*isConstexpr*/ false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001440 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001441 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001442 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001443 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001444 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001445 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001446 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001447 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001448 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001449 Conversion->isExplicit(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001450 /*isConstexpr*/ false,
1451 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001452 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001453 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001454 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001455 D->isStatic(),
1456 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001457 D->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001458 /*isConstexpr*/ false, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001459 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001460
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001461 if (QualifierLoc)
1462 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001463
Douglas Gregord60e1052009-08-27 16:57:43 +00001464 if (TemplateParams) {
1465 // Our resulting instantiation is actually a function template, since we
1466 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001467 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001468 // template<typename T>
1469 // struct X {
1470 // template<typename U> void f(T, U);
1471 // };
1472 //
1473 // X<int> x;
1474 //
1475 // We are instantiating the member template "f" within X<int>, which means
1476 // substituting int for T, but leaving "f" as a member function template.
1477 // Build the function template itself.
1478 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1479 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001480 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001481 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001482 if (isFriend) {
1483 FunctionTemplate->setLexicalDeclContext(Owner);
1484 FunctionTemplate->setObjectOfFriendDecl(true);
1485 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001486 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001487 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001488 } else if (FunctionTemplate) {
1489 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001490 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001491 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001492 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001493 TemplateArgumentList::CreateCopy(SemaRef.Context,
1494 Innermost.first,
1495 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001496 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001497 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001498 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001499 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001500 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001501
Mike Stump1eb44332009-09-09 15:08:12 +00001502 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001503 // out-of-line, the instantiation will have the same lexical
1504 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001505 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001506 if (NumTempParamLists)
1507 Method->setTemplateParameterListsInfo(SemaRef.Context,
1508 NumTempParamLists,
1509 TempParamLists.data());
1510
John McCallb0cb0222010-03-27 05:57:59 +00001511 Method->setLexicalDeclContext(Owner);
1512 Method->setObjectOfFriendDecl(true);
1513 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001514 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001515
Douglas Gregor5545e162009-03-24 00:38:23 +00001516 // Attach the parameters
1517 for (unsigned P = 0; P < Params.size(); ++P)
1518 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001519 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001520
1521 if (InitMethodInstantiation(Method, D))
1522 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001523
Abramo Bagnara25777432010-08-11 22:01:17 +00001524 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1525 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001526
John McCallb0cb0222010-03-27 05:57:59 +00001527 if (!FunctionTemplate || TemplateParams || isFriend) {
1528 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001529
Douglas Gregordec06662009-08-21 18:42:58 +00001530 // In C++, the previous declaration we find might be a tag type
1531 // (class or enum). In this case, the new declaration will hide the
1532 // tag type. Note that this does does not apply if we're declaring a
1533 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001534 if (Previous.isSingleTagDecl())
1535 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001536 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001537
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001538 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001539 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001540
Douglas Gregor4ba31362009-12-01 17:24:26 +00001541 if (D->isPure())
1542 SemaRef.CheckPureMethod(Method, SourceRange());
1543
John McCall46460a62010-01-20 21:53:11 +00001544 Method->setAccess(D->getAccess());
1545
Anders Carlsson9eefa222011-01-20 06:52:44 +00001546 SemaRef.CheckOverrideControl(Method);
1547
Eli Friedman3bc45152011-11-15 22:39:08 +00001548 // If a function is defined as defaulted or deleted, mark it as such now.
1549 if (D->isDefaulted())
1550 Method->setDefaulted();
1551 if (D->isDeletedAsWritten())
1552 Method->setDeletedAsWritten();
1553
John McCallb0cb0222010-03-27 05:57:59 +00001554 if (FunctionTemplate) {
1555 // If there's a function template, let our caller handle it.
1556 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1557 // Don't hide a (potentially) valid declaration with an invalid one.
1558 } else {
1559 NamedDecl *DeclToAdd = (TemplateParams
1560 ? cast<NamedDecl>(FunctionTemplate)
1561 : Method);
1562 if (isFriend)
1563 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001564 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001565 Owner->addDecl(DeclToAdd);
1566 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001567
1568 if (D->isExplicitlyDefaulted()) {
1569 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1570 } else {
1571 assert(!D->isDefaulted() &&
1572 "should not implicitly default uninstantiated function");
1573 }
1574
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001575 return Method;
1576}
1577
Douglas Gregor615c5d42009-03-24 16:43:20 +00001578Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001579 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001580}
1581
Douglas Gregor03b2b072009-03-24 00:15:49 +00001582Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001583 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001584}
1585
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001586Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001587 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001588}
1589
Douglas Gregor6477b692009-03-25 15:04:13 +00001590ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001591 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1592 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001593}
1594
John McCalle29ba202009-08-20 01:44:21 +00001595Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1596 TemplateTypeParmDecl *D) {
1597 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001598 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001599
John McCalle29ba202009-08-20 01:44:21 +00001600 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001601 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1602 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001603 D->getDepth() - TemplateArgs.getNumLevels(),
1604 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001605 D->wasDeclaredWithTypename(),
1606 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001607 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001608
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001609 if (D->hasDefaultArgument())
1610 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1611
1612 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001613 // scope.
1614 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001615
John McCalle29ba202009-08-20 01:44:21 +00001616 return Inst;
1617}
1618
Douglas Gregor33642df2009-10-23 23:25:44 +00001619Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1620 NonTypeTemplateParmDecl *D) {
1621 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001622 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001623 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1624 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001625 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001626 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001627 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001628 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001629
1630 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001631 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001632 // expansion of types. Substitute into each of the expanded types.
1633 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1634 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1635 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1636 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1637 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001638 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001639 D->getDeclName());
1640 if (!NewDI)
1641 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001642
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001643 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1644 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1645 D->getLocation());
1646 if (NewT.isNull())
1647 return 0;
1648 ExpandedParameterPackTypes.push_back(NewT);
1649 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001650
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001651 IsExpandedParameterPack = true;
1652 DI = D->getTypeSourceInfo();
1653 T = DI->getType();
1654 } else if (isa<PackExpansionTypeLoc>(TL)) {
1655 // The non-type template parameter pack's type is a pack expansion of types.
1656 // Determine whether we need to expand this parameter pack into separate
1657 // types.
1658 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1659 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001660 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001661 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001662
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001663 // Determine whether the set of unexpanded parameter packs can and should
1664 // be expanded.
1665 bool Expand = true;
1666 bool RetainExpansion = false;
1667 llvm::Optional<unsigned> OrigNumExpansions
1668 = Expansion.getTypePtr()->getNumExpansions();
1669 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1670 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1671 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001672 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001673 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001674 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001675 NumExpansions))
1676 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001677
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001678 if (Expand) {
1679 for (unsigned I = 0; I != *NumExpansions; ++I) {
1680 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1681 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001682 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001683 D->getDeclName());
1684 if (!NewDI)
1685 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001686
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001687 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1688 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1689 NewDI->getType(),
1690 D->getLocation());
1691 if (NewT.isNull())
1692 return 0;
1693 ExpandedParameterPackTypes.push_back(NewT);
1694 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001695
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001696 // Note that we have an expanded parameter pack. The "type" of this
1697 // expanded parameter pack is the original expansion type, but callers
1698 // will end up using the expanded parameter pack types for type-checking.
1699 IsExpandedParameterPack = true;
1700 DI = D->getTypeSourceInfo();
1701 T = DI->getType();
1702 } else {
1703 // We cannot fully expand the pack expansion now, so substitute into the
1704 // pattern and create a new pack expansion type.
1705 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1706 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001707 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001708 D->getDeclName());
1709 if (!NewPattern)
1710 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001711
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001712 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1713 NumExpansions);
1714 if (!DI)
1715 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001716
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001717 T = DI->getType();
1718 }
1719 } else {
1720 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001721 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001722 D->getLocation(), D->getDeclName());
1723 if (!DI)
1724 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001725
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001726 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001727 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001728 D->getLocation());
1729 if (T.isNull()) {
1730 T = SemaRef.Context.IntTy;
1731 Invalid = true;
1732 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001733 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001734
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001735 NonTypeTemplateParmDecl *Param;
1736 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001737 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001738 D->getInnerLocStart(),
1739 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001740 D->getDepth() - TemplateArgs.getNumLevels(),
1741 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001742 D->getIdentifier(), T,
1743 DI,
1744 ExpandedParameterPackTypes.data(),
1745 ExpandedParameterPackTypes.size(),
1746 ExpandedParameterPackTypesAsWritten.data());
1747 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001748 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001749 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001750 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001751 D->getDepth() - TemplateArgs.getNumLevels(),
1752 D->getPosition(),
1753 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001754 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001755
Douglas Gregor9a299e02011-03-04 17:52:15 +00001756 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001757 if (Invalid)
1758 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001759
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001760 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001761
1762 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001763 // scope.
1764 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001765 return Param;
1766}
1767
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001768Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001769TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1770 TemplateTemplateParmDecl *D) {
1771 // Instantiate the template parameter list of the template template parameter.
1772 TemplateParameterList *TempParams = D->getTemplateParameters();
1773 TemplateParameterList *InstParams;
1774 {
1775 // Perform the actual substitution of template parameters within a new,
1776 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001777 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001778 InstParams = SubstTemplateParams(TempParams);
1779 if (!InstParams)
1780 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001781 }
1782
Douglas Gregor9106ef72009-11-11 16:58:32 +00001783 // Build the template template parameter.
1784 TemplateTemplateParmDecl *Param
1785 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001786 D->getDepth() - TemplateArgs.getNumLevels(),
1787 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001788 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001789 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001790 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001791
1792 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001793 // scope.
1794 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001795
Douglas Gregor9106ef72009-11-11 16:58:32 +00001796 return Param;
1797}
1798
Douglas Gregor48c32a72009-11-17 06:07:40 +00001799Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001800 // Using directives are never dependent (and never contain any types or
1801 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001802
Douglas Gregor48c32a72009-11-17 06:07:40 +00001803 UsingDirectiveDecl *Inst
1804 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001805 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001806 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001807 D->getIdentLocation(),
1808 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001809 D->getCommonAncestor());
1810 Owner->addDecl(Inst);
1811 return Inst;
1812}
1813
John McCalled976492009-12-04 22:46:56 +00001814Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001815
1816 // The nested name specifier may be dependent, for example
1817 // template <typename T> struct t {
1818 // struct s1 { T f1(); };
1819 // struct s2 : s1 { using s1::f1; };
1820 // };
1821 // template struct t<int>;
1822 // Here, in using s1::f1, s1 refers to t<T>::s1;
1823 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001824 NestedNameSpecifierLoc QualifierLoc
1825 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1826 TemplateArgs);
1827 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001828 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001829
1830 // The name info is non-dependent, so no transformation
1831 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001832 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001833
John McCall9f54ad42009-12-10 09:41:52 +00001834 // We only need to do redeclaration lookups if we're in a class
1835 // scope (in fact, it's not really even possible in non-class
1836 // scopes).
1837 bool CheckRedeclaration = Owner->isRecord();
1838
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001839 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1840 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001841
John McCalled976492009-12-04 22:46:56 +00001842 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001843 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001844 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001845 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001846 D->isTypeName());
1847
Douglas Gregor5149f372011-02-25 15:54:31 +00001848 CXXScopeSpec SS;
1849 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001850 if (CheckRedeclaration) {
1851 Prev.setHideTags(false);
1852 SemaRef.LookupQualifiedName(Prev, Owner);
1853
1854 // Check for invalid redeclarations.
1855 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1856 D->isTypeName(), SS,
1857 D->getLocation(), Prev))
1858 NewUD->setInvalidDecl();
1859
1860 }
1861
1862 if (!NewUD->isInvalidDecl() &&
1863 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001864 D->getLocation()))
1865 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001866
John McCalled976492009-12-04 22:46:56 +00001867 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1868 NewUD->setAccess(D->getAccess());
1869 Owner->addDecl(NewUD);
1870
John McCall9f54ad42009-12-10 09:41:52 +00001871 // Don't process the shadow decls for an invalid decl.
1872 if (NewUD->isInvalidDecl())
1873 return NewUD;
1874
John McCall323c3102009-12-22 22:26:37 +00001875 bool isFunctionScope = Owner->isFunctionOrMethod();
1876
John McCall9f54ad42009-12-10 09:41:52 +00001877 // Process the shadow decls.
1878 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1879 I != E; ++I) {
1880 UsingShadowDecl *Shadow = *I;
1881 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001882 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1883 Shadow->getLocation(),
1884 Shadow->getTargetDecl(),
1885 TemplateArgs));
1886 if (!InstTarget)
1887 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001888
1889 if (CheckRedeclaration &&
1890 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1891 continue;
1892
1893 UsingShadowDecl *InstShadow
1894 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1895 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001896
1897 if (isFunctionScope)
1898 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001899 }
John McCalled976492009-12-04 22:46:56 +00001900
1901 return NewUD;
1902}
1903
1904Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001905 // Ignore these; we handle them in bulk when processing the UsingDecl.
1906 return 0;
John McCalled976492009-12-04 22:46:56 +00001907}
1908
John McCall7ba107a2009-11-18 02:36:19 +00001909Decl * TemplateDeclInstantiator
1910 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001911 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001912 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001913 TemplateArgs);
1914 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001915 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001916
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001917 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001918 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001919
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001920 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1921 // Hence, no tranformation is required for it.
1922 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001923 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001924 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001925 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001926 /*instantiation*/ true,
1927 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001928 if (UD)
John McCalled976492009-12-04 22:46:56 +00001929 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1930
John McCall7ba107a2009-11-18 02:36:19 +00001931 return UD;
1932}
1933
1934Decl * TemplateDeclInstantiator
1935 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001936 NestedNameSpecifierLoc QualifierLoc
1937 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1938 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001939 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001940
John McCall7ba107a2009-11-18 02:36:19 +00001941 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001942 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001943
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001944 DeclarationNameInfo NameInfo
1945 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1946
John McCall7ba107a2009-11-18 02:36:19 +00001947 NamedDecl *UD =
1948 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001949 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001950 /*instantiation*/ true,
1951 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001952 if (UD)
John McCalled976492009-12-04 22:46:56 +00001953 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1954
Anders Carlsson0d8df782009-08-29 19:37:28 +00001955 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001956}
1957
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001958
1959Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1960 ClassScopeFunctionSpecializationDecl *Decl) {
1961 CXXMethodDecl *OldFD = Decl->getSpecialization();
1962 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1963
1964 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1965 Sema::ForRedeclaration);
1966
1967 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1968 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1969 NewFD->setInvalidDecl();
1970 return NewFD;
1971 }
1972
1973 // Associate the specialization with the pattern.
1974 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1975 assert(Specialization && "Class scope Specialization is null");
1976 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1977
1978 return NewFD;
1979}
1980
John McCallce3ff2b2009-08-25 22:02:44 +00001981Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001982 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001983 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001984 if (D->isInvalidDecl())
1985 return 0;
1986
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001987 return Instantiator.Visit(D);
1988}
1989
John McCalle29ba202009-08-20 01:44:21 +00001990/// \brief Instantiates a nested template parameter list in the current
1991/// instantiation context.
1992///
1993/// \param L The parameter list to instantiate
1994///
1995/// \returns NULL if there was an error
1996TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001997TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001998 // Get errors for all the parameters before bailing out.
1999 bool Invalid = false;
2000
2001 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002002 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002003 ParamVector Params;
2004 Params.reserve(N);
2005 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2006 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002007 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002008 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002009 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002010 }
2011
2012 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002013 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002014 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002015
2016 TemplateParameterList *InstL
2017 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2018 L->getLAngleLoc(), &Params.front(), N,
2019 L->getRAngleLoc());
2020 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002021}
John McCalle29ba202009-08-20 01:44:21 +00002022
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002023/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002024/// specialization.
2025///
2026/// \param ClassTemplate the (instantiated) class template that is partially
2027// specialized by the instantiation of \p PartialSpec.
2028///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002029/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002030/// specialization that we are instantiating.
2031///
Douglas Gregord65587f2010-11-10 19:44:59 +00002032/// \returns The instantiated partial specialization, if successful; otherwise,
2033/// NULL to indicate an error.
2034ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002035TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2036 ClassTemplateDecl *ClassTemplate,
2037 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002038 // Create a local instantiation scope for this class template partial
2039 // specialization, which will contain the instantiations of the template
2040 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002041 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002042
Douglas Gregored9c0f92009-10-29 00:04:11 +00002043 // Substitute into the template parameters of the class template partial
2044 // specialization.
2045 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2046 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2047 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002048 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002049
Douglas Gregored9c0f92009-10-29 00:04:11 +00002050 // Substitute into the template arguments of the class template partial
2051 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002052 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002053 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2054 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002055 InstTemplateArgs, TemplateArgs))
2056 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002057
Douglas Gregored9c0f92009-10-29 00:04:11 +00002058 // Check that the template argument list is well-formed for this
2059 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002060 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002061 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002062 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002063 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002064 false,
2065 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002066 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002067
2068 // Figure out where to insert this class template partial specialization
2069 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002070 void *InsertPos = 0;
2071 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002072 = ClassTemplate->findPartialSpecialization(Converted.data(),
2073 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002074
Douglas Gregored9c0f92009-10-29 00:04:11 +00002075 // Build the canonical type that describes the converted template
2076 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002077 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002078 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002079 Converted.data(),
2080 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002081
2082 // Build the fully-sugared type for this class template
2083 // specialization as the user wrote in the specialization
2084 // itself. This means that we'll pretty-print the type retrieved
2085 // from the specialization's declaration the way that the user
2086 // actually wrote the specialization, rather than formatting the
2087 // name based on the "canonical" representation used to store the
2088 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002089 TypeSourceInfo *WrittenTy
2090 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2091 TemplateName(ClassTemplate),
2092 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002093 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002094 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002095
Douglas Gregored9c0f92009-10-29 00:04:11 +00002096 if (PrevDecl) {
2097 // We've already seen a partial specialization with the same template
2098 // parameters and template arguments. This can happen, for example, when
2099 // substituting the outer template arguments ends up causing two
2100 // class template partial specializations of a member class template
2101 // to have identical forms, e.g.,
2102 //
2103 // template<typename T, typename U>
2104 // struct Outer {
2105 // template<typename X, typename Y> struct Inner;
2106 // template<typename Y> struct Inner<T, Y>;
2107 // template<typename Y> struct Inner<U, Y>;
2108 // };
2109 //
2110 // Outer<int, int> outer; // error: the partial specializations of Inner
2111 // // have the same signature.
2112 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002113 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002114 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2115 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002116 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002117 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002118
2119
Douglas Gregored9c0f92009-10-29 00:04:11 +00002120 // Create the class template partial specialization declaration.
2121 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002122 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002123 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002124 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002125 PartialSpec->getLocStart(),
2126 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002127 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002128 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002129 Converted.data(),
2130 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002131 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002132 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002133 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002134 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002135 // Substitute the nested name specifier, if any.
2136 if (SubstQualifier(PartialSpec, InstPartialSpec))
2137 return 0;
2138
Douglas Gregored9c0f92009-10-29 00:04:11 +00002139 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002140 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002141
Douglas Gregored9c0f92009-10-29 00:04:11 +00002142 // Add this partial specialization to the set of class template partial
2143 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002144 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002145 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002146}
2147
John McCall21ef0fa2010-03-11 09:03:00 +00002148TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002149TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002150 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002151 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2152 assert(OldTInfo && "substituting function without type source info");
2153 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002154 TypeSourceInfo *NewTInfo
2155 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2156 D->getTypeSpecStartLoc(),
2157 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002158 if (!NewTInfo)
2159 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002160
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002161 if (NewTInfo != OldTInfo) {
2162 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002163 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002164 if (FunctionProtoTypeLoc *OldProtoLoc
2165 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002166 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002167 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2168 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002169 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2170 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2171 OldIdx != NumOldParams; ++OldIdx) {
2172 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2173 if (!OldParam->isParameterPack() ||
2174 (NewIdx < NumNewParams &&
2175 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002176 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002177 // instantiated to a (still-dependent) parameter pack.
2178 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2179 Params.push_back(NewParam);
2180 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2181 NewParam);
2182 continue;
2183 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002184
Douglas Gregor12c9c002011-01-07 16:43:16 +00002185 // Parameter pack: make the instantiation an argument pack.
2186 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2187 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002188 unsigned NumArgumentsInExpansion
2189 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2190 TemplateArgs);
2191 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002192 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2193 Params.push_back(NewParam);
2194 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2195 NewParam);
2196 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002197 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002198 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002199 } else {
2200 // The function type itself was not dependent and therefore no
2201 // substitution occurred. However, we still need to instantiate
2202 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002203 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002204 if (FunctionProtoTypeLoc *OldProtoLoc
2205 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2206 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2207 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2208 if (!Parm)
2209 return 0;
2210 Params.push_back(Parm);
2211 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002212 }
2213 }
John McCall21ef0fa2010-03-11 09:03:00 +00002214 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002215}
2216
Mike Stump1eb44332009-09-09 15:08:12 +00002217/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002218/// declaration (New) from the corresponding fields of its template (Tmpl).
2219///
2220/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002221bool
2222TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002223 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002224 if (Tmpl->isDeletedAsWritten())
2225 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002226
Douglas Gregorcca9e962009-07-01 22:01:06 +00002227 // If we are performing substituting explicitly-specified template arguments
2228 // or deduced template arguments into a function template and we reach this
2229 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002230 // to keeping the new function template specialization. We therefore
2231 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002232 // into a template instantiation for this specific function template
2233 // specialization, which is not a SFINAE context, so that we diagnose any
2234 // further errors in the declaration itself.
2235 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2236 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2237 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2238 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002239 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002240 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002241 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002242 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002243 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002244 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2245 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002246 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002247 }
2248 }
Mike Stump1eb44332009-09-09 15:08:12 +00002249
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002250 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2251 assert(Proto && "Function template without prototype?");
2252
Sebastian Redl60618fa2011-03-12 11:50:43 +00002253 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002254 // The function has an exception specification or a "noreturn"
2255 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002256 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002257 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2258 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002259 if (const PackExpansionType *PackExpansion
2260 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2261 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002262 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002263 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2264 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002265 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002266 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002267
Douglas Gregorb99268b2010-12-21 00:52:54 +00002268 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002269 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002270 llvm::Optional<unsigned> NumExpansions
2271 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002272 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002273 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002274 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002275 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002276 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002277 RetainExpansion,
2278 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002279 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002280
Douglas Gregorb99268b2010-12-21 00:52:54 +00002281 if (!Expand) {
2282 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002283 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002284 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002285 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002286 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002287 TemplateArgs,
2288 New->getLocation(), New->getDeclName());
2289 if (T.isNull())
2290 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002291
Douglas Gregorcded4f62011-01-14 17:04:44 +00002292 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002293 Exceptions.push_back(T);
2294 continue;
2295 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002296
Douglas Gregorb99268b2010-12-21 00:52:54 +00002297 // Substitute into the pack expansion pattern for each template
2298 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002299 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002300 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002301
2302 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002303 TemplateArgs,
2304 New->getLocation(), New->getDeclName());
2305 if (T.isNull()) {
2306 Invalid = true;
2307 break;
2308 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002309
Douglas Gregorb99268b2010-12-21 00:52:54 +00002310 Exceptions.push_back(T);
2311 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002312
Douglas Gregorb99268b2010-12-21 00:52:54 +00002313 if (Invalid)
2314 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002315
Douglas Gregorb99268b2010-12-21 00:52:54 +00002316 continue;
2317 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002318
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002319 QualType T
2320 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2321 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002322 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002323 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2324 continue;
2325
2326 Exceptions.push_back(T);
2327 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002328 Expr *NoexceptExpr = 0;
2329 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002330 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2331 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002332 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2333 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002334 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002335
Douglas Gregor5c340e82011-10-09 18:31:23 +00002336 if (E.isUsable()) {
2337 SourceLocation ErrLoc;
2338 llvm::APSInt NoexceptVal;
Sebastian Redl56fb9262011-03-14 18:51:50 +00002339 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002340 if (!NoexceptExpr->isTypeDependent() &&
2341 !NoexceptExpr->isValueDependent() &&
2342 !NoexceptExpr->isIntegerConstantExpr(NoexceptVal, SemaRef.Context,
2343 &ErrLoc, /*evaluated=*/false)){
2344 SemaRef.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression)
2345 << NoexceptExpr->getSourceRange();
2346 NoexceptExpr = 0;
2347 }
2348 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002349 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002350
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002351 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002352
John McCalle23cf432010-12-14 08:05:40 +00002353 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002354 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002355 EPI.NumExceptions = Exceptions.size();
2356 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002357 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002358 EPI.ExtInfo = Proto->getExtInfo();
2359
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002360 const FunctionProtoType *NewProto
2361 = New->getType()->getAs<FunctionProtoType>();
2362 assert(NewProto && "Template instantiation without function prototype?");
2363 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2364 NewProto->arg_type_begin(),
2365 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002366 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002367 }
2368
Richard Smith9f569cc2011-10-01 02:31:28 +00002369 // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2370 // a constexpr function template satisfies the requirements for a constexpr
2371 // function, then it is a constexpr function.
2372 if (Tmpl->isConstexpr() &&
2373 SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2374 New->setConstexpr(true);
2375
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002376 const FunctionDecl* Definition = Tmpl;
2377
2378 // Get the definition. Leaves the variable unchanged if undefined.
2379 Tmpl->isDefined(Definition);
2380
2381 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002382
Douglas Gregore53060f2009-06-25 22:08:12 +00002383 return false;
2384}
2385
Douglas Gregor5545e162009-03-24 00:38:23 +00002386/// \brief Initializes common fields of an instantiated method
2387/// declaration (New) from the corresponding fields of its template
2388/// (Tmpl).
2389///
2390/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002391bool
2392TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002393 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002394 if (InitFunctionInstantiation(New, Tmpl))
2395 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002396
Douglas Gregor5545e162009-03-24 00:38:23 +00002397 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002398 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002399 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002400
2401 // FIXME: attributes
2402 // FIXME: New needs a pointer to Tmpl
2403 return false;
2404}
Douglas Gregora58861f2009-05-13 20:28:22 +00002405
2406/// \brief Instantiate the definition of the given function from its
2407/// template.
2408///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002409/// \param PointOfInstantiation the point at which the instantiation was
2410/// required. Note that this is not precisely a "point of instantiation"
2411/// for the function, but it's close.
2412///
Douglas Gregora58861f2009-05-13 20:28:22 +00002413/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002414/// function template specialization or member function of a class template
2415/// specialization.
2416///
2417/// \param Recursive if true, recursively instantiates any functions that
2418/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002419///
2420/// \param DefinitionRequired if true, then we are performing an explicit
2421/// instantiation where the body of the function is required. Complain if
2422/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002423void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002424 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002425 bool Recursive,
2426 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002427 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002428 return;
2429
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002430 // Never instantiate an explicit specialization except if it is a class scope
2431 // explicit specialization.
2432 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2433 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002434 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002435
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002436 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002437 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002438 assert(PatternDecl && "instantiating a non-template");
2439
2440 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2441 assert(PatternDecl && "template definition is not a template");
2442 if (!Pattern) {
2443 // Try to find a defaulted definition
2444 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002445 }
Sean Huntf996e052011-05-27 20:00:14 +00002446 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002447
Francois Pichet8387e2a2011-04-22 22:18:13 +00002448 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002449 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002450 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002451 PendingInstantiations.push_back(
2452 std::make_pair(Function, PointOfInstantiation));
2453 return;
2454 }
2455
2456 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002457 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002458 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002459 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002460 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002461 Pattern = PatternDecl->getBody(PatternDecl);
2462 }
2463
Sean Huntf996e052011-05-27 20:00:14 +00002464 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002465 if (DefinitionRequired) {
2466 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002467 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002468 diag::err_explicit_instantiation_undefined_func_template)
2469 << Function->getPrimaryTemplate();
2470 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002471 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002472 diag::err_explicit_instantiation_undefined_member)
2473 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002474
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002475 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002476 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002477 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002478 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002479 } else if (Function->getTemplateSpecializationKind()
2480 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002481 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002482 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002483 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002484
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002485 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002486 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002487
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002488 // C++0x [temp.explicit]p9:
2489 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002490 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002491 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002492 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002493 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002494 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002495 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002496
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002497 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2498 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002499 return;
2500
Abramo Bagnarae9946242011-11-18 08:08:52 +00002501 // Copy the inner loc start from the pattern.
2502 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2503
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002504 // If we're performing recursive template instantiation, create our own
2505 // queue of pending implicit instantiations that we will instantiate later,
2506 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002507 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002508 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002509 if (Recursive) {
2510 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002511 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002512 }
Mike Stump1eb44332009-09-09 15:08:12 +00002513
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002514 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002515 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002516 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002517
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002518 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002519 // recorded, unless we're actually a member function within a local
2520 // class, in which case we need to merge our results with the parent
2521 // scope (of the enclosing function).
2522 bool MergeWithParentScope = false;
2523 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2524 MergeWithParentScope = Rec->isLocalClass();
2525
2526 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002527
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002528 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002529 // instantiation scope, and set the parameter names to those used
2530 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002531 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002532 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2533 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002534 if (!PatternParam->isParameterPack()) {
2535 // Simple case: not a parameter pack.
2536 assert(FParamIdx < Function->getNumParams());
2537 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2538 FunctionParam->setDeclName(PatternParam->getDeclName());
2539 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2540 ++FParamIdx;
2541 continue;
2542 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002543
Douglas Gregor12c9c002011-01-07 16:43:16 +00002544 // Expand the parameter pack.
2545 Scope.MakeInstantiatedLocalArgPack(PatternParam);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002546 for (unsigned NumFParams = Function->getNumParams();
2547 FParamIdx < NumFParams;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002548 ++FParamIdx) {
2549 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2550 FunctionParam->setDeclName(PatternParam->getDeclName());
2551 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2552 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002553 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002554
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002555 // Enter the scope of this instantiation. We don't use
2556 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002557 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002558
Mike Stump1eb44332009-09-09 15:08:12 +00002559 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002560 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002561
Sean Huntcd10dec2011-05-23 23:14:04 +00002562 if (PatternDecl->isDefaulted()) {
2563 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2564
2565 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002566 } else {
2567 // If this is a constructor, instantiate the member initializers.
2568 if (const CXXConstructorDecl *Ctor =
2569 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2570 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2571 TemplateArgs);
2572 }
2573
2574 // Instantiate the function body.
2575 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2576
2577 if (Body.isInvalid())
2578 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002579
Sean Huntcd10dec2011-05-23 23:14:04 +00002580 ActOnFinishFunctionBody(Function, Body.get(),
2581 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002582 }
2583
John McCall0c01d182010-03-24 05:22:00 +00002584 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2585
John McCalleee1d542011-02-14 07:13:47 +00002586 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002587
2588 DeclGroupRef DG(Function);
2589 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002590
Douglas Gregor60406be2010-01-16 22:29:39 +00002591 // This class may have local implicit instantiations that need to be
2592 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002593 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002594 Scope.Exit();
2595
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002596 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002597 // Define any pending vtables.
2598 DefineUsedVTables();
2599
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002600 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002601 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002602 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002603
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002604 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002605 assert(VTableUses.empty() &&
2606 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002607 VTableUses.swap(SavedVTableUses);
2608
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002609 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002610 assert(PendingInstantiations.empty() &&
2611 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002612 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002613 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002614}
2615
2616/// \brief Instantiate the definition of the given variable from its
2617/// template.
2618///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002619/// \param PointOfInstantiation the point at which the instantiation was
2620/// required. Note that this is not precisely a "point of instantiation"
2621/// for the function, but it's close.
2622///
2623/// \param Var the already-instantiated declaration of a static member
2624/// variable of a class template specialization.
2625///
2626/// \param Recursive if true, recursively instantiates any functions that
2627/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002628///
2629/// \param DefinitionRequired if true, then we are performing an explicit
2630/// instantiation where an out-of-line definition of the member variable
2631/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002632void Sema::InstantiateStaticDataMemberDefinition(
2633 SourceLocation PointOfInstantiation,
2634 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002635 bool Recursive,
2636 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002637 if (Var->isInvalidDecl())
2638 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002639
Douglas Gregor7caa6822009-07-24 20:34:43 +00002640 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002641 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002642 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002643 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002644 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002645
Douglas Gregor0d035142009-10-27 18:42:08 +00002646 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002647 // We did not find an out-of-line definition of this static data member,
2648 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002649 // instantiate this definition (or provide a specialization for it) in
2650 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002651 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002652 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002653 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002654 diag::err_explicit_instantiation_undefined_member)
2655 << 2 << Var->getDeclName() << Var->getDeclContext();
2656 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002657 } else if (Var->getTemplateSpecializationKind()
2658 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002659 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002660 std::make_pair(Var, PointOfInstantiation));
2661 }
2662
Douglas Gregor7caa6822009-07-24 20:34:43 +00002663 return;
2664 }
2665
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002666 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002667 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002668 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002669
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002670 // C++0x [temp.explicit]p9:
2671 // Except for inline functions, other explicit instantiation declarations
2672 // have the effect of suppressing the implicit instantiation of the entity
2673 // to which they refer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002674 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002675 == TSK_ExplicitInstantiationDeclaration)
2676 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002677
Douglas Gregorf15748a2011-06-03 03:35:07 +00002678 // If we already have a definition, we're done.
2679 if (Var->getDefinition())
2680 return;
2681
Douglas Gregor7caa6822009-07-24 20:34:43 +00002682 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2683 if (Inst)
2684 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002685
Douglas Gregor7caa6822009-07-24 20:34:43 +00002686 // If we're performing recursive template instantiation, create our own
2687 // queue of pending implicit instantiations that we will instantiate later,
2688 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002689 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002690 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002691 if (Recursive) {
2692 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002693 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002694 }
Mike Stump1eb44332009-09-09 15:08:12 +00002695
Douglas Gregor7caa6822009-07-24 20:34:43 +00002696 // Enter the scope of this instantiation. We don't use
2697 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002698 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002699
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002700 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002701 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002702 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002703
2704 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002705
2706 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002707 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2708 assert(MSInfo && "Missing member specialization information?");
2709 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2710 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002711 DeclGroupRef DG(Var);
2712 Consumer.HandleTopLevelDecl(DG);
2713 }
Mike Stump1eb44332009-09-09 15:08:12 +00002714
Douglas Gregor7caa6822009-07-24 20:34:43 +00002715 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002716 // Define any newly required vtables.
2717 DefineUsedVTables();
2718
Douglas Gregor7caa6822009-07-24 20:34:43 +00002719 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002720 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002721 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002722
Nick Lewycky81559102011-05-31 07:58:42 +00002723 // Restore the set of pending vtables.
2724 assert(VTableUses.empty() &&
2725 "VTableUses should be empty before it is discarded, "
2726 "while instantiating static data member.");
2727 VTableUses.swap(SavedVTableUses);
2728
Douglas Gregor7caa6822009-07-24 20:34:43 +00002729 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002730 assert(PendingInstantiations.empty() &&
2731 "PendingInstantiations should be empty before it is discarded, "
2732 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002733 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002734 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002735}
Douglas Gregor815215d2009-05-27 05:35:12 +00002736
Benjamin Kramer54dec5f2011-10-08 16:15:07 +00002737static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args,
2738 const CXXCtorInitializer *Init) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002739 // FIXME: This is a hack that will do slightly the wrong thing for an
2740 // initializer of the form foo({...}).
2741 // The right thing to do would be to modify InstantiateInitializer to create
2742 // the MultiInitializer.
2743 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2744 return MultiInitializer(Args[0]);
Sebastian Redlc046f302011-10-17 16:53:50 +00002745 return MultiInitializer(Init->getLParenLoc(), Args.data(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002746 Args.size(), Init->getRParenLoc());
2747}
2748
Anders Carlsson09025312009-08-29 05:16:22 +00002749void
2750Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2751 const CXXConstructorDecl *Tmpl,
2752 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002753
Richard Trieu90ab75b2011-09-09 03:18:59 +00002754 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002755 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002756
Anders Carlsson09025312009-08-29 05:16:22 +00002757 // Instantiate all the initializers.
2758 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002759 InitsEnd = Tmpl->init_end();
2760 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002761 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002762
Chandler Carruth030ef472010-09-03 21:54:20 +00002763 // Only instantiate written initializers, let Sema re-construct implicit
2764 // ones.
2765 if (!Init->isWritten())
2766 continue;
2767
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002768 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002769 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002770
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002771 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002772
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002773 if (Init->isPackExpansion()) {
2774 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002775 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002776 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002777 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2778 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002779 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002780 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002781 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002782 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002783 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002784 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002785 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002786 NumExpansions)) {
2787 AnyErrors = true;
2788 New->setInvalidDecl();
2789 continue;
2790 }
2791 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002792
2793 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002794 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002795 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2796
2797 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002798 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002799 LParenLoc, NewArgs, RParenLoc)) {
2800 AnyErrors = true;
2801 break;
2802 }
2803
2804 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002805 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002806 TemplateArgs,
2807 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002808 New->getDeclName());
2809 if (!BaseTInfo) {
2810 AnyErrors = true;
2811 break;
2812 }
2813
2814 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002815 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2816 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2817 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002818 New->getParent(),
2819 SourceLocation());
2820 if (NewInit.isInvalid()) {
2821 AnyErrors = true;
2822 break;
2823 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002824
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002825 NewInits.push_back(NewInit.get());
2826 NewArgs.clear();
2827 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002828
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002829 continue;
2830 }
2831
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002832 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002833 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002834 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002835 AnyErrors = true;
2836 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002837 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002838
Anders Carlsson09025312009-08-29 05:16:22 +00002839 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002840 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2841 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2842 TemplateArgs,
2843 Init->getSourceLocation(),
2844 New->getDeclName());
2845 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002846 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002847 New->setInvalidDecl();
2848 continue;
2849 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002850
2851 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
Douglas Gregor76852c22011-11-01 01:16:03 +00002852
2853 if (Init->isBaseInitializer())
2854 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, MultiInit,
2855 New->getParent(), EllipsisLoc);
2856 else
2857 NewInit = BuildDelegatingInitializer(TInfo, MultiInit,
2858 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002859 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002860 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002861 Init->getMemberLocation(),
2862 Init->getMember(),
2863 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002864 if (!Member) {
2865 AnyErrors = true;
2866 New->setInvalidDecl();
2867 continue;
2868 }
Mike Stump1eb44332009-09-09 15:08:12 +00002869
Sebastian Redl6df65482011-09-24 17:48:25 +00002870 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2871 NewInit = BuildMemberInitializer(Member, MultiInit,
2872 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002873 } else if (Init->isIndirectMemberInitializer()) {
2874 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002875 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002876 Init->getMemberLocation(),
2877 Init->getIndirectMember(), TemplateArgs));
2878
Douglas Gregorb7107222011-03-04 19:46:35 +00002879 if (!IndirectMember) {
2880 AnyErrors = true;
2881 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002882 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002883 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002884
2885 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2886 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2887 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002888 }
2889
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002890 if (NewInit.isInvalid()) {
2891 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002892 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002893 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002894 // FIXME: It would be nice if ASTOwningVector had a release function.
2895 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002896
Richard Trieu90ab75b2011-09-09 03:18:59 +00002897 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002898 }
2899 }
Mike Stump1eb44332009-09-09 15:08:12 +00002900
Anders Carlsson09025312009-08-29 05:16:22 +00002901 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002902 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002903 /*FIXME: ColonLoc */
2904 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002905 NewInits.data(), NewInits.size(),
2906 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002907}
2908
John McCall52a575a2009-08-29 08:11:13 +00002909// TODO: this could be templated if the various decl types used the
2910// same method name.
2911static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2912 ClassTemplateDecl *Instance) {
2913 Pattern = Pattern->getCanonicalDecl();
2914
2915 do {
2916 Instance = Instance->getCanonicalDecl();
2917 if (Pattern == Instance) return true;
2918 Instance = Instance->getInstantiatedFromMemberTemplate();
2919 } while (Instance);
2920
2921 return false;
2922}
2923
Douglas Gregor0d696532009-09-28 06:34:35 +00002924static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2925 FunctionTemplateDecl *Instance) {
2926 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002927
Douglas Gregor0d696532009-09-28 06:34:35 +00002928 do {
2929 Instance = Instance->getCanonicalDecl();
2930 if (Pattern == Instance) return true;
2931 Instance = Instance->getInstantiatedFromMemberTemplate();
2932 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002933
Douglas Gregor0d696532009-09-28 06:34:35 +00002934 return false;
2935}
2936
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002937static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002938isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2939 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002940 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002941 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2942 do {
2943 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2944 Instance->getCanonicalDecl());
2945 if (Pattern == Instance)
2946 return true;
2947 Instance = Instance->getInstantiatedFromMember();
2948 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002949
Douglas Gregored9c0f92009-10-29 00:04:11 +00002950 return false;
2951}
2952
John McCall52a575a2009-08-29 08:11:13 +00002953static bool isInstantiationOf(CXXRecordDecl *Pattern,
2954 CXXRecordDecl *Instance) {
2955 Pattern = Pattern->getCanonicalDecl();
2956
2957 do {
2958 Instance = Instance->getCanonicalDecl();
2959 if (Pattern == Instance) return true;
2960 Instance = Instance->getInstantiatedFromMemberClass();
2961 } while (Instance);
2962
2963 return false;
2964}
2965
2966static bool isInstantiationOf(FunctionDecl *Pattern,
2967 FunctionDecl *Instance) {
2968 Pattern = Pattern->getCanonicalDecl();
2969
2970 do {
2971 Instance = Instance->getCanonicalDecl();
2972 if (Pattern == Instance) return true;
2973 Instance = Instance->getInstantiatedFromMemberFunction();
2974 } while (Instance);
2975
2976 return false;
2977}
2978
2979static bool isInstantiationOf(EnumDecl *Pattern,
2980 EnumDecl *Instance) {
2981 Pattern = Pattern->getCanonicalDecl();
2982
2983 do {
2984 Instance = Instance->getCanonicalDecl();
2985 if (Pattern == Instance) return true;
2986 Instance = Instance->getInstantiatedFromMemberEnum();
2987 } while (Instance);
2988
2989 return false;
2990}
2991
John McCalled976492009-12-04 22:46:56 +00002992static bool isInstantiationOf(UsingShadowDecl *Pattern,
2993 UsingShadowDecl *Instance,
2994 ASTContext &C) {
2995 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2996}
2997
2998static bool isInstantiationOf(UsingDecl *Pattern,
2999 UsingDecl *Instance,
3000 ASTContext &C) {
3001 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3002}
3003
John McCall7ba107a2009-11-18 02:36:19 +00003004static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3005 UsingDecl *Instance,
3006 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003007 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003008}
3009
3010static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003011 UsingDecl *Instance,
3012 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003013 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003014}
3015
John McCall52a575a2009-08-29 08:11:13 +00003016static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3017 VarDecl *Instance) {
3018 assert(Instance->isStaticDataMember());
3019
3020 Pattern = Pattern->getCanonicalDecl();
3021
3022 do {
3023 Instance = Instance->getCanonicalDecl();
3024 if (Pattern == Instance) return true;
3025 Instance = Instance->getInstantiatedFromStaticDataMember();
3026 } while (Instance);
3027
3028 return false;
3029}
3030
John McCalled976492009-12-04 22:46:56 +00003031// Other is the prospective instantiation
3032// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003033static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003034 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003035 if (UnresolvedUsingTypenameDecl *UUD
3036 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3037 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3038 return isInstantiationOf(UUD, UD, Ctx);
3039 }
3040 }
3041
3042 if (UnresolvedUsingValueDecl *UUD
3043 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003044 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3045 return isInstantiationOf(UUD, UD, Ctx);
3046 }
3047 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003048
Anders Carlsson0d8df782009-08-29 19:37:28 +00003049 return false;
3050 }
Mike Stump1eb44332009-09-09 15:08:12 +00003051
John McCall52a575a2009-08-29 08:11:13 +00003052 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3053 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003054
John McCall52a575a2009-08-29 08:11:13 +00003055 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3056 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003057
John McCall52a575a2009-08-29 08:11:13 +00003058 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3059 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003060
Douglas Gregor7caa6822009-07-24 20:34:43 +00003061 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003062 if (Var->isStaticDataMember())
3063 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3064
3065 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3066 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003067
Douglas Gregor0d696532009-09-28 06:34:35 +00003068 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3069 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3070
Douglas Gregored9c0f92009-10-29 00:04:11 +00003071 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3072 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3073 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3074 PartialSpec);
3075
Anders Carlssond8b285f2009-09-01 04:26:58 +00003076 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3077 if (!Field->getDeclName()) {
3078 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003079 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003080 cast<FieldDecl>(D);
3081 }
3082 }
Mike Stump1eb44332009-09-09 15:08:12 +00003083
John McCalled976492009-12-04 22:46:56 +00003084 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3085 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3086
3087 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3088 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3089
Douglas Gregor815215d2009-05-27 05:35:12 +00003090 return D->getDeclName() && isa<NamedDecl>(Other) &&
3091 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3092}
3093
3094template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003095static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003096 NamedDecl *D,
3097 ForwardIterator first,
3098 ForwardIterator last) {
3099 for (; first != last; ++first)
3100 if (isInstantiationOf(Ctx, D, *first))
3101 return cast<NamedDecl>(*first);
3102
3103 return 0;
3104}
3105
John McCall02cace72009-08-28 07:59:38 +00003106/// \brief Finds the instantiation of the given declaration context
3107/// within the current instantiation.
3108///
3109/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003110DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003111 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003112 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003113 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003114 return cast_or_null<DeclContext>(ID);
3115 } else return DC;
3116}
3117
Douglas Gregored961e72009-05-27 17:54:46 +00003118/// \brief Find the instantiation of the given declaration within the
3119/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003120///
3121/// This routine is intended to be used when \p D is a declaration
3122/// referenced from within a template, that needs to mapped into the
3123/// corresponding declaration within an instantiation. For example,
3124/// given:
3125///
3126/// \code
3127/// template<typename T>
3128/// struct X {
3129/// enum Kind {
3130/// KnownValue = sizeof(T)
3131/// };
3132///
3133/// bool getKind() const { return KnownValue; }
3134/// };
3135///
3136/// template struct X<int>;
3137/// \endcode
3138///
3139/// In the instantiation of X<int>::getKind(), we need to map the
3140/// EnumConstantDecl for KnownValue (which refers to
3141/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003142/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3143/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003144NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003145 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003146 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003147 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003148 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003149 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003150 // D is a local of some kind. Look into the map of local
3151 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003152 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3153 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3154 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003155
Chris Lattner57ad3782011-02-17 20:34:02 +00003156 if (Found) {
3157 if (Decl *FD = Found->dyn_cast<Decl *>())
3158 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003159
Chris Lattner57ad3782011-02-17 20:34:02 +00003160 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3161 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3162 }
3163
3164 // If we didn't find the decl, then we must have a label decl that hasn't
3165 // been found yet. Lazily instantiate it and return it now.
3166 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003167
Chris Lattner57ad3782011-02-17 20:34:02 +00003168 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3169 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003170
Chris Lattner57ad3782011-02-17 20:34:02 +00003171 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3172 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003173 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003174
Douglas Gregore95b4092009-09-16 18:34:49 +00003175 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3176 if (!Record->isDependentContext())
3177 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003178
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003179 // Determine whether this record is the "templated" declaration describing
3180 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003181 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003182 if (ClassTemplate)
3183 ClassTemplate = ClassTemplate->getCanonicalDecl();
3184 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3185 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3186 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3187
3188 // Walk the current context to find either the record or an instantiation of
3189 // it.
3190 DeclContext *DC = CurContext;
3191 while (!DC->isFileContext()) {
3192 // If we're performing substitution while we're inside the template
3193 // definition, we'll find our own context. We're done.
3194 if (DC->Equals(Record))
3195 return Record;
3196
3197 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3198 // Check whether we're in the process of instantiating a class template
3199 // specialization of the template we're mapping.
3200 if (ClassTemplateSpecializationDecl *InstSpec
3201 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3202 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3203 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3204 return InstRecord;
3205 }
3206
3207 // Check whether we're in the process of instantiating a member class.
3208 if (isInstantiationOf(Record, InstRecord))
3209 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003210 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003211
3212
3213 // Move to the outer template scope.
3214 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3215 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3216 DC = FD->getLexicalDeclContext();
3217 continue;
3218 }
John McCall52a575a2009-08-29 08:11:13 +00003219 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003220
3221 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003222 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003223
Douglas Gregore95b4092009-09-16 18:34:49 +00003224 // Fall through to deal with other dependent record types (e.g.,
3225 // anonymous unions in class templates).
3226 }
John McCall52a575a2009-08-29 08:11:13 +00003227
Douglas Gregore95b4092009-09-16 18:34:49 +00003228 if (!ParentDC->isDependentContext())
3229 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003230
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003231 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003232 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003233 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003234
Douglas Gregor815215d2009-05-27 05:35:12 +00003235 if (ParentDC != D->getDeclContext()) {
3236 // We performed some kind of instantiation in the parent context,
3237 // so now we need to look into the instantiated parent context to
3238 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003239
John McCall3cb0ebd2010-03-10 03:28:59 +00003240 // If our context used to be dependent, we may need to instantiate
3241 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003242 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003243 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003244 if (!Spec->isDependentContext()) {
3245 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003246 const RecordType *Tag = T->getAs<RecordType>();
3247 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003248 if (Tag->isBeingDefined())
3249 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003250 if (!Tag->isBeingDefined() &&
3251 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3252 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003253
3254 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003255 }
3256 }
3257
Douglas Gregor815215d2009-05-27 05:35:12 +00003258 NamedDecl *Result = 0;
3259 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003260 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003261 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3262 } else {
3263 // Since we don't have a name for the entity we're looking for,
3264 // our only option is to walk through all of the declarations to
3265 // find that name. This will occur in a few cases:
3266 //
3267 // - anonymous struct/union within a template
3268 // - unnamed class/struct/union/enum within a template
3269 //
3270 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003271 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003272 ParentDC->decls_begin(),
3273 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003274 }
Mike Stump1eb44332009-09-09 15:08:12 +00003275
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003276 if (!Result) {
3277 if (isa<UsingShadowDecl>(D)) {
3278 // UsingShadowDecls can instantiate to nothing because of using hiding.
3279 } else if (Diags.hasErrorOccurred()) {
3280 // We've already complained about something, so most likely this
3281 // declaration failed to instantiate. There's no point in complaining
3282 // further, since this is normal in invalid code.
3283 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003284 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003285 // instantiated, and we haven't gotten around to instantiating this
3286 // member yet. This can happen when the code uses forward declarations
3287 // of member classes, and introduces ordering dependencies via
3288 // template instantiation.
3289 Diag(Loc, diag::err_member_not_yet_instantiated)
3290 << D->getDeclName()
3291 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3292 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3293 } else {
3294 // We should have found something, but didn't.
3295 llvm_unreachable("Unable to find instantiation of declaration!");
3296 }
3297 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003298
Douglas Gregor815215d2009-05-27 05:35:12 +00003299 D = Result;
3300 }
3301
Douglas Gregor815215d2009-05-27 05:35:12 +00003302 return D;
3303}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003304
Mike Stump1eb44332009-09-09 15:08:12 +00003305/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003306/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003307void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003308 // Load pending instantiations from the external source.
3309 if (!LocalOnly && ExternalSource) {
3310 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3311 ExternalSource->ReadPendingInstantiations(Pending);
3312 PendingInstantiations.insert(PendingInstantiations.begin(),
3313 Pending.begin(), Pending.end());
3314 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003315
Douglas Gregor60406be2010-01-16 22:29:39 +00003316 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003317 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003318 PendingImplicitInstantiation Inst;
3319
3320 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003321 Inst = PendingInstantiations.front();
3322 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003323 } else {
3324 Inst = PendingLocalImplicitInstantiations.front();
3325 PendingLocalImplicitInstantiations.pop_front();
3326 }
Mike Stump1eb44332009-09-09 15:08:12 +00003327
Douglas Gregor7caa6822009-07-24 20:34:43 +00003328 // Instantiate function definitions
3329 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003330 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3331 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003332 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3333 TSK_ExplicitInstantiationDefinition;
3334 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3335 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003336 continue;
3337 }
Mike Stump1eb44332009-09-09 15:08:12 +00003338
Douglas Gregor7caa6822009-07-24 20:34:43 +00003339 // Instantiate static data member definitions.
3340 VarDecl *Var = cast<VarDecl>(Inst.first);
3341 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003342
Chandler Carruth291b4412010-02-13 10:17:50 +00003343 // Don't try to instantiate declarations if the most recent redeclaration
3344 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003345 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003346 continue;
3347
3348 // Check if the most recent declaration has changed the specialization kind
3349 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003350 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003351 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003352 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003353 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003354 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003355 continue; // No longer need to instantiate this type.
3356 case TSK_ExplicitInstantiationDefinition:
3357 // We only need an instantiation if the pending instantiation *is* the
3358 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003359 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003360 case TSK_ImplicitInstantiation:
3361 break;
3362 }
3363
John McCallf312b1e2010-08-26 23:41:50 +00003364 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3365 "instantiating static data member "
3366 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003367
Chandler Carruth58e390e2010-08-25 08:27:02 +00003368 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3369 TSK_ExplicitInstantiationDefinition;
3370 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3371 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003372 }
3373}
John McCall0c01d182010-03-24 05:22:00 +00003374
3375void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3376 const MultiLevelTemplateArgumentList &TemplateArgs) {
3377 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3378 E = Pattern->ddiag_end(); I != E; ++I) {
3379 DependentDiagnostic *DD = *I;
3380
3381 switch (DD->getKind()) {
3382 case DependentDiagnostic::Access:
3383 HandleDependentAccessCheck(*DD, TemplateArgs);
3384 break;
3385 }
3386 }
3387}