blob: ebc43d443db72becaf5590917053522821b52bf5 [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,
DeLesley Hutchins23323e02012-01-20 22:50:54 +000064 const Decl *Tmpl, Decl *New,
65 LateInstantiatedAttrVec *LateAttrs,
66 LocalInstantiationScope *OuterMostScope) {
Sean Huntcf807c42010-08-18 23:23:40 +000067 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
68 i != e; ++i) {
69 const Attr *TmplAttr = *i;
DeLesley Hutchins23323e02012-01-20 22:50:54 +000070
Chandler Carruth4ced79f2010-06-25 03:22:07 +000071 // FIXME: This should be generalized to more than just the AlignedAttr.
72 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000074 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000075 // The alignment expression is a constant expression.
76 EnterExpressionEvaluationContext Unevaluated(*this,
77 Sema::ConstantEvaluated);
78
John McCall60d7b3a2010-08-24 06:29:42 +000079 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000081 if (!Result.isInvalid())
82 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
Richard Smithf6702a32011-12-20 02:08:33 +000083 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000084 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000085 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000086 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000087 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000088 if (Result)
89 AddAlignedAttr(Aligned->getLocation(), New, Result);
90 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000091 continue;
92 }
93 }
94
DeLesley Hutchins23323e02012-01-20 22:50:54 +000095 if (TmplAttr->isLateParsed() && LateAttrs) {
96 // Late parsed attributes must be instantiated and attached after the
97 // enclosing class has been instantiated. See Sema::InstantiateClass.
98 LocalInstantiationScope *Saved = 0;
99 if (CurrentInstantiationScope)
100 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
101 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
102 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000103 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
104 *this, TemplateArgs);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000105 New->addAttr(NewAttr);
106 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000107 }
108}
109
Douglas Gregor4f722be2009-03-25 15:45:12 +0000110Decl *
111TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000112 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113}
114
115Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000116TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
117 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
118 D->getIdentifier());
119 Owner->addDecl(Inst);
120 return Inst;
121}
122
123Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000124TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000125 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000126}
127
John McCall3dbd3d52010-02-16 06:53:13 +0000128Decl *
129TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
130 NamespaceAliasDecl *Inst
131 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
132 D->getNamespaceLoc(),
133 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000134 D->getIdentifier(),
135 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000136 D->getTargetNameLoc(),
137 D->getNamespace());
138 Owner->addDecl(Inst);
139 return Inst;
140}
141
Richard Smith3e4c6c42011-05-05 21:57:07 +0000142Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
143 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000145 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000146 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000147 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000148 DI = SemaRef.SubstType(DI, TemplateArgs,
149 D->getLocation(), D->getDeclName());
150 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000151 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000152 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000153 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000154 } else {
155 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000158 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000159 TypedefNameDecl *Typedef;
160 if (IsTypeAlias)
161 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
162 D->getLocation(), D->getIdentifier(), DI);
163 else
164 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
165 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000166 if (Invalid)
167 Typedef->setInvalidDecl();
168
John McCallcde5a402011-02-01 08:20:08 +0000169 // If the old typedef was the name for linkage purposes of an anonymous
170 // tag decl, re-establish that relationship for the new typedef.
171 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
172 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000173 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000174 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000175 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
176 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000177 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000178 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000179
Douglas Gregoref96ee02012-01-14 16:38:05 +0000180 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000181 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
182 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000183 if (!InstPrev)
184 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000185
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000186 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
187
188 // If the typedef types are not identical, reject them.
189 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
190
191 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000192 }
193
John McCall1d8d1cc2010-08-01 02:01:53 +0000194 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000195
John McCall46460a62010-01-20 21:53:11 +0000196 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000198 return Typedef;
199}
200
Richard Smith162e1c12011-04-15 14:24:37 +0000201Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000202 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
203 Owner->addDecl(Typedef);
204 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000205}
206
207Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000208 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
209 Owner->addDecl(Typedef);
210 return Typedef;
211}
212
213Decl *
214TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
215 // Create a local instantiation scope for this type alias template, which
216 // will contain the instantiations of the template parameters.
217 LocalInstantiationScope Scope(SemaRef);
218
219 TemplateParameterList *TempParams = D->getTemplateParameters();
220 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
221 if (!InstParams)
222 return 0;
223
224 TypeAliasDecl *Pattern = D->getTemplatedDecl();
225
226 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000227 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000228 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
229 if (Found.first != Found.second) {
230 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
231 }
232 }
233
234 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
235 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
236 if (!AliasInst)
237 return 0;
238
239 TypeAliasTemplateDecl *Inst
240 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
241 D->getDeclName(), InstParams, AliasInst);
242 if (PrevAliasTemplate)
243 Inst->setPreviousDeclaration(PrevAliasTemplate);
244
245 Inst->setAccess(D->getAccess());
246
247 if (!PrevAliasTemplate)
248 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000249
Richard Smith3e4c6c42011-05-05 21:57:07 +0000250 Owner->addDecl(Inst);
251
252 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000253}
254
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000255Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000256 // If this is the variable for an anonymous struct or union,
257 // instantiate the anonymous struct/union type first.
258 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
259 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
260 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
261 return 0;
262
John McCallce3ff2b2009-08-25 22:02:44 +0000263 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000264 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000265 TemplateArgs,
266 D->getTypeSpecStartLoc(),
267 D->getDeclName());
268 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000269 return 0;
270
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000271 if (DI->getType()->isFunctionType()) {
272 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
273 << D->isStaticDataMember() << DI->getType();
274 return 0;
275 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000276
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000277 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000278 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000279 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000280 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000281 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000282 D->getStorageClass(),
283 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000284 Var->setThreadSpecified(D->isThreadSpecified());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000285 Var->setInitStyle(D->getInitStyle());
Richard Smithad762fc2011-04-14 22:09:26 +0000286 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000287 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000288
John McCallb6217662010-03-15 10:12:16 +0000289 // Substitute the nested name specifier, if any.
290 if (SubstQualifier(D, Var))
291 return 0;
292
Mike Stump1eb44332009-09-09 15:08:12 +0000293 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000294 // out-of-line, the instantiation will have the same lexical
295 // context (which will be a namespace scope) as the template.
296 if (D->isOutOfLine())
297 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000298
John McCall46460a62010-01-20 21:53:11 +0000299 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000300
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000301 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000302 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000303 Var->setReferenced(D->isReferenced());
304 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000305
Mike Stump390b4cc2009-05-16 07:39:55 +0000306 // FIXME: In theory, we could have a previous declaration for variables that
307 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000308 // FIXME: having to fake up a LookupResult is dumb.
309 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000310 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000311 if (D->isStaticDataMember())
312 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000313
314 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +0000315 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000316 SemaRef.inferObjCARCLifetime(Var))
317 Var->setInvalidDecl();
318
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000319 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Douglas Gregor7caa6822009-07-24 20:34:43 +0000321 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000322 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000323 Owner->makeDeclVisibleInContext(Var);
324 } else {
325 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000326 if (Owner->isFunctionOrMethod())
327 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000328 }
DeLesley Hutchinsdd5756c2012-02-16 17:30:51 +0000329 SemaRef.InstantiateAttrs(TemplateArgs, D, Var, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000330
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000331 // Link instantiations of static data members back to the template from
332 // which they were instantiated.
333 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000334 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000335 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000336
Douglas Gregor60c93c92010-02-09 07:26:29 +0000337 if (Var->getAnyInitializer()) {
338 // We already have an initializer in the class.
339 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000340 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000341 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000342 else
343 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
344
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000345 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000346 ExprResult Init = SemaRef.SubstInitializer(D->getInit(), TemplateArgs,
347 D->getInitStyle() == VarDecl::CallInit);
348 if (!Init.isInvalid()) {
Richard Smith34b41d92011-02-20 03:19:35 +0000349 bool TypeMayContainAuto = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000350 if (Init.get()) {
351 bool DirectInit = D->isDirectInit();
352 SemaRef.AddInitializerToDecl(Var, Init.take(), DirectInit,
353 TypeMayContainAuto);
354 } else
Eli Friedman6aeaa602012-01-05 22:34:08 +0000355 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000356 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000357 // FIXME: Not too happy about invalidating the declaration
358 // because of a bogus initializer.
359 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000360 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000361
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000362 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000363 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
364 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000365 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000366
Richard Smithe3499ca2011-06-21 23:42:09 +0000367 // Diagnose unused local variables with dependent types, where the diagnostic
368 // will have been deferred.
369 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
370 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000371 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000372
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000373 return Var;
374}
375
Abramo Bagnara6206d532010-06-05 05:09:32 +0000376Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
377 AccessSpecDecl* AD
378 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
379 D->getAccessSpecifierLoc(), D->getColonLoc());
380 Owner->addHiddenDecl(AD);
381 return AD;
382}
383
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000384Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
385 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000386 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000387 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000388 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000389 DI = SemaRef.SubstType(DI, TemplateArgs,
390 D->getLocation(), D->getDeclName());
391 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000392 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000393 Invalid = true;
394 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000395 // C++ [temp.arg.type]p3:
396 // If a declaration acquires a function type through a type
397 // dependent on a template-parameter and this causes a
398 // declaration that does not use the syntactic form of a
399 // function declarator to have function type, the program is
400 // ill-formed.
401 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000402 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000403 Invalid = true;
404 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000405 } else {
406 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000407 }
408
409 Expr *BitWidth = D->getBitWidth();
410 if (Invalid)
411 BitWidth = 0;
412 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000413 // The bit-width expression is a constant expression.
414 EnterExpressionEvaluationContext Unevaluated(SemaRef,
415 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000416
John McCall60d7b3a2010-08-24 06:29:42 +0000417 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000418 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000419 if (InstantiatedBitWidth.isInvalid()) {
420 Invalid = true;
421 BitWidth = 0;
422 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000423 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000424 }
425
John McCall07fb6be2009-10-22 23:33:21 +0000426 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
427 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000428 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000429 D->getLocation(),
430 D->isMutable(),
431 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000432 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000433 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000434 D->getAccess(),
435 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000436 if (!Field) {
437 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000438 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000439 }
Mike Stump1eb44332009-09-09 15:08:12 +0000440
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000441 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000442
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000443 if (Invalid)
444 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000446 if (!Field->getDeclName()) {
447 // Keep track of where this decl came from.
448 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000449 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000450 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
451 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000452 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000453 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 }
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000456 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000457 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000458 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000459
460 return Field;
461}
462
Francois Pichet87c2e122010-11-21 06:08:52 +0000463Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
464 NamedDecl **NamedChain =
465 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
466
467 int i = 0;
468 for (IndirectFieldDecl::chain_iterator PI =
469 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000470 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000471 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000472 TemplateArgs);
473 if (!Next)
474 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000475
Douglas Gregorb7107222011-03-04 19:46:35 +0000476 NamedChain[i++] = Next;
477 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000478
Francois Pichet40e17752010-12-09 10:07:54 +0000479 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000480 IndirectFieldDecl* IndirectField
481 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000482 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000483 NamedChain, D->getChainingSize());
484
485
486 IndirectField->setImplicit(D->isImplicit());
487 IndirectField->setAccess(D->getAccess());
488 Owner->addDecl(IndirectField);
489 return IndirectField;
490}
491
John McCall02cace72009-08-28 07:59:38 +0000492Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000493 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000494 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000495 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000496 TypeSourceInfo *InstTy;
497 // If this is an unsupported friend, don't bother substituting template
498 // arguments into it. The actual type referred to won't be used by any
499 // parts of Clang, and may not be valid for instantiating. Just use the
500 // same info for the instantiated friend.
501 if (D->isUnsupportedFriend()) {
502 InstTy = Ty;
503 } else {
504 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
505 D->getLocation(), DeclarationName());
506 }
507 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000508 return 0;
John McCall02cace72009-08-28 07:59:38 +0000509
Abramo Bagnara0216df82011-10-29 20:52:52 +0000510 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
511 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000512 if (!FD)
513 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000514
Douglas Gregor06245bf2010-04-07 17:57:12 +0000515 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000516 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000517 Owner->addDecl(FD);
518 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000519 }
520
Douglas Gregor06245bf2010-04-07 17:57:12 +0000521 NamedDecl *ND = D->getFriendDecl();
522 assert(ND && "friend decl must be a decl or a type!");
523
John McCallaf2094e2010-04-08 09:05:18 +0000524 // All of the Visit implementations for the various potential friend
525 // declarations have to be carefully written to work for friend
526 // objects, with the most important detail being that the target
527 // decl should almost certainly not be placed in Owner.
528 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000529 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000530
John McCall02cace72009-08-28 07:59:38 +0000531 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000532 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000533 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000534 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000535 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000536 Owner->addDecl(FD);
537 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000538}
539
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000540Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
541 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Richard Smithf6702a32011-12-20 02:08:33 +0000543 // The expression in a static assertion is a constant expression.
544 EnterExpressionEvaluationContext Unevaluated(SemaRef,
545 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000546
John McCall60d7b3a2010-08-24 06:29:42 +0000547 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000548 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000549 if (InstantiatedAssertExpr.isInvalid())
550 return 0;
551
John McCall60d7b3a2010-08-24 06:29:42 +0000552 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000553 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000554 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000555 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000556 Message.get(),
557 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000558}
559
560Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000561 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000562 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000563 /*PrevDecl=*/0, D->isScoped(),
564 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000565 if (D->isFixed()) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000566 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000567 // If we have type source information for the underlying type, it means it
568 // has been explicitly set by the user. Perform substitution on it before
569 // moving on.
570 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smithf1c66b42012-03-14 23:13:10 +0000571 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
572 DeclarationName());
573 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000574 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smithf1c66b42012-03-14 23:13:10 +0000575 else
576 Enum->setIntegerTypeSourceInfo(NewTI);
577 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000578 assert(!D->getIntegerType()->isDependentType()
579 && "Dependent type without type source info");
580 Enum->setIntegerType(D->getIntegerType());
581 }
582 }
583
John McCall5b629aa2010-10-22 23:36:17 +0000584 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
585
Richard Smithf1c66b42012-03-14 23:13:10 +0000586 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000587 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000588 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000589 Owner->addDecl(Enum);
Richard Smithf1c66b42012-03-14 23:13:10 +0000590
591 // FIXME: If this is a redeclaration:
592 // CheckEnumRedeclaration(Enum->getLocation(), Enum->isScoped(),
593 // Enum->getIntegerType(), Prev);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000594
Douglas Gregor96084f12010-03-01 19:00:07 +0000595 if (D->getDeclContext()->isFunctionOrMethod())
596 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000597
Richard Smithf1c66b42012-03-14 23:13:10 +0000598 // C++11 [temp.inst]p1: The implicit instantiation of a class template
599 // specialization causes the implicit instantiation of the declarations, but
600 // not the definitions of scoped member enumerations.
601 // FIXME: There appears to be no wording for what happens for an enum defined
602 // within a block scope, but we treat that like a member of a class template.
Richard Smith1af83c42012-03-23 03:33:32 +0000603 if (!Enum->isScoped() && D->getDefinition())
Richard Smithf1c66b42012-03-14 23:13:10 +0000604 InstantiateEnumDefinition(Enum, D);
605
606 return Enum;
607}
608
609void TemplateDeclInstantiator::InstantiateEnumDefinition(
610 EnumDecl *Enum, EnumDecl *Pattern) {
611 Enum->startDefinition();
612
Richard Smith1af83c42012-03-23 03:33:32 +0000613 // Update the location to refer to the definition.
614 Enum->setLocation(Pattern->getLocation());
615
Chris Lattner5f9e2722011-07-23 10:55:15 +0000616 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000617
618 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000619 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
620 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000621 EC != ECEnd; ++EC) {
622 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000623 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000624 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000625 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000626 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000627 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000628
John McCallce3ff2b2009-08-25 22:02:44 +0000629 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000630 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000631
632 // Drop the initial value and continue.
633 bool isInvalid = false;
634 if (Value.isInvalid()) {
635 Value = SemaRef.Owned((Expr *)0);
636 isInvalid = true;
637 }
638
Mike Stump1eb44332009-09-09 15:08:12 +0000639 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000640 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
641 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000642 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000643
644 if (isInvalid) {
645 if (EnumConst)
646 EnumConst->setInvalidDecl();
647 Enum->setInvalidDecl();
648 }
649
650 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000651 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
652
John McCall3b85ecf2010-01-23 22:37:59 +0000653 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000654 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000655 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000656 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000657
Richard Smithf1c66b42012-03-14 23:13:10 +0000658 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
659 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000660 // If the enumeration is within a function or method, record the enum
661 // constant as a local.
662 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
663 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000664 }
665 }
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Richard Smithf1c66b42012-03-14 23:13:10 +0000667 // FIXME: Fixup LBraceLoc
668 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
669 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000670 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000671 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000672}
673
Douglas Gregor6477b692009-03-25 15:04:13 +0000674Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000675 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000676}
677
John McCalle29ba202009-08-20 01:44:21 +0000678Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000679 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
680
Douglas Gregor550d9b22009-10-31 17:21:17 +0000681 // Create a local instantiation scope for this class template, which
682 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000683 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000684 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000685 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000686 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000687 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000688
689 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000690
691 // Instantiate the qualifier. We have to do this first in case
692 // we're a friend declaration, because if we are then we need to put
693 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000694 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
695 if (QualifierLoc) {
696 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
697 TemplateArgs);
698 if (!QualifierLoc)
699 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000700 }
701
702 CXXRecordDecl *PrevDecl = 0;
703 ClassTemplateDecl *PrevClassTemplate = 0;
704
Douglas Gregoref96ee02012-01-14 16:38:05 +0000705 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000706 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
707 if (Found.first != Found.second) {
708 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
709 if (PrevClassTemplate)
710 PrevDecl = PrevClassTemplate->getTemplatedDecl();
711 }
712 }
713
John McCall93ba8572010-03-25 06:39:04 +0000714 // If this isn't a friend, then it's a member template, in which
715 // case we just want to build the instantiation in the
716 // specialization. If it is a friend, we want to build it in
717 // the appropriate context.
718 DeclContext *DC = Owner;
719 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000720 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000721 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000722 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000723 DC = SemaRef.computeDeclContext(SS);
724 if (!DC) return 0;
725 } else {
726 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
727 Pattern->getDeclContext(),
728 TemplateArgs);
729 }
730
731 // Look for a previous declaration of the template in the owning
732 // context.
733 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
734 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
735 SemaRef.LookupQualifiedName(R, DC);
736
737 if (R.isSingleResult()) {
738 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
739 if (PrevClassTemplate)
740 PrevDecl = PrevClassTemplate->getTemplatedDecl();
741 }
742
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000743 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000744 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000745 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000746 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000747 return 0;
748 }
749
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000750 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000751 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000752 bool Complain = true;
753
754 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
755 // template for struct std::tr1::__detail::_Map_base, where the
756 // template parameters of the friend declaration don't match the
757 // template parameters of the original declaration. In this one
758 // case, we don't complain about the ill-formed friend
759 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000760 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000761 Pattern->getIdentifier()->isStr("_Map_base") &&
762 DC->isNamespace() &&
763 cast<NamespaceDecl>(DC)->getIdentifier() &&
764 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
765 DeclContext *DCParent = DC->getParent();
766 if (DCParent->isNamespace() &&
767 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
768 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
769 DeclContext *DCParent2 = DCParent->getParent();
770 if (DCParent2->isNamespace() &&
771 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
772 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
773 DCParent2->getParent()->isTranslationUnit())
774 Complain = false;
775 }
776 }
777
John McCall93ba8572010-03-25 06:39:04 +0000778 TemplateParameterList *PrevParams
779 = PrevClassTemplate->getTemplateParameters();
780
781 // Make sure the parameter lists match.
782 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000783 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000784 Sema::TPL_TemplateMatch)) {
785 if (Complain)
786 return 0;
787
788 AdoptedPreviousTemplateParams = true;
789 InstParams = PrevParams;
790 }
John McCall93ba8572010-03-25 06:39:04 +0000791
792 // Do some additional validation, then merge default arguments
793 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000794 if (!AdoptedPreviousTemplateParams &&
795 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000796 Sema::TPC_ClassTemplate))
797 return 0;
798 }
799 }
800
John McCalle29ba202009-08-20 01:44:21 +0000801 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000802 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000803 Pattern->getLocStart(), Pattern->getLocation(),
804 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000805 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000806
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000807 if (QualifierLoc)
808 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000809
John McCalle29ba202009-08-20 01:44:21 +0000810 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000811 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
812 D->getIdentifier(), InstParams, RecordInst,
813 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000814 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000815
John McCall93ba8572010-03-25 06:39:04 +0000816 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000817 if (PrevClassTemplate)
818 Inst->setAccess(PrevClassTemplate->getAccess());
819 else
820 Inst->setAccess(D->getAccess());
821
John McCall93ba8572010-03-25 06:39:04 +0000822 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
823 // TODO: do we want to track the instantiation progeny of this
824 // friend target decl?
825 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000826 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000827 if (!PrevClassTemplate)
828 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000829 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000830
Douglas Gregorf0510d42009-10-12 23:11:44 +0000831 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000832 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000833 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000834
Douglas Gregor259571e2009-10-30 22:42:42 +0000835 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000836 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000837 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000838 Inst->setLexicalDeclContext(Owner);
839 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000840 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000841 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000842
Abramo Bagnara4c515482011-11-26 13:33:46 +0000843 if (D->isOutOfLine()) {
844 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
845 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
846 }
847
John McCalle29ba202009-08-20 01:44:21 +0000848 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000849
850 if (!PrevClassTemplate) {
851 // Queue up any out-of-line partial specializations of this member
852 // class template; the client will force their instantiation once
853 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000854 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000855 D->getPartialSpecializations(PartialSpecs);
856 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
857 if (PartialSpecs[I]->isOutOfLine())
858 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
859 }
860
John McCalle29ba202009-08-20 01:44:21 +0000861 return Inst;
862}
863
Douglas Gregord60e1052009-08-27 16:57:43 +0000864Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000865TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
866 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000867 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000868
Douglas Gregored9c0f92009-10-29 00:04:11 +0000869 // Lookup the already-instantiated declaration in the instantiation
870 // of the class template and return that.
871 DeclContext::lookup_result Found
872 = Owner->lookup(ClassTemplate->getDeclName());
873 if (Found.first == Found.second)
874 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000875
Douglas Gregored9c0f92009-10-29 00:04:11 +0000876 ClassTemplateDecl *InstClassTemplate
877 = dyn_cast<ClassTemplateDecl>(*Found.first);
878 if (!InstClassTemplate)
879 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000880
Douglas Gregord65587f2010-11-10 19:44:59 +0000881 if (ClassTemplatePartialSpecializationDecl *Result
882 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
883 return Result;
884
885 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000886}
887
888Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000889TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000890 // Create a local instantiation scope for this function template, which
891 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000892 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000893 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000894 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000895
Douglas Gregord60e1052009-08-27 16:57:43 +0000896 TemplateParameterList *TempParams = D->getTemplateParameters();
897 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000898 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000899 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000900
Douglas Gregora735b202009-10-13 14:39:41 +0000901 FunctionDecl *Instantiated = 0;
902 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000903 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000904 InstParams));
905 else
906 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000907 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000908 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000909
Douglas Gregora735b202009-10-13 14:39:41 +0000910 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000911 return 0;
912
John McCall46460a62010-01-20 21:53:11 +0000913 Instantiated->setAccess(D->getAccess());
914
Mike Stump1eb44332009-09-09 15:08:12 +0000915 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000916 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000917 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000918 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000919 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000920 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000921 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000922
John McCallb1a56e72010-03-26 23:10:15 +0000923 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
924
John McCalle976ffe2009-12-14 23:19:40 +0000925 // Link the instantiation back to the pattern *unless* this is a
926 // non-definition friend declaration.
927 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000928 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000929 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000930
John McCallb1a56e72010-03-26 23:10:15 +0000931 // Make declarations visible in the appropriate context.
932 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000933 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000934
Douglas Gregord60e1052009-08-27 16:57:43 +0000935 return InstTemplate;
936}
937
Douglas Gregord475b8d2009-03-25 21:17:03 +0000938Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
939 CXXRecordDecl *PrevDecl = 0;
940 if (D->isInjectedClassName())
941 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000942 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000943 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000944 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000945 TemplateArgs);
946 if (!Prev) return 0;
947 PrevDecl = cast<CXXRecordDecl>(Prev);
948 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000949
950 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000951 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000952 D->getLocStart(), D->getLocation(),
953 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000954
955 // Substitute the nested name specifier, if any.
956 if (SubstQualifier(D, Record))
957 return 0;
958
Douglas Gregord475b8d2009-03-25 21:17:03 +0000959 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000960 // FIXME: Check against AS_none is an ugly hack to work around the issue that
961 // the tag decls introduced by friend class declarations don't have an access
962 // specifier. Remove once this area of the code gets sorted out.
963 if (D->getAccess() != AS_none)
964 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000965 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000966 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000967
John McCall02cace72009-08-28 07:59:38 +0000968 // If the original function was part of a friend declaration,
969 // inherit its namespace state.
970 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
971 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
972
Douglas Gregor9901c572010-05-21 00:31:19 +0000973 // Make sure that anonymous structs and unions are recorded.
974 if (D->isAnonymousStructOrUnion()) {
975 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000976 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000977 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
978 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000979
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000980 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000981 return Record;
982}
983
John McCall02cace72009-08-28 07:59:38 +0000984/// Normal class members are of more specific types and therefore
985/// don't make it here. This function serves two purposes:
986/// 1) instantiating function templates
987/// 2) substituting friend declarations
988/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000989Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000990 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000991 // Check whether there is already a function template specialization for
992 // this declaration.
993 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
994 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000995 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000996 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +0000997 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +0000998
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000999 FunctionDecl *SpecFunc
1000 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1001 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001002
Douglas Gregor127102b2009-06-29 20:59:39 +00001003 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001004 if (SpecFunc)
1005 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001006 }
Mike Stump1eb44332009-09-09 15:08:12 +00001007
John McCallb0cb0222010-03-27 05:57:59 +00001008 bool isFriend;
1009 if (FunctionTemplate)
1010 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1011 else
1012 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1013
Douglas Gregor79c22782010-01-16 20:21:20 +00001014 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001015 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001016 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001017 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001018 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Chris Lattner5f9e2722011-07-23 10:55:15 +00001020 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001021 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001022 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001023 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001024 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001025
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001026 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1027 if (QualifierLoc) {
1028 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1029 TemplateArgs);
1030 if (!QualifierLoc)
1031 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001032 }
1033
John McCall68b6b872010-02-06 01:50:47 +00001034 // If we're instantiating a local function declaration, put the result
1035 // in the owner; otherwise we need to find the instantiated context.
1036 DeclContext *DC;
1037 if (D->getDeclContext()->isFunctionOrMethod())
1038 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001039 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001040 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001041 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001042 DC = SemaRef.computeDeclContext(SS);
1043 if (!DC) return 0;
1044 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001045 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001046 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001047 }
John McCall68b6b872010-02-06 01:50:47 +00001048
John McCall02cace72009-08-28 07:59:38 +00001049 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001050 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1051 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001052 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001053 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001054 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001056 if (QualifierLoc)
1057 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001058
John McCallb1a56e72010-03-26 23:10:15 +00001059 DeclContext *LexicalDC = Owner;
1060 if (!isFriend && D->isOutOfLine()) {
1061 assert(D->getDeclContext()->isFileContext());
1062 LexicalDC = D->getDeclContext();
1063 }
1064
1065 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Douglas Gregore53060f2009-06-25 22:08:12 +00001067 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001068 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001069 // Adopt the already-instantiated parameters into our own context.
1070 for (unsigned P = 0; P < Params.size(); ++P)
1071 if (Params[P])
1072 Params[P]->setOwningFunction(Function);
1073 } else {
1074 // Since we were instantiated via a typedef of a function type, create
1075 // new parameters.
1076 const FunctionProtoType *Proto
1077 = Function->getType()->getAs<FunctionProtoType>();
1078 assert(Proto && "No function prototype in template instantiation?");
1079 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1080 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1081 ParmVarDecl *Param
1082 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1083 *AI);
1084 Param->setScopeInfo(0, Params.size());
1085 Params.push_back(Param);
1086 }
1087 }
David Blaikie4278c652011-09-21 18:16:56 +00001088 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001089
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001090 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001091 if (TemplateParams) {
1092 // Our resulting instantiation is actually a function template, since we
1093 // are substituting only the outer template parameters. For example, given
1094 //
1095 // template<typename T>
1096 // struct X {
1097 // template<typename U> friend void f(T, U);
1098 // };
1099 //
1100 // X<int> x;
1101 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001102 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001103 // which means substituting int for T, but leaving "f" as a friend function
1104 // template.
1105 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001106 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001107 Function->getLocation(),
1108 Function->getDeclName(),
1109 TemplateParams, Function);
1110 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001111
1112 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001113
1114 if (isFriend && D->isThisDeclarationADefinition()) {
1115 // TODO: should we remember this connection regardless of whether
1116 // the friend declaration provided a body?
1117 FunctionTemplate->setInstantiatedFromMemberTemplate(
1118 D->getDescribedFunctionTemplate());
1119 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001120 } else if (FunctionTemplate) {
1121 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001122 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001123 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001124 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001125 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001126 Innermost.first,
1127 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001128 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001129 } else if (isFriend) {
1130 // Note, we need this connection even if the friend doesn't have a body.
1131 // Its body may exist but not have been attached yet due to deferred
1132 // parsing.
1133 // FIXME: It might be cleaner to set this when attaching the body to the
1134 // friend function declaration, however that would require finding all the
1135 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001136 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001137 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001138
Douglas Gregore53060f2009-06-25 22:08:12 +00001139 if (InitFunctionInstantiation(Function, D))
1140 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001141
John McCallaf2094e2010-04-08 09:05:18 +00001142 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001143
John McCall68263142009-11-18 22:49:29 +00001144 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1145 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1146
John McCallaf2094e2010-04-08 09:05:18 +00001147 if (DependentFunctionTemplateSpecializationInfo *Info
1148 = D->getDependentSpecializationInfo()) {
1149 assert(isFriend && "non-friend has dependent specialization info?");
1150
1151 // This needs to be set now for future sanity.
1152 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1153
1154 // Instantiate the explicit template arguments.
1155 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1156 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001157 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1158 ExplicitArgs, TemplateArgs))
1159 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001160
1161 // Map the candidate templates to their instantiations.
1162 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1163 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1164 Info->getTemplate(I),
1165 TemplateArgs);
1166 if (!Temp) return 0;
1167
1168 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1169 }
1170
1171 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1172 &ExplicitArgs,
1173 Previous))
1174 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001175
John McCallaf2094e2010-04-08 09:05:18 +00001176 isExplicitSpecialization = true;
1177
1178 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001179 // Look only into the namespace where the friend would be declared to
1180 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001181 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001182 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001183
Douglas Gregora735b202009-10-13 14:39:41 +00001184 // In C++, the previous declaration we find might be a tag type
1185 // (class or enum). In this case, the new declaration will hide the
1186 // tag type. Note that this does does not apply if we're declaring a
1187 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001188 if (Previous.isSingleTagDecl())
1189 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001190 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001191
John McCall9f54ad42009-12-10 09:41:52 +00001192 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001193 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001194
John McCall76d32642010-04-24 01:30:58 +00001195 NamedDecl *PrincipalDecl = (TemplateParams
1196 ? cast<NamedDecl>(FunctionTemplate)
1197 : Function);
1198
Douglas Gregora735b202009-10-13 14:39:41 +00001199 // If the original function was part of a friend declaration,
1200 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001201 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001202 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001203 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001204 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001205 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001206 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001207
1208 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001209 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001210
Gabor Greif77535df2010-08-30 22:25:56 +00001211 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001212
Richard Smith53e53512011-10-19 00:54:10 +00001213 // C++98 [temp.friend]p5: When a function is defined in a friend function
1214 // declaration in a class template, the function is defined at each
1215 // instantiation of the class template. The function is defined even if it
1216 // is never used.
1217 // C++11 [temp.friend]p4: When a function is defined in a friend function
1218 // declaration in a class template, the function is instantiated when the
1219 // function is odr-used.
1220 //
1221 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1222 // redefinition, but don't instantiate the function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001223 if ((!SemaRef.getLangOpts().CPlusPlus0x ||
Richard Smith53e53512011-10-19 00:54:10 +00001224 SemaRef.Diags.getDiagnosticLevel(
1225 diag::warn_cxx98_compat_friend_redefinition,
1226 Function->getLocation())
1227 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001228 D->isThisDeclarationADefinition()) {
1229 // Check for a function body.
1230 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001231 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001232 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001233 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001234 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001235 diag::warn_cxx98_compat_friend_redefinition :
1236 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001237 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001238 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001239 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001240 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001241 // Check for redefinitions due to other instantiations of this or
1242 // a similar friend function.
1243 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1244 REnd = Function->redecls_end();
1245 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001246 if (*R == Function)
1247 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001248 switch (R->getFriendObjectKind()) {
1249 case Decl::FOK_None:
David Blaikie4e4d0842012-03-11 07:00:24 +00001250 if (!SemaRef.getLangOpts().CPlusPlus0x &&
Richard Smith53e53512011-10-19 00:54:10 +00001251 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001252 if (MemberSpecializationInfo *MSInfo
1253 = Function->getMemberSpecializationInfo()) {
1254 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1255 SourceLocation Loc = R->getLocation(); // FIXME
1256 MSInfo->setPointOfInstantiation(Loc);
1257 SemaRef.PendingLocalImplicitInstantiations.push_back(
1258 std::make_pair(Function, Loc));
1259 queuedInstantiation = true;
1260 }
1261 }
1262 }
1263 break;
1264 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001265 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001266 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001267 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001268 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001269 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001270 diag::warn_cxx98_compat_friend_redefinition :
1271 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001272 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001273 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001274 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001275 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001276 break;
1277 }
1278 }
1279 }
1280 }
Douglas Gregora735b202009-10-13 14:39:41 +00001281 }
1282
John McCall76d32642010-04-24 01:30:58 +00001283 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1284 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1285 PrincipalDecl->setNonMemberOperator();
1286
Sean Hunteb88ae52011-05-23 21:07:59 +00001287 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001288 return Function;
1289}
1290
Douglas Gregord60e1052009-08-27 16:57:43 +00001291Decl *
1292TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001293 TemplateParameterList *TemplateParams,
1294 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001295 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1296 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001297 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001298 // We are creating a function template specialization from a function
1299 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001300 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001301 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001302 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001303
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001304 FunctionDecl *SpecFunc
1305 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1306 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001307
Douglas Gregor6b906862009-08-21 00:16:32 +00001308 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001309 if (SpecFunc)
1310 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001311 }
1312
John McCallb0cb0222010-03-27 05:57:59 +00001313 bool isFriend;
1314 if (FunctionTemplate)
1315 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1316 else
1317 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1318
Douglas Gregor79c22782010-01-16 20:21:20 +00001319 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001320 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001321 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001322 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001323
John McCall4eab39f2010-10-19 02:26:41 +00001324 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001325 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001326 unsigned NumTempParamLists = 0;
1327 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1328 TempParamLists.set_size(NumTempParamLists);
1329 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1330 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1331 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1332 if (!InstParams)
1333 return NULL;
1334 TempParamLists[I] = InstParams;
1335 }
1336 }
1337
Chris Lattner5f9e2722011-07-23 10:55:15 +00001338 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001339 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001340 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001341 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001342 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001343
Abramo Bagnara723df242010-12-14 22:11:44 +00001344 // \brief If the type of this function, after ignoring parentheses,
1345 // is not *directly* a function type, then we're instantiating a function
1346 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001347 //
1348 // typedef int functype(int, int);
1349 // functype func;
1350 //
1351 // In this case, we'll just go instantiate the ParmVarDecls that we
1352 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001353 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001354 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001355 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001356 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1357 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001358 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001359 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001360 }
1361
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001362 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1363 if (QualifierLoc) {
1364 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001365 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001366 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001367 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001368 }
1369
1370 DeclContext *DC = Owner;
1371 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001372 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001373 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001374 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001375 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001376
1377 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1378 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001379 } else {
1380 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1381 D->getDeclContext(),
1382 TemplateArgs);
1383 }
1384 if (!DC) return 0;
1385 }
1386
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001387 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001388 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001389 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001391 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001392 DeclarationNameInfo NameInfo
1393 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001394 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001395 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001396 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001397 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001398 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001399 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001400 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001401 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001402 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001403 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001404 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001405 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001406 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001407 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001408 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001409 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001410 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001411 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001412 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001413 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001414 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001415 D->isStatic(),
1416 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001417 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001418 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001419 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001420
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001421 if (QualifierLoc)
1422 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001423
Douglas Gregord60e1052009-08-27 16:57:43 +00001424 if (TemplateParams) {
1425 // Our resulting instantiation is actually a function template, since we
1426 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001427 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001428 // template<typename T>
1429 // struct X {
1430 // template<typename U> void f(T, U);
1431 // };
1432 //
1433 // X<int> x;
1434 //
1435 // We are instantiating the member template "f" within X<int>, which means
1436 // substituting int for T, but leaving "f" as a member function template.
1437 // Build the function template itself.
1438 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1439 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001440 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001441 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001442 if (isFriend) {
1443 FunctionTemplate->setLexicalDeclContext(Owner);
1444 FunctionTemplate->setObjectOfFriendDecl(true);
1445 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001446 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001447 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001448 } else if (FunctionTemplate) {
1449 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001450 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001451 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001452 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001453 TemplateArgumentList::CreateCopy(SemaRef.Context,
1454 Innermost.first,
1455 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001456 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001457 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001458 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001459 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001460 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001461
Mike Stump1eb44332009-09-09 15:08:12 +00001462 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001463 // out-of-line, the instantiation will have the same lexical
1464 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001465 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001466 if (NumTempParamLists)
1467 Method->setTemplateParameterListsInfo(SemaRef.Context,
1468 NumTempParamLists,
1469 TempParamLists.data());
1470
John McCallb0cb0222010-03-27 05:57:59 +00001471 Method->setLexicalDeclContext(Owner);
1472 Method->setObjectOfFriendDecl(true);
1473 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001474 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001475
Douglas Gregor5545e162009-03-24 00:38:23 +00001476 // Attach the parameters
1477 for (unsigned P = 0; P < Params.size(); ++P)
1478 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001479 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001480
1481 if (InitMethodInstantiation(Method, D))
1482 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001483
Abramo Bagnara25777432010-08-11 22:01:17 +00001484 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1485 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001486
John McCallb0cb0222010-03-27 05:57:59 +00001487 if (!FunctionTemplate || TemplateParams || isFriend) {
1488 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Douglas Gregordec06662009-08-21 18:42:58 +00001490 // In C++, the previous declaration we find might be a tag type
1491 // (class or enum). In this case, the new declaration will hide the
1492 // tag type. Note that this does does not apply if we're declaring a
1493 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001494 if (Previous.isSingleTagDecl())
1495 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001496 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001497
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001498 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001499 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001500
Douglas Gregor4ba31362009-12-01 17:24:26 +00001501 if (D->isPure())
1502 SemaRef.CheckPureMethod(Method, SourceRange());
1503
John McCall46460a62010-01-20 21:53:11 +00001504 Method->setAccess(D->getAccess());
1505
Anders Carlsson9eefa222011-01-20 06:52:44 +00001506 SemaRef.CheckOverrideControl(Method);
1507
Eli Friedman3bc45152011-11-15 22:39:08 +00001508 // If a function is defined as defaulted or deleted, mark it as such now.
1509 if (D->isDefaulted())
1510 Method->setDefaulted();
1511 if (D->isDeletedAsWritten())
1512 Method->setDeletedAsWritten();
1513
John McCallb0cb0222010-03-27 05:57:59 +00001514 if (FunctionTemplate) {
1515 // If there's a function template, let our caller handle it.
1516 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1517 // Don't hide a (potentially) valid declaration with an invalid one.
1518 } else {
1519 NamedDecl *DeclToAdd = (TemplateParams
1520 ? cast<NamedDecl>(FunctionTemplate)
1521 : Method);
1522 if (isFriend)
1523 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001524 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001525 Owner->addDecl(DeclToAdd);
1526 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001527
1528 if (D->isExplicitlyDefaulted()) {
1529 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1530 } else {
1531 assert(!D->isDefaulted() &&
1532 "should not implicitly default uninstantiated function");
1533 }
1534
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001535 return Method;
1536}
1537
Douglas Gregor615c5d42009-03-24 16:43:20 +00001538Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001539 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001540}
1541
Douglas Gregor03b2b072009-03-24 00:15:49 +00001542Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001543 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001544}
1545
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001546Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001547 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001548}
1549
Douglas Gregor6477b692009-03-25 15:04:13 +00001550ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001551 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001552 llvm::Optional<unsigned>(),
1553 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001554}
1555
John McCalle29ba202009-08-20 01:44:21 +00001556Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1557 TemplateTypeParmDecl *D) {
1558 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001559 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001560
John McCalle29ba202009-08-20 01:44:21 +00001561 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001562 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1563 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001564 D->getDepth() - TemplateArgs.getNumLevels(),
1565 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001566 D->wasDeclaredWithTypename(),
1567 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001568 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001569
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001570 if (D->hasDefaultArgument())
1571 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1572
1573 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001574 // scope.
1575 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001576
John McCalle29ba202009-08-20 01:44:21 +00001577 return Inst;
1578}
1579
Douglas Gregor33642df2009-10-23 23:25:44 +00001580Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1581 NonTypeTemplateParmDecl *D) {
1582 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001583 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001584 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1585 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001586 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001587 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001588 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001589 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001590
1591 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001592 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001593 // expansion of types. Substitute into each of the expanded types.
1594 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1595 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1596 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1597 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1598 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001599 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001600 D->getDeclName());
1601 if (!NewDI)
1602 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001603
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001604 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1605 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1606 D->getLocation());
1607 if (NewT.isNull())
1608 return 0;
1609 ExpandedParameterPackTypes.push_back(NewT);
1610 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001611
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001612 IsExpandedParameterPack = true;
1613 DI = D->getTypeSourceInfo();
1614 T = DI->getType();
1615 } else if (isa<PackExpansionTypeLoc>(TL)) {
1616 // The non-type template parameter pack's type is a pack expansion of types.
1617 // Determine whether we need to expand this parameter pack into separate
1618 // types.
1619 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1620 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001621 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001622 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001623
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001624 // Determine whether the set of unexpanded parameter packs can and should
1625 // be expanded.
1626 bool Expand = true;
1627 bool RetainExpansion = false;
1628 llvm::Optional<unsigned> OrigNumExpansions
1629 = Expansion.getTypePtr()->getNumExpansions();
1630 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1631 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1632 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001633 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001634 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001635 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001636 NumExpansions))
1637 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001638
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001639 if (Expand) {
1640 for (unsigned I = 0; I != *NumExpansions; ++I) {
1641 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1642 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001643 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001644 D->getDeclName());
1645 if (!NewDI)
1646 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001647
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001648 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1649 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1650 NewDI->getType(),
1651 D->getLocation());
1652 if (NewT.isNull())
1653 return 0;
1654 ExpandedParameterPackTypes.push_back(NewT);
1655 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001656
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001657 // Note that we have an expanded parameter pack. The "type" of this
1658 // expanded parameter pack is the original expansion type, but callers
1659 // will end up using the expanded parameter pack types for type-checking.
1660 IsExpandedParameterPack = true;
1661 DI = D->getTypeSourceInfo();
1662 T = DI->getType();
1663 } else {
1664 // We cannot fully expand the pack expansion now, so substitute into the
1665 // pattern and create a new pack expansion type.
1666 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1667 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001668 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001669 D->getDeclName());
1670 if (!NewPattern)
1671 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001672
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001673 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1674 NumExpansions);
1675 if (!DI)
1676 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001677
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001678 T = DI->getType();
1679 }
1680 } else {
1681 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001682 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001683 D->getLocation(), D->getDeclName());
1684 if (!DI)
1685 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001686
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001687 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001688 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001689 D->getLocation());
1690 if (T.isNull()) {
1691 T = SemaRef.Context.IntTy;
1692 Invalid = true;
1693 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001694 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001695
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001696 NonTypeTemplateParmDecl *Param;
1697 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001698 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001699 D->getInnerLocStart(),
1700 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001701 D->getDepth() - TemplateArgs.getNumLevels(),
1702 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001703 D->getIdentifier(), T,
1704 DI,
1705 ExpandedParameterPackTypes.data(),
1706 ExpandedParameterPackTypes.size(),
1707 ExpandedParameterPackTypesAsWritten.data());
1708 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001709 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001710 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001711 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001712 D->getDepth() - TemplateArgs.getNumLevels(),
1713 D->getPosition(),
1714 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001715 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001716
Douglas Gregor9a299e02011-03-04 17:52:15 +00001717 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001718 if (Invalid)
1719 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001720
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001721 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001722
1723 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001724 // scope.
1725 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001726 return Param;
1727}
1728
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001729Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001730TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1731 TemplateTemplateParmDecl *D) {
1732 // Instantiate the template parameter list of the template template parameter.
1733 TemplateParameterList *TempParams = D->getTemplateParameters();
1734 TemplateParameterList *InstParams;
1735 {
1736 // Perform the actual substitution of template parameters within a new,
1737 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001738 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001739 InstParams = SubstTemplateParams(TempParams);
1740 if (!InstParams)
1741 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001742 }
1743
Douglas Gregor9106ef72009-11-11 16:58:32 +00001744 // Build the template template parameter.
1745 TemplateTemplateParmDecl *Param
1746 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001747 D->getDepth() - TemplateArgs.getNumLevels(),
1748 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001749 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001750 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001751 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001752
1753 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001754 // scope.
1755 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001756
Douglas Gregor9106ef72009-11-11 16:58:32 +00001757 return Param;
1758}
1759
Douglas Gregor48c32a72009-11-17 06:07:40 +00001760Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001761 // Using directives are never dependent (and never contain any types or
1762 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001763
Douglas Gregor48c32a72009-11-17 06:07:40 +00001764 UsingDirectiveDecl *Inst
1765 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001766 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001767 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001768 D->getIdentLocation(),
1769 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001770 D->getCommonAncestor());
1771 Owner->addDecl(Inst);
1772 return Inst;
1773}
1774
John McCalled976492009-12-04 22:46:56 +00001775Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001776
1777 // The nested name specifier may be dependent, for example
1778 // template <typename T> struct t {
1779 // struct s1 { T f1(); };
1780 // struct s2 : s1 { using s1::f1; };
1781 // };
1782 // template struct t<int>;
1783 // Here, in using s1::f1, s1 refers to t<T>::s1;
1784 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001785 NestedNameSpecifierLoc QualifierLoc
1786 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1787 TemplateArgs);
1788 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001789 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001790
1791 // The name info is non-dependent, so no transformation
1792 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001793 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001794
John McCall9f54ad42009-12-10 09:41:52 +00001795 // We only need to do redeclaration lookups if we're in a class
1796 // scope (in fact, it's not really even possible in non-class
1797 // scopes).
1798 bool CheckRedeclaration = Owner->isRecord();
1799
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001800 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1801 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001802
John McCalled976492009-12-04 22:46:56 +00001803 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001804 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001805 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001806 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001807 D->isTypeName());
1808
Douglas Gregor5149f372011-02-25 15:54:31 +00001809 CXXScopeSpec SS;
1810 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001811 if (CheckRedeclaration) {
1812 Prev.setHideTags(false);
1813 SemaRef.LookupQualifiedName(Prev, Owner);
1814
1815 // Check for invalid redeclarations.
1816 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1817 D->isTypeName(), SS,
1818 D->getLocation(), Prev))
1819 NewUD->setInvalidDecl();
1820
1821 }
1822
1823 if (!NewUD->isInvalidDecl() &&
1824 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001825 D->getLocation()))
1826 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001827
John McCalled976492009-12-04 22:46:56 +00001828 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1829 NewUD->setAccess(D->getAccess());
1830 Owner->addDecl(NewUD);
1831
John McCall9f54ad42009-12-10 09:41:52 +00001832 // Don't process the shadow decls for an invalid decl.
1833 if (NewUD->isInvalidDecl())
1834 return NewUD;
1835
John McCall323c3102009-12-22 22:26:37 +00001836 bool isFunctionScope = Owner->isFunctionOrMethod();
1837
John McCall9f54ad42009-12-10 09:41:52 +00001838 // Process the shadow decls.
1839 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1840 I != E; ++I) {
1841 UsingShadowDecl *Shadow = *I;
1842 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001843 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1844 Shadow->getLocation(),
1845 Shadow->getTargetDecl(),
1846 TemplateArgs));
1847 if (!InstTarget)
1848 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001849
1850 if (CheckRedeclaration &&
1851 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1852 continue;
1853
1854 UsingShadowDecl *InstShadow
1855 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1856 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001857
1858 if (isFunctionScope)
1859 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001860 }
John McCalled976492009-12-04 22:46:56 +00001861
1862 return NewUD;
1863}
1864
1865Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001866 // Ignore these; we handle them in bulk when processing the UsingDecl.
1867 return 0;
John McCalled976492009-12-04 22:46:56 +00001868}
1869
John McCall7ba107a2009-11-18 02:36:19 +00001870Decl * TemplateDeclInstantiator
1871 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001872 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001873 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001874 TemplateArgs);
1875 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001876 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001878 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001879 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001880
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001881 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1882 // Hence, no tranformation is required for it.
1883 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001884 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001885 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001886 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001887 /*instantiation*/ true,
1888 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001889 if (UD)
John McCalled976492009-12-04 22:46:56 +00001890 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1891
John McCall7ba107a2009-11-18 02:36:19 +00001892 return UD;
1893}
1894
1895Decl * TemplateDeclInstantiator
1896 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001897 NestedNameSpecifierLoc QualifierLoc
1898 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1899 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001900 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001901
John McCall7ba107a2009-11-18 02:36:19 +00001902 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001903 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001904
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001905 DeclarationNameInfo NameInfo
1906 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1907
John McCall7ba107a2009-11-18 02:36:19 +00001908 NamedDecl *UD =
1909 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001910 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001911 /*instantiation*/ true,
1912 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001913 if (UD)
John McCalled976492009-12-04 22:46:56 +00001914 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1915
Anders Carlsson0d8df782009-08-29 19:37:28 +00001916 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001917}
1918
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001919
1920Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1921 ClassScopeFunctionSpecializationDecl *Decl) {
1922 CXXMethodDecl *OldFD = Decl->getSpecialization();
1923 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1924
1925 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1926 Sema::ForRedeclaration);
1927
1928 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1929 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1930 NewFD->setInvalidDecl();
1931 return NewFD;
1932 }
1933
1934 // Associate the specialization with the pattern.
1935 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1936 assert(Specialization && "Class scope Specialization is null");
1937 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1938
1939 return NewFD;
1940}
1941
John McCallce3ff2b2009-08-25 22:02:44 +00001942Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001943 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001944 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001945 if (D->isInvalidDecl())
1946 return 0;
1947
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001948 return Instantiator.Visit(D);
1949}
1950
John McCalle29ba202009-08-20 01:44:21 +00001951/// \brief Instantiates a nested template parameter list in the current
1952/// instantiation context.
1953///
1954/// \param L The parameter list to instantiate
1955///
1956/// \returns NULL if there was an error
1957TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001958TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001959 // Get errors for all the parameters before bailing out.
1960 bool Invalid = false;
1961
1962 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001963 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001964 ParamVector Params;
1965 Params.reserve(N);
1966 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1967 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001968 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001969 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001970 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001971 }
1972
1973 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001974 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001975 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001976
1977 TemplateParameterList *InstL
1978 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1979 L->getLAngleLoc(), &Params.front(), N,
1980 L->getRAngleLoc());
1981 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001982}
John McCalle29ba202009-08-20 01:44:21 +00001983
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001984/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00001985/// specialization.
1986///
1987/// \param ClassTemplate the (instantiated) class template that is partially
1988// specialized by the instantiation of \p PartialSpec.
1989///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001990/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00001991/// specialization that we are instantiating.
1992///
Douglas Gregord65587f2010-11-10 19:44:59 +00001993/// \returns The instantiated partial specialization, if successful; otherwise,
1994/// NULL to indicate an error.
1995ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001996TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1997 ClassTemplateDecl *ClassTemplate,
1998 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001999 // Create a local instantiation scope for this class template partial
2000 // specialization, which will contain the instantiations of the template
2001 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002002 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002003
Douglas Gregored9c0f92009-10-29 00:04:11 +00002004 // Substitute into the template parameters of the class template partial
2005 // specialization.
2006 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2007 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2008 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002009 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002010
Douglas Gregored9c0f92009-10-29 00:04:11 +00002011 // Substitute into the template arguments of the class template partial
2012 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002013 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002014 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2015 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002016 InstTemplateArgs, TemplateArgs))
2017 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002018
Douglas Gregored9c0f92009-10-29 00:04:11 +00002019 // Check that the template argument list is well-formed for this
2020 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002021 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002022 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002023 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002024 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025 false,
2026 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002027 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002028
2029 // Figure out where to insert this class template partial specialization
2030 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002031 void *InsertPos = 0;
2032 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002033 = ClassTemplate->findPartialSpecialization(Converted.data(),
2034 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002035
Douglas Gregored9c0f92009-10-29 00:04:11 +00002036 // Build the canonical type that describes the converted template
2037 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002038 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002039 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002040 Converted.data(),
2041 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042
2043 // Build the fully-sugared type for this class template
2044 // specialization as the user wrote in the specialization
2045 // itself. This means that we'll pretty-print the type retrieved
2046 // from the specialization's declaration the way that the user
2047 // actually wrote the specialization, rather than formatting the
2048 // name based on the "canonical" representation used to store the
2049 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002050 TypeSourceInfo *WrittenTy
2051 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2052 TemplateName(ClassTemplate),
2053 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002054 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002055 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002056
Douglas Gregored9c0f92009-10-29 00:04:11 +00002057 if (PrevDecl) {
2058 // We've already seen a partial specialization with the same template
2059 // parameters and template arguments. This can happen, for example, when
2060 // substituting the outer template arguments ends up causing two
2061 // class template partial specializations of a member class template
2062 // to have identical forms, e.g.,
2063 //
2064 // template<typename T, typename U>
2065 // struct Outer {
2066 // template<typename X, typename Y> struct Inner;
2067 // template<typename Y> struct Inner<T, Y>;
2068 // template<typename Y> struct Inner<U, Y>;
2069 // };
2070 //
2071 // Outer<int, int> outer; // error: the partial specializations of Inner
2072 // // have the same signature.
2073 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002074 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002075 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2076 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002077 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002078 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002079
2080
Douglas Gregored9c0f92009-10-29 00:04:11 +00002081 // Create the class template partial specialization declaration.
2082 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002083 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002084 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002085 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002086 PartialSpec->getLocStart(),
2087 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002088 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002089 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002090 Converted.data(),
2091 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002092 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002093 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002094 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002095 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002096 // Substitute the nested name specifier, if any.
2097 if (SubstQualifier(PartialSpec, InstPartialSpec))
2098 return 0;
2099
Douglas Gregored9c0f92009-10-29 00:04:11 +00002100 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002101 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002102
Douglas Gregored9c0f92009-10-29 00:04:11 +00002103 // Add this partial specialization to the set of class template partial
2104 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002105 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002106 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002107}
2108
John McCall21ef0fa2010-03-11 09:03:00 +00002109TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002110TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002111 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002112 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2113 assert(OldTInfo && "substituting function without type source info");
2114 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002115 TypeSourceInfo *NewTInfo
2116 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2117 D->getTypeSpecStartLoc(),
2118 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002119 if (!NewTInfo)
2120 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002121
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002122 if (NewTInfo != OldTInfo) {
2123 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002124 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002125 if (FunctionProtoTypeLoc *OldProtoLoc
2126 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002127 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002128 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2129 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002130 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2131 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2132 OldIdx != NumOldParams; ++OldIdx) {
2133 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2134 if (!OldParam->isParameterPack() ||
Richard Smith7c5d28b2012-03-13 06:56:52 +00002135 // FIXME: Is this right? OldParam could expand to an empty parameter
2136 // pack and the next parameter could be an unexpanded parameter pack
Douglas Gregor12c9c002011-01-07 16:43:16 +00002137 (NewIdx < NumNewParams &&
2138 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002139 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002140 // instantiated to a (still-dependent) parameter pack.
2141 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2142 Params.push_back(NewParam);
2143 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2144 NewParam);
2145 continue;
2146 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002147
Douglas Gregor12c9c002011-01-07 16:43:16 +00002148 // Parameter pack: make the instantiation an argument pack.
2149 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2150 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002151 unsigned NumArgumentsInExpansion
2152 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2153 TemplateArgs);
2154 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002155 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2156 Params.push_back(NewParam);
2157 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2158 NewParam);
2159 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002160 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002161 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002162 } else {
2163 // The function type itself was not dependent and therefore no
2164 // substitution occurred. However, we still need to instantiate
2165 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002166 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002167 if (FunctionProtoTypeLoc *OldProtoLoc
2168 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2169 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2170 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2171 if (!Parm)
2172 return 0;
2173 Params.push_back(Parm);
2174 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002175 }
2176 }
John McCall21ef0fa2010-03-11 09:03:00 +00002177 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002178}
2179
Mike Stump1eb44332009-09-09 15:08:12 +00002180/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002181/// declaration (New) from the corresponding fields of its template (Tmpl).
2182///
2183/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002184bool
2185TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002186 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002187 if (Tmpl->isDeletedAsWritten())
2188 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002189
Douglas Gregorcca9e962009-07-01 22:01:06 +00002190 // If we are performing substituting explicitly-specified template arguments
2191 // or deduced template arguments into a function template and we reach this
2192 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002193 // to keeping the new function template specialization. We therefore
2194 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002195 // into a template instantiation for this specific function template
2196 // specialization, which is not a SFINAE context, so that we diagnose any
2197 // further errors in the declaration itself.
2198 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2199 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2200 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2201 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002202 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002203 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002204 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002205 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002206 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002207 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2208 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002209 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002210 }
2211 }
Mike Stump1eb44332009-09-09 15:08:12 +00002212
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002213 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2214 assert(Proto && "Function template without prototype?");
2215
Sebastian Redl60618fa2011-03-12 11:50:43 +00002216 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002217 // The function has an exception specification or a "noreturn"
2218 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002219 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002220 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2221 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002222 if (const PackExpansionType *PackExpansion
2223 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2224 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002225 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002226 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2227 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002228 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002229 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002230
Douglas Gregorb99268b2010-12-21 00:52:54 +00002231 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002232 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002233 llvm::Optional<unsigned> NumExpansions
2234 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002235 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002236 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002237 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002238 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002239 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002240 RetainExpansion,
2241 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002242 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002243
Douglas Gregorb99268b2010-12-21 00:52:54 +00002244 if (!Expand) {
2245 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002246 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002247 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002248 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002249 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002250 TemplateArgs,
2251 New->getLocation(), New->getDeclName());
2252 if (T.isNull())
2253 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002254
Douglas Gregorcded4f62011-01-14 17:04:44 +00002255 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002256 Exceptions.push_back(T);
2257 continue;
2258 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002259
Douglas Gregorb99268b2010-12-21 00:52:54 +00002260 // Substitute into the pack expansion pattern for each template
2261 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002262 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002263 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002264
2265 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002266 TemplateArgs,
2267 New->getLocation(), New->getDeclName());
2268 if (T.isNull()) {
2269 Invalid = true;
2270 break;
2271 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002272
Douglas Gregorb99268b2010-12-21 00:52:54 +00002273 Exceptions.push_back(T);
2274 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002275
Douglas Gregorb99268b2010-12-21 00:52:54 +00002276 if (Invalid)
2277 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002278
Douglas Gregorb99268b2010-12-21 00:52:54 +00002279 continue;
2280 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002281
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002282 QualType T
2283 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2284 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002286 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2287 continue;
2288
2289 Exceptions.push_back(T);
2290 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002291 Expr *NoexceptExpr = 0;
2292 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002293 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2294 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002295 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2296 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002297 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002298
Douglas Gregor5c340e82011-10-09 18:31:23 +00002299 if (E.isUsable()) {
Sebastian Redl56fb9262011-03-14 18:51:50 +00002300 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002301 if (!NoexceptExpr->isTypeDependent() &&
Richard Smith282e7e62012-02-04 09:53:13 +00002302 !NoexceptExpr->isValueDependent())
2303 NoexceptExpr = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2304 0, SemaRef.PDiag(diag::err_noexcept_needs_constant_expression),
2305 /*AllowFold*/ false).take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002306 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002307 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002308
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002309 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002310
John McCalle23cf432010-12-14 08:05:40 +00002311 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002312 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002313 EPI.NumExceptions = Exceptions.size();
2314 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002315 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002316 EPI.ExtInfo = Proto->getExtInfo();
2317
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002318 const FunctionProtoType *NewProto
2319 = New->getType()->getAs<FunctionProtoType>();
2320 assert(NewProto && "Template instantiation without function prototype?");
2321 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2322 NewProto->arg_type_begin(),
2323 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002324 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002325 }
2326
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002327 const FunctionDecl* Definition = Tmpl;
2328
2329 // Get the definition. Leaves the variable unchanged if undefined.
2330 Tmpl->isDefined(Definition);
2331
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002332 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2333 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002334
Douglas Gregore53060f2009-06-25 22:08:12 +00002335 return false;
2336}
2337
Douglas Gregor5545e162009-03-24 00:38:23 +00002338/// \brief Initializes common fields of an instantiated method
2339/// declaration (New) from the corresponding fields of its template
2340/// (Tmpl).
2341///
2342/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002343bool
2344TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002345 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002346 if (InitFunctionInstantiation(New, Tmpl))
2347 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002348
Douglas Gregor5545e162009-03-24 00:38:23 +00002349 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002350 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002351 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002352
2353 // FIXME: attributes
2354 // FIXME: New needs a pointer to Tmpl
2355 return false;
2356}
Douglas Gregora58861f2009-05-13 20:28:22 +00002357
2358/// \brief Instantiate the definition of the given function from its
2359/// template.
2360///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002361/// \param PointOfInstantiation the point at which the instantiation was
2362/// required. Note that this is not precisely a "point of instantiation"
2363/// for the function, but it's close.
2364///
Douglas Gregora58861f2009-05-13 20:28:22 +00002365/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002366/// function template specialization or member function of a class template
2367/// specialization.
2368///
2369/// \param Recursive if true, recursively instantiates any functions that
2370/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002371///
2372/// \param DefinitionRequired if true, then we are performing an explicit
2373/// instantiation where the body of the function is required. Complain if
2374/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002375void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002376 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002377 bool Recursive,
2378 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002379 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002380 return;
2381
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002382 // Never instantiate an explicit specialization except if it is a class scope
2383 // explicit specialization.
2384 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2385 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002386 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002387
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002388 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002389 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002390 assert(PatternDecl && "instantiating a non-template");
2391
2392 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2393 assert(PatternDecl && "template definition is not a template");
2394 if (!Pattern) {
2395 // Try to find a defaulted definition
2396 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002397 }
Sean Huntf996e052011-05-27 20:00:14 +00002398 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002399
Francois Pichet8387e2a2011-04-22 22:18:13 +00002400 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002401 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002402 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002403 PendingInstantiations.push_back(
2404 std::make_pair(Function, PointOfInstantiation));
2405 return;
2406 }
2407
2408 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002409 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002410 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002411 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002412 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002413 Pattern = PatternDecl->getBody(PatternDecl);
2414 }
2415
Sean Huntf996e052011-05-27 20:00:14 +00002416 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002417 if (DefinitionRequired) {
2418 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002419 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002420 diag::err_explicit_instantiation_undefined_func_template)
2421 << Function->getPrimaryTemplate();
2422 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002423 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002424 diag::err_explicit_instantiation_undefined_member)
2425 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002426
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002427 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002428 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002429 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002430 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002431 } else if (Function->getTemplateSpecializationKind()
2432 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002433 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002434 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002435 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002436
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002437 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002438 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002439
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002440 // C++0x [temp.explicit]p9:
2441 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002442 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002443 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002444 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002445 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002446 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002447 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002448
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002449 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2450 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002451 return;
2452
Abramo Bagnarae9946242011-11-18 08:08:52 +00002453 // Copy the inner loc start from the pattern.
2454 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2455
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002456 // If we're performing recursive template instantiation, create our own
2457 // queue of pending implicit instantiations that we will instantiate later,
2458 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002459 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002460 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002461 if (Recursive) {
2462 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002463 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002464 }
Mike Stump1eb44332009-09-09 15:08:12 +00002465
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002466 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002467 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002468 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002469
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002470 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002471 // recorded, unless we're actually a member function within a local
2472 // class, in which case we need to merge our results with the parent
2473 // scope (of the enclosing function).
2474 bool MergeWithParentScope = false;
2475 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2476 MergeWithParentScope = Rec->isLocalClass();
2477
2478 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002479
Richard Smith7c5d28b2012-03-13 06:56:52 +00002480 // Enter the scope of this instantiation. We don't use
2481 // PushDeclContext because we don't have a scope.
2482 Sema::ContextRAII savedContext(*this, Function);
2483
2484 MultiLevelTemplateArgumentList TemplateArgs =
2485 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2486
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002487 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002488 // instantiation scope, and set the parameter names to those used
2489 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002490 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002491 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2492 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002493 if (!PatternParam->isParameterPack()) {
2494 // Simple case: not a parameter pack.
2495 assert(FParamIdx < Function->getNumParams());
Richard Smith7c5d28b2012-03-13 06:56:52 +00002496 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002497 FunctionParam->setDeclName(PatternParam->getDeclName());
2498 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2499 ++FParamIdx;
2500 continue;
2501 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002502
Douglas Gregor12c9c002011-01-07 16:43:16 +00002503 // Expand the parameter pack.
2504 Scope.MakeInstantiatedLocalArgPack(PatternParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002505 unsigned NumArgumentsInExpansion
2506 = getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
2507 for (unsigned Arg = 0; Arg < NumArgumentsInExpansion; ++Arg) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002508 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2509 FunctionParam->setDeclName(PatternParam->getDeclName());
2510 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002511 ++FParamIdx;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002512 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002513 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002514
Sean Huntcd10dec2011-05-23 23:14:04 +00002515 if (PatternDecl->isDefaulted()) {
2516 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2517
2518 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002519 } else {
2520 // If this is a constructor, instantiate the member initializers.
2521 if (const CXXConstructorDecl *Ctor =
2522 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2523 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2524 TemplateArgs);
2525 }
2526
2527 // Instantiate the function body.
2528 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2529
2530 if (Body.isInvalid())
2531 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002532
Sean Huntcd10dec2011-05-23 23:14:04 +00002533 ActOnFinishFunctionBody(Function, Body.get(),
2534 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002535 }
2536
John McCall0c01d182010-03-24 05:22:00 +00002537 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2538
John McCalleee1d542011-02-14 07:13:47 +00002539 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002540
2541 DeclGroupRef DG(Function);
2542 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002543
Douglas Gregor60406be2010-01-16 22:29:39 +00002544 // This class may have local implicit instantiations that need to be
2545 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002546 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002547 Scope.Exit();
2548
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002549 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002550 // Define any pending vtables.
2551 DefineUsedVTables();
2552
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002553 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002554 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002555 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002556
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002557 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002558 assert(VTableUses.empty() &&
2559 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002560 VTableUses.swap(SavedVTableUses);
2561
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002562 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002563 assert(PendingInstantiations.empty() &&
2564 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002565 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002566 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002567}
2568
2569/// \brief Instantiate the definition of the given variable from its
2570/// template.
2571///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002572/// \param PointOfInstantiation the point at which the instantiation was
2573/// required. Note that this is not precisely a "point of instantiation"
2574/// for the function, but it's close.
2575///
2576/// \param Var the already-instantiated declaration of a static member
2577/// variable of a class template specialization.
2578///
2579/// \param Recursive if true, recursively instantiates any functions that
2580/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002581///
2582/// \param DefinitionRequired if true, then we are performing an explicit
2583/// instantiation where an out-of-line definition of the member variable
2584/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002585void Sema::InstantiateStaticDataMemberDefinition(
2586 SourceLocation PointOfInstantiation,
2587 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002588 bool Recursive,
2589 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002590 if (Var->isInvalidDecl())
2591 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002592
Douglas Gregor7caa6822009-07-24 20:34:43 +00002593 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002594 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002595 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002596 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002597 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002598
Douglas Gregor0d035142009-10-27 18:42:08 +00002599 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002600 // We did not find an out-of-line definition of this static data member,
2601 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002602 // instantiate this definition (or provide a specialization for it) in
2603 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002604 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002605 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002606 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002607 diag::err_explicit_instantiation_undefined_member)
2608 << 2 << Var->getDeclName() << Var->getDeclContext();
2609 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002610 } else if (Var->getTemplateSpecializationKind()
2611 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002612 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002613 std::make_pair(Var, PointOfInstantiation));
2614 }
2615
Douglas Gregor7caa6822009-07-24 20:34:43 +00002616 return;
2617 }
2618
Rafael Espindola234fe652012-03-05 10:54:55 +00002619 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2620
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002621 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002622 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002623 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002624
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002625 // C++0x [temp.explicit]p9:
2626 // Except for inline functions, other explicit instantiation declarations
2627 // have the effect of suppressing the implicit instantiation of the entity
2628 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002629 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002630 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002631
Rafael Espindola02503932012-03-08 15:51:03 +00002632 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2633
Douglas Gregorf15748a2011-06-03 03:35:07 +00002634 // If we already have a definition, we're done.
Rafael Espindola02503932012-03-08 15:51:03 +00002635 if (Var->getDefinition())
Douglas Gregorf15748a2011-06-03 03:35:07 +00002636 return;
2637
Douglas Gregor7caa6822009-07-24 20:34:43 +00002638 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2639 if (Inst)
2640 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002641
Douglas Gregor7caa6822009-07-24 20:34:43 +00002642 // If we're performing recursive template instantiation, create our own
2643 // queue of pending implicit instantiations that we will instantiate later,
2644 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002645 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002646 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002647 if (Recursive) {
2648 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002649 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002650 }
Mike Stump1eb44332009-09-09 15:08:12 +00002651
Douglas Gregor7caa6822009-07-24 20:34:43 +00002652 // Enter the scope of this instantiation. We don't use
2653 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002654 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002655 LocalInstantiationScope Local(*this);
2656
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002657 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002658 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002659 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002660
2661 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002662
2663 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002664 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2665 assert(MSInfo && "Missing member specialization information?");
2666 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2667 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002668 DeclGroupRef DG(Var);
2669 Consumer.HandleTopLevelDecl(DG);
2670 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002671 Local.Exit();
2672
Douglas Gregor7caa6822009-07-24 20:34:43 +00002673 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002674 // Define any newly required vtables.
2675 DefineUsedVTables();
2676
Douglas Gregor7caa6822009-07-24 20:34:43 +00002677 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002678 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002679 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002680
Nick Lewycky81559102011-05-31 07:58:42 +00002681 // Restore the set of pending vtables.
2682 assert(VTableUses.empty() &&
2683 "VTableUses should be empty before it is discarded, "
2684 "while instantiating static data member.");
2685 VTableUses.swap(SavedVTableUses);
2686
Douglas Gregor7caa6822009-07-24 20:34:43 +00002687 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002688 assert(PendingInstantiations.empty() &&
2689 "PendingInstantiations should be empty before it is discarded, "
2690 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002691 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002692 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002693}
Douglas Gregor815215d2009-05-27 05:35:12 +00002694
Anders Carlsson09025312009-08-29 05:16:22 +00002695void
2696Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2697 const CXXConstructorDecl *Tmpl,
2698 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002699
Richard Trieu90ab75b2011-09-09 03:18:59 +00002700 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002701 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002702
Anders Carlsson09025312009-08-29 05:16:22 +00002703 // Instantiate all the initializers.
2704 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002705 InitsEnd = Tmpl->init_end();
2706 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002707 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002708
Chandler Carruth030ef472010-09-03 21:54:20 +00002709 // Only instantiate written initializers, let Sema re-construct implicit
2710 // ones.
2711 if (!Init->isWritten())
2712 continue;
2713
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002714 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002715
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002716 if (Init->isPackExpansion()) {
2717 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002718 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002719 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002720 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2721 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002722 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002723 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002724 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002725 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002726 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002727 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002728 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002729 NumExpansions)) {
2730 AnyErrors = true;
2731 New->setInvalidDecl();
2732 continue;
2733 }
2734 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002735
2736 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002737 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002738 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2739
2740 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002741 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2742 /*CXXDirectInit=*/true);
2743 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002744 AnyErrors = true;
2745 break;
2746 }
2747
2748 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002749 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002750 TemplateArgs,
2751 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002752 New->getDeclName());
2753 if (!BaseTInfo) {
2754 AnyErrors = true;
2755 break;
2756 }
2757
2758 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002759 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002760 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002761 New->getParent(),
2762 SourceLocation());
2763 if (NewInit.isInvalid()) {
2764 AnyErrors = true;
2765 break;
2766 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002767
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002768 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002769 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002770
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002771 continue;
2772 }
2773
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002774 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002775 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2776 /*CXXDirectInit=*/true);
2777 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002778 AnyErrors = true;
2779 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002780 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002781
Anders Carlsson09025312009-08-29 05:16:22 +00002782 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002783 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2784 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2785 TemplateArgs,
2786 Init->getSourceLocation(),
2787 New->getDeclName());
2788 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002789 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002790 New->setInvalidDecl();
2791 continue;
2792 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002793
Douglas Gregor76852c22011-11-01 01:16:03 +00002794 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002795 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002796 New->getParent(), EllipsisLoc);
2797 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002798 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002799 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002800 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002801 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002802 Init->getMemberLocation(),
2803 Init->getMember(),
2804 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002805 if (!Member) {
2806 AnyErrors = true;
2807 New->setInvalidDecl();
2808 continue;
2809 }
Mike Stump1eb44332009-09-09 15:08:12 +00002810
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002811 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002812 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002813 } else if (Init->isIndirectMemberInitializer()) {
2814 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002815 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002816 Init->getMemberLocation(),
2817 Init->getIndirectMember(), TemplateArgs));
2818
Douglas Gregorb7107222011-03-04 19:46:35 +00002819 if (!IndirectMember) {
2820 AnyErrors = true;
2821 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002822 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002823 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002824
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002825 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002826 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002827 }
2828
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002829 if (NewInit.isInvalid()) {
2830 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002831 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002832 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00002833 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002834 }
2835 }
Mike Stump1eb44332009-09-09 15:08:12 +00002836
Anders Carlsson09025312009-08-29 05:16:22 +00002837 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002838 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002839 /*FIXME: ColonLoc */
2840 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002841 NewInits.data(), NewInits.size(),
2842 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002843}
2844
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002845ExprResult Sema::SubstInitializer(Expr *Init,
2846 const MultiLevelTemplateArgumentList &TemplateArgs,
2847 bool CXXDirectInit) {
2848 // Initializers are instantiated like expressions, except that various outer
2849 // layers are stripped.
2850 if (!Init)
2851 return Owned(Init);
2852
2853 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
2854 Init = ExprTemp->getSubExpr();
2855
2856 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
2857 Init = Binder->getSubExpr();
2858
2859 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
2860 Init = ICE->getSubExprAsWritten();
2861
2862 // If this is a direct-initializer, we take apart CXXConstructExprs.
2863 // Everything else is passed through.
2864 CXXConstructExpr *Construct;
2865 if (!CXXDirectInit || !(Construct = dyn_cast<CXXConstructExpr>(Init)) ||
2866 isa<CXXTemporaryObjectExpr>(Construct))
2867 return SubstExpr(Init, TemplateArgs);
2868
2869 ASTOwningVector<Expr*> NewArgs(*this);
2870 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
2871 TemplateArgs, NewArgs))
2872 return ExprError();
2873
2874 // Treat an empty initializer like none.
2875 if (NewArgs.empty())
2876 return Owned((Expr*)0);
2877
2878 // Build a ParenListExpr to represent anything else.
2879 // FIXME: Fake locations!
2880 SourceLocation Loc = PP.getLocForEndOfToken(Init->getLocStart());
2881 return ActOnParenListExpr(Loc, Loc, move_arg(NewArgs));
2882}
2883
John McCall52a575a2009-08-29 08:11:13 +00002884// TODO: this could be templated if the various decl types used the
2885// same method name.
2886static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2887 ClassTemplateDecl *Instance) {
2888 Pattern = Pattern->getCanonicalDecl();
2889
2890 do {
2891 Instance = Instance->getCanonicalDecl();
2892 if (Pattern == Instance) return true;
2893 Instance = Instance->getInstantiatedFromMemberTemplate();
2894 } while (Instance);
2895
2896 return false;
2897}
2898
Douglas Gregor0d696532009-09-28 06:34:35 +00002899static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2900 FunctionTemplateDecl *Instance) {
2901 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002902
Douglas Gregor0d696532009-09-28 06:34:35 +00002903 do {
2904 Instance = Instance->getCanonicalDecl();
2905 if (Pattern == Instance) return true;
2906 Instance = Instance->getInstantiatedFromMemberTemplate();
2907 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002908
Douglas Gregor0d696532009-09-28 06:34:35 +00002909 return false;
2910}
2911
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002912static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002913isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2914 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002915 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002916 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2917 do {
2918 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2919 Instance->getCanonicalDecl());
2920 if (Pattern == Instance)
2921 return true;
2922 Instance = Instance->getInstantiatedFromMember();
2923 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002924
Douglas Gregored9c0f92009-10-29 00:04:11 +00002925 return false;
2926}
2927
John McCall52a575a2009-08-29 08:11:13 +00002928static bool isInstantiationOf(CXXRecordDecl *Pattern,
2929 CXXRecordDecl *Instance) {
2930 Pattern = Pattern->getCanonicalDecl();
2931
2932 do {
2933 Instance = Instance->getCanonicalDecl();
2934 if (Pattern == Instance) return true;
2935 Instance = Instance->getInstantiatedFromMemberClass();
2936 } while (Instance);
2937
2938 return false;
2939}
2940
2941static bool isInstantiationOf(FunctionDecl *Pattern,
2942 FunctionDecl *Instance) {
2943 Pattern = Pattern->getCanonicalDecl();
2944
2945 do {
2946 Instance = Instance->getCanonicalDecl();
2947 if (Pattern == Instance) return true;
2948 Instance = Instance->getInstantiatedFromMemberFunction();
2949 } while (Instance);
2950
2951 return false;
2952}
2953
2954static bool isInstantiationOf(EnumDecl *Pattern,
2955 EnumDecl *Instance) {
2956 Pattern = Pattern->getCanonicalDecl();
2957
2958 do {
2959 Instance = Instance->getCanonicalDecl();
2960 if (Pattern == Instance) return true;
2961 Instance = Instance->getInstantiatedFromMemberEnum();
2962 } while (Instance);
2963
2964 return false;
2965}
2966
John McCalled976492009-12-04 22:46:56 +00002967static bool isInstantiationOf(UsingShadowDecl *Pattern,
2968 UsingShadowDecl *Instance,
2969 ASTContext &C) {
2970 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2971}
2972
2973static bool isInstantiationOf(UsingDecl *Pattern,
2974 UsingDecl *Instance,
2975 ASTContext &C) {
2976 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2977}
2978
John McCall7ba107a2009-11-18 02:36:19 +00002979static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2980 UsingDecl *Instance,
2981 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002982 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002983}
2984
2985static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002986 UsingDecl *Instance,
2987 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002988 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002989}
2990
John McCall52a575a2009-08-29 08:11:13 +00002991static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2992 VarDecl *Instance) {
2993 assert(Instance->isStaticDataMember());
2994
2995 Pattern = Pattern->getCanonicalDecl();
2996
2997 do {
2998 Instance = Instance->getCanonicalDecl();
2999 if (Pattern == Instance) return true;
3000 Instance = Instance->getInstantiatedFromStaticDataMember();
3001 } while (Instance);
3002
3003 return false;
3004}
3005
John McCalled976492009-12-04 22:46:56 +00003006// Other is the prospective instantiation
3007// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003008static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003009 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003010 if (UnresolvedUsingTypenameDecl *UUD
3011 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3012 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3013 return isInstantiationOf(UUD, UD, Ctx);
3014 }
3015 }
3016
3017 if (UnresolvedUsingValueDecl *UUD
3018 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003019 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3020 return isInstantiationOf(UUD, UD, Ctx);
3021 }
3022 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003023
Anders Carlsson0d8df782009-08-29 19:37:28 +00003024 return false;
3025 }
Mike Stump1eb44332009-09-09 15:08:12 +00003026
John McCall52a575a2009-08-29 08:11:13 +00003027 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3028 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003029
John McCall52a575a2009-08-29 08:11:13 +00003030 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3031 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003032
John McCall52a575a2009-08-29 08:11:13 +00003033 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3034 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003035
Douglas Gregor7caa6822009-07-24 20:34:43 +00003036 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003037 if (Var->isStaticDataMember())
3038 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3039
3040 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3041 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003042
Douglas Gregor0d696532009-09-28 06:34:35 +00003043 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3044 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3045
Douglas Gregored9c0f92009-10-29 00:04:11 +00003046 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3047 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3048 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3049 PartialSpec);
3050
Anders Carlssond8b285f2009-09-01 04:26:58 +00003051 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3052 if (!Field->getDeclName()) {
3053 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003054 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003055 cast<FieldDecl>(D);
3056 }
3057 }
Mike Stump1eb44332009-09-09 15:08:12 +00003058
John McCalled976492009-12-04 22:46:56 +00003059 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3060 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3061
3062 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3063 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3064
Douglas Gregor815215d2009-05-27 05:35:12 +00003065 return D->getDeclName() && isa<NamedDecl>(Other) &&
3066 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3067}
3068
3069template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003070static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003071 NamedDecl *D,
3072 ForwardIterator first,
3073 ForwardIterator last) {
3074 for (; first != last; ++first)
3075 if (isInstantiationOf(Ctx, D, *first))
3076 return cast<NamedDecl>(*first);
3077
3078 return 0;
3079}
3080
John McCall02cace72009-08-28 07:59:38 +00003081/// \brief Finds the instantiation of the given declaration context
3082/// within the current instantiation.
3083///
3084/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003085DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003086 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003087 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003088 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003089 return cast_or_null<DeclContext>(ID);
3090 } else return DC;
3091}
3092
Douglas Gregored961e72009-05-27 17:54:46 +00003093/// \brief Find the instantiation of the given declaration within the
3094/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003095///
3096/// This routine is intended to be used when \p D is a declaration
3097/// referenced from within a template, that needs to mapped into the
3098/// corresponding declaration within an instantiation. For example,
3099/// given:
3100///
3101/// \code
3102/// template<typename T>
3103/// struct X {
3104/// enum Kind {
3105/// KnownValue = sizeof(T)
3106/// };
3107///
3108/// bool getKind() const { return KnownValue; }
3109/// };
3110///
3111/// template struct X<int>;
3112/// \endcode
3113///
3114/// In the instantiation of X<int>::getKind(), we need to map the
3115/// EnumConstantDecl for KnownValue (which refers to
3116/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003117/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3118/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003119NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003120 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003121 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003122 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003123 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003124 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3125 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003126 // D is a local of some kind. Look into the map of local
3127 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003128 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3129 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3130 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003131
Chris Lattner57ad3782011-02-17 20:34:02 +00003132 if (Found) {
3133 if (Decl *FD = Found->dyn_cast<Decl *>())
3134 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003135
Chris Lattner57ad3782011-02-17 20:34:02 +00003136 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3137 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3138 }
3139
3140 // If we didn't find the decl, then we must have a label decl that hasn't
3141 // been found yet. Lazily instantiate it and return it now.
3142 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003143
Chris Lattner57ad3782011-02-17 20:34:02 +00003144 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3145 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003146
Chris Lattner57ad3782011-02-17 20:34:02 +00003147 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3148 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003149 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003150
Douglas Gregore95b4092009-09-16 18:34:49 +00003151 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3152 if (!Record->isDependentContext())
3153 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003154
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003155 // Determine whether this record is the "templated" declaration describing
3156 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003157 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003158 if (ClassTemplate)
3159 ClassTemplate = ClassTemplate->getCanonicalDecl();
3160 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3161 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3162 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3163
3164 // Walk the current context to find either the record or an instantiation of
3165 // it.
3166 DeclContext *DC = CurContext;
3167 while (!DC->isFileContext()) {
3168 // If we're performing substitution while we're inside the template
3169 // definition, we'll find our own context. We're done.
3170 if (DC->Equals(Record))
3171 return Record;
3172
3173 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3174 // Check whether we're in the process of instantiating a class template
3175 // specialization of the template we're mapping.
3176 if (ClassTemplateSpecializationDecl *InstSpec
3177 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3178 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3179 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3180 return InstRecord;
3181 }
3182
3183 // Check whether we're in the process of instantiating a member class.
3184 if (isInstantiationOf(Record, InstRecord))
3185 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003186 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003187
3188
3189 // Move to the outer template scope.
3190 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3191 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3192 DC = FD->getLexicalDeclContext();
3193 continue;
3194 }
John McCall52a575a2009-08-29 08:11:13 +00003195 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003196
3197 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003198 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003199
Douglas Gregore95b4092009-09-16 18:34:49 +00003200 // Fall through to deal with other dependent record types (e.g.,
3201 // anonymous unions in class templates).
3202 }
John McCall52a575a2009-08-29 08:11:13 +00003203
Douglas Gregore95b4092009-09-16 18:34:49 +00003204 if (!ParentDC->isDependentContext())
3205 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003206
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003207 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003208 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003209 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003210
Douglas Gregor815215d2009-05-27 05:35:12 +00003211 if (ParentDC != D->getDeclContext()) {
3212 // We performed some kind of instantiation in the parent context,
3213 // so now we need to look into the instantiated parent context to
3214 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003215
John McCall3cb0ebd2010-03-10 03:28:59 +00003216 // If our context used to be dependent, we may need to instantiate
3217 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003218 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003219 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003220 if (!Spec->isDependentContext()) {
3221 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003222 const RecordType *Tag = T->getAs<RecordType>();
3223 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003224 if (Tag->isBeingDefined())
3225 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003226 if (!Tag->isBeingDefined() &&
3227 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3228 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003229
3230 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003231 }
3232 }
3233
Douglas Gregor815215d2009-05-27 05:35:12 +00003234 NamedDecl *Result = 0;
3235 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003236 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003237 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3238 } else {
3239 // Since we don't have a name for the entity we're looking for,
3240 // our only option is to walk through all of the declarations to
3241 // find that name. This will occur in a few cases:
3242 //
3243 // - anonymous struct/union within a template
3244 // - unnamed class/struct/union/enum within a template
3245 //
3246 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003247 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003248 ParentDC->decls_begin(),
3249 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003250 }
Mike Stump1eb44332009-09-09 15:08:12 +00003251
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003252 if (!Result) {
3253 if (isa<UsingShadowDecl>(D)) {
3254 // UsingShadowDecls can instantiate to nothing because of using hiding.
3255 } else if (Diags.hasErrorOccurred()) {
3256 // We've already complained about something, so most likely this
3257 // declaration failed to instantiate. There's no point in complaining
3258 // further, since this is normal in invalid code.
3259 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003260 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003261 // instantiated, and we haven't gotten around to instantiating this
3262 // member yet. This can happen when the code uses forward declarations
3263 // of member classes, and introduces ordering dependencies via
3264 // template instantiation.
3265 Diag(Loc, diag::err_member_not_yet_instantiated)
3266 << D->getDeclName()
3267 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3268 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3269 } else {
3270 // We should have found something, but didn't.
3271 llvm_unreachable("Unable to find instantiation of declaration!");
3272 }
3273 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003274
Douglas Gregor815215d2009-05-27 05:35:12 +00003275 D = Result;
3276 }
3277
Douglas Gregor815215d2009-05-27 05:35:12 +00003278 return D;
3279}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003280
Mike Stump1eb44332009-09-09 15:08:12 +00003281/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003282/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003283void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003284 // Load pending instantiations from the external source.
3285 if (!LocalOnly && ExternalSource) {
3286 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3287 ExternalSource->ReadPendingInstantiations(Pending);
3288 PendingInstantiations.insert(PendingInstantiations.begin(),
3289 Pending.begin(), Pending.end());
3290 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003291
Douglas Gregor60406be2010-01-16 22:29:39 +00003292 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003293 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003294 PendingImplicitInstantiation Inst;
3295
3296 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003297 Inst = PendingInstantiations.front();
3298 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003299 } else {
3300 Inst = PendingLocalImplicitInstantiations.front();
3301 PendingLocalImplicitInstantiations.pop_front();
3302 }
Mike Stump1eb44332009-09-09 15:08:12 +00003303
Douglas Gregor7caa6822009-07-24 20:34:43 +00003304 // Instantiate function definitions
3305 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003306 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3307 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003308 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3309 TSK_ExplicitInstantiationDefinition;
3310 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3311 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003312 continue;
3313 }
Mike Stump1eb44332009-09-09 15:08:12 +00003314
Douglas Gregor7caa6822009-07-24 20:34:43 +00003315 // Instantiate static data member definitions.
3316 VarDecl *Var = cast<VarDecl>(Inst.first);
3317 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003318
Chandler Carruth291b4412010-02-13 10:17:50 +00003319 // Don't try to instantiate declarations if the most recent redeclaration
3320 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003321 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003322 continue;
3323
3324 // Check if the most recent declaration has changed the specialization kind
3325 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003326 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003327 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003328 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003329 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003330 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003331 continue; // No longer need to instantiate this type.
3332 case TSK_ExplicitInstantiationDefinition:
3333 // We only need an instantiation if the pending instantiation *is* the
3334 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003335 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003336 case TSK_ImplicitInstantiation:
3337 break;
3338 }
3339
John McCallf312b1e2010-08-26 23:41:50 +00003340 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3341 "instantiating static data member "
3342 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003343
Chandler Carruth58e390e2010-08-25 08:27:02 +00003344 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3345 TSK_ExplicitInstantiationDefinition;
3346 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3347 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003348 }
3349}
John McCall0c01d182010-03-24 05:22:00 +00003350
3351void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3352 const MultiLevelTemplateArgumentList &TemplateArgs) {
3353 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3354 E = Pattern->ddiag_end(); I != E; ++I) {
3355 DependentDiagnostic *DD = *I;
3356
3357 switch (DD->getKind()) {
3358 case DependentDiagnostic::Access:
3359 HandleDependentAccessCheck(*DD, TemplateArgs);
3360 break;
3361 }
3362 }
3363}