blob: caf134e0259ce6c5ee8551c63811533a61155351 [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
Richard Smith4ca93d92012-03-26 04:08:46 +0000591 EnumDecl *Def = D->getDefinition();
592 if (Def && Def != D) {
593 // If this is an out-of-line definition of an enum member template, check
594 // that the underlying types match in the instantiation of both
595 // declarations.
596 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
597 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
598 QualType DefnUnderlying =
599 SemaRef.SubstType(TI->getType(), TemplateArgs,
600 UnderlyingLoc, DeclarationName());
601 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
602 DefnUnderlying, Enum);
603 }
604 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000605
Douglas Gregor96084f12010-03-01 19:00:07 +0000606 if (D->getDeclContext()->isFunctionOrMethod())
607 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000608
Richard Smithf1c66b42012-03-14 23:13:10 +0000609 // C++11 [temp.inst]p1: The implicit instantiation of a class template
610 // specialization causes the implicit instantiation of the declarations, but
611 // not the definitions of scoped member enumerations.
612 // FIXME: There appears to be no wording for what happens for an enum defined
613 // within a block scope, but we treat that like a member of a class template.
Richard Smith4ca93d92012-03-26 04:08:46 +0000614 if (!Enum->isScoped() && Def)
615 InstantiateEnumDefinition(Enum, Def);
Richard Smithf1c66b42012-03-14 23:13:10 +0000616
617 return Enum;
618}
619
620void TemplateDeclInstantiator::InstantiateEnumDefinition(
621 EnumDecl *Enum, EnumDecl *Pattern) {
622 Enum->startDefinition();
623
Richard Smith1af83c42012-03-23 03:33:32 +0000624 // Update the location to refer to the definition.
625 Enum->setLocation(Pattern->getLocation());
626
Chris Lattner5f9e2722011-07-23 10:55:15 +0000627 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000628
629 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000630 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
631 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000632 EC != ECEnd; ++EC) {
633 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000634 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000635 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000636 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000637 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000638 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000639
John McCallce3ff2b2009-08-25 22:02:44 +0000640 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000641 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000642
643 // Drop the initial value and continue.
644 bool isInvalid = false;
645 if (Value.isInvalid()) {
646 Value = SemaRef.Owned((Expr *)0);
647 isInvalid = true;
648 }
649
Mike Stump1eb44332009-09-09 15:08:12 +0000650 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000651 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
652 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000653 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000654
655 if (isInvalid) {
656 if (EnumConst)
657 EnumConst->setInvalidDecl();
658 Enum->setInvalidDecl();
659 }
660
661 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000662 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
663
John McCall3b85ecf2010-01-23 22:37:59 +0000664 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000665 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000666 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000668
Richard Smithf1c66b42012-03-14 23:13:10 +0000669 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
670 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000671 // If the enumeration is within a function or method, record the enum
672 // constant as a local.
673 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
674 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000675 }
676 }
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Richard Smithf1c66b42012-03-14 23:13:10 +0000678 // FIXME: Fixup LBraceLoc
679 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
680 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000681 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000682 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000683}
684
Douglas Gregor6477b692009-03-25 15:04:13 +0000685Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000686 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000687}
688
John McCalle29ba202009-08-20 01:44:21 +0000689Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000690 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
691
Douglas Gregor550d9b22009-10-31 17:21:17 +0000692 // Create a local instantiation scope for this class template, which
693 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000694 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000695 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000696 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000697 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000698 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000699
700 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000701
702 // Instantiate the qualifier. We have to do this first in case
703 // we're a friend declaration, because if we are then we need to put
704 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000705 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
706 if (QualifierLoc) {
707 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
708 TemplateArgs);
709 if (!QualifierLoc)
710 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000711 }
712
713 CXXRecordDecl *PrevDecl = 0;
714 ClassTemplateDecl *PrevClassTemplate = 0;
715
Douglas Gregoref96ee02012-01-14 16:38:05 +0000716 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000717 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
718 if (Found.first != Found.second) {
719 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
720 if (PrevClassTemplate)
721 PrevDecl = PrevClassTemplate->getTemplatedDecl();
722 }
723 }
724
John McCall93ba8572010-03-25 06:39:04 +0000725 // If this isn't a friend, then it's a member template, in which
726 // case we just want to build the instantiation in the
727 // specialization. If it is a friend, we want to build it in
728 // the appropriate context.
729 DeclContext *DC = Owner;
730 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000731 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000732 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000733 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000734 DC = SemaRef.computeDeclContext(SS);
735 if (!DC) return 0;
736 } else {
737 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
738 Pattern->getDeclContext(),
739 TemplateArgs);
740 }
741
742 // Look for a previous declaration of the template in the owning
743 // context.
744 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
745 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
746 SemaRef.LookupQualifiedName(R, DC);
747
748 if (R.isSingleResult()) {
749 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
750 if (PrevClassTemplate)
751 PrevDecl = PrevClassTemplate->getTemplatedDecl();
752 }
753
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000754 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000755 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000756 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000757 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000758 return 0;
759 }
760
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000761 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000762 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000763 bool Complain = true;
764
765 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
766 // template for struct std::tr1::__detail::_Map_base, where the
767 // template parameters of the friend declaration don't match the
768 // template parameters of the original declaration. In this one
769 // case, we don't complain about the ill-formed friend
770 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000771 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000772 Pattern->getIdentifier()->isStr("_Map_base") &&
773 DC->isNamespace() &&
774 cast<NamespaceDecl>(DC)->getIdentifier() &&
775 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
776 DeclContext *DCParent = DC->getParent();
777 if (DCParent->isNamespace() &&
778 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
779 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
780 DeclContext *DCParent2 = DCParent->getParent();
781 if (DCParent2->isNamespace() &&
782 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
783 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
784 DCParent2->getParent()->isTranslationUnit())
785 Complain = false;
786 }
787 }
788
John McCall93ba8572010-03-25 06:39:04 +0000789 TemplateParameterList *PrevParams
790 = PrevClassTemplate->getTemplateParameters();
791
792 // Make sure the parameter lists match.
793 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000794 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000795 Sema::TPL_TemplateMatch)) {
796 if (Complain)
797 return 0;
798
799 AdoptedPreviousTemplateParams = true;
800 InstParams = PrevParams;
801 }
John McCall93ba8572010-03-25 06:39:04 +0000802
803 // Do some additional validation, then merge default arguments
804 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000805 if (!AdoptedPreviousTemplateParams &&
806 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000807 Sema::TPC_ClassTemplate))
808 return 0;
809 }
810 }
811
John McCalle29ba202009-08-20 01:44:21 +0000812 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000813 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000814 Pattern->getLocStart(), Pattern->getLocation(),
815 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000816 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000817
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000818 if (QualifierLoc)
819 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000820
John McCalle29ba202009-08-20 01:44:21 +0000821 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000822 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
823 D->getIdentifier(), InstParams, RecordInst,
824 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000825 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000826
John McCall93ba8572010-03-25 06:39:04 +0000827 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000828 if (PrevClassTemplate)
829 Inst->setAccess(PrevClassTemplate->getAccess());
830 else
831 Inst->setAccess(D->getAccess());
832
John McCall93ba8572010-03-25 06:39:04 +0000833 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
834 // TODO: do we want to track the instantiation progeny of this
835 // friend target decl?
836 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000837 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000838 if (!PrevClassTemplate)
839 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000840 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000841
Douglas Gregorf0510d42009-10-12 23:11:44 +0000842 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000843 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000844 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000845
Douglas Gregor259571e2009-10-30 22:42:42 +0000846 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000847 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000848 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000849 Inst->setLexicalDeclContext(Owner);
850 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000851 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000852 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000853
Abramo Bagnara4c515482011-11-26 13:33:46 +0000854 if (D->isOutOfLine()) {
855 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
856 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
857 }
858
John McCalle29ba202009-08-20 01:44:21 +0000859 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000860
861 if (!PrevClassTemplate) {
862 // Queue up any out-of-line partial specializations of this member
863 // class template; the client will force their instantiation once
864 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000865 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000866 D->getPartialSpecializations(PartialSpecs);
867 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
868 if (PartialSpecs[I]->isOutOfLine())
869 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
870 }
871
John McCalle29ba202009-08-20 01:44:21 +0000872 return Inst;
873}
874
Douglas Gregord60e1052009-08-27 16:57:43 +0000875Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000876TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
877 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000878 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000879
Douglas Gregored9c0f92009-10-29 00:04:11 +0000880 // Lookup the already-instantiated declaration in the instantiation
881 // of the class template and return that.
882 DeclContext::lookup_result Found
883 = Owner->lookup(ClassTemplate->getDeclName());
884 if (Found.first == Found.second)
885 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000886
Douglas Gregored9c0f92009-10-29 00:04:11 +0000887 ClassTemplateDecl *InstClassTemplate
888 = dyn_cast<ClassTemplateDecl>(*Found.first);
889 if (!InstClassTemplate)
890 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000891
Douglas Gregord65587f2010-11-10 19:44:59 +0000892 if (ClassTemplatePartialSpecializationDecl *Result
893 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
894 return Result;
895
896 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000897}
898
899Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000900TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000901 // Create a local instantiation scope for this function template, which
902 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000903 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000904 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000905 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000906
Douglas Gregord60e1052009-08-27 16:57:43 +0000907 TemplateParameterList *TempParams = D->getTemplateParameters();
908 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000909 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000910 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000911
Douglas Gregora735b202009-10-13 14:39:41 +0000912 FunctionDecl *Instantiated = 0;
913 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000914 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000915 InstParams));
916 else
917 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000918 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000919 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000920
Douglas Gregora735b202009-10-13 14:39:41 +0000921 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000922 return 0;
923
John McCall46460a62010-01-20 21:53:11 +0000924 Instantiated->setAccess(D->getAccess());
925
Mike Stump1eb44332009-09-09 15:08:12 +0000926 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000927 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000928 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000929 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000930 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000931 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000932 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000933
John McCallb1a56e72010-03-26 23:10:15 +0000934 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
935
John McCalle976ffe2009-12-14 23:19:40 +0000936 // Link the instantiation back to the pattern *unless* this is a
937 // non-definition friend declaration.
938 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000939 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000940 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000941
John McCallb1a56e72010-03-26 23:10:15 +0000942 // Make declarations visible in the appropriate context.
943 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000944 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000945
Douglas Gregord60e1052009-08-27 16:57:43 +0000946 return InstTemplate;
947}
948
Douglas Gregord475b8d2009-03-25 21:17:03 +0000949Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
950 CXXRecordDecl *PrevDecl = 0;
951 if (D->isInjectedClassName())
952 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000953 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000954 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000955 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000956 TemplateArgs);
957 if (!Prev) return 0;
958 PrevDecl = cast<CXXRecordDecl>(Prev);
959 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000960
961 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000962 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000963 D->getLocStart(), D->getLocation(),
964 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000965
966 // Substitute the nested name specifier, if any.
967 if (SubstQualifier(D, Record))
968 return 0;
969
Douglas Gregord475b8d2009-03-25 21:17:03 +0000970 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000971 // FIXME: Check against AS_none is an ugly hack to work around the issue that
972 // the tag decls introduced by friend class declarations don't have an access
973 // specifier. Remove once this area of the code gets sorted out.
974 if (D->getAccess() != AS_none)
975 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000976 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000977 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000978
John McCall02cace72009-08-28 07:59:38 +0000979 // If the original function was part of a friend declaration,
980 // inherit its namespace state.
981 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
982 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
983
Douglas Gregor9901c572010-05-21 00:31:19 +0000984 // Make sure that anonymous structs and unions are recorded.
985 if (D->isAnonymousStructOrUnion()) {
986 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000987 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000988 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
989 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000990
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000991 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000992 return Record;
993}
994
John McCall02cace72009-08-28 07:59:38 +0000995/// Normal class members are of more specific types and therefore
996/// don't make it here. This function serves two purposes:
997/// 1) instantiating function templates
998/// 2) substituting friend declarations
999/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001000Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001001 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001002 // Check whether there is already a function template specialization for
1003 // this declaration.
1004 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1005 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001006 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001007 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001008 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001010 FunctionDecl *SpecFunc
1011 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1012 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Douglas Gregor127102b2009-06-29 20:59:39 +00001014 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001015 if (SpecFunc)
1016 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001017 }
Mike Stump1eb44332009-09-09 15:08:12 +00001018
John McCallb0cb0222010-03-27 05:57:59 +00001019 bool isFriend;
1020 if (FunctionTemplate)
1021 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1022 else
1023 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1024
Douglas Gregor79c22782010-01-16 20:21:20 +00001025 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001026 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001027 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001028 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001029 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Chris Lattner5f9e2722011-07-23 10:55:15 +00001031 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001032 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001033 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001034 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001035 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001037 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1038 if (QualifierLoc) {
1039 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1040 TemplateArgs);
1041 if (!QualifierLoc)
1042 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001043 }
1044
John McCall68b6b872010-02-06 01:50:47 +00001045 // If we're instantiating a local function declaration, put the result
1046 // in the owner; otherwise we need to find the instantiated context.
1047 DeclContext *DC;
1048 if (D->getDeclContext()->isFunctionOrMethod())
1049 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001050 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001051 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001052 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001053 DC = SemaRef.computeDeclContext(SS);
1054 if (!DC) return 0;
1055 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001056 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001057 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001058 }
John McCall68b6b872010-02-06 01:50:47 +00001059
John McCall02cace72009-08-28 07:59:38 +00001060 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001061 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1062 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001063 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001064 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001065 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001066
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001067 if (QualifierLoc)
1068 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001069
John McCallb1a56e72010-03-26 23:10:15 +00001070 DeclContext *LexicalDC = Owner;
1071 if (!isFriend && D->isOutOfLine()) {
1072 assert(D->getDeclContext()->isFileContext());
1073 LexicalDC = D->getDeclContext();
1074 }
1075
1076 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Douglas Gregore53060f2009-06-25 22:08:12 +00001078 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001079 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001080 // Adopt the already-instantiated parameters into our own context.
1081 for (unsigned P = 0; P < Params.size(); ++P)
1082 if (Params[P])
1083 Params[P]->setOwningFunction(Function);
1084 } else {
1085 // Since we were instantiated via a typedef of a function type, create
1086 // new parameters.
1087 const FunctionProtoType *Proto
1088 = Function->getType()->getAs<FunctionProtoType>();
1089 assert(Proto && "No function prototype in template instantiation?");
1090 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1091 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1092 ParmVarDecl *Param
1093 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1094 *AI);
1095 Param->setScopeInfo(0, Params.size());
1096 Params.push_back(Param);
1097 }
1098 }
David Blaikie4278c652011-09-21 18:16:56 +00001099 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001100
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001101 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001102 if (TemplateParams) {
1103 // Our resulting instantiation is actually a function template, since we
1104 // are substituting only the outer template parameters. For example, given
1105 //
1106 // template<typename T>
1107 // struct X {
1108 // template<typename U> friend void f(T, U);
1109 // };
1110 //
1111 // X<int> x;
1112 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001113 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001114 // which means substituting int for T, but leaving "f" as a friend function
1115 // template.
1116 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001117 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001118 Function->getLocation(),
1119 Function->getDeclName(),
1120 TemplateParams, Function);
1121 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001122
1123 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001124
1125 if (isFriend && D->isThisDeclarationADefinition()) {
1126 // TODO: should we remember this connection regardless of whether
1127 // the friend declaration provided a body?
1128 FunctionTemplate->setInstantiatedFromMemberTemplate(
1129 D->getDescribedFunctionTemplate());
1130 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001131 } else if (FunctionTemplate) {
1132 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001133 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001134 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001135 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001136 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001137 Innermost.first,
1138 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001139 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001140 } else if (isFriend) {
1141 // Note, we need this connection even if the friend doesn't have a body.
1142 // Its body may exist but not have been attached yet due to deferred
1143 // parsing.
1144 // FIXME: It might be cleaner to set this when attaching the body to the
1145 // friend function declaration, however that would require finding all the
1146 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001147 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001148 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001149
Douglas Gregore53060f2009-06-25 22:08:12 +00001150 if (InitFunctionInstantiation(Function, D))
1151 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001152
John McCallaf2094e2010-04-08 09:05:18 +00001153 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001154
John McCall68263142009-11-18 22:49:29 +00001155 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1156 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1157
John McCallaf2094e2010-04-08 09:05:18 +00001158 if (DependentFunctionTemplateSpecializationInfo *Info
1159 = D->getDependentSpecializationInfo()) {
1160 assert(isFriend && "non-friend has dependent specialization info?");
1161
1162 // This needs to be set now for future sanity.
1163 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1164
1165 // Instantiate the explicit template arguments.
1166 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1167 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001168 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1169 ExplicitArgs, TemplateArgs))
1170 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001171
1172 // Map the candidate templates to their instantiations.
1173 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1174 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1175 Info->getTemplate(I),
1176 TemplateArgs);
1177 if (!Temp) return 0;
1178
1179 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1180 }
1181
1182 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1183 &ExplicitArgs,
1184 Previous))
1185 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001186
John McCallaf2094e2010-04-08 09:05:18 +00001187 isExplicitSpecialization = true;
1188
1189 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001190 // Look only into the namespace where the friend would be declared to
1191 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001192 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001193 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001194
Douglas Gregora735b202009-10-13 14:39:41 +00001195 // In C++, the previous declaration we find might be a tag type
1196 // (class or enum). In this case, the new declaration will hide the
1197 // tag type. Note that this does does not apply if we're declaring a
1198 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001199 if (Previous.isSingleTagDecl())
1200 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001201 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001202
John McCall9f54ad42009-12-10 09:41:52 +00001203 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001204 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001205
John McCall76d32642010-04-24 01:30:58 +00001206 NamedDecl *PrincipalDecl = (TemplateParams
1207 ? cast<NamedDecl>(FunctionTemplate)
1208 : Function);
1209
Douglas Gregora735b202009-10-13 14:39:41 +00001210 // If the original function was part of a friend declaration,
1211 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001212 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001213 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001214 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001215 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001216 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001217 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001218
1219 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001220 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001221
Gabor Greif77535df2010-08-30 22:25:56 +00001222 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001223
Richard Smith53e53512011-10-19 00:54:10 +00001224 // C++98 [temp.friend]p5: When a function is defined in a friend function
1225 // declaration in a class template, the function is defined at each
1226 // instantiation of the class template. The function is defined even if it
1227 // is never used.
1228 // C++11 [temp.friend]p4: When a function is defined in a friend function
1229 // declaration in a class template, the function is instantiated when the
1230 // function is odr-used.
1231 //
1232 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1233 // redefinition, but don't instantiate the function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001234 if ((!SemaRef.getLangOpts().CPlusPlus0x ||
Richard Smith53e53512011-10-19 00:54:10 +00001235 SemaRef.Diags.getDiagnosticLevel(
1236 diag::warn_cxx98_compat_friend_redefinition,
1237 Function->getLocation())
1238 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001239 D->isThisDeclarationADefinition()) {
1240 // Check for a function body.
1241 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001242 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001243 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001244 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001245 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001246 diag::warn_cxx98_compat_friend_redefinition :
1247 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001248 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001249 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001250 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001251 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001252 // Check for redefinitions due to other instantiations of this or
1253 // a similar friend function.
1254 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1255 REnd = Function->redecls_end();
1256 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001257 if (*R == Function)
1258 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001259 switch (R->getFriendObjectKind()) {
1260 case Decl::FOK_None:
David Blaikie4e4d0842012-03-11 07:00:24 +00001261 if (!SemaRef.getLangOpts().CPlusPlus0x &&
Richard Smith53e53512011-10-19 00:54:10 +00001262 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001263 if (MemberSpecializationInfo *MSInfo
1264 = Function->getMemberSpecializationInfo()) {
1265 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1266 SourceLocation Loc = R->getLocation(); // FIXME
1267 MSInfo->setPointOfInstantiation(Loc);
1268 SemaRef.PendingLocalImplicitInstantiations.push_back(
1269 std::make_pair(Function, Loc));
1270 queuedInstantiation = true;
1271 }
1272 }
1273 }
1274 break;
1275 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001276 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001277 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001278 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001279 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001280 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001281 diag::warn_cxx98_compat_friend_redefinition :
1282 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001283 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001284 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001285 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001286 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001287 break;
1288 }
1289 }
1290 }
1291 }
Douglas Gregora735b202009-10-13 14:39:41 +00001292 }
1293
John McCall76d32642010-04-24 01:30:58 +00001294 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1295 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1296 PrincipalDecl->setNonMemberOperator();
1297
Sean Hunteb88ae52011-05-23 21:07:59 +00001298 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001299 return Function;
1300}
1301
Douglas Gregord60e1052009-08-27 16:57:43 +00001302Decl *
1303TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001304 TemplateParameterList *TemplateParams,
1305 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001306 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1307 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001308 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001309 // We are creating a function template specialization from a function
1310 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001311 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001312 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001313 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001315 FunctionDecl *SpecFunc
1316 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1317 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001318
Douglas Gregor6b906862009-08-21 00:16:32 +00001319 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001320 if (SpecFunc)
1321 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001322 }
1323
John McCallb0cb0222010-03-27 05:57:59 +00001324 bool isFriend;
1325 if (FunctionTemplate)
1326 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1327 else
1328 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1329
Douglas Gregor79c22782010-01-16 20:21:20 +00001330 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001331 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001332 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001333 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001334
John McCall4eab39f2010-10-19 02:26:41 +00001335 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001336 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001337 unsigned NumTempParamLists = 0;
1338 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1339 TempParamLists.set_size(NumTempParamLists);
1340 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1341 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1342 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1343 if (!InstParams)
1344 return NULL;
1345 TempParamLists[I] = InstParams;
1346 }
1347 }
1348
Chris Lattner5f9e2722011-07-23 10:55:15 +00001349 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001350 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001351 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001352 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001353 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001354
Abramo Bagnara723df242010-12-14 22:11:44 +00001355 // \brief If the type of this function, after ignoring parentheses,
1356 // is not *directly* a function type, then we're instantiating a function
1357 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001358 //
1359 // typedef int functype(int, int);
1360 // functype func;
1361 //
1362 // In this case, we'll just go instantiate the ParmVarDecls that we
1363 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001364 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001365 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001366 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001367 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1368 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001369 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001370 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001371 }
1372
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001373 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1374 if (QualifierLoc) {
1375 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001376 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001377 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001378 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001379 }
1380
1381 DeclContext *DC = Owner;
1382 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001383 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001384 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001385 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001386 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001387
1388 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1389 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001390 } else {
1391 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1392 D->getDeclContext(),
1393 TemplateArgs);
1394 }
1395 if (!DC) return 0;
1396 }
1397
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001398 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001399 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001400 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001401
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001402 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001403 DeclarationNameInfo NameInfo
1404 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001405 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001406 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001407 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001408 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001409 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001410 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001411 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001412 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001413 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001414 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001415 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001416 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001417 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001418 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001419 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001420 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001421 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001422 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001423 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001424 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001425 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001426 D->isStatic(),
1427 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001428 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001429 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001430 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001431
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001432 if (QualifierLoc)
1433 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001434
Douglas Gregord60e1052009-08-27 16:57:43 +00001435 if (TemplateParams) {
1436 // Our resulting instantiation is actually a function template, since we
1437 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001438 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001439 // template<typename T>
1440 // struct X {
1441 // template<typename U> void f(T, U);
1442 // };
1443 //
1444 // X<int> x;
1445 //
1446 // We are instantiating the member template "f" within X<int>, which means
1447 // substituting int for T, but leaving "f" as a member function template.
1448 // Build the function template itself.
1449 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1450 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001451 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001452 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001453 if (isFriend) {
1454 FunctionTemplate->setLexicalDeclContext(Owner);
1455 FunctionTemplate->setObjectOfFriendDecl(true);
1456 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001457 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001458 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001459 } else if (FunctionTemplate) {
1460 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001461 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001462 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001463 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001464 TemplateArgumentList::CreateCopy(SemaRef.Context,
1465 Innermost.first,
1466 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001467 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001468 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001469 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001470 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001471 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001472
Mike Stump1eb44332009-09-09 15:08:12 +00001473 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001474 // out-of-line, the instantiation will have the same lexical
1475 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001476 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001477 if (NumTempParamLists)
1478 Method->setTemplateParameterListsInfo(SemaRef.Context,
1479 NumTempParamLists,
1480 TempParamLists.data());
1481
John McCallb0cb0222010-03-27 05:57:59 +00001482 Method->setLexicalDeclContext(Owner);
1483 Method->setObjectOfFriendDecl(true);
1484 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001485 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001486
Douglas Gregor5545e162009-03-24 00:38:23 +00001487 // Attach the parameters
1488 for (unsigned P = 0; P < Params.size(); ++P)
1489 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001490 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001491
1492 if (InitMethodInstantiation(Method, D))
1493 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001494
Abramo Bagnara25777432010-08-11 22:01:17 +00001495 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1496 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001497
John McCallb0cb0222010-03-27 05:57:59 +00001498 if (!FunctionTemplate || TemplateParams || isFriend) {
1499 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001500
Douglas Gregordec06662009-08-21 18:42:58 +00001501 // In C++, the previous declaration we find might be a tag type
1502 // (class or enum). In this case, the new declaration will hide the
1503 // tag type. Note that this does does not apply if we're declaring a
1504 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001505 if (Previous.isSingleTagDecl())
1506 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001507 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001508
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001509 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001510 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001511
Douglas Gregor4ba31362009-12-01 17:24:26 +00001512 if (D->isPure())
1513 SemaRef.CheckPureMethod(Method, SourceRange());
1514
John McCall46460a62010-01-20 21:53:11 +00001515 Method->setAccess(D->getAccess());
1516
Anders Carlsson9eefa222011-01-20 06:52:44 +00001517 SemaRef.CheckOverrideControl(Method);
1518
Eli Friedman3bc45152011-11-15 22:39:08 +00001519 // If a function is defined as defaulted or deleted, mark it as such now.
1520 if (D->isDefaulted())
1521 Method->setDefaulted();
1522 if (D->isDeletedAsWritten())
1523 Method->setDeletedAsWritten();
1524
John McCallb0cb0222010-03-27 05:57:59 +00001525 if (FunctionTemplate) {
1526 // If there's a function template, let our caller handle it.
1527 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1528 // Don't hide a (potentially) valid declaration with an invalid one.
1529 } else {
1530 NamedDecl *DeclToAdd = (TemplateParams
1531 ? cast<NamedDecl>(FunctionTemplate)
1532 : Method);
1533 if (isFriend)
1534 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001535 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001536 Owner->addDecl(DeclToAdd);
1537 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001538
1539 if (D->isExplicitlyDefaulted()) {
1540 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1541 } else {
1542 assert(!D->isDefaulted() &&
1543 "should not implicitly default uninstantiated function");
1544 }
1545
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001546 return Method;
1547}
1548
Douglas Gregor615c5d42009-03-24 16:43:20 +00001549Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001550 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001551}
1552
Douglas Gregor03b2b072009-03-24 00:15:49 +00001553Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001554 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001555}
1556
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001557Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001558 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001559}
1560
Douglas Gregor6477b692009-03-25 15:04:13 +00001561ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001562 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001563 llvm::Optional<unsigned>(),
1564 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001565}
1566
John McCalle29ba202009-08-20 01:44:21 +00001567Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1568 TemplateTypeParmDecl *D) {
1569 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001570 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001571
John McCalle29ba202009-08-20 01:44:21 +00001572 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001573 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1574 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001575 D->getDepth() - TemplateArgs.getNumLevels(),
1576 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001577 D->wasDeclaredWithTypename(),
1578 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001579 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001580
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001581 if (D->hasDefaultArgument())
1582 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1583
1584 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001585 // scope.
1586 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001587
John McCalle29ba202009-08-20 01:44:21 +00001588 return Inst;
1589}
1590
Douglas Gregor33642df2009-10-23 23:25:44 +00001591Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1592 NonTypeTemplateParmDecl *D) {
1593 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001594 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001595 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1596 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001597 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001598 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001599 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001600 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001601
1602 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001603 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001604 // expansion of types. Substitute into each of the expanded types.
1605 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1606 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1607 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1608 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1609 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001610 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001611 D->getDeclName());
1612 if (!NewDI)
1613 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001614
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001615 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1616 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1617 D->getLocation());
1618 if (NewT.isNull())
1619 return 0;
1620 ExpandedParameterPackTypes.push_back(NewT);
1621 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001622
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001623 IsExpandedParameterPack = true;
1624 DI = D->getTypeSourceInfo();
1625 T = DI->getType();
1626 } else if (isa<PackExpansionTypeLoc>(TL)) {
1627 // The non-type template parameter pack's type is a pack expansion of types.
1628 // Determine whether we need to expand this parameter pack into separate
1629 // types.
1630 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1631 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001632 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001633 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001634
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001635 // Determine whether the set of unexpanded parameter packs can and should
1636 // be expanded.
1637 bool Expand = true;
1638 bool RetainExpansion = false;
1639 llvm::Optional<unsigned> OrigNumExpansions
1640 = Expansion.getTypePtr()->getNumExpansions();
1641 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1642 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1643 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001644 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001645 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001646 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001647 NumExpansions))
1648 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001649
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001650 if (Expand) {
1651 for (unsigned I = 0; I != *NumExpansions; ++I) {
1652 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1653 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001654 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001655 D->getDeclName());
1656 if (!NewDI)
1657 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001658
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001659 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1660 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1661 NewDI->getType(),
1662 D->getLocation());
1663 if (NewT.isNull())
1664 return 0;
1665 ExpandedParameterPackTypes.push_back(NewT);
1666 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001667
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001668 // Note that we have an expanded parameter pack. The "type" of this
1669 // expanded parameter pack is the original expansion type, but callers
1670 // will end up using the expanded parameter pack types for type-checking.
1671 IsExpandedParameterPack = true;
1672 DI = D->getTypeSourceInfo();
1673 T = DI->getType();
1674 } else {
1675 // We cannot fully expand the pack expansion now, so substitute into the
1676 // pattern and create a new pack expansion type.
1677 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1678 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001679 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001680 D->getDeclName());
1681 if (!NewPattern)
1682 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001683
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001684 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1685 NumExpansions);
1686 if (!DI)
1687 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001688
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001689 T = DI->getType();
1690 }
1691 } else {
1692 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001693 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001694 D->getLocation(), D->getDeclName());
1695 if (!DI)
1696 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001697
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001698 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001699 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001700 D->getLocation());
1701 if (T.isNull()) {
1702 T = SemaRef.Context.IntTy;
1703 Invalid = true;
1704 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001705 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001706
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001707 NonTypeTemplateParmDecl *Param;
1708 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001709 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001710 D->getInnerLocStart(),
1711 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001712 D->getDepth() - TemplateArgs.getNumLevels(),
1713 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001714 D->getIdentifier(), T,
1715 DI,
1716 ExpandedParameterPackTypes.data(),
1717 ExpandedParameterPackTypes.size(),
1718 ExpandedParameterPackTypesAsWritten.data());
1719 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001720 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001721 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001722 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001723 D->getDepth() - TemplateArgs.getNumLevels(),
1724 D->getPosition(),
1725 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001726 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001727
Douglas Gregor9a299e02011-03-04 17:52:15 +00001728 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001729 if (Invalid)
1730 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001731
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001732 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001733
1734 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001735 // scope.
1736 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001737 return Param;
1738}
1739
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001740Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001741TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1742 TemplateTemplateParmDecl *D) {
1743 // Instantiate the template parameter list of the template template parameter.
1744 TemplateParameterList *TempParams = D->getTemplateParameters();
1745 TemplateParameterList *InstParams;
1746 {
1747 // Perform the actual substitution of template parameters within a new,
1748 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001749 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001750 InstParams = SubstTemplateParams(TempParams);
1751 if (!InstParams)
1752 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001753 }
1754
Douglas Gregor9106ef72009-11-11 16:58:32 +00001755 // Build the template template parameter.
1756 TemplateTemplateParmDecl *Param
1757 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001758 D->getDepth() - TemplateArgs.getNumLevels(),
1759 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001760 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001761 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001762 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001763
1764 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001765 // scope.
1766 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001767
Douglas Gregor9106ef72009-11-11 16:58:32 +00001768 return Param;
1769}
1770
Douglas Gregor48c32a72009-11-17 06:07:40 +00001771Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001772 // Using directives are never dependent (and never contain any types or
1773 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001774
Douglas Gregor48c32a72009-11-17 06:07:40 +00001775 UsingDirectiveDecl *Inst
1776 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001777 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001778 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001779 D->getIdentLocation(),
1780 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001781 D->getCommonAncestor());
1782 Owner->addDecl(Inst);
1783 return Inst;
1784}
1785
John McCalled976492009-12-04 22:46:56 +00001786Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001787
1788 // The nested name specifier may be dependent, for example
1789 // template <typename T> struct t {
1790 // struct s1 { T f1(); };
1791 // struct s2 : s1 { using s1::f1; };
1792 // };
1793 // template struct t<int>;
1794 // Here, in using s1::f1, s1 refers to t<T>::s1;
1795 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001796 NestedNameSpecifierLoc QualifierLoc
1797 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1798 TemplateArgs);
1799 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001800 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001801
1802 // The name info is non-dependent, so no transformation
1803 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001804 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001805
John McCall9f54ad42009-12-10 09:41:52 +00001806 // We only need to do redeclaration lookups if we're in a class
1807 // scope (in fact, it's not really even possible in non-class
1808 // scopes).
1809 bool CheckRedeclaration = Owner->isRecord();
1810
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001811 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1812 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001813
John McCalled976492009-12-04 22:46:56 +00001814 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001815 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001816 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001817 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001818 D->isTypeName());
1819
Douglas Gregor5149f372011-02-25 15:54:31 +00001820 CXXScopeSpec SS;
1821 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001822 if (CheckRedeclaration) {
1823 Prev.setHideTags(false);
1824 SemaRef.LookupQualifiedName(Prev, Owner);
1825
1826 // Check for invalid redeclarations.
1827 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1828 D->isTypeName(), SS,
1829 D->getLocation(), Prev))
1830 NewUD->setInvalidDecl();
1831
1832 }
1833
1834 if (!NewUD->isInvalidDecl() &&
1835 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001836 D->getLocation()))
1837 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001838
John McCalled976492009-12-04 22:46:56 +00001839 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1840 NewUD->setAccess(D->getAccess());
1841 Owner->addDecl(NewUD);
1842
John McCall9f54ad42009-12-10 09:41:52 +00001843 // Don't process the shadow decls for an invalid decl.
1844 if (NewUD->isInvalidDecl())
1845 return NewUD;
1846
John McCall323c3102009-12-22 22:26:37 +00001847 bool isFunctionScope = Owner->isFunctionOrMethod();
1848
John McCall9f54ad42009-12-10 09:41:52 +00001849 // Process the shadow decls.
1850 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1851 I != E; ++I) {
1852 UsingShadowDecl *Shadow = *I;
1853 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001854 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1855 Shadow->getLocation(),
1856 Shadow->getTargetDecl(),
1857 TemplateArgs));
1858 if (!InstTarget)
1859 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001860
1861 if (CheckRedeclaration &&
1862 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1863 continue;
1864
1865 UsingShadowDecl *InstShadow
1866 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1867 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001868
1869 if (isFunctionScope)
1870 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001871 }
John McCalled976492009-12-04 22:46:56 +00001872
1873 return NewUD;
1874}
1875
1876Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001877 // Ignore these; we handle them in bulk when processing the UsingDecl.
1878 return 0;
John McCalled976492009-12-04 22:46:56 +00001879}
1880
John McCall7ba107a2009-11-18 02:36:19 +00001881Decl * TemplateDeclInstantiator
1882 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001883 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001884 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001885 TemplateArgs);
1886 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001887 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001888
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001889 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001890 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001891
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001892 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1893 // Hence, no tranformation is required for it.
1894 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001895 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001896 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001897 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001898 /*instantiation*/ true,
1899 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001900 if (UD)
John McCalled976492009-12-04 22:46:56 +00001901 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1902
John McCall7ba107a2009-11-18 02:36:19 +00001903 return UD;
1904}
1905
1906Decl * TemplateDeclInstantiator
1907 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001908 NestedNameSpecifierLoc QualifierLoc
1909 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1910 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001911 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001912
John McCall7ba107a2009-11-18 02:36:19 +00001913 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001914 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001915
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001916 DeclarationNameInfo NameInfo
1917 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1918
John McCall7ba107a2009-11-18 02:36:19 +00001919 NamedDecl *UD =
1920 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001921 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001922 /*instantiation*/ true,
1923 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001924 if (UD)
John McCalled976492009-12-04 22:46:56 +00001925 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1926
Anders Carlsson0d8df782009-08-29 19:37:28 +00001927 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001928}
1929
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001930
1931Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1932 ClassScopeFunctionSpecializationDecl *Decl) {
1933 CXXMethodDecl *OldFD = Decl->getSpecialization();
1934 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1935
1936 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1937 Sema::ForRedeclaration);
1938
1939 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1940 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1941 NewFD->setInvalidDecl();
1942 return NewFD;
1943 }
1944
1945 // Associate the specialization with the pattern.
1946 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1947 assert(Specialization && "Class scope Specialization is null");
1948 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1949
1950 return NewFD;
1951}
1952
John McCallce3ff2b2009-08-25 22:02:44 +00001953Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001954 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001955 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001956 if (D->isInvalidDecl())
1957 return 0;
1958
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001959 return Instantiator.Visit(D);
1960}
1961
John McCalle29ba202009-08-20 01:44:21 +00001962/// \brief Instantiates a nested template parameter list in the current
1963/// instantiation context.
1964///
1965/// \param L The parameter list to instantiate
1966///
1967/// \returns NULL if there was an error
1968TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001969TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001970 // Get errors for all the parameters before bailing out.
1971 bool Invalid = false;
1972
1973 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001974 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001975 ParamVector Params;
1976 Params.reserve(N);
1977 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1978 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001979 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001980 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001981 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001982 }
1983
1984 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001985 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001986 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001987
1988 TemplateParameterList *InstL
1989 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1990 L->getLAngleLoc(), &Params.front(), N,
1991 L->getRAngleLoc());
1992 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001993}
John McCalle29ba202009-08-20 01:44:21 +00001994
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001995/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00001996/// specialization.
1997///
1998/// \param ClassTemplate the (instantiated) class template that is partially
1999// specialized by the instantiation of \p PartialSpec.
2000///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002001/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002002/// specialization that we are instantiating.
2003///
Douglas Gregord65587f2010-11-10 19:44:59 +00002004/// \returns The instantiated partial specialization, if successful; otherwise,
2005/// NULL to indicate an error.
2006ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002007TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2008 ClassTemplateDecl *ClassTemplate,
2009 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002010 // Create a local instantiation scope for this class template partial
2011 // specialization, which will contain the instantiations of the template
2012 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002013 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002014
Douglas Gregored9c0f92009-10-29 00:04:11 +00002015 // Substitute into the template parameters of the class template partial
2016 // specialization.
2017 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2018 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2019 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002020 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002021
Douglas Gregored9c0f92009-10-29 00:04:11 +00002022 // Substitute into the template arguments of the class template partial
2023 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002024 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002025 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2026 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002027 InstTemplateArgs, TemplateArgs))
2028 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002029
Douglas Gregored9c0f92009-10-29 00:04:11 +00002030 // Check that the template argument list is well-formed for this
2031 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002032 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002033 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002034 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002035 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002036 false,
2037 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002038 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002039
2040 // Figure out where to insert this class template partial specialization
2041 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042 void *InsertPos = 0;
2043 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002044 = ClassTemplate->findPartialSpecialization(Converted.data(),
2045 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002046
Douglas Gregored9c0f92009-10-29 00:04:11 +00002047 // Build the canonical type that describes the converted template
2048 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002049 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002050 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002051 Converted.data(),
2052 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002053
2054 // Build the fully-sugared type for this class template
2055 // specialization as the user wrote in the specialization
2056 // itself. This means that we'll pretty-print the type retrieved
2057 // from the specialization's declaration the way that the user
2058 // actually wrote the specialization, rather than formatting the
2059 // name based on the "canonical" representation used to store the
2060 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002061 TypeSourceInfo *WrittenTy
2062 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2063 TemplateName(ClassTemplate),
2064 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002065 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002066 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002067
Douglas Gregored9c0f92009-10-29 00:04:11 +00002068 if (PrevDecl) {
2069 // We've already seen a partial specialization with the same template
2070 // parameters and template arguments. This can happen, for example, when
2071 // substituting the outer template arguments ends up causing two
2072 // class template partial specializations of a member class template
2073 // to have identical forms, e.g.,
2074 //
2075 // template<typename T, typename U>
2076 // struct Outer {
2077 // template<typename X, typename Y> struct Inner;
2078 // template<typename Y> struct Inner<T, Y>;
2079 // template<typename Y> struct Inner<U, Y>;
2080 // };
2081 //
2082 // Outer<int, int> outer; // error: the partial specializations of Inner
2083 // // have the same signature.
2084 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002085 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002086 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2087 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002088 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002089 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002090
2091
Douglas Gregored9c0f92009-10-29 00:04:11 +00002092 // Create the class template partial specialization declaration.
2093 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002094 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002095 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002096 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002097 PartialSpec->getLocStart(),
2098 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002099 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002100 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002101 Converted.data(),
2102 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002103 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002104 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002105 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002106 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002107 // Substitute the nested name specifier, if any.
2108 if (SubstQualifier(PartialSpec, InstPartialSpec))
2109 return 0;
2110
Douglas Gregored9c0f92009-10-29 00:04:11 +00002111 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002112 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002113
Douglas Gregored9c0f92009-10-29 00:04:11 +00002114 // Add this partial specialization to the set of class template partial
2115 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002116 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002117 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002118}
2119
John McCall21ef0fa2010-03-11 09:03:00 +00002120TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002121TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002122 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002123 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2124 assert(OldTInfo && "substituting function without type source info");
2125 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002126 TypeSourceInfo *NewTInfo
2127 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2128 D->getTypeSpecStartLoc(),
2129 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002130 if (!NewTInfo)
2131 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002132
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002133 if (NewTInfo != OldTInfo) {
2134 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002135 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002136 if (FunctionProtoTypeLoc *OldProtoLoc
2137 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002138 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002139 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2140 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002141 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2142 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2143 OldIdx != NumOldParams; ++OldIdx) {
2144 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2145 if (!OldParam->isParameterPack() ||
Richard Smith7c5d28b2012-03-13 06:56:52 +00002146 // FIXME: Is this right? OldParam could expand to an empty parameter
2147 // pack and the next parameter could be an unexpanded parameter pack
Douglas Gregor12c9c002011-01-07 16:43:16 +00002148 (NewIdx < NumNewParams &&
2149 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002150 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002151 // instantiated to a (still-dependent) parameter pack.
2152 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2153 Params.push_back(NewParam);
2154 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2155 NewParam);
2156 continue;
2157 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002158
Douglas Gregor12c9c002011-01-07 16:43:16 +00002159 // Parameter pack: make the instantiation an argument pack.
2160 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2161 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002162 unsigned NumArgumentsInExpansion
2163 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2164 TemplateArgs);
2165 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002166 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2167 Params.push_back(NewParam);
2168 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2169 NewParam);
2170 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002171 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002172 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002173 } else {
2174 // The function type itself was not dependent and therefore no
2175 // substitution occurred. However, we still need to instantiate
2176 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002177 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002178 if (FunctionProtoTypeLoc *OldProtoLoc
2179 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2180 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2181 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2182 if (!Parm)
2183 return 0;
2184 Params.push_back(Parm);
2185 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002186 }
2187 }
John McCall21ef0fa2010-03-11 09:03:00 +00002188 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002189}
2190
Mike Stump1eb44332009-09-09 15:08:12 +00002191/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002192/// declaration (New) from the corresponding fields of its template (Tmpl).
2193///
2194/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002195bool
2196TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002197 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002198 if (Tmpl->isDeletedAsWritten())
2199 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002200
Douglas Gregorcca9e962009-07-01 22:01:06 +00002201 // If we are performing substituting explicitly-specified template arguments
2202 // or deduced template arguments into a function template and we reach this
2203 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002204 // to keeping the new function template specialization. We therefore
2205 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002206 // into a template instantiation for this specific function template
2207 // specialization, which is not a SFINAE context, so that we diagnose any
2208 // further errors in the declaration itself.
2209 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2210 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2211 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2212 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002213 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002214 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002215 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002216 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002217 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002218 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2219 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002220 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002221 }
2222 }
Mike Stump1eb44332009-09-09 15:08:12 +00002223
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002224 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2225 assert(Proto && "Function template without prototype?");
2226
Sebastian Redl60618fa2011-03-12 11:50:43 +00002227 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002228 // The function has an exception specification or a "noreturn"
2229 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002230 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002231 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2232 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002233 if (const PackExpansionType *PackExpansion
2234 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2235 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002236 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002237 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2238 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002239 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002240 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002241
Douglas Gregorb99268b2010-12-21 00:52:54 +00002242 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002243 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002244 llvm::Optional<unsigned> NumExpansions
2245 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002246 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002247 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002248 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002249 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002250 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002251 RetainExpansion,
2252 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002253 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002254
Douglas Gregorb99268b2010-12-21 00:52:54 +00002255 if (!Expand) {
2256 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002257 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002258 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002259 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002260 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002261 TemplateArgs,
2262 New->getLocation(), New->getDeclName());
2263 if (T.isNull())
2264 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002265
Douglas Gregorcded4f62011-01-14 17:04:44 +00002266 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002267 Exceptions.push_back(T);
2268 continue;
2269 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002270
Douglas Gregorb99268b2010-12-21 00:52:54 +00002271 // Substitute into the pack expansion pattern for each template
2272 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002273 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002274 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002275
2276 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002277 TemplateArgs,
2278 New->getLocation(), New->getDeclName());
2279 if (T.isNull()) {
2280 Invalid = true;
2281 break;
2282 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002283
Douglas Gregorb99268b2010-12-21 00:52:54 +00002284 Exceptions.push_back(T);
2285 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002286
Douglas Gregorb99268b2010-12-21 00:52:54 +00002287 if (Invalid)
2288 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002289
Douglas Gregorb99268b2010-12-21 00:52:54 +00002290 continue;
2291 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002292
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002293 QualType T
2294 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2295 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002296 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002297 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2298 continue;
2299
2300 Exceptions.push_back(T);
2301 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002302 Expr *NoexceptExpr = 0;
2303 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002304 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2305 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002306 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2307 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002308 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002309
Douglas Gregor5c340e82011-10-09 18:31:23 +00002310 if (E.isUsable()) {
Sebastian Redl56fb9262011-03-14 18:51:50 +00002311 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002312 if (!NoexceptExpr->isTypeDependent() &&
Richard Smith282e7e62012-02-04 09:53:13 +00002313 !NoexceptExpr->isValueDependent())
2314 NoexceptExpr = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2315 0, SemaRef.PDiag(diag::err_noexcept_needs_constant_expression),
2316 /*AllowFold*/ false).take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002317 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002318 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002319
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002320 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002321
John McCalle23cf432010-12-14 08:05:40 +00002322 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002323 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002324 EPI.NumExceptions = Exceptions.size();
2325 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002326 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002327 EPI.ExtInfo = Proto->getExtInfo();
2328
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002329 const FunctionProtoType *NewProto
2330 = New->getType()->getAs<FunctionProtoType>();
2331 assert(NewProto && "Template instantiation without function prototype?");
2332 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2333 NewProto->arg_type_begin(),
2334 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002335 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002336 }
2337
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002338 const FunctionDecl* Definition = Tmpl;
2339
2340 // Get the definition. Leaves the variable unchanged if undefined.
2341 Tmpl->isDefined(Definition);
2342
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002343 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2344 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002345
Douglas Gregore53060f2009-06-25 22:08:12 +00002346 return false;
2347}
2348
Douglas Gregor5545e162009-03-24 00:38:23 +00002349/// \brief Initializes common fields of an instantiated method
2350/// declaration (New) from the corresponding fields of its template
2351/// (Tmpl).
2352///
2353/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002354bool
2355TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002356 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002357 if (InitFunctionInstantiation(New, Tmpl))
2358 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002359
Douglas Gregor5545e162009-03-24 00:38:23 +00002360 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002361 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002362 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002363
2364 // FIXME: attributes
2365 // FIXME: New needs a pointer to Tmpl
2366 return false;
2367}
Douglas Gregora58861f2009-05-13 20:28:22 +00002368
2369/// \brief Instantiate the definition of the given function from its
2370/// template.
2371///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002372/// \param PointOfInstantiation the point at which the instantiation was
2373/// required. Note that this is not precisely a "point of instantiation"
2374/// for the function, but it's close.
2375///
Douglas Gregora58861f2009-05-13 20:28:22 +00002376/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002377/// function template specialization or member function of a class template
2378/// specialization.
2379///
2380/// \param Recursive if true, recursively instantiates any functions that
2381/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002382///
2383/// \param DefinitionRequired if true, then we are performing an explicit
2384/// instantiation where the body of the function is required. Complain if
2385/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002386void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002387 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002388 bool Recursive,
2389 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002390 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002391 return;
2392
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002393 // Never instantiate an explicit specialization except if it is a class scope
2394 // explicit specialization.
2395 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2396 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002397 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002398
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002399 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002400 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002401 assert(PatternDecl && "instantiating a non-template");
2402
2403 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2404 assert(PatternDecl && "template definition is not a template");
2405 if (!Pattern) {
2406 // Try to find a defaulted definition
2407 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002408 }
Sean Huntf996e052011-05-27 20:00:14 +00002409 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002410
Francois Pichet8387e2a2011-04-22 22:18:13 +00002411 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002412 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002413 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002414 PendingInstantiations.push_back(
2415 std::make_pair(Function, PointOfInstantiation));
2416 return;
2417 }
2418
2419 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002420 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002421 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002422 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002423 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002424 Pattern = PatternDecl->getBody(PatternDecl);
2425 }
2426
Sean Huntf996e052011-05-27 20:00:14 +00002427 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002428 if (DefinitionRequired) {
2429 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002430 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002431 diag::err_explicit_instantiation_undefined_func_template)
2432 << Function->getPrimaryTemplate();
2433 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002434 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002435 diag::err_explicit_instantiation_undefined_member)
2436 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002437
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002438 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002439 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002440 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002441 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002442 } else if (Function->getTemplateSpecializationKind()
2443 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002444 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002445 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002446 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002447
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002448 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002449 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002450
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002451 // C++0x [temp.explicit]p9:
2452 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002453 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002454 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002455 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002456 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002457 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002458 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002459
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002460 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2461 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002462 return;
2463
Abramo Bagnarae9946242011-11-18 08:08:52 +00002464 // Copy the inner loc start from the pattern.
2465 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2466
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002467 // If we're performing recursive template instantiation, create our own
2468 // queue of pending implicit instantiations that we will instantiate later,
2469 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002470 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002471 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002472 if (Recursive) {
2473 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002474 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002475 }
Mike Stump1eb44332009-09-09 15:08:12 +00002476
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002477 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002478 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002479 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002480
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002481 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002482 // recorded, unless we're actually a member function within a local
2483 // class, in which case we need to merge our results with the parent
2484 // scope (of the enclosing function).
2485 bool MergeWithParentScope = false;
2486 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2487 MergeWithParentScope = Rec->isLocalClass();
2488
2489 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002490
Richard Smith7c5d28b2012-03-13 06:56:52 +00002491 // Enter the scope of this instantiation. We don't use
2492 // PushDeclContext because we don't have a scope.
2493 Sema::ContextRAII savedContext(*this, Function);
2494
2495 MultiLevelTemplateArgumentList TemplateArgs =
2496 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2497
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002498 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002499 // instantiation scope, and set the parameter names to those used
2500 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002501 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002502 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2503 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002504 if (!PatternParam->isParameterPack()) {
2505 // Simple case: not a parameter pack.
2506 assert(FParamIdx < Function->getNumParams());
Richard Smith7c5d28b2012-03-13 06:56:52 +00002507 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002508 FunctionParam->setDeclName(PatternParam->getDeclName());
2509 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2510 ++FParamIdx;
2511 continue;
2512 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002513
Douglas Gregor12c9c002011-01-07 16:43:16 +00002514 // Expand the parameter pack.
2515 Scope.MakeInstantiatedLocalArgPack(PatternParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002516 unsigned NumArgumentsInExpansion
2517 = getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
2518 for (unsigned Arg = 0; Arg < NumArgumentsInExpansion; ++Arg) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002519 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2520 FunctionParam->setDeclName(PatternParam->getDeclName());
2521 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002522 ++FParamIdx;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002523 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002524 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002525
Sean Huntcd10dec2011-05-23 23:14:04 +00002526 if (PatternDecl->isDefaulted()) {
2527 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2528
2529 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002530 } else {
2531 // If this is a constructor, instantiate the member initializers.
2532 if (const CXXConstructorDecl *Ctor =
2533 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2534 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2535 TemplateArgs);
2536 }
2537
2538 // Instantiate the function body.
2539 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2540
2541 if (Body.isInvalid())
2542 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002543
Sean Huntcd10dec2011-05-23 23:14:04 +00002544 ActOnFinishFunctionBody(Function, Body.get(),
2545 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002546 }
2547
John McCall0c01d182010-03-24 05:22:00 +00002548 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2549
John McCalleee1d542011-02-14 07:13:47 +00002550 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002551
2552 DeclGroupRef DG(Function);
2553 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002554
Douglas Gregor60406be2010-01-16 22:29:39 +00002555 // This class may have local implicit instantiations that need to be
2556 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002557 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002558 Scope.Exit();
2559
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002560 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002561 // Define any pending vtables.
2562 DefineUsedVTables();
2563
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002564 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002565 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002566 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002567
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002568 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002569 assert(VTableUses.empty() &&
2570 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002571 VTableUses.swap(SavedVTableUses);
2572
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002573 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002574 assert(PendingInstantiations.empty() &&
2575 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002576 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002577 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002578}
2579
2580/// \brief Instantiate the definition of the given variable from its
2581/// template.
2582///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002583/// \param PointOfInstantiation the point at which the instantiation was
2584/// required. Note that this is not precisely a "point of instantiation"
2585/// for the function, but it's close.
2586///
2587/// \param Var the already-instantiated declaration of a static member
2588/// variable of a class template specialization.
2589///
2590/// \param Recursive if true, recursively instantiates any functions that
2591/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002592///
2593/// \param DefinitionRequired if true, then we are performing an explicit
2594/// instantiation where an out-of-line definition of the member variable
2595/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002596void Sema::InstantiateStaticDataMemberDefinition(
2597 SourceLocation PointOfInstantiation,
2598 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002599 bool Recursive,
2600 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002601 if (Var->isInvalidDecl())
2602 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002603
Douglas Gregor7caa6822009-07-24 20:34:43 +00002604 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002605 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002606 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002607 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002608 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002609
Douglas Gregor0d035142009-10-27 18:42:08 +00002610 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002611 // We did not find an out-of-line definition of this static data member,
2612 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002613 // instantiate this definition (or provide a specialization for it) in
2614 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002615 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002616 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002617 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002618 diag::err_explicit_instantiation_undefined_member)
2619 << 2 << Var->getDeclName() << Var->getDeclContext();
2620 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002621 } else if (Var->getTemplateSpecializationKind()
2622 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002623 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002624 std::make_pair(Var, PointOfInstantiation));
2625 }
2626
Douglas Gregor7caa6822009-07-24 20:34:43 +00002627 return;
2628 }
2629
Rafael Espindola234fe652012-03-05 10:54:55 +00002630 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2631
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002632 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002633 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002634 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002635
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002636 // C++0x [temp.explicit]p9:
2637 // Except for inline functions, other explicit instantiation declarations
2638 // have the effect of suppressing the implicit instantiation of the entity
2639 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002640 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002641 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002642
Rafael Espindola02503932012-03-08 15:51:03 +00002643 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2644
Douglas Gregorf15748a2011-06-03 03:35:07 +00002645 // If we already have a definition, we're done.
Rafael Espindola02503932012-03-08 15:51:03 +00002646 if (Var->getDefinition())
Douglas Gregorf15748a2011-06-03 03:35:07 +00002647 return;
2648
Douglas Gregor7caa6822009-07-24 20:34:43 +00002649 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2650 if (Inst)
2651 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002652
Douglas Gregor7caa6822009-07-24 20:34:43 +00002653 // If we're performing recursive template instantiation, create our own
2654 // queue of pending implicit instantiations that we will instantiate later,
2655 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002656 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002657 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002658 if (Recursive) {
2659 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002660 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002661 }
Mike Stump1eb44332009-09-09 15:08:12 +00002662
Douglas Gregor7caa6822009-07-24 20:34:43 +00002663 // Enter the scope of this instantiation. We don't use
2664 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002665 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002666 LocalInstantiationScope Local(*this);
2667
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002668 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002669 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002670 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002671
2672 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002673
2674 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002675 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2676 assert(MSInfo && "Missing member specialization information?");
2677 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2678 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002679 DeclGroupRef DG(Var);
2680 Consumer.HandleTopLevelDecl(DG);
2681 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002682 Local.Exit();
2683
Douglas Gregor7caa6822009-07-24 20:34:43 +00002684 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002685 // Define any newly required vtables.
2686 DefineUsedVTables();
2687
Douglas Gregor7caa6822009-07-24 20:34:43 +00002688 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002689 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002690 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002691
Nick Lewycky81559102011-05-31 07:58:42 +00002692 // Restore the set of pending vtables.
2693 assert(VTableUses.empty() &&
2694 "VTableUses should be empty before it is discarded, "
2695 "while instantiating static data member.");
2696 VTableUses.swap(SavedVTableUses);
2697
Douglas Gregor7caa6822009-07-24 20:34:43 +00002698 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002699 assert(PendingInstantiations.empty() &&
2700 "PendingInstantiations should be empty before it is discarded, "
2701 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002702 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002703 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002704}
Douglas Gregor815215d2009-05-27 05:35:12 +00002705
Anders Carlsson09025312009-08-29 05:16:22 +00002706void
2707Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2708 const CXXConstructorDecl *Tmpl,
2709 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002710
Richard Trieu90ab75b2011-09-09 03:18:59 +00002711 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002712 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002713
Anders Carlsson09025312009-08-29 05:16:22 +00002714 // Instantiate all the initializers.
2715 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002716 InitsEnd = Tmpl->init_end();
2717 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002718 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002719
Chandler Carruth030ef472010-09-03 21:54:20 +00002720 // Only instantiate written initializers, let Sema re-construct implicit
2721 // ones.
2722 if (!Init->isWritten())
2723 continue;
2724
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002725 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002726
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002727 if (Init->isPackExpansion()) {
2728 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002729 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002730 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002731 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2732 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002733 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002734 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002735 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002736 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002737 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002738 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002739 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002740 NumExpansions)) {
2741 AnyErrors = true;
2742 New->setInvalidDecl();
2743 continue;
2744 }
2745 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002746
2747 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002748 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002749 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2750
2751 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002752 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2753 /*CXXDirectInit=*/true);
2754 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002755 AnyErrors = true;
2756 break;
2757 }
2758
2759 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002760 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002761 TemplateArgs,
2762 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002763 New->getDeclName());
2764 if (!BaseTInfo) {
2765 AnyErrors = true;
2766 break;
2767 }
2768
2769 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002770 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002771 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002772 New->getParent(),
2773 SourceLocation());
2774 if (NewInit.isInvalid()) {
2775 AnyErrors = true;
2776 break;
2777 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002778
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002779 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002780 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002781
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002782 continue;
2783 }
2784
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002785 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002786 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2787 /*CXXDirectInit=*/true);
2788 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002789 AnyErrors = true;
2790 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002791 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002792
Anders Carlsson09025312009-08-29 05:16:22 +00002793 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002794 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2795 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2796 TemplateArgs,
2797 Init->getSourceLocation(),
2798 New->getDeclName());
2799 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002800 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002801 New->setInvalidDecl();
2802 continue;
2803 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002804
Douglas Gregor76852c22011-11-01 01:16:03 +00002805 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002806 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002807 New->getParent(), EllipsisLoc);
2808 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002809 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002810 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002811 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002812 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002813 Init->getMemberLocation(),
2814 Init->getMember(),
2815 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002816 if (!Member) {
2817 AnyErrors = true;
2818 New->setInvalidDecl();
2819 continue;
2820 }
Mike Stump1eb44332009-09-09 15:08:12 +00002821
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002822 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002823 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002824 } else if (Init->isIndirectMemberInitializer()) {
2825 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002826 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002827 Init->getMemberLocation(),
2828 Init->getIndirectMember(), TemplateArgs));
2829
Douglas Gregorb7107222011-03-04 19:46:35 +00002830 if (!IndirectMember) {
2831 AnyErrors = true;
2832 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002833 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002834 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002835
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002836 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002837 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002838 }
2839
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002840 if (NewInit.isInvalid()) {
2841 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002842 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002843 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00002844 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002845 }
2846 }
Mike Stump1eb44332009-09-09 15:08:12 +00002847
Anders Carlsson09025312009-08-29 05:16:22 +00002848 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002849 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002850 /*FIXME: ColonLoc */
2851 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002852 NewInits.data(), NewInits.size(),
2853 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002854}
2855
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002856ExprResult Sema::SubstInitializer(Expr *Init,
2857 const MultiLevelTemplateArgumentList &TemplateArgs,
2858 bool CXXDirectInit) {
2859 // Initializers are instantiated like expressions, except that various outer
2860 // layers are stripped.
2861 if (!Init)
2862 return Owned(Init);
2863
2864 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
2865 Init = ExprTemp->getSubExpr();
2866
2867 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
2868 Init = Binder->getSubExpr();
2869
2870 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
2871 Init = ICE->getSubExprAsWritten();
2872
2873 // If this is a direct-initializer, we take apart CXXConstructExprs.
2874 // Everything else is passed through.
2875 CXXConstructExpr *Construct;
2876 if (!CXXDirectInit || !(Construct = dyn_cast<CXXConstructExpr>(Init)) ||
2877 isa<CXXTemporaryObjectExpr>(Construct))
2878 return SubstExpr(Init, TemplateArgs);
2879
2880 ASTOwningVector<Expr*> NewArgs(*this);
2881 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
2882 TemplateArgs, NewArgs))
2883 return ExprError();
2884
2885 // Treat an empty initializer like none.
2886 if (NewArgs.empty())
2887 return Owned((Expr*)0);
2888
2889 // Build a ParenListExpr to represent anything else.
2890 // FIXME: Fake locations!
2891 SourceLocation Loc = PP.getLocForEndOfToken(Init->getLocStart());
2892 return ActOnParenListExpr(Loc, Loc, move_arg(NewArgs));
2893}
2894
John McCall52a575a2009-08-29 08:11:13 +00002895// TODO: this could be templated if the various decl types used the
2896// same method name.
2897static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2898 ClassTemplateDecl *Instance) {
2899 Pattern = Pattern->getCanonicalDecl();
2900
2901 do {
2902 Instance = Instance->getCanonicalDecl();
2903 if (Pattern == Instance) return true;
2904 Instance = Instance->getInstantiatedFromMemberTemplate();
2905 } while (Instance);
2906
2907 return false;
2908}
2909
Douglas Gregor0d696532009-09-28 06:34:35 +00002910static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2911 FunctionTemplateDecl *Instance) {
2912 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002913
Douglas Gregor0d696532009-09-28 06:34:35 +00002914 do {
2915 Instance = Instance->getCanonicalDecl();
2916 if (Pattern == Instance) return true;
2917 Instance = Instance->getInstantiatedFromMemberTemplate();
2918 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002919
Douglas Gregor0d696532009-09-28 06:34:35 +00002920 return false;
2921}
2922
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002923static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002924isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2925 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002926 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002927 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2928 do {
2929 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2930 Instance->getCanonicalDecl());
2931 if (Pattern == Instance)
2932 return true;
2933 Instance = Instance->getInstantiatedFromMember();
2934 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002935
Douglas Gregored9c0f92009-10-29 00:04:11 +00002936 return false;
2937}
2938
John McCall52a575a2009-08-29 08:11:13 +00002939static bool isInstantiationOf(CXXRecordDecl *Pattern,
2940 CXXRecordDecl *Instance) {
2941 Pattern = Pattern->getCanonicalDecl();
2942
2943 do {
2944 Instance = Instance->getCanonicalDecl();
2945 if (Pattern == Instance) return true;
2946 Instance = Instance->getInstantiatedFromMemberClass();
2947 } while (Instance);
2948
2949 return false;
2950}
2951
2952static bool isInstantiationOf(FunctionDecl *Pattern,
2953 FunctionDecl *Instance) {
2954 Pattern = Pattern->getCanonicalDecl();
2955
2956 do {
2957 Instance = Instance->getCanonicalDecl();
2958 if (Pattern == Instance) return true;
2959 Instance = Instance->getInstantiatedFromMemberFunction();
2960 } while (Instance);
2961
2962 return false;
2963}
2964
2965static bool isInstantiationOf(EnumDecl *Pattern,
2966 EnumDecl *Instance) {
2967 Pattern = Pattern->getCanonicalDecl();
2968
2969 do {
2970 Instance = Instance->getCanonicalDecl();
2971 if (Pattern == Instance) return true;
2972 Instance = Instance->getInstantiatedFromMemberEnum();
2973 } while (Instance);
2974
2975 return false;
2976}
2977
John McCalled976492009-12-04 22:46:56 +00002978static bool isInstantiationOf(UsingShadowDecl *Pattern,
2979 UsingShadowDecl *Instance,
2980 ASTContext &C) {
2981 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2982}
2983
2984static bool isInstantiationOf(UsingDecl *Pattern,
2985 UsingDecl *Instance,
2986 ASTContext &C) {
2987 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2988}
2989
John McCall7ba107a2009-11-18 02:36:19 +00002990static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2991 UsingDecl *Instance,
2992 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002993 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002994}
2995
2996static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002997 UsingDecl *Instance,
2998 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002999 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003000}
3001
John McCall52a575a2009-08-29 08:11:13 +00003002static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3003 VarDecl *Instance) {
3004 assert(Instance->isStaticDataMember());
3005
3006 Pattern = Pattern->getCanonicalDecl();
3007
3008 do {
3009 Instance = Instance->getCanonicalDecl();
3010 if (Pattern == Instance) return true;
3011 Instance = Instance->getInstantiatedFromStaticDataMember();
3012 } while (Instance);
3013
3014 return false;
3015}
3016
John McCalled976492009-12-04 22:46:56 +00003017// Other is the prospective instantiation
3018// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003019static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003020 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003021 if (UnresolvedUsingTypenameDecl *UUD
3022 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3023 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3024 return isInstantiationOf(UUD, UD, Ctx);
3025 }
3026 }
3027
3028 if (UnresolvedUsingValueDecl *UUD
3029 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003030 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3031 return isInstantiationOf(UUD, UD, Ctx);
3032 }
3033 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003034
Anders Carlsson0d8df782009-08-29 19:37:28 +00003035 return false;
3036 }
Mike Stump1eb44332009-09-09 15:08:12 +00003037
John McCall52a575a2009-08-29 08:11:13 +00003038 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3039 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003040
John McCall52a575a2009-08-29 08:11:13 +00003041 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3042 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003043
John McCall52a575a2009-08-29 08:11:13 +00003044 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3045 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003046
Douglas Gregor7caa6822009-07-24 20:34:43 +00003047 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003048 if (Var->isStaticDataMember())
3049 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3050
3051 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3052 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003053
Douglas Gregor0d696532009-09-28 06:34:35 +00003054 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3055 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3056
Douglas Gregored9c0f92009-10-29 00:04:11 +00003057 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3058 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3059 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3060 PartialSpec);
3061
Anders Carlssond8b285f2009-09-01 04:26:58 +00003062 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3063 if (!Field->getDeclName()) {
3064 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003065 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003066 cast<FieldDecl>(D);
3067 }
3068 }
Mike Stump1eb44332009-09-09 15:08:12 +00003069
John McCalled976492009-12-04 22:46:56 +00003070 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3071 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3072
3073 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3074 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3075
Douglas Gregor815215d2009-05-27 05:35:12 +00003076 return D->getDeclName() && isa<NamedDecl>(Other) &&
3077 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3078}
3079
3080template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003081static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003082 NamedDecl *D,
3083 ForwardIterator first,
3084 ForwardIterator last) {
3085 for (; first != last; ++first)
3086 if (isInstantiationOf(Ctx, D, *first))
3087 return cast<NamedDecl>(*first);
3088
3089 return 0;
3090}
3091
John McCall02cace72009-08-28 07:59:38 +00003092/// \brief Finds the instantiation of the given declaration context
3093/// within the current instantiation.
3094///
3095/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003096DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003097 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003098 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003099 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003100 return cast_or_null<DeclContext>(ID);
3101 } else return DC;
3102}
3103
Douglas Gregored961e72009-05-27 17:54:46 +00003104/// \brief Find the instantiation of the given declaration within the
3105/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003106///
3107/// This routine is intended to be used when \p D is a declaration
3108/// referenced from within a template, that needs to mapped into the
3109/// corresponding declaration within an instantiation. For example,
3110/// given:
3111///
3112/// \code
3113/// template<typename T>
3114/// struct X {
3115/// enum Kind {
3116/// KnownValue = sizeof(T)
3117/// };
3118///
3119/// bool getKind() const { return KnownValue; }
3120/// };
3121///
3122/// template struct X<int>;
3123/// \endcode
3124///
3125/// In the instantiation of X<int>::getKind(), we need to map the
3126/// EnumConstantDecl for KnownValue (which refers to
3127/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003128/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3129/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003130NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003131 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003132 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003133 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003134 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003135 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3136 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003137 // D is a local of some kind. Look into the map of local
3138 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003139 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3140 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3141 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003142
Chris Lattner57ad3782011-02-17 20:34:02 +00003143 if (Found) {
3144 if (Decl *FD = Found->dyn_cast<Decl *>())
3145 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003146
Chris Lattner57ad3782011-02-17 20:34:02 +00003147 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3148 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3149 }
3150
3151 // If we didn't find the decl, then we must have a label decl that hasn't
3152 // been found yet. Lazily instantiate it and return it now.
3153 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003154
Chris Lattner57ad3782011-02-17 20:34:02 +00003155 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3156 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003157
Chris Lattner57ad3782011-02-17 20:34:02 +00003158 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3159 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003160 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003161
Douglas Gregore95b4092009-09-16 18:34:49 +00003162 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3163 if (!Record->isDependentContext())
3164 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003165
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003166 // Determine whether this record is the "templated" declaration describing
3167 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003168 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003169 if (ClassTemplate)
3170 ClassTemplate = ClassTemplate->getCanonicalDecl();
3171 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3172 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3173 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3174
3175 // Walk the current context to find either the record or an instantiation of
3176 // it.
3177 DeclContext *DC = CurContext;
3178 while (!DC->isFileContext()) {
3179 // If we're performing substitution while we're inside the template
3180 // definition, we'll find our own context. We're done.
3181 if (DC->Equals(Record))
3182 return Record;
3183
3184 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3185 // Check whether we're in the process of instantiating a class template
3186 // specialization of the template we're mapping.
3187 if (ClassTemplateSpecializationDecl *InstSpec
3188 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3189 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3190 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3191 return InstRecord;
3192 }
3193
3194 // Check whether we're in the process of instantiating a member class.
3195 if (isInstantiationOf(Record, InstRecord))
3196 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003197 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003198
3199
3200 // Move to the outer template scope.
3201 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3202 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3203 DC = FD->getLexicalDeclContext();
3204 continue;
3205 }
John McCall52a575a2009-08-29 08:11:13 +00003206 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003207
3208 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003209 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003210
Douglas Gregore95b4092009-09-16 18:34:49 +00003211 // Fall through to deal with other dependent record types (e.g.,
3212 // anonymous unions in class templates).
3213 }
John McCall52a575a2009-08-29 08:11:13 +00003214
Douglas Gregore95b4092009-09-16 18:34:49 +00003215 if (!ParentDC->isDependentContext())
3216 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003217
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003218 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003219 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003220 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003221
Douglas Gregor815215d2009-05-27 05:35:12 +00003222 if (ParentDC != D->getDeclContext()) {
3223 // We performed some kind of instantiation in the parent context,
3224 // so now we need to look into the instantiated parent context to
3225 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003226
John McCall3cb0ebd2010-03-10 03:28:59 +00003227 // If our context used to be dependent, we may need to instantiate
3228 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003229 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003230 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003231 if (!Spec->isDependentContext()) {
3232 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003233 const RecordType *Tag = T->getAs<RecordType>();
3234 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003235 if (Tag->isBeingDefined())
3236 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003237 if (!Tag->isBeingDefined() &&
3238 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3239 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003240
3241 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003242 }
3243 }
3244
Douglas Gregor815215d2009-05-27 05:35:12 +00003245 NamedDecl *Result = 0;
3246 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003247 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003248 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3249 } else {
3250 // Since we don't have a name for the entity we're looking for,
3251 // our only option is to walk through all of the declarations to
3252 // find that name. This will occur in a few cases:
3253 //
3254 // - anonymous struct/union within a template
3255 // - unnamed class/struct/union/enum within a template
3256 //
3257 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003258 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003259 ParentDC->decls_begin(),
3260 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003261 }
Mike Stump1eb44332009-09-09 15:08:12 +00003262
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003263 if (!Result) {
3264 if (isa<UsingShadowDecl>(D)) {
3265 // UsingShadowDecls can instantiate to nothing because of using hiding.
3266 } else if (Diags.hasErrorOccurred()) {
3267 // We've already complained about something, so most likely this
3268 // declaration failed to instantiate. There's no point in complaining
3269 // further, since this is normal in invalid code.
3270 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003271 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003272 // instantiated, and we haven't gotten around to instantiating this
3273 // member yet. This can happen when the code uses forward declarations
3274 // of member classes, and introduces ordering dependencies via
3275 // template instantiation.
3276 Diag(Loc, diag::err_member_not_yet_instantiated)
3277 << D->getDeclName()
3278 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3279 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3280 } else {
3281 // We should have found something, but didn't.
3282 llvm_unreachable("Unable to find instantiation of declaration!");
3283 }
3284 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003285
Douglas Gregor815215d2009-05-27 05:35:12 +00003286 D = Result;
3287 }
3288
Douglas Gregor815215d2009-05-27 05:35:12 +00003289 return D;
3290}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003291
Mike Stump1eb44332009-09-09 15:08:12 +00003292/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003293/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003294void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003295 // Load pending instantiations from the external source.
3296 if (!LocalOnly && ExternalSource) {
3297 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3298 ExternalSource->ReadPendingInstantiations(Pending);
3299 PendingInstantiations.insert(PendingInstantiations.begin(),
3300 Pending.begin(), Pending.end());
3301 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003302
Douglas Gregor60406be2010-01-16 22:29:39 +00003303 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003304 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003305 PendingImplicitInstantiation Inst;
3306
3307 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003308 Inst = PendingInstantiations.front();
3309 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003310 } else {
3311 Inst = PendingLocalImplicitInstantiations.front();
3312 PendingLocalImplicitInstantiations.pop_front();
3313 }
Mike Stump1eb44332009-09-09 15:08:12 +00003314
Douglas Gregor7caa6822009-07-24 20:34:43 +00003315 // Instantiate function definitions
3316 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003317 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3318 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003319 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3320 TSK_ExplicitInstantiationDefinition;
3321 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3322 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003323 continue;
3324 }
Mike Stump1eb44332009-09-09 15:08:12 +00003325
Douglas Gregor7caa6822009-07-24 20:34:43 +00003326 // Instantiate static data member definitions.
3327 VarDecl *Var = cast<VarDecl>(Inst.first);
3328 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003329
Chandler Carruth291b4412010-02-13 10:17:50 +00003330 // Don't try to instantiate declarations if the most recent redeclaration
3331 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003332 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003333 continue;
3334
3335 // Check if the most recent declaration has changed the specialization kind
3336 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003337 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003338 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003339 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003340 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003341 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003342 continue; // No longer need to instantiate this type.
3343 case TSK_ExplicitInstantiationDefinition:
3344 // We only need an instantiation if the pending instantiation *is* the
3345 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003346 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003347 case TSK_ImplicitInstantiation:
3348 break;
3349 }
3350
John McCallf312b1e2010-08-26 23:41:50 +00003351 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3352 "instantiating static data member "
3353 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003354
Chandler Carruth58e390e2010-08-25 08:27:02 +00003355 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3356 TSK_ExplicitInstantiationDefinition;
3357 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3358 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003359 }
3360}
John McCall0c01d182010-03-24 05:22:00 +00003361
3362void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3363 const MultiLevelTemplateArgumentList &TemplateArgs) {
3364 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3365 E = Pattern->ddiag_end(); I != E; ++I) {
3366 DependentDiagnostic *DD = *I;
3367
3368 switch (DD->getKind()) {
3369 case DependentDiagnostic::Access:
3370 HandleDependentAccessCheck(*DD, TemplateArgs);
3371 break;
3372 }
3373 }
3374}