blob: bbf8f50a3c774b2c53933064a812e355c0420c25 [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())
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000082 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>(),
83 Aligned->getIsMSDeclSpec());
Richard Smithf6702a32011-12-20 02:08:33 +000084 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000085 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000086 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000087 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000088 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000089 if (Result)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000090 AddAlignedAttr(Aligned->getLocation(), New, Result,
91 Aligned->getIsMSDeclSpec());
Sean Huntcf807c42010-08-18 23:23:40 +000092 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000093 continue;
94 }
95 }
96
DeLesley Hutchins23323e02012-01-20 22:50:54 +000097 if (TmplAttr->isLateParsed() && LateAttrs) {
98 // Late parsed attributes must be instantiated and attached after the
99 // enclosing class has been instantiated. See Sema::InstantiateClass.
100 LocalInstantiationScope *Saved = 0;
101 if (CurrentInstantiationScope)
102 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
103 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
104 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000105 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
106 *this, TemplateArgs);
Rafael Espindola31c195a2012-05-15 14:09:55 +0000107 if (NewAttr)
108 New->addAttr(NewAttr);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000109 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000110 }
111}
112
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113Decl *
114TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000115 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000116}
117
118Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000119TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
120 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
121 D->getIdentifier());
122 Owner->addDecl(Inst);
123 return Inst;
124}
125
126Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000127TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000128 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000129}
130
John McCall3dbd3d52010-02-16 06:53:13 +0000131Decl *
132TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
133 NamespaceAliasDecl *Inst
134 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
135 D->getNamespaceLoc(),
136 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000137 D->getIdentifier(),
138 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000139 D->getTargetNameLoc(),
140 D->getNamespace());
141 Owner->addDecl(Inst);
142 return Inst;
143}
144
Richard Smith3e4c6c42011-05-05 21:57:07 +0000145Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
146 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000147 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000148 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000149 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000150 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000151 DI = SemaRef.SubstType(DI, TemplateArgs,
152 D->getLocation(), D->getDeclName());
153 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000154 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000155 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000157 } else {
158 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000159 }
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000161 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000162 TypedefNameDecl *Typedef;
163 if (IsTypeAlias)
164 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
165 D->getLocation(), D->getIdentifier(), DI);
166 else
167 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
168 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000169 if (Invalid)
170 Typedef->setInvalidDecl();
171
John McCallcde5a402011-02-01 08:20:08 +0000172 // If the old typedef was the name for linkage purposes of an anonymous
173 // tag decl, re-establish that relationship for the new typedef.
174 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
175 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000176 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000177 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000178 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
179 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000180 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000181 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000182
Douglas Gregoref96ee02012-01-14 16:38:05 +0000183 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000184 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
185 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000186 if (!InstPrev)
187 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000188
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000189 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
190
191 // If the typedef types are not identical, reject them.
192 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
193
194 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000195 }
196
John McCall1d8d1cc2010-08-01 02:01:53 +0000197 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000198
John McCall46460a62010-01-20 21:53:11 +0000199 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000201 return Typedef;
202}
203
Richard Smith162e1c12011-04-15 14:24:37 +0000204Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000205 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
206 Owner->addDecl(Typedef);
207 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000208}
209
210Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000211 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
212 Owner->addDecl(Typedef);
213 return Typedef;
214}
215
216Decl *
217TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
218 // Create a local instantiation scope for this type alias template, which
219 // will contain the instantiations of the template parameters.
220 LocalInstantiationScope Scope(SemaRef);
221
222 TemplateParameterList *TempParams = D->getTemplateParameters();
223 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
224 if (!InstParams)
225 return 0;
226
227 TypeAliasDecl *Pattern = D->getTemplatedDecl();
228
229 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000230 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000231 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
232 if (Found.first != Found.second) {
233 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
234 }
235 }
236
237 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
238 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
239 if (!AliasInst)
240 return 0;
241
242 TypeAliasTemplateDecl *Inst
243 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
244 D->getDeclName(), InstParams, AliasInst);
245 if (PrevAliasTemplate)
246 Inst->setPreviousDeclaration(PrevAliasTemplate);
247
248 Inst->setAccess(D->getAccess());
249
250 if (!PrevAliasTemplate)
251 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000252
Richard Smith3e4c6c42011-05-05 21:57:07 +0000253 Owner->addDecl(Inst);
254
255 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000256}
257
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000258Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000259 // If this is the variable for an anonymous struct or union,
260 // instantiate the anonymous struct/union type first.
261 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
262 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
263 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
264 return 0;
265
John McCallce3ff2b2009-08-25 22:02:44 +0000266 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000267 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000268 TemplateArgs,
269 D->getTypeSpecStartLoc(),
270 D->getDeclName());
271 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000272 return 0;
273
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000274 if (DI->getType()->isFunctionType()) {
275 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
276 << D->isStaticDataMember() << DI->getType();
277 return 0;
278 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000279
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000280 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000281 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000282 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000283 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000284 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000285 D->getStorageClass(),
286 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000287 Var->setThreadSpecified(D->isThreadSpecified());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000288 Var->setInitStyle(D->getInitStyle());
Richard Smithad762fc2011-04-14 22:09:26 +0000289 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000290 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000291
John McCallb6217662010-03-15 10:12:16 +0000292 // Substitute the nested name specifier, if any.
293 if (SubstQualifier(D, Var))
294 return 0;
295
Mike Stump1eb44332009-09-09 15:08:12 +0000296 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000297 // out-of-line, the instantiation will have the same lexical
298 // context (which will be a namespace scope) as the template.
299 if (D->isOutOfLine())
300 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000301
John McCall46460a62010-01-20 21:53:11 +0000302 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000303
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000304 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000305 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000306 Var->setReferenced(D->isReferenced());
307 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000308
Mike Stump390b4cc2009-05-16 07:39:55 +0000309 // FIXME: In theory, we could have a previous declaration for variables that
310 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000311 // FIXME: having to fake up a LookupResult is dumb.
312 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000313 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000314 if (D->isStaticDataMember())
315 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000316
317 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +0000318 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000319 SemaRef.inferObjCARCLifetime(Var))
320 Var->setInvalidDecl();
321
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000322 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Douglas Gregor7caa6822009-07-24 20:34:43 +0000324 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000325 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000326 Owner->makeDeclVisibleInContext(Var);
327 } else {
328 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000329 if (Owner->isFunctionOrMethod())
330 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000331 }
DeLesley Hutchinsdd5756c2012-02-16 17:30:51 +0000332 SemaRef.InstantiateAttrs(TemplateArgs, D, Var, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000333
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000334 // Link instantiations of static data members back to the template from
335 // which they were instantiated.
336 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000337 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000338 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000339
Douglas Gregor60c93c92010-02-09 07:26:29 +0000340 if (Var->getAnyInitializer()) {
341 // We already have an initializer in the class.
342 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000343 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000344 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000345 else
346 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
347
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000348 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000349 ExprResult Init = SemaRef.SubstInitializer(D->getInit(), TemplateArgs,
350 D->getInitStyle() == VarDecl::CallInit);
351 if (!Init.isInvalid()) {
Richard Smith34b41d92011-02-20 03:19:35 +0000352 bool TypeMayContainAuto = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000353 if (Init.get()) {
354 bool DirectInit = D->isDirectInit();
355 SemaRef.AddInitializerToDecl(Var, Init.take(), DirectInit,
356 TypeMayContainAuto);
357 } else
Eli Friedman6aeaa602012-01-05 22:34:08 +0000358 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000359 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000360 // FIXME: Not too happy about invalidating the declaration
361 // because of a bogus initializer.
362 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000363 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000364
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000365 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000366 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
367 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000368 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000369
Richard Smithe3499ca2011-06-21 23:42:09 +0000370 // Diagnose unused local variables with dependent types, where the diagnostic
371 // will have been deferred.
372 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
373 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000374 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000375
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000376 return Var;
377}
378
Abramo Bagnara6206d532010-06-05 05:09:32 +0000379Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
380 AccessSpecDecl* AD
381 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
382 D->getAccessSpecifierLoc(), D->getColonLoc());
383 Owner->addHiddenDecl(AD);
384 return AD;
385}
386
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000387Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
388 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000389 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000390 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000391 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000392 DI = SemaRef.SubstType(DI, TemplateArgs,
393 D->getLocation(), D->getDeclName());
394 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000395 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000396 Invalid = true;
397 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000398 // C++ [temp.arg.type]p3:
399 // If a declaration acquires a function type through a type
400 // dependent on a template-parameter and this causes a
401 // declaration that does not use the syntactic form of a
402 // function declarator to have function type, the program is
403 // ill-formed.
404 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000405 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000406 Invalid = true;
407 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000408 } else {
409 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000410 }
411
412 Expr *BitWidth = D->getBitWidth();
413 if (Invalid)
414 BitWidth = 0;
415 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000416 // The bit-width expression is a constant expression.
417 EnterExpressionEvaluationContext Unevaluated(SemaRef,
418 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000419
John McCall60d7b3a2010-08-24 06:29:42 +0000420 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000421 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000422 if (InstantiatedBitWidth.isInvalid()) {
423 Invalid = true;
424 BitWidth = 0;
425 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000426 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000427 }
428
John McCall07fb6be2009-10-22 23:33:21 +0000429 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
430 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000431 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000432 D->getLocation(),
433 D->isMutable(),
434 BitWidth,
Richard Smithca523302012-06-10 03:12:00 +0000435 D->getInClassInitStyle(),
Richard Smith703b6012012-05-23 04:22:22 +0000436 D->getInnerLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000437 D->getAccess(),
438 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000439 if (!Field) {
440 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000441 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000442 }
Mike Stump1eb44332009-09-09 15:08:12 +0000443
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000444 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000445
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000446 if (Invalid)
447 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000449 if (!Field->getDeclName()) {
450 // Keep track of where this decl came from.
451 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000452 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000453 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
454 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000455 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000456 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000457 }
Mike Stump1eb44332009-09-09 15:08:12 +0000458
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000459 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000460 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000461 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000462
463 return Field;
464}
465
Francois Pichet87c2e122010-11-21 06:08:52 +0000466Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
467 NamedDecl **NamedChain =
468 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
469
470 int i = 0;
471 for (IndirectFieldDecl::chain_iterator PI =
472 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000473 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000474 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000475 TemplateArgs);
476 if (!Next)
477 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000478
Douglas Gregorb7107222011-03-04 19:46:35 +0000479 NamedChain[i++] = Next;
480 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000481
Francois Pichet40e17752010-12-09 10:07:54 +0000482 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000483 IndirectFieldDecl* IndirectField
484 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000485 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000486 NamedChain, D->getChainingSize());
487
488
489 IndirectField->setImplicit(D->isImplicit());
490 IndirectField->setAccess(D->getAccess());
491 Owner->addDecl(IndirectField);
492 return IndirectField;
493}
494
John McCall02cace72009-08-28 07:59:38 +0000495Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000496 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000497 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000498 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000499 TypeSourceInfo *InstTy;
500 // If this is an unsupported friend, don't bother substituting template
501 // arguments into it. The actual type referred to won't be used by any
502 // parts of Clang, and may not be valid for instantiating. Just use the
503 // same info for the instantiated friend.
504 if (D->isUnsupportedFriend()) {
505 InstTy = Ty;
506 } else {
507 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
508 D->getLocation(), DeclarationName());
509 }
510 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000511 return 0;
John McCall02cace72009-08-28 07:59:38 +0000512
Abramo Bagnara0216df82011-10-29 20:52:52 +0000513 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
514 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000515 if (!FD)
516 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000517
Douglas Gregor06245bf2010-04-07 17:57:12 +0000518 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000519 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000520 Owner->addDecl(FD);
521 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000522 }
523
Douglas Gregor06245bf2010-04-07 17:57:12 +0000524 NamedDecl *ND = D->getFriendDecl();
525 assert(ND && "friend decl must be a decl or a type!");
526
John McCallaf2094e2010-04-08 09:05:18 +0000527 // All of the Visit implementations for the various potential friend
528 // declarations have to be carefully written to work for friend
529 // objects, with the most important detail being that the target
530 // decl should almost certainly not be placed in Owner.
531 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000532 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000533
John McCall02cace72009-08-28 07:59:38 +0000534 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000535 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000536 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000537 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000538 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000539 Owner->addDecl(FD);
540 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000541}
542
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000543Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
544 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Richard Smithf6702a32011-12-20 02:08:33 +0000546 // The expression in a static assertion is a constant expression.
547 EnterExpressionEvaluationContext Unevaluated(SemaRef,
548 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000549
John McCall60d7b3a2010-08-24 06:29:42 +0000550 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000551 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000552 if (InstantiatedAssertExpr.isInvalid())
553 return 0;
554
John McCall60d7b3a2010-08-24 06:29:42 +0000555 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000556 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000557 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000558 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000559 Message.get(),
560 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000561}
562
563Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Richard Smith38f0df32012-03-26 04:58:10 +0000564 EnumDecl *PrevDecl = 0;
565 if (D->getPreviousDecl()) {
566 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
567 D->getPreviousDecl(),
568 TemplateArgs);
569 if (!Prev) return 0;
570 PrevDecl = cast<EnumDecl>(Prev);
571 }
572
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000573 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000574 D->getLocation(), D->getIdentifier(),
Richard Smith38f0df32012-03-26 04:58:10 +0000575 PrevDecl, D->isScoped(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000576 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000577 if (D->isFixed()) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000578 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000579 // If we have type source information for the underlying type, it means it
580 // has been explicitly set by the user. Perform substitution on it before
581 // moving on.
582 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smithf1c66b42012-03-14 23:13:10 +0000583 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
584 DeclarationName());
585 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000586 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smithf1c66b42012-03-14 23:13:10 +0000587 else
588 Enum->setIntegerTypeSourceInfo(NewTI);
589 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000590 assert(!D->getIntegerType()->isDependentType()
591 && "Dependent type without type source info");
592 Enum->setIntegerType(D->getIntegerType());
593 }
594 }
595
John McCall5b629aa2010-10-22 23:36:17 +0000596 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
597
Richard Smithf1c66b42012-03-14 23:13:10 +0000598 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000599 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000600 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000601 Owner->addDecl(Enum);
Richard Smithf1c66b42012-03-14 23:13:10 +0000602
Richard Smith4ca93d92012-03-26 04:08:46 +0000603 EnumDecl *Def = D->getDefinition();
604 if (Def && Def != D) {
605 // If this is an out-of-line definition of an enum member template, check
606 // that the underlying types match in the instantiation of both
607 // declarations.
608 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
609 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
610 QualType DefnUnderlying =
611 SemaRef.SubstType(TI->getType(), TemplateArgs,
612 UnderlyingLoc, DeclarationName());
613 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
614 DefnUnderlying, Enum);
615 }
616 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000617
Douglas Gregor96084f12010-03-01 19:00:07 +0000618 if (D->getDeclContext()->isFunctionOrMethod())
619 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000620
Richard Smithf1c66b42012-03-14 23:13:10 +0000621 // C++11 [temp.inst]p1: The implicit instantiation of a class template
622 // specialization causes the implicit instantiation of the declarations, but
623 // not the definitions of scoped member enumerations.
624 // FIXME: There appears to be no wording for what happens for an enum defined
Richard Smith38f0df32012-03-26 04:58:10 +0000625 // within a block scope, but we treat that much like a member template. Only
626 // instantiate the definition when visiting the definition in that case, since
627 // we will visit all redeclarations.
628 if (!Enum->isScoped() && Def &&
629 (!D->getDeclContext()->isFunctionOrMethod() || D->isCompleteDefinition()))
Richard Smith4ca93d92012-03-26 04:08:46 +0000630 InstantiateEnumDefinition(Enum, Def);
Richard Smithf1c66b42012-03-14 23:13:10 +0000631
632 return Enum;
633}
634
635void TemplateDeclInstantiator::InstantiateEnumDefinition(
636 EnumDecl *Enum, EnumDecl *Pattern) {
637 Enum->startDefinition();
638
Richard Smith1af83c42012-03-23 03:33:32 +0000639 // Update the location to refer to the definition.
640 Enum->setLocation(Pattern->getLocation());
641
Chris Lattner5f9e2722011-07-23 10:55:15 +0000642 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000643
644 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000645 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
646 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000647 EC != ECEnd; ++EC) {
648 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000649 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000650 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000651 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000652 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000653 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000654
John McCallce3ff2b2009-08-25 22:02:44 +0000655 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000656 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000657
658 // Drop the initial value and continue.
659 bool isInvalid = false;
660 if (Value.isInvalid()) {
661 Value = SemaRef.Owned((Expr *)0);
662 isInvalid = true;
663 }
664
Mike Stump1eb44332009-09-09 15:08:12 +0000665 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000666 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
667 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000668 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000669
670 if (isInvalid) {
671 if (EnumConst)
672 EnumConst->setInvalidDecl();
673 Enum->setInvalidDecl();
674 }
675
676 if (EnumConst) {
David Blaikie581deb32012-06-06 20:45:41 +0000677 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
John McCall5b629aa2010-10-22 23:36:17 +0000678
John McCall3b85ecf2010-01-23 22:37:59 +0000679 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000680 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000681 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000682 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000683
Richard Smithf1c66b42012-03-14 23:13:10 +0000684 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
685 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000686 // If the enumeration is within a function or method, record the enum
687 // constant as a local.
David Blaikie581deb32012-06-06 20:45:41 +0000688 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
Douglas Gregor96084f12010-03-01 19:00:07 +0000689 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000690 }
691 }
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Richard Smithf1c66b42012-03-14 23:13:10 +0000693 // FIXME: Fixup LBraceLoc
694 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
695 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000696 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000697 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000698}
699
Douglas Gregor6477b692009-03-25 15:04:13 +0000700Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000701 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000702}
703
John McCalle29ba202009-08-20 01:44:21 +0000704Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000705 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
706
Douglas Gregor550d9b22009-10-31 17:21:17 +0000707 // Create a local instantiation scope for this class template, which
708 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000709 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000710 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000711 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000712 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000713 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000714
715 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000716
717 // Instantiate the qualifier. We have to do this first in case
718 // we're a friend declaration, because if we are then we need to put
719 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000720 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
721 if (QualifierLoc) {
722 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
723 TemplateArgs);
724 if (!QualifierLoc)
725 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000726 }
727
728 CXXRecordDecl *PrevDecl = 0;
729 ClassTemplateDecl *PrevClassTemplate = 0;
730
Douglas Gregoref96ee02012-01-14 16:38:05 +0000731 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000732 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
733 if (Found.first != Found.second) {
734 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
735 if (PrevClassTemplate)
736 PrevDecl = PrevClassTemplate->getTemplatedDecl();
737 }
738 }
739
John McCall93ba8572010-03-25 06:39:04 +0000740 // If this isn't a friend, then it's a member template, in which
741 // case we just want to build the instantiation in the
742 // specialization. If it is a friend, we want to build it in
743 // the appropriate context.
744 DeclContext *DC = Owner;
745 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000746 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000747 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000748 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000749 DC = SemaRef.computeDeclContext(SS);
750 if (!DC) return 0;
751 } else {
752 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
753 Pattern->getDeclContext(),
754 TemplateArgs);
755 }
756
757 // Look for a previous declaration of the template in the owning
758 // context.
759 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
760 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
761 SemaRef.LookupQualifiedName(R, DC);
762
763 if (R.isSingleResult()) {
764 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
765 if (PrevClassTemplate)
766 PrevDecl = PrevClassTemplate->getTemplatedDecl();
767 }
768
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000769 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000770 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000771 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000772 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000773 return 0;
774 }
775
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000776 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000777 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000778 bool Complain = true;
779
780 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
781 // template for struct std::tr1::__detail::_Map_base, where the
782 // template parameters of the friend declaration don't match the
783 // template parameters of the original declaration. In this one
784 // case, we don't complain about the ill-formed friend
785 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000786 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000787 Pattern->getIdentifier()->isStr("_Map_base") &&
788 DC->isNamespace() &&
789 cast<NamespaceDecl>(DC)->getIdentifier() &&
790 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
791 DeclContext *DCParent = DC->getParent();
792 if (DCParent->isNamespace() &&
793 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
794 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
795 DeclContext *DCParent2 = DCParent->getParent();
796 if (DCParent2->isNamespace() &&
797 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
798 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
799 DCParent2->getParent()->isTranslationUnit())
800 Complain = false;
801 }
802 }
803
John McCall93ba8572010-03-25 06:39:04 +0000804 TemplateParameterList *PrevParams
805 = PrevClassTemplate->getTemplateParameters();
806
807 // Make sure the parameter lists match.
808 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000809 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000810 Sema::TPL_TemplateMatch)) {
811 if (Complain)
812 return 0;
813
814 AdoptedPreviousTemplateParams = true;
815 InstParams = PrevParams;
816 }
John McCall93ba8572010-03-25 06:39:04 +0000817
818 // Do some additional validation, then merge default arguments
819 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000820 if (!AdoptedPreviousTemplateParams &&
821 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000822 Sema::TPC_ClassTemplate))
823 return 0;
824 }
825 }
826
John McCalle29ba202009-08-20 01:44:21 +0000827 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000828 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000829 Pattern->getLocStart(), Pattern->getLocation(),
830 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000831 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000832
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000833 if (QualifierLoc)
834 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000835
John McCalle29ba202009-08-20 01:44:21 +0000836 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000837 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
838 D->getIdentifier(), InstParams, RecordInst,
839 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000840 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000841
John McCall93ba8572010-03-25 06:39:04 +0000842 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000843 if (PrevClassTemplate)
844 Inst->setAccess(PrevClassTemplate->getAccess());
845 else
846 Inst->setAccess(D->getAccess());
847
John McCall93ba8572010-03-25 06:39:04 +0000848 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
849 // TODO: do we want to track the instantiation progeny of this
850 // friend target decl?
851 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000852 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000853 if (!PrevClassTemplate)
854 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000855 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000856
Douglas Gregorf0510d42009-10-12 23:11:44 +0000857 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000858 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000859 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000860
Douglas Gregor259571e2009-10-30 22:42:42 +0000861 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000862 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000863 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000864 Inst->setLexicalDeclContext(Owner);
865 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000866 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000867 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000868
Abramo Bagnara4c515482011-11-26 13:33:46 +0000869 if (D->isOutOfLine()) {
870 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
871 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
872 }
873
John McCalle29ba202009-08-20 01:44:21 +0000874 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000875
876 if (!PrevClassTemplate) {
877 // Queue up any out-of-line partial specializations of this member
878 // class template; the client will force their instantiation once
879 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000880 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000881 D->getPartialSpecializations(PartialSpecs);
882 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
883 if (PartialSpecs[I]->isOutOfLine())
884 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
885 }
886
John McCalle29ba202009-08-20 01:44:21 +0000887 return Inst;
888}
889
Douglas Gregord60e1052009-08-27 16:57:43 +0000890Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000891TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
892 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000893 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000894
Douglas Gregored9c0f92009-10-29 00:04:11 +0000895 // Lookup the already-instantiated declaration in the instantiation
896 // of the class template and return that.
897 DeclContext::lookup_result Found
898 = Owner->lookup(ClassTemplate->getDeclName());
899 if (Found.first == Found.second)
900 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000901
Douglas Gregored9c0f92009-10-29 00:04:11 +0000902 ClassTemplateDecl *InstClassTemplate
903 = dyn_cast<ClassTemplateDecl>(*Found.first);
904 if (!InstClassTemplate)
905 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000906
Douglas Gregord65587f2010-11-10 19:44:59 +0000907 if (ClassTemplatePartialSpecializationDecl *Result
908 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
909 return Result;
910
911 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000912}
913
914Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000915TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000916 // Create a local instantiation scope for this function template, which
917 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000918 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000919 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000920 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000921
Douglas Gregord60e1052009-08-27 16:57:43 +0000922 TemplateParameterList *TempParams = D->getTemplateParameters();
923 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000924 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000925 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000926
Douglas Gregora735b202009-10-13 14:39:41 +0000927 FunctionDecl *Instantiated = 0;
928 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000929 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000930 InstParams));
931 else
932 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000933 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000934 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000935
Douglas Gregora735b202009-10-13 14:39:41 +0000936 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000937 return 0;
938
John McCall46460a62010-01-20 21:53:11 +0000939 Instantiated->setAccess(D->getAccess());
940
Mike Stump1eb44332009-09-09 15:08:12 +0000941 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000942 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000943 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000944 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000945 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000946 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000947 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000948
John McCallb1a56e72010-03-26 23:10:15 +0000949 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
950
John McCalle976ffe2009-12-14 23:19:40 +0000951 // Link the instantiation back to the pattern *unless* this is a
952 // non-definition friend declaration.
953 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000954 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000955 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000956
John McCallb1a56e72010-03-26 23:10:15 +0000957 // Make declarations visible in the appropriate context.
958 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000959 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000960
Douglas Gregord60e1052009-08-27 16:57:43 +0000961 return InstTemplate;
962}
963
Douglas Gregord475b8d2009-03-25 21:17:03 +0000964Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
965 CXXRecordDecl *PrevDecl = 0;
966 if (D->isInjectedClassName())
967 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000968 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000969 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000970 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000971 TemplateArgs);
972 if (!Prev) return 0;
973 PrevDecl = cast<CXXRecordDecl>(Prev);
974 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000975
976 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000977 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000978 D->getLocStart(), D->getLocation(),
979 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000980
981 // Substitute the nested name specifier, if any.
982 if (SubstQualifier(D, Record))
983 return 0;
984
Douglas Gregord475b8d2009-03-25 21:17:03 +0000985 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000986 // FIXME: Check against AS_none is an ugly hack to work around the issue that
987 // the tag decls introduced by friend class declarations don't have an access
988 // specifier. Remove once this area of the code gets sorted out.
989 if (D->getAccess() != AS_none)
990 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000991 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000992 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000993
John McCall02cace72009-08-28 07:59:38 +0000994 // If the original function was part of a friend declaration,
995 // inherit its namespace state.
996 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
997 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
998
Douglas Gregor9901c572010-05-21 00:31:19 +0000999 // Make sure that anonymous structs and unions are recorded.
1000 if (D->isAnonymousStructOrUnion()) {
1001 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001002 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001003 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1004 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001005
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001006 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001007 return Record;
1008}
1009
John McCall02cace72009-08-28 07:59:38 +00001010/// Normal class members are of more specific types and therefore
1011/// don't make it here. This function serves two purposes:
1012/// 1) instantiating function templates
1013/// 2) substituting friend declarations
1014/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001015Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001016 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001017 // Check whether there is already a function template specialization for
1018 // this declaration.
1019 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCallb0cb0222010-03-27 05:57:59 +00001020 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001021 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001022 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001024 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001025 FunctionDecl *SpecFunc
1026 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1027 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001028
Douglas Gregor127102b2009-06-29 20:59:39 +00001029 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001030 if (SpecFunc)
1031 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001032 }
Mike Stump1eb44332009-09-09 15:08:12 +00001033
John McCallb0cb0222010-03-27 05:57:59 +00001034 bool isFriend;
1035 if (FunctionTemplate)
1036 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1037 else
1038 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1039
Douglas Gregor79c22782010-01-16 20:21:20 +00001040 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001041 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001042 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001043 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001044 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Chris Lattner5f9e2722011-07-23 10:55:15 +00001046 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001047 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001048 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001049 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001050 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001051
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001052 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1053 if (QualifierLoc) {
1054 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1055 TemplateArgs);
1056 if (!QualifierLoc)
1057 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001058 }
1059
John McCall68b6b872010-02-06 01:50:47 +00001060 // If we're instantiating a local function declaration, put the result
1061 // in the owner; otherwise we need to find the instantiated context.
1062 DeclContext *DC;
1063 if (D->getDeclContext()->isFunctionOrMethod())
1064 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001065 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001066 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001067 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001068 DC = SemaRef.computeDeclContext(SS);
1069 if (!DC) return 0;
1070 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001071 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001072 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001073 }
John McCall68b6b872010-02-06 01:50:47 +00001074
John McCall02cace72009-08-28 07:59:38 +00001075 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001076 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1077 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001078 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001079 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001080 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001081
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001082 if (QualifierLoc)
1083 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001084
John McCallb1a56e72010-03-26 23:10:15 +00001085 DeclContext *LexicalDC = Owner;
1086 if (!isFriend && D->isOutOfLine()) {
1087 assert(D->getDeclContext()->isFileContext());
1088 LexicalDC = D->getDeclContext();
1089 }
1090
1091 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001092
Douglas Gregore53060f2009-06-25 22:08:12 +00001093 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001094 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001095 // Adopt the already-instantiated parameters into our own context.
1096 for (unsigned P = 0; P < Params.size(); ++P)
1097 if (Params[P])
1098 Params[P]->setOwningFunction(Function);
1099 } else {
1100 // Since we were instantiated via a typedef of a function type, create
1101 // new parameters.
1102 const FunctionProtoType *Proto
1103 = Function->getType()->getAs<FunctionProtoType>();
1104 assert(Proto && "No function prototype in template instantiation?");
1105 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1106 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1107 ParmVarDecl *Param
1108 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1109 *AI);
1110 Param->setScopeInfo(0, Params.size());
1111 Params.push_back(Param);
1112 }
1113 }
David Blaikie4278c652011-09-21 18:16:56 +00001114 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001115
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001116 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001117 if (TemplateParams) {
1118 // Our resulting instantiation is actually a function template, since we
1119 // are substituting only the outer template parameters. For example, given
1120 //
1121 // template<typename T>
1122 // struct X {
1123 // template<typename U> friend void f(T, U);
1124 // };
1125 //
1126 // X<int> x;
1127 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001128 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001129 // which means substituting int for T, but leaving "f" as a friend function
1130 // template.
1131 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001132 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001133 Function->getLocation(),
1134 Function->getDeclName(),
1135 TemplateParams, Function);
1136 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001137
1138 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001139
1140 if (isFriend && D->isThisDeclarationADefinition()) {
1141 // TODO: should we remember this connection regardless of whether
1142 // the friend declaration provided a body?
1143 FunctionTemplate->setInstantiatedFromMemberTemplate(
1144 D->getDescribedFunctionTemplate());
1145 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001146 } else if (FunctionTemplate) {
1147 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001148 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001149 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001150 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001151 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001152 Innermost.first,
1153 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001154 /*InsertPos=*/0);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001155 } else if (isFriend) {
1156 // Note, we need this connection even if the friend doesn't have a body.
1157 // Its body may exist but not have been attached yet due to deferred
1158 // parsing.
1159 // FIXME: It might be cleaner to set this when attaching the body to the
1160 // friend function declaration, however that would require finding all the
1161 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001162 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001163 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001164
Douglas Gregore53060f2009-06-25 22:08:12 +00001165 if (InitFunctionInstantiation(Function, D))
1166 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001167
John McCallaf2094e2010-04-08 09:05:18 +00001168 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001169
John McCall68263142009-11-18 22:49:29 +00001170 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1171 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1172
John McCallaf2094e2010-04-08 09:05:18 +00001173 if (DependentFunctionTemplateSpecializationInfo *Info
1174 = D->getDependentSpecializationInfo()) {
1175 assert(isFriend && "non-friend has dependent specialization info?");
1176
1177 // This needs to be set now for future sanity.
1178 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1179
1180 // Instantiate the explicit template arguments.
1181 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1182 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001183 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1184 ExplicitArgs, TemplateArgs))
1185 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001186
1187 // Map the candidate templates to their instantiations.
1188 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1189 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1190 Info->getTemplate(I),
1191 TemplateArgs);
1192 if (!Temp) return 0;
1193
1194 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1195 }
1196
1197 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1198 &ExplicitArgs,
1199 Previous))
1200 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001201
John McCallaf2094e2010-04-08 09:05:18 +00001202 isExplicitSpecialization = true;
1203
1204 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001205 // Look only into the namespace where the friend would be declared to
1206 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001207 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001208 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001209
Douglas Gregora735b202009-10-13 14:39:41 +00001210 // In C++, the previous declaration we find might be a tag type
1211 // (class or enum). In this case, the new declaration will hide the
1212 // tag type. Note that this does does not apply if we're declaring a
1213 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001214 if (Previous.isSingleTagDecl())
1215 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001216 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001217
John McCall9f54ad42009-12-10 09:41:52 +00001218 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001219 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001220
John McCall76d32642010-04-24 01:30:58 +00001221 NamedDecl *PrincipalDecl = (TemplateParams
1222 ? cast<NamedDecl>(FunctionTemplate)
1223 : Function);
1224
Douglas Gregora735b202009-10-13 14:39:41 +00001225 // If the original function was part of a friend declaration,
1226 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001227 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001228 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001229 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001230 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001231 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001232 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001233
1234 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001235 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001236
Gabor Greif77535df2010-08-30 22:25:56 +00001237 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001238
Richard Smith53e53512011-10-19 00:54:10 +00001239 // C++98 [temp.friend]p5: When a function is defined in a friend function
1240 // declaration in a class template, the function is defined at each
1241 // instantiation of the class template. The function is defined even if it
1242 // is never used.
1243 // C++11 [temp.friend]p4: When a function is defined in a friend function
1244 // declaration in a class template, the function is instantiated when the
1245 // function is odr-used.
1246 //
1247 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1248 // redefinition, but don't instantiate the function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001249 if ((!SemaRef.getLangOpts().CPlusPlus0x ||
Richard Smith53e53512011-10-19 00:54:10 +00001250 SemaRef.Diags.getDiagnosticLevel(
1251 diag::warn_cxx98_compat_friend_redefinition,
1252 Function->getLocation())
1253 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001254 D->isThisDeclarationADefinition()) {
1255 // Check for a function body.
1256 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001257 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001258 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001259 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001260 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001261 diag::warn_cxx98_compat_friend_redefinition :
1262 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001263 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001264 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001265 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001266 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001267 // Check for redefinitions due to other instantiations of this or
1268 // a similar friend function.
1269 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1270 REnd = Function->redecls_end();
1271 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001272 if (*R == Function)
1273 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001274 switch (R->getFriendObjectKind()) {
1275 case Decl::FOK_None:
David Blaikie4e4d0842012-03-11 07:00:24 +00001276 if (!SemaRef.getLangOpts().CPlusPlus0x &&
Richard Smith53e53512011-10-19 00:54:10 +00001277 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001278 if (MemberSpecializationInfo *MSInfo
1279 = Function->getMemberSpecializationInfo()) {
1280 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1281 SourceLocation Loc = R->getLocation(); // FIXME
1282 MSInfo->setPointOfInstantiation(Loc);
1283 SemaRef.PendingLocalImplicitInstantiations.push_back(
1284 std::make_pair(Function, Loc));
1285 queuedInstantiation = true;
1286 }
1287 }
1288 }
1289 break;
1290 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001291 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001292 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001293 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001294 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001295 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001296 diag::warn_cxx98_compat_friend_redefinition :
1297 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001298 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001299 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001300 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001301 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001302 break;
1303 }
1304 }
1305 }
1306 }
Douglas Gregora735b202009-10-13 14:39:41 +00001307 }
1308
John McCall76d32642010-04-24 01:30:58 +00001309 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1310 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1311 PrincipalDecl->setNonMemberOperator();
1312
Sean Hunteb88ae52011-05-23 21:07:59 +00001313 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001314 return Function;
1315}
1316
Douglas Gregord60e1052009-08-27 16:57:43 +00001317Decl *
1318TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001319 TemplateParameterList *TemplateParams,
1320 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001321 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregord60e1052009-08-27 16:57:43 +00001322 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001323 // We are creating a function template specialization from a function
1324 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001325 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001326 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001327 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001328
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001329 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001330 FunctionDecl *SpecFunc
1331 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1332 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001333
Douglas Gregor6b906862009-08-21 00:16:32 +00001334 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001335 if (SpecFunc)
1336 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001337 }
1338
John McCallb0cb0222010-03-27 05:57:59 +00001339 bool isFriend;
1340 if (FunctionTemplate)
1341 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1342 else
1343 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1344
Douglas Gregor79c22782010-01-16 20:21:20 +00001345 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001346 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001347 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001348 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001349
John McCall4eab39f2010-10-19 02:26:41 +00001350 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001351 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001352 unsigned NumTempParamLists = 0;
1353 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1354 TempParamLists.set_size(NumTempParamLists);
1355 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1356 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1357 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1358 if (!InstParams)
1359 return NULL;
1360 TempParamLists[I] = InstParams;
1361 }
1362 }
1363
Chris Lattner5f9e2722011-07-23 10:55:15 +00001364 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001365 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001366 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001367 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001368 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001369
Abramo Bagnara723df242010-12-14 22:11:44 +00001370 // \brief If the type of this function, after ignoring parentheses,
1371 // is not *directly* a function type, then we're instantiating a function
1372 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001373 //
1374 // typedef int functype(int, int);
1375 // functype func;
1376 //
1377 // In this case, we'll just go instantiate the ParmVarDecls that we
1378 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001379 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001380 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001381 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001382 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1383 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001384 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001385 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001386 }
1387
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001388 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1389 if (QualifierLoc) {
1390 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001391 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001392 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001393 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001394 }
1395
1396 DeclContext *DC = Owner;
1397 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001398 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001399 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001400 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001401 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001402
1403 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1404 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001405 } else {
1406 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1407 D->getDeclContext(),
1408 TemplateArgs);
1409 }
1410 if (!DC) return 0;
1411 }
1412
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001413 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001414 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001415 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001416
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001417 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001418 DeclarationNameInfo NameInfo
1419 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001420 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001421 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001422 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001423 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001424 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001425 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001426 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001427 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001428 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001429 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001430 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001431 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001432 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001433 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001434 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001435 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001436 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001437 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001438 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001439 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001440 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001441 D->isStatic(),
1442 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001443 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001444 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001445 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001446
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001447 if (QualifierLoc)
1448 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001449
Douglas Gregord60e1052009-08-27 16:57:43 +00001450 if (TemplateParams) {
1451 // Our resulting instantiation is actually a function template, since we
1452 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001453 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001454 // template<typename T>
1455 // struct X {
1456 // template<typename U> void f(T, U);
1457 // };
1458 //
1459 // X<int> x;
1460 //
1461 // We are instantiating the member template "f" within X<int>, which means
1462 // substituting int for T, but leaving "f" as a member function template.
1463 // Build the function template itself.
1464 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1465 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001466 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001467 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001468 if (isFriend) {
1469 FunctionTemplate->setLexicalDeclContext(Owner);
1470 FunctionTemplate->setObjectOfFriendDecl(true);
1471 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001472 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001473 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001474 } else if (FunctionTemplate) {
1475 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001476 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001477 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001478 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001479 TemplateArgumentList::CreateCopy(SemaRef.Context,
1480 Innermost.first,
1481 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001482 /*InsertPos=*/0);
John McCallb0cb0222010-03-27 05:57:59 +00001483 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001484 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001485 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001486 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001487
Mike Stump1eb44332009-09-09 15:08:12 +00001488 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001489 // out-of-line, the instantiation will have the same lexical
1490 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001491 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001492 if (NumTempParamLists)
1493 Method->setTemplateParameterListsInfo(SemaRef.Context,
1494 NumTempParamLists,
1495 TempParamLists.data());
1496
John McCallb0cb0222010-03-27 05:57:59 +00001497 Method->setLexicalDeclContext(Owner);
1498 Method->setObjectOfFriendDecl(true);
1499 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001500 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001501
Douglas Gregor5545e162009-03-24 00:38:23 +00001502 // Attach the parameters
1503 for (unsigned P = 0; P < Params.size(); ++P)
1504 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001505 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001506
1507 if (InitMethodInstantiation(Method, D))
1508 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001509
Abramo Bagnara25777432010-08-11 22:01:17 +00001510 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1511 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001512
John McCallb0cb0222010-03-27 05:57:59 +00001513 if (!FunctionTemplate || TemplateParams || isFriend) {
1514 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001515
Douglas Gregordec06662009-08-21 18:42:58 +00001516 // In C++, the previous declaration we find might be a tag type
1517 // (class or enum). In this case, the new declaration will hide the
1518 // tag type. Note that this does does not apply if we're declaring a
1519 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001520 if (Previous.isSingleTagDecl())
1521 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001522 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001523
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001524 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001525 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001526
Douglas Gregor4ba31362009-12-01 17:24:26 +00001527 if (D->isPure())
1528 SemaRef.CheckPureMethod(Method, SourceRange());
1529
John McCall46460a62010-01-20 21:53:11 +00001530 Method->setAccess(D->getAccess());
1531
Anders Carlsson9eefa222011-01-20 06:52:44 +00001532 SemaRef.CheckOverrideControl(Method);
1533
Eli Friedman3bc45152011-11-15 22:39:08 +00001534 // If a function is defined as defaulted or deleted, mark it as such now.
1535 if (D->isDefaulted())
1536 Method->setDefaulted();
1537 if (D->isDeletedAsWritten())
1538 Method->setDeletedAsWritten();
1539
John McCallb0cb0222010-03-27 05:57:59 +00001540 if (FunctionTemplate) {
1541 // If there's a function template, let our caller handle it.
1542 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1543 // Don't hide a (potentially) valid declaration with an invalid one.
1544 } else {
1545 NamedDecl *DeclToAdd = (TemplateParams
1546 ? cast<NamedDecl>(FunctionTemplate)
1547 : Method);
1548 if (isFriend)
1549 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001550 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001551 Owner->addDecl(DeclToAdd);
1552 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001553
1554 if (D->isExplicitlyDefaulted()) {
1555 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1556 } else {
1557 assert(!D->isDefaulted() &&
1558 "should not implicitly default uninstantiated function");
1559 }
1560
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001561 return Method;
1562}
1563
Douglas Gregor615c5d42009-03-24 16:43:20 +00001564Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001565 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001566}
1567
Douglas Gregor03b2b072009-03-24 00:15:49 +00001568Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001569 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001570}
1571
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001572Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001573 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001574}
1575
Douglas Gregor6477b692009-03-25 15:04:13 +00001576ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001577 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001578 llvm::Optional<unsigned>(),
1579 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001580}
1581
John McCalle29ba202009-08-20 01:44:21 +00001582Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1583 TemplateTypeParmDecl *D) {
1584 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001585 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001586
John McCalle29ba202009-08-20 01:44:21 +00001587 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001588 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1589 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001590 D->getDepth() - TemplateArgs.getNumLevels(),
1591 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001592 D->wasDeclaredWithTypename(),
1593 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001594 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001595
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001596 if (D->hasDefaultArgument())
1597 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1598
1599 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001600 // scope.
1601 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001602
John McCalle29ba202009-08-20 01:44:21 +00001603 return Inst;
1604}
1605
Douglas Gregor33642df2009-10-23 23:25:44 +00001606Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1607 NonTypeTemplateParmDecl *D) {
1608 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001609 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001610 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1611 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001612 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001613 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001614 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001615 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001616
1617 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001618 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001619 // expansion of types. Substitute into each of the expanded types.
1620 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1621 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1622 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1623 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1624 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001625 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001626 D->getDeclName());
1627 if (!NewDI)
1628 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001629
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001630 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1631 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1632 D->getLocation());
1633 if (NewT.isNull())
1634 return 0;
1635 ExpandedParameterPackTypes.push_back(NewT);
1636 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001637
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001638 IsExpandedParameterPack = true;
1639 DI = D->getTypeSourceInfo();
1640 T = DI->getType();
1641 } else if (isa<PackExpansionTypeLoc>(TL)) {
1642 // The non-type template parameter pack's type is a pack expansion of types.
1643 // Determine whether we need to expand this parameter pack into separate
1644 // types.
1645 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1646 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001647 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001648 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001649
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001650 // Determine whether the set of unexpanded parameter packs can and should
1651 // be expanded.
1652 bool Expand = true;
1653 bool RetainExpansion = false;
1654 llvm::Optional<unsigned> OrigNumExpansions
1655 = Expansion.getTypePtr()->getNumExpansions();
1656 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1657 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1658 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001659 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001660 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001661 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001662 NumExpansions))
1663 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001664
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001665 if (Expand) {
1666 for (unsigned I = 0; I != *NumExpansions; ++I) {
1667 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1668 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001669 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001670 D->getDeclName());
1671 if (!NewDI)
1672 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001673
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001674 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1675 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1676 NewDI->getType(),
1677 D->getLocation());
1678 if (NewT.isNull())
1679 return 0;
1680 ExpandedParameterPackTypes.push_back(NewT);
1681 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001682
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001683 // Note that we have an expanded parameter pack. The "type" of this
1684 // expanded parameter pack is the original expansion type, but callers
1685 // will end up using the expanded parameter pack types for type-checking.
1686 IsExpandedParameterPack = true;
1687 DI = D->getTypeSourceInfo();
1688 T = DI->getType();
1689 } else {
1690 // We cannot fully expand the pack expansion now, so substitute into the
1691 // pattern and create a new pack expansion type.
1692 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1693 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001694 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001695 D->getDeclName());
1696 if (!NewPattern)
1697 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001698
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001699 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1700 NumExpansions);
1701 if (!DI)
1702 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001703
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001704 T = DI->getType();
1705 }
1706 } else {
1707 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001708 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001709 D->getLocation(), D->getDeclName());
1710 if (!DI)
1711 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001712
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001713 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001714 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001715 D->getLocation());
1716 if (T.isNull()) {
1717 T = SemaRef.Context.IntTy;
1718 Invalid = true;
1719 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001720 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001721
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001722 NonTypeTemplateParmDecl *Param;
1723 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001724 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001725 D->getInnerLocStart(),
1726 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001727 D->getDepth() - TemplateArgs.getNumLevels(),
1728 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001729 D->getIdentifier(), T,
1730 DI,
1731 ExpandedParameterPackTypes.data(),
1732 ExpandedParameterPackTypes.size(),
1733 ExpandedParameterPackTypesAsWritten.data());
1734 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001735 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001736 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001737 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001738 D->getDepth() - TemplateArgs.getNumLevels(),
1739 D->getPosition(),
1740 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001741 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001742
Douglas Gregor9a299e02011-03-04 17:52:15 +00001743 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001744 if (Invalid)
1745 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001746
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001747 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001748
1749 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001750 // scope.
1751 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001752 return Param;
1753}
1754
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001755Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001756TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1757 TemplateTemplateParmDecl *D) {
1758 // Instantiate the template parameter list of the template template parameter.
1759 TemplateParameterList *TempParams = D->getTemplateParameters();
1760 TemplateParameterList *InstParams;
1761 {
1762 // Perform the actual substitution of template parameters within a new,
1763 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001764 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001765 InstParams = SubstTemplateParams(TempParams);
1766 if (!InstParams)
1767 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001768 }
1769
Douglas Gregor9106ef72009-11-11 16:58:32 +00001770 // Build the template template parameter.
1771 TemplateTemplateParmDecl *Param
1772 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001773 D->getDepth() - TemplateArgs.getNumLevels(),
1774 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001775 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001776 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001777 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001778
1779 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001780 // scope.
1781 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001782
Douglas Gregor9106ef72009-11-11 16:58:32 +00001783 return Param;
1784}
1785
Douglas Gregor48c32a72009-11-17 06:07:40 +00001786Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001787 // Using directives are never dependent (and never contain any types or
1788 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001789
Douglas Gregor48c32a72009-11-17 06:07:40 +00001790 UsingDirectiveDecl *Inst
1791 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001792 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001793 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001794 D->getIdentLocation(),
1795 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001796 D->getCommonAncestor());
1797 Owner->addDecl(Inst);
1798 return Inst;
1799}
1800
John McCalled976492009-12-04 22:46:56 +00001801Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001802
1803 // The nested name specifier may be dependent, for example
1804 // template <typename T> struct t {
1805 // struct s1 { T f1(); };
1806 // struct s2 : s1 { using s1::f1; };
1807 // };
1808 // template struct t<int>;
1809 // Here, in using s1::f1, s1 refers to t<T>::s1;
1810 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001811 NestedNameSpecifierLoc QualifierLoc
1812 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1813 TemplateArgs);
1814 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001815 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001816
1817 // The name info is non-dependent, so no transformation
1818 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001819 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001820
John McCall9f54ad42009-12-10 09:41:52 +00001821 // We only need to do redeclaration lookups if we're in a class
1822 // scope (in fact, it's not really even possible in non-class
1823 // scopes).
1824 bool CheckRedeclaration = Owner->isRecord();
1825
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001826 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1827 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001828
John McCalled976492009-12-04 22:46:56 +00001829 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001830 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001831 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001832 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001833 D->isTypeName());
1834
Douglas Gregor5149f372011-02-25 15:54:31 +00001835 CXXScopeSpec SS;
1836 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001837 if (CheckRedeclaration) {
1838 Prev.setHideTags(false);
1839 SemaRef.LookupQualifiedName(Prev, Owner);
1840
1841 // Check for invalid redeclarations.
1842 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1843 D->isTypeName(), SS,
1844 D->getLocation(), Prev))
1845 NewUD->setInvalidDecl();
1846
1847 }
1848
1849 if (!NewUD->isInvalidDecl() &&
1850 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001851 D->getLocation()))
1852 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001853
John McCalled976492009-12-04 22:46:56 +00001854 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1855 NewUD->setAccess(D->getAccess());
1856 Owner->addDecl(NewUD);
1857
John McCall9f54ad42009-12-10 09:41:52 +00001858 // Don't process the shadow decls for an invalid decl.
1859 if (NewUD->isInvalidDecl())
1860 return NewUD;
1861
Richard Smithc5a89a12012-04-02 01:30:27 +00001862 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
1863 if (SemaRef.CheckInheritingConstructorUsingDecl(NewUD))
1864 NewUD->setInvalidDecl();
1865 return NewUD;
1866 }
1867
John McCall323c3102009-12-22 22:26:37 +00001868 bool isFunctionScope = Owner->isFunctionOrMethod();
1869
John McCall9f54ad42009-12-10 09:41:52 +00001870 // Process the shadow decls.
1871 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1872 I != E; ++I) {
1873 UsingShadowDecl *Shadow = *I;
1874 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001875 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1876 Shadow->getLocation(),
1877 Shadow->getTargetDecl(),
1878 TemplateArgs));
1879 if (!InstTarget)
1880 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001881
1882 if (CheckRedeclaration &&
1883 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1884 continue;
1885
1886 UsingShadowDecl *InstShadow
1887 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1888 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001889
1890 if (isFunctionScope)
1891 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001892 }
John McCalled976492009-12-04 22:46:56 +00001893
1894 return NewUD;
1895}
1896
1897Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001898 // Ignore these; we handle them in bulk when processing the UsingDecl.
1899 return 0;
John McCalled976492009-12-04 22:46:56 +00001900}
1901
John McCall7ba107a2009-11-18 02:36:19 +00001902Decl * TemplateDeclInstantiator
1903 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001904 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001905 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001906 TemplateArgs);
1907 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001908 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001909
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001910 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001911 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001912
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001913 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1914 // Hence, no tranformation is required for it.
1915 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001916 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001917 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001918 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001919 /*instantiation*/ true,
1920 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001921 if (UD)
John McCalled976492009-12-04 22:46:56 +00001922 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1923
John McCall7ba107a2009-11-18 02:36:19 +00001924 return UD;
1925}
1926
1927Decl * TemplateDeclInstantiator
1928 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001929 NestedNameSpecifierLoc QualifierLoc
1930 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1931 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001932 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001933
John McCall7ba107a2009-11-18 02:36:19 +00001934 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001935 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001936
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001937 DeclarationNameInfo NameInfo
1938 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1939
John McCall7ba107a2009-11-18 02:36:19 +00001940 NamedDecl *UD =
1941 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001942 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001943 /*instantiation*/ true,
1944 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001945 if (UD)
John McCalled976492009-12-04 22:46:56 +00001946 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1947
Anders Carlsson0d8df782009-08-29 19:37:28 +00001948 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001949}
1950
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001951
1952Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1953 ClassScopeFunctionSpecializationDecl *Decl) {
1954 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nico Weber6b020092012-06-25 17:21:05 +00001955 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD,
1956 0, true));
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001957
1958 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1959 Sema::ForRedeclaration);
1960
Nico Weber6b020092012-06-25 17:21:05 +00001961 TemplateArgumentListInfo TemplateArgs;
1962 TemplateArgumentListInfo* TemplateArgsPtr = 0;
1963 if (Decl->hasExplicitTemplateArgs()) {
1964 TemplateArgs = Decl->templateArgs();
1965 TemplateArgsPtr = &TemplateArgs;
1966 }
1967
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001968 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber6b020092012-06-25 17:21:05 +00001969 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
1970 Previous)) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001971 NewFD->setInvalidDecl();
1972 return NewFD;
1973 }
1974
1975 // Associate the specialization with the pattern.
1976 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1977 assert(Specialization && "Class scope Specialization is null");
1978 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1979
1980 return NewFD;
1981}
1982
John McCallce3ff2b2009-08-25 22:02:44 +00001983Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001984 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001985 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001986 if (D->isInvalidDecl())
1987 return 0;
1988
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001989 return Instantiator.Visit(D);
1990}
1991
John McCalle29ba202009-08-20 01:44:21 +00001992/// \brief Instantiates a nested template parameter list in the current
1993/// instantiation context.
1994///
1995/// \param L The parameter list to instantiate
1996///
1997/// \returns NULL if there was an error
1998TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001999TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00002000 // Get errors for all the parameters before bailing out.
2001 bool Invalid = false;
2002
2003 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002004 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002005 ParamVector Params;
2006 Params.reserve(N);
2007 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2008 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002009 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002010 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002011 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002012 }
2013
2014 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002015 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002016 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002017
2018 TemplateParameterList *InstL
2019 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2020 L->getLAngleLoc(), &Params.front(), N,
2021 L->getRAngleLoc());
2022 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002023}
John McCalle29ba202009-08-20 01:44:21 +00002024
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002025/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002026/// specialization.
2027///
2028/// \param ClassTemplate the (instantiated) class template that is partially
2029// specialized by the instantiation of \p PartialSpec.
2030///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002031/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002032/// specialization that we are instantiating.
2033///
Douglas Gregord65587f2010-11-10 19:44:59 +00002034/// \returns The instantiated partial specialization, if successful; otherwise,
2035/// NULL to indicate an error.
2036ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002037TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2038 ClassTemplateDecl *ClassTemplate,
2039 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002040 // Create a local instantiation scope for this class template partial
2041 // specialization, which will contain the instantiations of the template
2042 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002043 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002044
Douglas Gregored9c0f92009-10-29 00:04:11 +00002045 // Substitute into the template parameters of the class template partial
2046 // specialization.
2047 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2048 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2049 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002050 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002051
Douglas Gregored9c0f92009-10-29 00:04:11 +00002052 // Substitute into the template arguments of the class template partial
2053 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002054 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002055 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2056 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002057 InstTemplateArgs, TemplateArgs))
2058 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002059
Douglas Gregored9c0f92009-10-29 00:04:11 +00002060 // Check that the template argument list is well-formed for this
2061 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002062 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002063 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002064 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002065 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002066 false,
2067 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002068 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002069
2070 // Figure out where to insert this class template partial specialization
2071 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002072 void *InsertPos = 0;
2073 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002074 = ClassTemplate->findPartialSpecialization(Converted.data(),
2075 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002076
Douglas Gregored9c0f92009-10-29 00:04:11 +00002077 // Build the canonical type that describes the converted template
2078 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002079 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002080 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002081 Converted.data(),
2082 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002083
2084 // Build the fully-sugared type for this class template
2085 // specialization as the user wrote in the specialization
2086 // itself. This means that we'll pretty-print the type retrieved
2087 // from the specialization's declaration the way that the user
2088 // actually wrote the specialization, rather than formatting the
2089 // name based on the "canonical" representation used to store the
2090 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002091 TypeSourceInfo *WrittenTy
2092 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2093 TemplateName(ClassTemplate),
2094 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002095 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002096 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002097
Douglas Gregored9c0f92009-10-29 00:04:11 +00002098 if (PrevDecl) {
2099 // We've already seen a partial specialization with the same template
2100 // parameters and template arguments. This can happen, for example, when
2101 // substituting the outer template arguments ends up causing two
2102 // class template partial specializations of a member class template
2103 // to have identical forms, e.g.,
2104 //
2105 // template<typename T, typename U>
2106 // struct Outer {
2107 // template<typename X, typename Y> struct Inner;
2108 // template<typename Y> struct Inner<T, Y>;
2109 // template<typename Y> struct Inner<U, Y>;
2110 // };
2111 //
2112 // Outer<int, int> outer; // error: the partial specializations of Inner
2113 // // have the same signature.
2114 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002115 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002116 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2117 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002118 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002119 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002120
2121
Douglas Gregored9c0f92009-10-29 00:04:11 +00002122 // Create the class template partial specialization declaration.
2123 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002124 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002125 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002126 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002127 PartialSpec->getLocStart(),
2128 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002129 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002130 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002131 Converted.data(),
2132 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002133 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002134 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002135 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002136 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002137 // Substitute the nested name specifier, if any.
2138 if (SubstQualifier(PartialSpec, InstPartialSpec))
2139 return 0;
2140
Douglas Gregored9c0f92009-10-29 00:04:11 +00002141 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002142 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002143
Douglas Gregored9c0f92009-10-29 00:04:11 +00002144 // Add this partial specialization to the set of class template partial
2145 // specializations.
Douglas Gregor1e1e9722012-03-28 14:34:23 +00002146 ClassTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/0);
Douglas Gregord65587f2010-11-10 19:44:59 +00002147 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002148}
2149
John McCall21ef0fa2010-03-11 09:03:00 +00002150TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002151TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002152 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002153 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2154 assert(OldTInfo && "substituting function without type source info");
2155 assert(Params.empty() && "parameter vector is non-empty at start");
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002156
2157 CXXRecordDecl *ThisContext = 0;
2158 unsigned ThisTypeQuals = 0;
2159 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2160 ThisContext = Method->getParent();
2161 ThisTypeQuals = Method->getTypeQualifiers();
2162 }
2163
John McCall6cd3b9f2010-04-09 17:38:44 +00002164 TypeSourceInfo *NewTInfo
2165 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2166 D->getTypeSpecStartLoc(),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002167 D->getDeclName(),
2168 ThisContext, ThisTypeQuals);
John McCall21ef0fa2010-03-11 09:03:00 +00002169 if (!NewTInfo)
2170 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002171
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002172 if (NewTInfo != OldTInfo) {
2173 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002174 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002175 if (FunctionProtoTypeLoc *OldProtoLoc
2176 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002177 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002178 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2179 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002180 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2181 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2182 OldIdx != NumOldParams; ++OldIdx) {
2183 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2184 if (!OldParam->isParameterPack() ||
Richard Smith7c5d28b2012-03-13 06:56:52 +00002185 // FIXME: Is this right? OldParam could expand to an empty parameter
2186 // pack and the next parameter could be an unexpanded parameter pack
Douglas Gregor12c9c002011-01-07 16:43:16 +00002187 (NewIdx < NumNewParams &&
2188 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002189 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002190 // instantiated to a (still-dependent) parameter pack.
2191 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2192 Params.push_back(NewParam);
2193 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2194 NewParam);
2195 continue;
2196 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002197
Douglas Gregor12c9c002011-01-07 16:43:16 +00002198 // Parameter pack: make the instantiation an argument pack.
2199 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2200 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002201 unsigned NumArgumentsInExpansion
2202 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2203 TemplateArgs);
2204 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002205 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2206 Params.push_back(NewParam);
2207 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2208 NewParam);
2209 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002210 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002211 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002212 } else {
2213 // The function type itself was not dependent and therefore no
2214 // substitution occurred. However, we still need to instantiate
2215 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002216 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002217 if (FunctionProtoTypeLoc *OldProtoLoc
2218 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2219 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2220 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2221 if (!Parm)
2222 return 0;
2223 Params.push_back(Parm);
2224 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002225 }
2226 }
John McCall21ef0fa2010-03-11 09:03:00 +00002227 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002228}
2229
Richard Smithe6975e92012-04-17 00:58:00 +00002230/// Introduce the instantiated function parameters into the local
2231/// instantiation scope, and set the parameter names to those used
2232/// in the template.
2233static void addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
2234 const FunctionDecl *PatternDecl,
2235 LocalInstantiationScope &Scope,
2236 const MultiLevelTemplateArgumentList &TemplateArgs) {
2237 unsigned FParamIdx = 0;
2238 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2239 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2240 if (!PatternParam->isParameterPack()) {
2241 // Simple case: not a parameter pack.
2242 assert(FParamIdx < Function->getNumParams());
2243 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2244 FunctionParam->setDeclName(PatternParam->getDeclName());
2245 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2246 ++FParamIdx;
2247 continue;
2248 }
2249
2250 // Expand the parameter pack.
2251 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2252 unsigned NumArgumentsInExpansion
2253 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
2254 for (unsigned Arg = 0; Arg < NumArgumentsInExpansion; ++Arg) {
2255 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2256 FunctionParam->setDeclName(PatternParam->getDeclName());
2257 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2258 ++FParamIdx;
2259 }
2260 }
2261}
2262
2263static void InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New,
2264 const FunctionProtoType *Proto,
2265 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith13bffc52012-04-19 00:08:28 +00002266 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
2267
Richard Smithe6975e92012-04-17 00:58:00 +00002268 // C++11 [expr.prim.general]p3:
2269 // If a declaration declares a member function or member function
2270 // template of a class X, the expression this is a prvalue of type
2271 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2272 // and the end of the function-definition, member-declarator, or
2273 // declarator.
2274 CXXRecordDecl *ThisContext = 0;
2275 unsigned ThisTypeQuals = 0;
2276 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) {
2277 ThisContext = Method->getParent();
2278 ThisTypeQuals = Method->getTypeQualifiers();
2279 }
2280 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals,
2281 SemaRef.getLangOpts().CPlusPlus0x);
2282
2283 // The function has an exception specification or a "noreturn"
2284 // attribute. Substitute into each of the exception types.
2285 SmallVector<QualType, 4> Exceptions;
2286 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2287 // FIXME: Poor location information!
2288 if (const PackExpansionType *PackExpansion
2289 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2290 // We have a pack expansion. Instantiate it.
2291 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2292 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2293 Unexpanded);
2294 assert(!Unexpanded.empty() &&
2295 "Pack expansion without parameter packs?");
2296
2297 bool Expand = false;
2298 bool RetainExpansion = false;
2299 llvm::Optional<unsigned> NumExpansions
2300 = PackExpansion->getNumExpansions();
2301 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2302 SourceRange(),
2303 Unexpanded,
2304 TemplateArgs,
2305 Expand,
2306 RetainExpansion,
2307 NumExpansions))
2308 break;
2309
2310 if (!Expand) {
2311 // We can't expand this pack expansion into separate arguments yet;
2312 // just substitute into the pattern and create a new pack expansion
2313 // type.
2314 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2315 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2316 TemplateArgs,
2317 New->getLocation(), New->getDeclName());
2318 if (T.isNull())
2319 break;
2320
2321 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
2322 Exceptions.push_back(T);
2323 continue;
2324 }
2325
2326 // Substitute into the pack expansion pattern for each template
2327 bool Invalid = false;
2328 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
2329 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2330
2331 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2332 TemplateArgs,
2333 New->getLocation(), New->getDeclName());
2334 if (T.isNull()) {
2335 Invalid = true;
2336 break;
2337 }
2338
2339 Exceptions.push_back(T);
2340 }
2341
2342 if (Invalid)
2343 break;
2344
2345 continue;
2346 }
2347
2348 QualType T
2349 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2350 New->getLocation(), New->getDeclName());
2351 if (T.isNull() ||
2352 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2353 continue;
2354
2355 Exceptions.push_back(T);
2356 }
2357 Expr *NoexceptExpr = 0;
2358 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
2359 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2360 Sema::ConstantEvaluated);
2361 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2362 if (E.isUsable())
2363 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
2364
2365 if (E.isUsable()) {
2366 NoexceptExpr = E.take();
2367 if (!NoexceptExpr->isTypeDependent() &&
2368 !NoexceptExpr->isValueDependent())
Douglas Gregorab41fe92012-05-04 22:38:52 +00002369 NoexceptExpr
2370 = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2371 0, diag::err_noexcept_needs_constant_expression,
2372 /*AllowFold*/ false).take();
Richard Smithe6975e92012-04-17 00:58:00 +00002373 }
2374 }
2375
2376 // Rebuild the function type
2377 const FunctionProtoType *NewProto
2378 = New->getType()->getAs<FunctionProtoType>();
2379 assert(NewProto && "Template instantiation without function prototype?");
2380
2381 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
2382 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2383 EPI.NumExceptions = Exceptions.size();
2384 EPI.Exceptions = Exceptions.data();
2385 EPI.NoexceptExpr = NoexceptExpr;
2386
2387 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2388 NewProto->arg_type_begin(),
2389 NewProto->getNumArgs(),
2390 EPI));
2391}
2392
2393void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
2394 FunctionDecl *Decl) {
Richard Smith13bffc52012-04-19 00:08:28 +00002395 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
2396 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithe6975e92012-04-17 00:58:00 +00002397 return;
2398
2399 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
2400 InstantiatingTemplate::ExceptionSpecification());
2401 if (Inst)
2402 return;
2403
2404 // Enter the scope of this instantiation. We don't use
2405 // PushDeclContext because we don't have a scope.
2406 Sema::ContextRAII savedContext(*this, Decl);
2407 LocalInstantiationScope Scope(*this);
2408
2409 MultiLevelTemplateArgumentList TemplateArgs =
2410 getTemplateInstantiationArgs(Decl, 0, /*RelativeToPrimary*/true);
2411
Richard Smith13bffc52012-04-19 00:08:28 +00002412 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
2413 addInstantiatedParametersToScope(*this, Decl, Template, Scope, TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002414
Richard Smith13bffc52012-04-19 00:08:28 +00002415 ::InstantiateExceptionSpec(*this, Decl,
2416 Template->getType()->castAs<FunctionProtoType>(),
2417 TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002418}
2419
Mike Stump1eb44332009-09-09 15:08:12 +00002420/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002421/// declaration (New) from the corresponding fields of its template (Tmpl).
2422///
2423/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002424bool
2425TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002426 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002427 if (Tmpl->isDeletedAsWritten())
2428 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002429
Douglas Gregorcca9e962009-07-01 22:01:06 +00002430 // If we are performing substituting explicitly-specified template arguments
2431 // or deduced template arguments into a function template and we reach this
2432 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002433 // to keeping the new function template specialization. We therefore
2434 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002435 // into a template instantiation for this specific function template
2436 // specialization, which is not a SFINAE context, so that we diagnose any
2437 // further errors in the declaration itself.
2438 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2439 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2440 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2441 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002442 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002443 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002444 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002445 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002446 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002447 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2448 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002449 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002450 }
2451 }
Mike Stump1eb44332009-09-09 15:08:12 +00002452
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002453 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2454 assert(Proto && "Function template without prototype?");
2455
Sebastian Redl60618fa2011-03-12 11:50:43 +00002456 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalle23cf432010-12-14 08:05:40 +00002457 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalle23cf432010-12-14 08:05:40 +00002458
Richard Smithe6975e92012-04-17 00:58:00 +00002459 // DR1330: In C++11, defer instantiation of a non-trivial
2460 // exception specification.
2461 if (SemaRef.getLangOpts().CPlusPlus0x &&
2462 EPI.ExceptionSpecType != EST_None &&
2463 EPI.ExceptionSpecType != EST_DynamicNone &&
2464 EPI.ExceptionSpecType != EST_BasicNoexcept) {
Richard Smith13bffc52012-04-19 00:08:28 +00002465 FunctionDecl *ExceptionSpecTemplate = Tmpl;
2466 if (EPI.ExceptionSpecType == EST_Uninstantiated)
2467 ExceptionSpecTemplate = EPI.ExceptionSpecTemplate;
2468
Richard Smithe6975e92012-04-17 00:58:00 +00002469 // Mark the function has having an uninstantiated exception specification.
2470 const FunctionProtoType *NewProto
2471 = New->getType()->getAs<FunctionProtoType>();
2472 assert(NewProto && "Template instantiation without function prototype?");
2473 EPI = NewProto->getExtProtoInfo();
2474 EPI.ExceptionSpecType = EST_Uninstantiated;
2475 EPI.ExceptionSpecDecl = New;
Richard Smith13bffc52012-04-19 00:08:28 +00002476 EPI.ExceptionSpecTemplate = ExceptionSpecTemplate;
Richard Smithe6975e92012-04-17 00:58:00 +00002477 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2478 NewProto->arg_type_begin(),
2479 NewProto->getNumArgs(),
2480 EPI));
2481 } else {
2482 ::InstantiateExceptionSpec(SemaRef, New, Proto, TemplateArgs);
2483 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002484 }
2485
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002486 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithe6975e92012-04-17 00:58:00 +00002487 const FunctionDecl *Definition = Tmpl;
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002488 Tmpl->isDefined(Definition);
2489
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002490 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2491 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002492
Douglas Gregore53060f2009-06-25 22:08:12 +00002493 return false;
2494}
2495
Douglas Gregor5545e162009-03-24 00:38:23 +00002496/// \brief Initializes common fields of an instantiated method
2497/// declaration (New) from the corresponding fields of its template
2498/// (Tmpl).
2499///
2500/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002501bool
2502TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002503 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002504 if (InitFunctionInstantiation(New, Tmpl))
2505 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002506
Douglas Gregor5545e162009-03-24 00:38:23 +00002507 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002508 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002509 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002510
2511 // FIXME: attributes
2512 // FIXME: New needs a pointer to Tmpl
2513 return false;
2514}
Douglas Gregora58861f2009-05-13 20:28:22 +00002515
2516/// \brief Instantiate the definition of the given function from its
2517/// template.
2518///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002519/// \param PointOfInstantiation the point at which the instantiation was
2520/// required. Note that this is not precisely a "point of instantiation"
2521/// for the function, but it's close.
2522///
Douglas Gregora58861f2009-05-13 20:28:22 +00002523/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002524/// function template specialization or member function of a class template
2525/// specialization.
2526///
2527/// \param Recursive if true, recursively instantiates any functions that
2528/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002529///
2530/// \param DefinitionRequired if true, then we are performing an explicit
2531/// instantiation where the body of the function is required. Complain if
2532/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002533void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002534 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002535 bool Recursive,
2536 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002537 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002538 return;
2539
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002540 // Never instantiate an explicit specialization except if it is a class scope
2541 // explicit specialization.
2542 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2543 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002544 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002545
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002546 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002547 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002548 assert(PatternDecl && "instantiating a non-template");
2549
2550 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2551 assert(PatternDecl && "template definition is not a template");
2552 if (!Pattern) {
2553 // Try to find a defaulted definition
2554 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002555 }
Sean Huntf996e052011-05-27 20:00:14 +00002556 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002557
Francois Pichet8387e2a2011-04-22 22:18:13 +00002558 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002559 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002560 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002561 PendingInstantiations.push_back(
2562 std::make_pair(Function, PointOfInstantiation));
2563 return;
2564 }
2565
2566 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002567 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002568 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002569 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002570 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002571 Pattern = PatternDecl->getBody(PatternDecl);
2572 }
2573
Sean Huntf996e052011-05-27 20:00:14 +00002574 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002575 if (DefinitionRequired) {
2576 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002577 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002578 diag::err_explicit_instantiation_undefined_func_template)
2579 << Function->getPrimaryTemplate();
2580 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002581 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002582 diag::err_explicit_instantiation_undefined_member)
2583 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002584
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002585 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002586 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002587 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002588 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002589 } else if (Function->getTemplateSpecializationKind()
2590 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002591 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002592 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002593 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002594
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002595 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002596 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002597
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002598 // C++0x [temp.explicit]p9:
2599 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002600 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002601 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002602 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002603 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002604 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002605 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002606
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002607 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2608 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002609 return;
2610
Abramo Bagnarae9946242011-11-18 08:08:52 +00002611 // Copy the inner loc start from the pattern.
2612 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2613
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002614 // If we're performing recursive template instantiation, create our own
2615 // queue of pending implicit instantiations that we will instantiate later,
2616 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002617 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002618 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002619 if (Recursive) {
2620 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002621 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002622 }
Mike Stump1eb44332009-09-09 15:08:12 +00002623
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002624 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002625 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002626 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002627
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002628 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002629 // recorded, unless we're actually a member function within a local
2630 // class, in which case we need to merge our results with the parent
2631 // scope (of the enclosing function).
2632 bool MergeWithParentScope = false;
2633 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2634 MergeWithParentScope = Rec->isLocalClass();
2635
2636 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002637
Richard Smith7c5d28b2012-03-13 06:56:52 +00002638 // Enter the scope of this instantiation. We don't use
2639 // PushDeclContext because we don't have a scope.
2640 Sema::ContextRAII savedContext(*this, Function);
2641
2642 MultiLevelTemplateArgumentList TemplateArgs =
2643 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2644
Richard Smithe6975e92012-04-17 00:58:00 +00002645 addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
2646 TemplateArgs);
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002647
Sean Huntcd10dec2011-05-23 23:14:04 +00002648 if (PatternDecl->isDefaulted()) {
2649 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2650
2651 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002652 } else {
2653 // If this is a constructor, instantiate the member initializers.
2654 if (const CXXConstructorDecl *Ctor =
2655 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2656 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2657 TemplateArgs);
2658 }
2659
2660 // Instantiate the function body.
2661 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2662
2663 if (Body.isInvalid())
2664 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002665
Sean Huntcd10dec2011-05-23 23:14:04 +00002666 ActOnFinishFunctionBody(Function, Body.get(),
2667 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002668 }
2669
John McCall0c01d182010-03-24 05:22:00 +00002670 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2671
John McCalleee1d542011-02-14 07:13:47 +00002672 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002673
2674 DeclGroupRef DG(Function);
2675 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002676
Douglas Gregor60406be2010-01-16 22:29:39 +00002677 // This class may have local implicit instantiations that need to be
2678 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002679 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002680 Scope.Exit();
2681
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002682 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002683 // Define any pending vtables.
2684 DefineUsedVTables();
2685
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002686 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002687 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002688 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002689
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002690 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002691 assert(VTableUses.empty() &&
2692 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002693 VTableUses.swap(SavedVTableUses);
2694
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002695 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002696 assert(PendingInstantiations.empty() &&
2697 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002698 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002699 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002700}
2701
2702/// \brief Instantiate the definition of the given variable from its
2703/// template.
2704///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002705/// \param PointOfInstantiation the point at which the instantiation was
2706/// required. Note that this is not precisely a "point of instantiation"
2707/// for the function, but it's close.
2708///
2709/// \param Var the already-instantiated declaration of a static member
2710/// variable of a class template specialization.
2711///
2712/// \param Recursive if true, recursively instantiates any functions that
2713/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002714///
2715/// \param DefinitionRequired if true, then we are performing an explicit
2716/// instantiation where an out-of-line definition of the member variable
2717/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002718void Sema::InstantiateStaticDataMemberDefinition(
2719 SourceLocation PointOfInstantiation,
2720 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002721 bool Recursive,
2722 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002723 if (Var->isInvalidDecl())
2724 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002725
Douglas Gregor7caa6822009-07-24 20:34:43 +00002726 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002727 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002728 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002729 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002730 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002731
Douglas Gregor0d035142009-10-27 18:42:08 +00002732 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002733 // We did not find an out-of-line definition of this static data member,
2734 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002735 // instantiate this definition (or provide a specialization for it) in
2736 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002737 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002738 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002739 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002740 diag::err_explicit_instantiation_undefined_member)
2741 << 2 << Var->getDeclName() << Var->getDeclContext();
2742 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002743 } else if (Var->getTemplateSpecializationKind()
2744 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002745 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002746 std::make_pair(Var, PointOfInstantiation));
2747 }
2748
Douglas Gregor7caa6822009-07-24 20:34:43 +00002749 return;
2750 }
2751
Rafael Espindola234fe652012-03-05 10:54:55 +00002752 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2753
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002754 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002755 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002756 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002757
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002758 // C++0x [temp.explicit]p9:
2759 // Except for inline functions, other explicit instantiation declarations
2760 // have the effect of suppressing the implicit instantiation of the entity
2761 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002762 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002763 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002764
Rafael Espindola02503932012-03-08 15:51:03 +00002765 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2766
Douglas Gregorf15748a2011-06-03 03:35:07 +00002767 // If we already have a definition, we're done.
Nick Lewycky95e38722012-04-04 02:38:36 +00002768 if (VarDecl *Def = Var->getDefinition()) {
2769 // We may be explicitly instantiating something we've already implicitly
2770 // instantiated.
2771 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
2772 PointOfInstantiation);
Douglas Gregorf15748a2011-06-03 03:35:07 +00002773 return;
Nick Lewycky95e38722012-04-04 02:38:36 +00002774 }
Douglas Gregorf15748a2011-06-03 03:35:07 +00002775
Douglas Gregor7caa6822009-07-24 20:34:43 +00002776 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2777 if (Inst)
2778 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002779
Douglas Gregor7caa6822009-07-24 20:34:43 +00002780 // If we're performing recursive template instantiation, create our own
2781 // queue of pending implicit instantiations that we will instantiate later,
2782 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002783 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002784 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002785 if (Recursive) {
2786 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002787 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002788 }
Mike Stump1eb44332009-09-09 15:08:12 +00002789
Douglas Gregor7caa6822009-07-24 20:34:43 +00002790 // Enter the scope of this instantiation. We don't use
2791 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002792 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002793 LocalInstantiationScope Local(*this);
2794
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002795 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002796 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002797 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002798
2799 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002800
2801 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002802 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2803 assert(MSInfo && "Missing member specialization information?");
2804 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2805 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002806 DeclGroupRef DG(Var);
2807 Consumer.HandleTopLevelDecl(DG);
2808 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002809 Local.Exit();
2810
Douglas Gregor7caa6822009-07-24 20:34:43 +00002811 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002812 // Define any newly required vtables.
2813 DefineUsedVTables();
2814
Douglas Gregor7caa6822009-07-24 20:34:43 +00002815 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002816 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002817 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002818
Nick Lewycky81559102011-05-31 07:58:42 +00002819 // Restore the set of pending vtables.
2820 assert(VTableUses.empty() &&
2821 "VTableUses should be empty before it is discarded, "
2822 "while instantiating static data member.");
2823 VTableUses.swap(SavedVTableUses);
2824
Douglas Gregor7caa6822009-07-24 20:34:43 +00002825 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002826 assert(PendingInstantiations.empty() &&
2827 "PendingInstantiations should be empty before it is discarded, "
2828 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002829 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002830 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002831}
Douglas Gregor815215d2009-05-27 05:35:12 +00002832
Anders Carlsson09025312009-08-29 05:16:22 +00002833void
2834Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2835 const CXXConstructorDecl *Tmpl,
2836 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002837
Richard Trieu90ab75b2011-09-09 03:18:59 +00002838 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002839 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002840
Anders Carlsson09025312009-08-29 05:16:22 +00002841 // Instantiate all the initializers.
2842 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002843 InitsEnd = Tmpl->init_end();
2844 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002845 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002846
Chandler Carruth030ef472010-09-03 21:54:20 +00002847 // Only instantiate written initializers, let Sema re-construct implicit
2848 // ones.
2849 if (!Init->isWritten())
2850 continue;
2851
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002852 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002853
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002854 if (Init->isPackExpansion()) {
2855 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002856 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002857 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002858 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2859 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002860 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002861 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002862 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002863 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002864 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002865 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002866 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002867 NumExpansions)) {
2868 AnyErrors = true;
2869 New->setInvalidDecl();
2870 continue;
2871 }
2872 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002873
2874 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002875 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002876 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2877
2878 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002879 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2880 /*CXXDirectInit=*/true);
2881 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002882 AnyErrors = true;
2883 break;
2884 }
2885
2886 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002887 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002888 TemplateArgs,
2889 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002890 New->getDeclName());
2891 if (!BaseTInfo) {
2892 AnyErrors = true;
2893 break;
2894 }
2895
2896 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002897 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002898 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002899 New->getParent(),
2900 SourceLocation());
2901 if (NewInit.isInvalid()) {
2902 AnyErrors = true;
2903 break;
2904 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002905
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002906 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002907 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002908
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002909 continue;
2910 }
2911
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002912 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002913 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2914 /*CXXDirectInit=*/true);
2915 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002916 AnyErrors = true;
2917 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002918 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002919
Anders Carlsson09025312009-08-29 05:16:22 +00002920 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002921 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2922 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2923 TemplateArgs,
2924 Init->getSourceLocation(),
2925 New->getDeclName());
2926 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002927 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002928 New->setInvalidDecl();
2929 continue;
2930 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002931
Douglas Gregor76852c22011-11-01 01:16:03 +00002932 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002933 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002934 New->getParent(), EllipsisLoc);
2935 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002936 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002937 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002938 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002939 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002940 Init->getMemberLocation(),
2941 Init->getMember(),
2942 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002943 if (!Member) {
2944 AnyErrors = true;
2945 New->setInvalidDecl();
2946 continue;
2947 }
Mike Stump1eb44332009-09-09 15:08:12 +00002948
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002949 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002950 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002951 } else if (Init->isIndirectMemberInitializer()) {
2952 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002953 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002954 Init->getMemberLocation(),
2955 Init->getIndirectMember(), TemplateArgs));
2956
Douglas Gregorb7107222011-03-04 19:46:35 +00002957 if (!IndirectMember) {
2958 AnyErrors = true;
2959 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002960 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002961 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002962
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002963 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002964 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002965 }
2966
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002967 if (NewInit.isInvalid()) {
2968 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002969 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002970 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00002971 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002972 }
2973 }
Mike Stump1eb44332009-09-09 15:08:12 +00002974
Anders Carlsson09025312009-08-29 05:16:22 +00002975 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002976 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002977 /*FIXME: ColonLoc */
2978 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002979 NewInits.data(), NewInits.size(),
2980 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002981}
2982
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002983ExprResult Sema::SubstInitializer(Expr *Init,
2984 const MultiLevelTemplateArgumentList &TemplateArgs,
2985 bool CXXDirectInit) {
2986 // Initializers are instantiated like expressions, except that various outer
2987 // layers are stripped.
2988 if (!Init)
2989 return Owned(Init);
2990
2991 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
2992 Init = ExprTemp->getSubExpr();
2993
2994 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
2995 Init = Binder->getSubExpr();
2996
2997 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
2998 Init = ICE->getSubExprAsWritten();
2999
3000 // If this is a direct-initializer, we take apart CXXConstructExprs.
3001 // Everything else is passed through.
3002 CXXConstructExpr *Construct;
3003 if (!CXXDirectInit || !(Construct = dyn_cast<CXXConstructExpr>(Init)) ||
3004 isa<CXXTemporaryObjectExpr>(Construct))
3005 return SubstExpr(Init, TemplateArgs);
3006
3007 ASTOwningVector<Expr*> NewArgs(*this);
3008 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
3009 TemplateArgs, NewArgs))
3010 return ExprError();
3011
3012 // Treat an empty initializer like none.
3013 if (NewArgs.empty())
3014 return Owned((Expr*)0);
3015
3016 // Build a ParenListExpr to represent anything else.
3017 // FIXME: Fake locations!
3018 SourceLocation Loc = PP.getLocForEndOfToken(Init->getLocStart());
3019 return ActOnParenListExpr(Loc, Loc, move_arg(NewArgs));
3020}
3021
John McCall52a575a2009-08-29 08:11:13 +00003022// TODO: this could be templated if the various decl types used the
3023// same method name.
3024static bool isInstantiationOf(ClassTemplateDecl *Pattern,
3025 ClassTemplateDecl *Instance) {
3026 Pattern = Pattern->getCanonicalDecl();
3027
3028 do {
3029 Instance = Instance->getCanonicalDecl();
3030 if (Pattern == Instance) return true;
3031 Instance = Instance->getInstantiatedFromMemberTemplate();
3032 } while (Instance);
3033
3034 return false;
3035}
3036
Douglas Gregor0d696532009-09-28 06:34:35 +00003037static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
3038 FunctionTemplateDecl *Instance) {
3039 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003040
Douglas Gregor0d696532009-09-28 06:34:35 +00003041 do {
3042 Instance = Instance->getCanonicalDecl();
3043 if (Pattern == Instance) return true;
3044 Instance = Instance->getInstantiatedFromMemberTemplate();
3045 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003046
Douglas Gregor0d696532009-09-28 06:34:35 +00003047 return false;
3048}
3049
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003050static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00003051isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
3052 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003053 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00003054 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
3055 do {
3056 Instance = cast<ClassTemplatePartialSpecializationDecl>(
3057 Instance->getCanonicalDecl());
3058 if (Pattern == Instance)
3059 return true;
3060 Instance = Instance->getInstantiatedFromMember();
3061 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003062
Douglas Gregored9c0f92009-10-29 00:04:11 +00003063 return false;
3064}
3065
John McCall52a575a2009-08-29 08:11:13 +00003066static bool isInstantiationOf(CXXRecordDecl *Pattern,
3067 CXXRecordDecl *Instance) {
3068 Pattern = Pattern->getCanonicalDecl();
3069
3070 do {
3071 Instance = Instance->getCanonicalDecl();
3072 if (Pattern == Instance) return true;
3073 Instance = Instance->getInstantiatedFromMemberClass();
3074 } while (Instance);
3075
3076 return false;
3077}
3078
3079static bool isInstantiationOf(FunctionDecl *Pattern,
3080 FunctionDecl *Instance) {
3081 Pattern = Pattern->getCanonicalDecl();
3082
3083 do {
3084 Instance = Instance->getCanonicalDecl();
3085 if (Pattern == Instance) return true;
3086 Instance = Instance->getInstantiatedFromMemberFunction();
3087 } while (Instance);
3088
3089 return false;
3090}
3091
3092static bool isInstantiationOf(EnumDecl *Pattern,
3093 EnumDecl *Instance) {
3094 Pattern = Pattern->getCanonicalDecl();
3095
3096 do {
3097 Instance = Instance->getCanonicalDecl();
3098 if (Pattern == Instance) return true;
3099 Instance = Instance->getInstantiatedFromMemberEnum();
3100 } while (Instance);
3101
3102 return false;
3103}
3104
John McCalled976492009-12-04 22:46:56 +00003105static bool isInstantiationOf(UsingShadowDecl *Pattern,
3106 UsingShadowDecl *Instance,
3107 ASTContext &C) {
3108 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
3109}
3110
3111static bool isInstantiationOf(UsingDecl *Pattern,
3112 UsingDecl *Instance,
3113 ASTContext &C) {
3114 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3115}
3116
John McCall7ba107a2009-11-18 02:36:19 +00003117static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3118 UsingDecl *Instance,
3119 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003120 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003121}
3122
3123static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003124 UsingDecl *Instance,
3125 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003126 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003127}
3128
John McCall52a575a2009-08-29 08:11:13 +00003129static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3130 VarDecl *Instance) {
3131 assert(Instance->isStaticDataMember());
3132
3133 Pattern = Pattern->getCanonicalDecl();
3134
3135 do {
3136 Instance = Instance->getCanonicalDecl();
3137 if (Pattern == Instance) return true;
3138 Instance = Instance->getInstantiatedFromStaticDataMember();
3139 } while (Instance);
3140
3141 return false;
3142}
3143
John McCalled976492009-12-04 22:46:56 +00003144// Other is the prospective instantiation
3145// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003146static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003147 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003148 if (UnresolvedUsingTypenameDecl *UUD
3149 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3150 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3151 return isInstantiationOf(UUD, UD, Ctx);
3152 }
3153 }
3154
3155 if (UnresolvedUsingValueDecl *UUD
3156 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003157 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3158 return isInstantiationOf(UUD, UD, Ctx);
3159 }
3160 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003161
Anders Carlsson0d8df782009-08-29 19:37:28 +00003162 return false;
3163 }
Mike Stump1eb44332009-09-09 15:08:12 +00003164
John McCall52a575a2009-08-29 08:11:13 +00003165 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3166 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003167
John McCall52a575a2009-08-29 08:11:13 +00003168 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3169 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003170
John McCall52a575a2009-08-29 08:11:13 +00003171 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3172 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003173
Douglas Gregor7caa6822009-07-24 20:34:43 +00003174 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003175 if (Var->isStaticDataMember())
3176 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3177
3178 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3179 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003180
Douglas Gregor0d696532009-09-28 06:34:35 +00003181 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3182 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3183
Douglas Gregored9c0f92009-10-29 00:04:11 +00003184 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3185 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3186 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3187 PartialSpec);
3188
Anders Carlssond8b285f2009-09-01 04:26:58 +00003189 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3190 if (!Field->getDeclName()) {
3191 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003192 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003193 cast<FieldDecl>(D);
3194 }
3195 }
Mike Stump1eb44332009-09-09 15:08:12 +00003196
John McCalled976492009-12-04 22:46:56 +00003197 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3198 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3199
3200 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3201 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3202
Douglas Gregor815215d2009-05-27 05:35:12 +00003203 return D->getDeclName() && isa<NamedDecl>(Other) &&
3204 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3205}
3206
3207template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003208static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003209 NamedDecl *D,
3210 ForwardIterator first,
3211 ForwardIterator last) {
3212 for (; first != last; ++first)
3213 if (isInstantiationOf(Ctx, D, *first))
3214 return cast<NamedDecl>(*first);
3215
3216 return 0;
3217}
3218
John McCall02cace72009-08-28 07:59:38 +00003219/// \brief Finds the instantiation of the given declaration context
3220/// within the current instantiation.
3221///
3222/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003223DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003224 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003225 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003226 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003227 return cast_or_null<DeclContext>(ID);
3228 } else return DC;
3229}
3230
Douglas Gregored961e72009-05-27 17:54:46 +00003231/// \brief Find the instantiation of the given declaration within the
3232/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003233///
3234/// This routine is intended to be used when \p D is a declaration
3235/// referenced from within a template, that needs to mapped into the
3236/// corresponding declaration within an instantiation. For example,
3237/// given:
3238///
3239/// \code
3240/// template<typename T>
3241/// struct X {
3242/// enum Kind {
3243/// KnownValue = sizeof(T)
3244/// };
3245///
3246/// bool getKind() const { return KnownValue; }
3247/// };
3248///
3249/// template struct X<int>;
3250/// \endcode
3251///
3252/// In the instantiation of X<int>::getKind(), we need to map the
3253/// EnumConstantDecl for KnownValue (which refers to
James Dennettf198d122012-06-17 03:36:08 +00003254/// X<T>::\<Kind>\::KnownValue) to its instantiation
James Dennettef2b5b32012-06-15 22:23:43 +00003255/// (X<int>::\<Kind>\::KnownValue). InstantiateCurrentDeclRef() performs
Douglas Gregored961e72009-05-27 17:54:46 +00003256/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003257NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003258 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003259 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003260 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003261 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003262 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3263 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003264 // D is a local of some kind. Look into the map of local
3265 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003266 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3267 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3268 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003269
Chris Lattner57ad3782011-02-17 20:34:02 +00003270 if (Found) {
3271 if (Decl *FD = Found->dyn_cast<Decl *>())
3272 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003273
Chris Lattner57ad3782011-02-17 20:34:02 +00003274 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3275 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3276 }
3277
3278 // If we didn't find the decl, then we must have a label decl that hasn't
3279 // been found yet. Lazily instantiate it and return it now.
3280 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003281
Chris Lattner57ad3782011-02-17 20:34:02 +00003282 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3283 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003284
Chris Lattner57ad3782011-02-17 20:34:02 +00003285 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3286 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003287 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003288
Douglas Gregore95b4092009-09-16 18:34:49 +00003289 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3290 if (!Record->isDependentContext())
3291 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003292
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003293 // Determine whether this record is the "templated" declaration describing
3294 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003295 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003296 if (ClassTemplate)
3297 ClassTemplate = ClassTemplate->getCanonicalDecl();
3298 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3299 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3300 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3301
3302 // Walk the current context to find either the record or an instantiation of
3303 // it.
3304 DeclContext *DC = CurContext;
3305 while (!DC->isFileContext()) {
3306 // If we're performing substitution while we're inside the template
3307 // definition, we'll find our own context. We're done.
3308 if (DC->Equals(Record))
3309 return Record;
3310
3311 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3312 // Check whether we're in the process of instantiating a class template
3313 // specialization of the template we're mapping.
3314 if (ClassTemplateSpecializationDecl *InstSpec
3315 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3316 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3317 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3318 return InstRecord;
3319 }
3320
3321 // Check whether we're in the process of instantiating a member class.
3322 if (isInstantiationOf(Record, InstRecord))
3323 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003324 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003325
3326
3327 // Move to the outer template scope.
3328 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3329 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3330 DC = FD->getLexicalDeclContext();
3331 continue;
3332 }
John McCall52a575a2009-08-29 08:11:13 +00003333 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003334
3335 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003336 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003337
Douglas Gregore95b4092009-09-16 18:34:49 +00003338 // Fall through to deal with other dependent record types (e.g.,
3339 // anonymous unions in class templates).
3340 }
John McCall52a575a2009-08-29 08:11:13 +00003341
Douglas Gregore95b4092009-09-16 18:34:49 +00003342 if (!ParentDC->isDependentContext())
3343 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003344
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003345 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003346 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003347 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003348
Douglas Gregor815215d2009-05-27 05:35:12 +00003349 if (ParentDC != D->getDeclContext()) {
3350 // We performed some kind of instantiation in the parent context,
3351 // so now we need to look into the instantiated parent context to
3352 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003353
John McCall3cb0ebd2010-03-10 03:28:59 +00003354 // If our context used to be dependent, we may need to instantiate
3355 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003356 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003357 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003358 if (!Spec->isDependentContext()) {
3359 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003360 const RecordType *Tag = T->getAs<RecordType>();
3361 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003362 if (Tag->isBeingDefined())
3363 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003364 if (!Tag->isBeingDefined() &&
3365 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3366 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003367
3368 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003369 }
3370 }
3371
Douglas Gregor815215d2009-05-27 05:35:12 +00003372 NamedDecl *Result = 0;
3373 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003374 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003375 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3376 } else {
3377 // Since we don't have a name for the entity we're looking for,
3378 // our only option is to walk through all of the declarations to
3379 // find that name. This will occur in a few cases:
3380 //
3381 // - anonymous struct/union within a template
3382 // - unnamed class/struct/union/enum within a template
3383 //
3384 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003385 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003386 ParentDC->decls_begin(),
3387 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003388 }
Mike Stump1eb44332009-09-09 15:08:12 +00003389
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003390 if (!Result) {
3391 if (isa<UsingShadowDecl>(D)) {
3392 // UsingShadowDecls can instantiate to nothing because of using hiding.
3393 } else if (Diags.hasErrorOccurred()) {
3394 // We've already complained about something, so most likely this
3395 // declaration failed to instantiate. There's no point in complaining
3396 // further, since this is normal in invalid code.
3397 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003398 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003399 // instantiated, and we haven't gotten around to instantiating this
3400 // member yet. This can happen when the code uses forward declarations
3401 // of member classes, and introduces ordering dependencies via
3402 // template instantiation.
3403 Diag(Loc, diag::err_member_not_yet_instantiated)
3404 << D->getDeclName()
3405 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3406 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith0724b7c2012-03-26 20:28:16 +00003407 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
3408 // This enumeration constant was found when the template was defined,
3409 // but can't be found in the instantiation. This can happen if an
3410 // unscoped enumeration member is explicitly specialized.
3411 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
3412 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
3413 TemplateArgs));
3414 assert(Spec->getTemplateSpecializationKind() ==
3415 TSK_ExplicitSpecialization);
3416 Diag(Loc, diag::err_enumerator_does_not_exist)
3417 << D->getDeclName()
3418 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
3419 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
3420 << Context.getTypeDeclType(Spec);
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003421 } else {
3422 // We should have found something, but didn't.
3423 llvm_unreachable("Unable to find instantiation of declaration!");
3424 }
3425 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003426
Douglas Gregor815215d2009-05-27 05:35:12 +00003427 D = Result;
3428 }
3429
Douglas Gregor815215d2009-05-27 05:35:12 +00003430 return D;
3431}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003432
Mike Stump1eb44332009-09-09 15:08:12 +00003433/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003434/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003435void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003436 // Load pending instantiations from the external source.
3437 if (!LocalOnly && ExternalSource) {
3438 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3439 ExternalSource->ReadPendingInstantiations(Pending);
3440 PendingInstantiations.insert(PendingInstantiations.begin(),
3441 Pending.begin(), Pending.end());
3442 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003443
Douglas Gregor60406be2010-01-16 22:29:39 +00003444 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003445 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003446 PendingImplicitInstantiation Inst;
3447
3448 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003449 Inst = PendingInstantiations.front();
3450 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003451 } else {
3452 Inst = PendingLocalImplicitInstantiations.front();
3453 PendingLocalImplicitInstantiations.pop_front();
3454 }
Mike Stump1eb44332009-09-09 15:08:12 +00003455
Douglas Gregor7caa6822009-07-24 20:34:43 +00003456 // Instantiate function definitions
3457 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003458 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3459 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003460 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3461 TSK_ExplicitInstantiationDefinition;
3462 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3463 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003464 continue;
3465 }
Mike Stump1eb44332009-09-09 15:08:12 +00003466
Douglas Gregor7caa6822009-07-24 20:34:43 +00003467 // Instantiate static data member definitions.
3468 VarDecl *Var = cast<VarDecl>(Inst.first);
3469 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003470
Chandler Carruth291b4412010-02-13 10:17:50 +00003471 // Don't try to instantiate declarations if the most recent redeclaration
3472 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003473 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003474 continue;
3475
3476 // Check if the most recent declaration has changed the specialization kind
3477 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003478 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003479 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003480 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003481 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003482 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003483 continue; // No longer need to instantiate this type.
3484 case TSK_ExplicitInstantiationDefinition:
3485 // We only need an instantiation if the pending instantiation *is* the
3486 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003487 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003488 case TSK_ImplicitInstantiation:
3489 break;
3490 }
3491
John McCallf312b1e2010-08-26 23:41:50 +00003492 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3493 "instantiating static data member "
3494 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003495
Chandler Carruth58e390e2010-08-25 08:27:02 +00003496 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3497 TSK_ExplicitInstantiationDefinition;
3498 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3499 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003500 }
3501}
John McCall0c01d182010-03-24 05:22:00 +00003502
3503void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3504 const MultiLevelTemplateArgumentList &TemplateArgs) {
3505 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3506 E = Pattern->ddiag_end(); I != E; ++I) {
3507 DependentDiagnostic *DD = *I;
3508
3509 switch (DD->getKind()) {
3510 case DependentDiagnostic::Access:
3511 HandleDependentAccessCheck(*DD, TemplateArgs);
3512 break;
3513 }
3514 }
3515}