blob: 8d382d1bacae4853a1a9c6fa32347339316bfefe [file] [log] [blame]
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001//===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//===----------------------------------------------------------------------===/
8//
9// This file implements C++ template instantiation for declarations.
10//
11//===----------------------------------------------------------------------===/
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000013#include "clang/Sema/Lookup.h"
John McCallf312b1e2010-08-26 23:41:50 +000014#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall7cd088e2010-08-24 07:21:54 +000015#include "clang/Sema/Template.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000016#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000020#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000021#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000022#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000023#include "clang/AST/TypeLoc.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025
26using namespace clang;
27
John McCallb6217662010-03-15 10:12:16 +000028bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29 DeclaratorDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000030 if (!OldDecl->getQualifierLoc())
31 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000032
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000033 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000034 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000035 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000037 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000039
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000040 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000041 return false;
42}
43
44bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45 TagDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000046 if (!OldDecl->getQualifierLoc())
47 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000049 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000050 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000051 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000052
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000053 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000056 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000060// Include attribute instantiation code.
61#include "clang/Sema/AttrTemplateInstantiate.inc"
62
John McCall1d8d1cc2010-08-01 02:01:53 +000063void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins23323e02012-01-20 22:50:54 +000064 const Decl *Tmpl, Decl *New,
65 LateInstantiatedAttrVec *LateAttrs,
66 LocalInstantiationScope *OuterMostScope) {
Sean Huntcf807c42010-08-18 23:23:40 +000067 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
68 i != e; ++i) {
69 const Attr *TmplAttr = *i;
DeLesley Hutchins23323e02012-01-20 22:50:54 +000070
Chandler Carruth4ced79f2010-06-25 03:22:07 +000071 // FIXME: This should be generalized to more than just the AlignedAttr.
72 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000074 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000075 // The alignment expression is a constant expression.
76 EnterExpressionEvaluationContext Unevaluated(*this,
77 Sema::ConstantEvaluated);
78
John McCall60d7b3a2010-08-24 06:29:42 +000079 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000081 if (!Result.isInvalid())
82 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
Richard Smithf6702a32011-12-20 02:08:33 +000083 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000084 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000085 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000086 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000087 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000088 if (Result)
89 AddAlignedAttr(Aligned->getLocation(), New, Result);
90 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000091 continue;
92 }
93 }
94
DeLesley Hutchins23323e02012-01-20 22:50:54 +000095 if (TmplAttr->isLateParsed() && LateAttrs) {
96 // Late parsed attributes must be instantiated and attached after the
97 // enclosing class has been instantiated. See Sema::InstantiateClass.
98 LocalInstantiationScope *Saved = 0;
99 if (CurrentInstantiationScope)
100 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
101 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
102 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000103 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
104 *this, TemplateArgs);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000105 New->addAttr(NewAttr);
106 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000107 }
108}
109
Douglas Gregor4f722be2009-03-25 15:45:12 +0000110Decl *
111TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000112 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113}
114
115Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000116TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
117 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
118 D->getIdentifier());
119 Owner->addDecl(Inst);
120 return Inst;
121}
122
123Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000124TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000125 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000126}
127
John McCall3dbd3d52010-02-16 06:53:13 +0000128Decl *
129TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
130 NamespaceAliasDecl *Inst
131 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
132 D->getNamespaceLoc(),
133 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000134 D->getIdentifier(),
135 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000136 D->getTargetNameLoc(),
137 D->getNamespace());
138 Owner->addDecl(Inst);
139 return Inst;
140}
141
Richard Smith3e4c6c42011-05-05 21:57:07 +0000142Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
143 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000145 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000146 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000147 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000148 DI = SemaRef.SubstType(DI, TemplateArgs,
149 D->getLocation(), D->getDeclName());
150 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000151 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000152 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000153 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000154 } else {
155 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000158 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000159 TypedefNameDecl *Typedef;
160 if (IsTypeAlias)
161 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
162 D->getLocation(), D->getIdentifier(), DI);
163 else
164 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
165 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000166 if (Invalid)
167 Typedef->setInvalidDecl();
168
John McCallcde5a402011-02-01 08:20:08 +0000169 // If the old typedef was the name for linkage purposes of an anonymous
170 // tag decl, re-establish that relationship for the new typedef.
171 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
172 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000173 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000174 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000175 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
176 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000177 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000178 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000179
Douglas Gregoref96ee02012-01-14 16:38:05 +0000180 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000181 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
182 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000183 if (!InstPrev)
184 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000185
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000186 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
187
188 // If the typedef types are not identical, reject them.
189 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
190
191 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000192 }
193
John McCall1d8d1cc2010-08-01 02:01:53 +0000194 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000195
John McCall46460a62010-01-20 21:53:11 +0000196 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000198 return Typedef;
199}
200
Richard Smith162e1c12011-04-15 14:24:37 +0000201Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000202 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
203 Owner->addDecl(Typedef);
204 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000205}
206
207Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000208 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
209 Owner->addDecl(Typedef);
210 return Typedef;
211}
212
213Decl *
214TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
215 // Create a local instantiation scope for this type alias template, which
216 // will contain the instantiations of the template parameters.
217 LocalInstantiationScope Scope(SemaRef);
218
219 TemplateParameterList *TempParams = D->getTemplateParameters();
220 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
221 if (!InstParams)
222 return 0;
223
224 TypeAliasDecl *Pattern = D->getTemplatedDecl();
225
226 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000227 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000228 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
229 if (Found.first != Found.second) {
230 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
231 }
232 }
233
234 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
235 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
236 if (!AliasInst)
237 return 0;
238
239 TypeAliasTemplateDecl *Inst
240 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
241 D->getDeclName(), InstParams, AliasInst);
242 if (PrevAliasTemplate)
243 Inst->setPreviousDeclaration(PrevAliasTemplate);
244
245 Inst->setAccess(D->getAccess());
246
247 if (!PrevAliasTemplate)
248 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000249
Richard Smith3e4c6c42011-05-05 21:57:07 +0000250 Owner->addDecl(Inst);
251
252 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000253}
254
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000255Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000256 // If this is the variable for an anonymous struct or union,
257 // instantiate the anonymous struct/union type first.
258 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
259 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
260 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
261 return 0;
262
John McCallce3ff2b2009-08-25 22:02:44 +0000263 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000264 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000265 TemplateArgs,
266 D->getTypeSpecStartLoc(),
267 D->getDeclName());
268 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000269 return 0;
270
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000271 if (DI->getType()->isFunctionType()) {
272 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
273 << D->isStaticDataMember() << DI->getType();
274 return 0;
275 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000276
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000277 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000278 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000279 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000280 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000281 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000282 D->getStorageClass(),
283 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000284 Var->setThreadSpecified(D->isThreadSpecified());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000285 Var->setInitStyle(D->getInitStyle());
Richard Smithad762fc2011-04-14 22:09:26 +0000286 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000287 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000288
John McCallb6217662010-03-15 10:12:16 +0000289 // Substitute the nested name specifier, if any.
290 if (SubstQualifier(D, Var))
291 return 0;
292
Mike Stump1eb44332009-09-09 15:08:12 +0000293 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000294 // out-of-line, the instantiation will have the same lexical
295 // context (which will be a namespace scope) as the template.
296 if (D->isOutOfLine())
297 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000298
John McCall46460a62010-01-20 21:53:11 +0000299 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000300
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000301 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000302 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000303 Var->setReferenced(D->isReferenced());
304 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000305
Mike Stump390b4cc2009-05-16 07:39:55 +0000306 // FIXME: In theory, we could have a previous declaration for variables that
307 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000308 // FIXME: having to fake up a LookupResult is dumb.
309 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000310 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000311 if (D->isStaticDataMember())
312 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000313
314 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +0000315 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000316 SemaRef.inferObjCARCLifetime(Var))
317 Var->setInvalidDecl();
318
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000319 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Douglas Gregor7caa6822009-07-24 20:34:43 +0000321 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000322 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000323 Owner->makeDeclVisibleInContext(Var);
324 } else {
325 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000326 if (Owner->isFunctionOrMethod())
327 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000328 }
DeLesley Hutchinsdd5756c2012-02-16 17:30:51 +0000329 SemaRef.InstantiateAttrs(TemplateArgs, D, Var, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000330
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000331 // Link instantiations of static data members back to the template from
332 // which they were instantiated.
333 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000334 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000335 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000336
Douglas Gregor60c93c92010-02-09 07:26:29 +0000337 if (Var->getAnyInitializer()) {
338 // We already have an initializer in the class.
339 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000340 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000341 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000342 else
343 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
344
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000345 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000346 ExprResult Init = SemaRef.SubstInitializer(D->getInit(), TemplateArgs,
347 D->getInitStyle() == VarDecl::CallInit);
348 if (!Init.isInvalid()) {
Richard Smith34b41d92011-02-20 03:19:35 +0000349 bool TypeMayContainAuto = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000350 if (Init.get()) {
351 bool DirectInit = D->isDirectInit();
352 SemaRef.AddInitializerToDecl(Var, Init.take(), DirectInit,
353 TypeMayContainAuto);
354 } else
Eli Friedman6aeaa602012-01-05 22:34:08 +0000355 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000356 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000357 // FIXME: Not too happy about invalidating the declaration
358 // because of a bogus initializer.
359 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000360 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000361
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000362 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000363 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
364 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000365 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000366
Richard Smithe3499ca2011-06-21 23:42:09 +0000367 // Diagnose unused local variables with dependent types, where the diagnostic
368 // will have been deferred.
369 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
370 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000371 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000372
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000373 return Var;
374}
375
Abramo Bagnara6206d532010-06-05 05:09:32 +0000376Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
377 AccessSpecDecl* AD
378 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
379 D->getAccessSpecifierLoc(), D->getColonLoc());
380 Owner->addHiddenDecl(AD);
381 return AD;
382}
383
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000384Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
385 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000386 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000387 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000388 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000389 DI = SemaRef.SubstType(DI, TemplateArgs,
390 D->getLocation(), D->getDeclName());
391 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000392 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000393 Invalid = true;
394 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000395 // C++ [temp.arg.type]p3:
396 // If a declaration acquires a function type through a type
397 // dependent on a template-parameter and this causes a
398 // declaration that does not use the syntactic form of a
399 // function declarator to have function type, the program is
400 // ill-formed.
401 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000402 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000403 Invalid = true;
404 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000405 } else {
406 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000407 }
408
409 Expr *BitWidth = D->getBitWidth();
410 if (Invalid)
411 BitWidth = 0;
412 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000413 // The bit-width expression is a constant expression.
414 EnterExpressionEvaluationContext Unevaluated(SemaRef,
415 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000416
John McCall60d7b3a2010-08-24 06:29:42 +0000417 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000418 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000419 if (InstantiatedBitWidth.isInvalid()) {
420 Invalid = true;
421 BitWidth = 0;
422 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000423 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000424 }
425
John McCall07fb6be2009-10-22 23:33:21 +0000426 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
427 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000428 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000429 D->getLocation(),
430 D->isMutable(),
431 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000432 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000433 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000434 D->getAccess(),
435 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000436 if (!Field) {
437 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000438 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000439 }
Mike Stump1eb44332009-09-09 15:08:12 +0000440
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000441 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000442
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000443 if (Invalid)
444 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000446 if (!Field->getDeclName()) {
447 // Keep track of where this decl came from.
448 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000449 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000450 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
451 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000452 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000453 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 }
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000456 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000457 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000458 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000459
460 return Field;
461}
462
Francois Pichet87c2e122010-11-21 06:08:52 +0000463Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
464 NamedDecl **NamedChain =
465 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
466
467 int i = 0;
468 for (IndirectFieldDecl::chain_iterator PI =
469 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000470 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000471 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000472 TemplateArgs);
473 if (!Next)
474 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000475
Douglas Gregorb7107222011-03-04 19:46:35 +0000476 NamedChain[i++] = Next;
477 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000478
Francois Pichet40e17752010-12-09 10:07:54 +0000479 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000480 IndirectFieldDecl* IndirectField
481 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000482 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000483 NamedChain, D->getChainingSize());
484
485
486 IndirectField->setImplicit(D->isImplicit());
487 IndirectField->setAccess(D->getAccess());
488 Owner->addDecl(IndirectField);
489 return IndirectField;
490}
491
John McCall02cace72009-08-28 07:59:38 +0000492Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000493 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000494 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000495 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000496 TypeSourceInfo *InstTy;
497 // If this is an unsupported friend, don't bother substituting template
498 // arguments into it. The actual type referred to won't be used by any
499 // parts of Clang, and may not be valid for instantiating. Just use the
500 // same info for the instantiated friend.
501 if (D->isUnsupportedFriend()) {
502 InstTy = Ty;
503 } else {
504 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
505 D->getLocation(), DeclarationName());
506 }
507 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000508 return 0;
John McCall02cace72009-08-28 07:59:38 +0000509
Abramo Bagnara0216df82011-10-29 20:52:52 +0000510 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
511 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000512 if (!FD)
513 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000514
Douglas Gregor06245bf2010-04-07 17:57:12 +0000515 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000516 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000517 Owner->addDecl(FD);
518 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000519 }
520
Douglas Gregor06245bf2010-04-07 17:57:12 +0000521 NamedDecl *ND = D->getFriendDecl();
522 assert(ND && "friend decl must be a decl or a type!");
523
John McCallaf2094e2010-04-08 09:05:18 +0000524 // All of the Visit implementations for the various potential friend
525 // declarations have to be carefully written to work for friend
526 // objects, with the most important detail being that the target
527 // decl should almost certainly not be placed in Owner.
528 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000529 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000530
John McCall02cace72009-08-28 07:59:38 +0000531 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000532 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000533 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000534 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000535 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000536 Owner->addDecl(FD);
537 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000538}
539
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000540Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
541 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Richard Smithf6702a32011-12-20 02:08:33 +0000543 // The expression in a static assertion is a constant expression.
544 EnterExpressionEvaluationContext Unevaluated(SemaRef,
545 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000546
John McCall60d7b3a2010-08-24 06:29:42 +0000547 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000548 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000549 if (InstantiatedAssertExpr.isInvalid())
550 return 0;
551
John McCall60d7b3a2010-08-24 06:29:42 +0000552 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000553 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000554 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000555 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000556 Message.get(),
557 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000558}
559
560Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Richard Smith38f0df32012-03-26 04:58:10 +0000561 EnumDecl *PrevDecl = 0;
562 if (D->getPreviousDecl()) {
563 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
564 D->getPreviousDecl(),
565 TemplateArgs);
566 if (!Prev) return 0;
567 PrevDecl = cast<EnumDecl>(Prev);
568 }
569
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000570 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000571 D->getLocation(), D->getIdentifier(),
Richard Smith38f0df32012-03-26 04:58:10 +0000572 PrevDecl, D->isScoped(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000573 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000574 if (D->isFixed()) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000575 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000576 // If we have type source information for the underlying type, it means it
577 // has been explicitly set by the user. Perform substitution on it before
578 // moving on.
579 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smithf1c66b42012-03-14 23:13:10 +0000580 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
581 DeclarationName());
582 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000583 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smithf1c66b42012-03-14 23:13:10 +0000584 else
585 Enum->setIntegerTypeSourceInfo(NewTI);
586 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000587 assert(!D->getIntegerType()->isDependentType()
588 && "Dependent type without type source info");
589 Enum->setIntegerType(D->getIntegerType());
590 }
591 }
592
John McCall5b629aa2010-10-22 23:36:17 +0000593 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
594
Richard Smithf1c66b42012-03-14 23:13:10 +0000595 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000596 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000597 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000598 Owner->addDecl(Enum);
Richard Smithf1c66b42012-03-14 23:13:10 +0000599
Richard Smith4ca93d92012-03-26 04:08:46 +0000600 EnumDecl *Def = D->getDefinition();
601 if (Def && Def != D) {
602 // If this is an out-of-line definition of an enum member template, check
603 // that the underlying types match in the instantiation of both
604 // declarations.
605 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
606 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
607 QualType DefnUnderlying =
608 SemaRef.SubstType(TI->getType(), TemplateArgs,
609 UnderlyingLoc, DeclarationName());
610 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
611 DefnUnderlying, Enum);
612 }
613 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000614
Douglas Gregor96084f12010-03-01 19:00:07 +0000615 if (D->getDeclContext()->isFunctionOrMethod())
616 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000617
Richard Smithf1c66b42012-03-14 23:13:10 +0000618 // C++11 [temp.inst]p1: The implicit instantiation of a class template
619 // specialization causes the implicit instantiation of the declarations, but
620 // not the definitions of scoped member enumerations.
621 // FIXME: There appears to be no wording for what happens for an enum defined
Richard Smith38f0df32012-03-26 04:58:10 +0000622 // within a block scope, but we treat that much like a member template. Only
623 // instantiate the definition when visiting the definition in that case, since
624 // we will visit all redeclarations.
625 if (!Enum->isScoped() && Def &&
626 (!D->getDeclContext()->isFunctionOrMethod() || D->isCompleteDefinition()))
Richard Smith4ca93d92012-03-26 04:08:46 +0000627 InstantiateEnumDefinition(Enum, Def);
Richard Smithf1c66b42012-03-14 23:13:10 +0000628
629 return Enum;
630}
631
632void TemplateDeclInstantiator::InstantiateEnumDefinition(
633 EnumDecl *Enum, EnumDecl *Pattern) {
634 Enum->startDefinition();
635
Richard Smith1af83c42012-03-23 03:33:32 +0000636 // Update the location to refer to the definition.
637 Enum->setLocation(Pattern->getLocation());
638
Chris Lattner5f9e2722011-07-23 10:55:15 +0000639 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000640
641 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000642 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
643 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000644 EC != ECEnd; ++EC) {
645 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000646 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000647 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000648 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000649 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000650 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000651
John McCallce3ff2b2009-08-25 22:02:44 +0000652 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000653 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000654
655 // Drop the initial value and continue.
656 bool isInvalid = false;
657 if (Value.isInvalid()) {
658 Value = SemaRef.Owned((Expr *)0);
659 isInvalid = true;
660 }
661
Mike Stump1eb44332009-09-09 15:08:12 +0000662 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000663 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
664 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000665 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000666
667 if (isInvalid) {
668 if (EnumConst)
669 EnumConst->setInvalidDecl();
670 Enum->setInvalidDecl();
671 }
672
673 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000674 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
675
John McCall3b85ecf2010-01-23 22:37:59 +0000676 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000677 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000678 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000679 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000680
Richard Smithf1c66b42012-03-14 23:13:10 +0000681 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
682 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000683 // If the enumeration is within a function or method, record the enum
684 // constant as a local.
685 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
686 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000687 }
688 }
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Richard Smithf1c66b42012-03-14 23:13:10 +0000690 // FIXME: Fixup LBraceLoc
691 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
692 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000693 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000694 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000695}
696
Douglas Gregor6477b692009-03-25 15:04:13 +0000697Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000698 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000699}
700
John McCalle29ba202009-08-20 01:44:21 +0000701Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000702 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
703
Douglas Gregor550d9b22009-10-31 17:21:17 +0000704 // Create a local instantiation scope for this class template, which
705 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000706 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000707 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000708 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000709 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000710 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000711
712 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000713
714 // Instantiate the qualifier. We have to do this first in case
715 // we're a friend declaration, because if we are then we need to put
716 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000717 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
718 if (QualifierLoc) {
719 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
720 TemplateArgs);
721 if (!QualifierLoc)
722 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000723 }
724
725 CXXRecordDecl *PrevDecl = 0;
726 ClassTemplateDecl *PrevClassTemplate = 0;
727
Douglas Gregoref96ee02012-01-14 16:38:05 +0000728 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000729 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
730 if (Found.first != Found.second) {
731 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
732 if (PrevClassTemplate)
733 PrevDecl = PrevClassTemplate->getTemplatedDecl();
734 }
735 }
736
John McCall93ba8572010-03-25 06:39:04 +0000737 // If this isn't a friend, then it's a member template, in which
738 // case we just want to build the instantiation in the
739 // specialization. If it is a friend, we want to build it in
740 // the appropriate context.
741 DeclContext *DC = Owner;
742 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000743 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000744 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000745 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000746 DC = SemaRef.computeDeclContext(SS);
747 if (!DC) return 0;
748 } else {
749 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
750 Pattern->getDeclContext(),
751 TemplateArgs);
752 }
753
754 // Look for a previous declaration of the template in the owning
755 // context.
756 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
757 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
758 SemaRef.LookupQualifiedName(R, DC);
759
760 if (R.isSingleResult()) {
761 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
762 if (PrevClassTemplate)
763 PrevDecl = PrevClassTemplate->getTemplatedDecl();
764 }
765
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000766 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000767 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000768 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000769 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000770 return 0;
771 }
772
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000773 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000774 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000775 bool Complain = true;
776
777 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
778 // template for struct std::tr1::__detail::_Map_base, where the
779 // template parameters of the friend declaration don't match the
780 // template parameters of the original declaration. In this one
781 // case, we don't complain about the ill-formed friend
782 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000783 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000784 Pattern->getIdentifier()->isStr("_Map_base") &&
785 DC->isNamespace() &&
786 cast<NamespaceDecl>(DC)->getIdentifier() &&
787 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
788 DeclContext *DCParent = DC->getParent();
789 if (DCParent->isNamespace() &&
790 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
791 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
792 DeclContext *DCParent2 = DCParent->getParent();
793 if (DCParent2->isNamespace() &&
794 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
795 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
796 DCParent2->getParent()->isTranslationUnit())
797 Complain = false;
798 }
799 }
800
John McCall93ba8572010-03-25 06:39:04 +0000801 TemplateParameterList *PrevParams
802 = PrevClassTemplate->getTemplateParameters();
803
804 // Make sure the parameter lists match.
805 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000806 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000807 Sema::TPL_TemplateMatch)) {
808 if (Complain)
809 return 0;
810
811 AdoptedPreviousTemplateParams = true;
812 InstParams = PrevParams;
813 }
John McCall93ba8572010-03-25 06:39:04 +0000814
815 // Do some additional validation, then merge default arguments
816 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000817 if (!AdoptedPreviousTemplateParams &&
818 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000819 Sema::TPC_ClassTemplate))
820 return 0;
821 }
822 }
823
John McCalle29ba202009-08-20 01:44:21 +0000824 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000825 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000826 Pattern->getLocStart(), Pattern->getLocation(),
827 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000828 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000829
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000830 if (QualifierLoc)
831 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000832
John McCalle29ba202009-08-20 01:44:21 +0000833 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000834 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
835 D->getIdentifier(), InstParams, RecordInst,
836 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000837 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000838
John McCall93ba8572010-03-25 06:39:04 +0000839 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000840 if (PrevClassTemplate)
841 Inst->setAccess(PrevClassTemplate->getAccess());
842 else
843 Inst->setAccess(D->getAccess());
844
John McCall93ba8572010-03-25 06:39:04 +0000845 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
846 // TODO: do we want to track the instantiation progeny of this
847 // friend target decl?
848 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000849 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000850 if (!PrevClassTemplate)
851 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000852 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000853
Douglas Gregorf0510d42009-10-12 23:11:44 +0000854 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000855 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000856 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000857
Douglas Gregor259571e2009-10-30 22:42:42 +0000858 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000859 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000860 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000861 Inst->setLexicalDeclContext(Owner);
862 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000863 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000864 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000865
Abramo Bagnara4c515482011-11-26 13:33:46 +0000866 if (D->isOutOfLine()) {
867 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
868 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
869 }
870
John McCalle29ba202009-08-20 01:44:21 +0000871 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000872
873 if (!PrevClassTemplate) {
874 // Queue up any out-of-line partial specializations of this member
875 // class template; the client will force their instantiation once
876 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000877 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000878 D->getPartialSpecializations(PartialSpecs);
879 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
880 if (PartialSpecs[I]->isOutOfLine())
881 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
882 }
883
John McCalle29ba202009-08-20 01:44:21 +0000884 return Inst;
885}
886
Douglas Gregord60e1052009-08-27 16:57:43 +0000887Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000888TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
889 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000890 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000891
Douglas Gregored9c0f92009-10-29 00:04:11 +0000892 // Lookup the already-instantiated declaration in the instantiation
893 // of the class template and return that.
894 DeclContext::lookup_result Found
895 = Owner->lookup(ClassTemplate->getDeclName());
896 if (Found.first == Found.second)
897 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000898
Douglas Gregored9c0f92009-10-29 00:04:11 +0000899 ClassTemplateDecl *InstClassTemplate
900 = dyn_cast<ClassTemplateDecl>(*Found.first);
901 if (!InstClassTemplate)
902 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000903
Douglas Gregord65587f2010-11-10 19:44:59 +0000904 if (ClassTemplatePartialSpecializationDecl *Result
905 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
906 return Result;
907
908 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000909}
910
911Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000912TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000913 // Create a local instantiation scope for this function template, which
914 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000915 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000916 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000917 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000918
Douglas Gregord60e1052009-08-27 16:57:43 +0000919 TemplateParameterList *TempParams = D->getTemplateParameters();
920 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000921 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000922 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000923
Douglas Gregora735b202009-10-13 14:39:41 +0000924 FunctionDecl *Instantiated = 0;
925 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000926 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000927 InstParams));
928 else
929 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000930 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000931 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000932
Douglas Gregora735b202009-10-13 14:39:41 +0000933 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000934 return 0;
935
John McCall46460a62010-01-20 21:53:11 +0000936 Instantiated->setAccess(D->getAccess());
937
Mike Stump1eb44332009-09-09 15:08:12 +0000938 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000939 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000940 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000941 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000942 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000943 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000944 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000945
John McCallb1a56e72010-03-26 23:10:15 +0000946 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
947
John McCalle976ffe2009-12-14 23:19:40 +0000948 // Link the instantiation back to the pattern *unless* this is a
949 // non-definition friend declaration.
950 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000951 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000952 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000953
John McCallb1a56e72010-03-26 23:10:15 +0000954 // Make declarations visible in the appropriate context.
955 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000956 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000957
Douglas Gregord60e1052009-08-27 16:57:43 +0000958 return InstTemplate;
959}
960
Douglas Gregord475b8d2009-03-25 21:17:03 +0000961Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
962 CXXRecordDecl *PrevDecl = 0;
963 if (D->isInjectedClassName())
964 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000965 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000966 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000967 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000968 TemplateArgs);
969 if (!Prev) return 0;
970 PrevDecl = cast<CXXRecordDecl>(Prev);
971 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000972
973 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000974 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000975 D->getLocStart(), D->getLocation(),
976 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000977
978 // Substitute the nested name specifier, if any.
979 if (SubstQualifier(D, Record))
980 return 0;
981
Douglas Gregord475b8d2009-03-25 21:17:03 +0000982 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000983 // FIXME: Check against AS_none is an ugly hack to work around the issue that
984 // the tag decls introduced by friend class declarations don't have an access
985 // specifier. Remove once this area of the code gets sorted out.
986 if (D->getAccess() != AS_none)
987 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000988 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000989 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000990
John McCall02cace72009-08-28 07:59:38 +0000991 // If the original function was part of a friend declaration,
992 // inherit its namespace state.
993 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
994 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
995
Douglas Gregor9901c572010-05-21 00:31:19 +0000996 // Make sure that anonymous structs and unions are recorded.
997 if (D->isAnonymousStructOrUnion()) {
998 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000999 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001000 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1001 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001002
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001003 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001004 return Record;
1005}
1006
John McCall02cace72009-08-28 07:59:38 +00001007/// Normal class members are of more specific types and therefore
1008/// don't make it here. This function serves two purposes:
1009/// 1) instantiating function templates
1010/// 2) substituting friend declarations
1011/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001012Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001013 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001014 // Check whether there is already a function template specialization for
1015 // this declaration.
1016 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCallb0cb0222010-03-27 05:57:59 +00001017 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001018 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001019 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001021 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001022 FunctionDecl *SpecFunc
1023 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1024 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Douglas Gregor127102b2009-06-29 20:59:39 +00001026 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001027 if (SpecFunc)
1028 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001029 }
Mike Stump1eb44332009-09-09 15:08:12 +00001030
John McCallb0cb0222010-03-27 05:57:59 +00001031 bool isFriend;
1032 if (FunctionTemplate)
1033 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1034 else
1035 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1036
Douglas Gregor79c22782010-01-16 20:21:20 +00001037 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001038 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001039 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001040 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001041 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Chris Lattner5f9e2722011-07-23 10:55:15 +00001043 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001044 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001045 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001046 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001047 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001049 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1050 if (QualifierLoc) {
1051 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1052 TemplateArgs);
1053 if (!QualifierLoc)
1054 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001055 }
1056
John McCall68b6b872010-02-06 01:50:47 +00001057 // If we're instantiating a local function declaration, put the result
1058 // in the owner; otherwise we need to find the instantiated context.
1059 DeclContext *DC;
1060 if (D->getDeclContext()->isFunctionOrMethod())
1061 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001062 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001063 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001064 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001065 DC = SemaRef.computeDeclContext(SS);
1066 if (!DC) return 0;
1067 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001068 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001069 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001070 }
John McCall68b6b872010-02-06 01:50:47 +00001071
John McCall02cace72009-08-28 07:59:38 +00001072 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001073 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1074 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001075 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001076 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001077 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001078
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001079 if (QualifierLoc)
1080 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001081
John McCallb1a56e72010-03-26 23:10:15 +00001082 DeclContext *LexicalDC = Owner;
1083 if (!isFriend && D->isOutOfLine()) {
1084 assert(D->getDeclContext()->isFileContext());
1085 LexicalDC = D->getDeclContext();
1086 }
1087
1088 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Douglas Gregore53060f2009-06-25 22:08:12 +00001090 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001091 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001092 // Adopt the already-instantiated parameters into our own context.
1093 for (unsigned P = 0; P < Params.size(); ++P)
1094 if (Params[P])
1095 Params[P]->setOwningFunction(Function);
1096 } else {
1097 // Since we were instantiated via a typedef of a function type, create
1098 // new parameters.
1099 const FunctionProtoType *Proto
1100 = Function->getType()->getAs<FunctionProtoType>();
1101 assert(Proto && "No function prototype in template instantiation?");
1102 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1103 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1104 ParmVarDecl *Param
1105 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1106 *AI);
1107 Param->setScopeInfo(0, Params.size());
1108 Params.push_back(Param);
1109 }
1110 }
David Blaikie4278c652011-09-21 18:16:56 +00001111 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001112
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001113 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001114 if (TemplateParams) {
1115 // Our resulting instantiation is actually a function template, since we
1116 // are substituting only the outer template parameters. For example, given
1117 //
1118 // template<typename T>
1119 // struct X {
1120 // template<typename U> friend void f(T, U);
1121 // };
1122 //
1123 // X<int> x;
1124 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001125 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001126 // which means substituting int for T, but leaving "f" as a friend function
1127 // template.
1128 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001129 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001130 Function->getLocation(),
1131 Function->getDeclName(),
1132 TemplateParams, Function);
1133 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001134
1135 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001136
1137 if (isFriend && D->isThisDeclarationADefinition()) {
1138 // TODO: should we remember this connection regardless of whether
1139 // the friend declaration provided a body?
1140 FunctionTemplate->setInstantiatedFromMemberTemplate(
1141 D->getDescribedFunctionTemplate());
1142 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001143 } else if (FunctionTemplate) {
1144 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001145 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001146 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001147 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001148 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001149 Innermost.first,
1150 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001151 /*InsertPos=*/0);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001152 } else if (isFriend) {
1153 // Note, we need this connection even if the friend doesn't have a body.
1154 // Its body may exist but not have been attached yet due to deferred
1155 // parsing.
1156 // FIXME: It might be cleaner to set this when attaching the body to the
1157 // friend function declaration, however that would require finding all the
1158 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001159 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001160 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001161
Douglas Gregore53060f2009-06-25 22:08:12 +00001162 if (InitFunctionInstantiation(Function, D))
1163 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001164
John McCallaf2094e2010-04-08 09:05:18 +00001165 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001166
John McCall68263142009-11-18 22:49:29 +00001167 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1168 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1169
John McCallaf2094e2010-04-08 09:05:18 +00001170 if (DependentFunctionTemplateSpecializationInfo *Info
1171 = D->getDependentSpecializationInfo()) {
1172 assert(isFriend && "non-friend has dependent specialization info?");
1173
1174 // This needs to be set now for future sanity.
1175 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1176
1177 // Instantiate the explicit template arguments.
1178 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1179 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001180 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1181 ExplicitArgs, TemplateArgs))
1182 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001183
1184 // Map the candidate templates to their instantiations.
1185 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1186 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1187 Info->getTemplate(I),
1188 TemplateArgs);
1189 if (!Temp) return 0;
1190
1191 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1192 }
1193
1194 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1195 &ExplicitArgs,
1196 Previous))
1197 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001198
John McCallaf2094e2010-04-08 09:05:18 +00001199 isExplicitSpecialization = true;
1200
1201 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001202 // Look only into the namespace where the friend would be declared to
1203 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001204 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001205 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001206
Douglas Gregora735b202009-10-13 14:39:41 +00001207 // In C++, the previous declaration we find might be a tag type
1208 // (class or enum). In this case, the new declaration will hide the
1209 // tag type. Note that this does does not apply if we're declaring a
1210 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001211 if (Previous.isSingleTagDecl())
1212 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001213 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001214
John McCall9f54ad42009-12-10 09:41:52 +00001215 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001216 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001217
John McCall76d32642010-04-24 01:30:58 +00001218 NamedDecl *PrincipalDecl = (TemplateParams
1219 ? cast<NamedDecl>(FunctionTemplate)
1220 : Function);
1221
Douglas Gregora735b202009-10-13 14:39:41 +00001222 // If the original function was part of a friend declaration,
1223 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001224 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001225 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001226 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001227 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001228 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001229 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001230
1231 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001232 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001233
Gabor Greif77535df2010-08-30 22:25:56 +00001234 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001235
Richard Smith53e53512011-10-19 00:54:10 +00001236 // C++98 [temp.friend]p5: When a function is defined in a friend function
1237 // declaration in a class template, the function is defined at each
1238 // instantiation of the class template. The function is defined even if it
1239 // is never used.
1240 // C++11 [temp.friend]p4: When a function is defined in a friend function
1241 // declaration in a class template, the function is instantiated when the
1242 // function is odr-used.
1243 //
1244 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1245 // redefinition, but don't instantiate the function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001246 if ((!SemaRef.getLangOpts().CPlusPlus0x ||
Richard Smith53e53512011-10-19 00:54:10 +00001247 SemaRef.Diags.getDiagnosticLevel(
1248 diag::warn_cxx98_compat_friend_redefinition,
1249 Function->getLocation())
1250 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001251 D->isThisDeclarationADefinition()) {
1252 // Check for a function body.
1253 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001254 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001255 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001256 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001257 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001258 diag::warn_cxx98_compat_friend_redefinition :
1259 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001260 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001261 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001262 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001263 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001264 // Check for redefinitions due to other instantiations of this or
1265 // a similar friend function.
1266 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1267 REnd = Function->redecls_end();
1268 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001269 if (*R == Function)
1270 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001271 switch (R->getFriendObjectKind()) {
1272 case Decl::FOK_None:
David Blaikie4e4d0842012-03-11 07:00:24 +00001273 if (!SemaRef.getLangOpts().CPlusPlus0x &&
Richard Smith53e53512011-10-19 00:54:10 +00001274 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001275 if (MemberSpecializationInfo *MSInfo
1276 = Function->getMemberSpecializationInfo()) {
1277 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1278 SourceLocation Loc = R->getLocation(); // FIXME
1279 MSInfo->setPointOfInstantiation(Loc);
1280 SemaRef.PendingLocalImplicitInstantiations.push_back(
1281 std::make_pair(Function, Loc));
1282 queuedInstantiation = true;
1283 }
1284 }
1285 }
1286 break;
1287 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001288 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001289 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001290 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001291 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001292 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001293 diag::warn_cxx98_compat_friend_redefinition :
1294 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001295 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001296 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001297 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001298 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001299 break;
1300 }
1301 }
1302 }
1303 }
Douglas Gregora735b202009-10-13 14:39:41 +00001304 }
1305
John McCall76d32642010-04-24 01:30:58 +00001306 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1307 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1308 PrincipalDecl->setNonMemberOperator();
1309
Sean Hunteb88ae52011-05-23 21:07:59 +00001310 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001311 return Function;
1312}
1313
Douglas Gregord60e1052009-08-27 16:57:43 +00001314Decl *
1315TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001316 TemplateParameterList *TemplateParams,
1317 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001318 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregord60e1052009-08-27 16:57:43 +00001319 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001320 // We are creating a function template specialization from a function
1321 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001322 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001323 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001324 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001325
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001326 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001327 FunctionDecl *SpecFunc
1328 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1329 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001330
Douglas Gregor6b906862009-08-21 00:16:32 +00001331 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001332 if (SpecFunc)
1333 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001334 }
1335
John McCallb0cb0222010-03-27 05:57:59 +00001336 bool isFriend;
1337 if (FunctionTemplate)
1338 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1339 else
1340 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1341
Douglas Gregor79c22782010-01-16 20:21:20 +00001342 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001343 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001344 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001345 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001346
John McCall4eab39f2010-10-19 02:26:41 +00001347 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001348 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001349 unsigned NumTempParamLists = 0;
1350 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1351 TempParamLists.set_size(NumTempParamLists);
1352 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1353 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1354 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1355 if (!InstParams)
1356 return NULL;
1357 TempParamLists[I] = InstParams;
1358 }
1359 }
1360
Chris Lattner5f9e2722011-07-23 10:55:15 +00001361 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001362 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001363 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001364 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001365 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001366
Abramo Bagnara723df242010-12-14 22:11:44 +00001367 // \brief If the type of this function, after ignoring parentheses,
1368 // is not *directly* a function type, then we're instantiating a function
1369 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001370 //
1371 // typedef int functype(int, int);
1372 // functype func;
1373 //
1374 // In this case, we'll just go instantiate the ParmVarDecls that we
1375 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001376 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001377 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001378 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001379 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1380 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001381 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001382 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001383 }
1384
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001385 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1386 if (QualifierLoc) {
1387 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001388 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001389 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001390 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001391 }
1392
1393 DeclContext *DC = Owner;
1394 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001395 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001396 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001397 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001398 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001399
1400 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1401 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001402 } else {
1403 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1404 D->getDeclContext(),
1405 TemplateArgs);
1406 }
1407 if (!DC) return 0;
1408 }
1409
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001410 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001411 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001412 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001413
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001414 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001415 DeclarationNameInfo NameInfo
1416 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001417 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001418 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001419 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001420 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001421 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001422 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001423 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001424 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001425 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001426 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001427 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001428 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001429 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001430 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001431 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001432 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001433 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001434 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001435 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001436 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001437 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001438 D->isStatic(),
1439 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001440 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001441 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001442 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001443
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001444 if (QualifierLoc)
1445 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001446
Douglas Gregord60e1052009-08-27 16:57:43 +00001447 if (TemplateParams) {
1448 // Our resulting instantiation is actually a function template, since we
1449 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001450 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001451 // template<typename T>
1452 // struct X {
1453 // template<typename U> void f(T, U);
1454 // };
1455 //
1456 // X<int> x;
1457 //
1458 // We are instantiating the member template "f" within X<int>, which means
1459 // substituting int for T, but leaving "f" as a member function template.
1460 // Build the function template itself.
1461 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1462 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001463 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001464 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001465 if (isFriend) {
1466 FunctionTemplate->setLexicalDeclContext(Owner);
1467 FunctionTemplate->setObjectOfFriendDecl(true);
1468 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001469 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001470 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001471 } else if (FunctionTemplate) {
1472 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001473 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001474 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001475 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001476 TemplateArgumentList::CreateCopy(SemaRef.Context,
1477 Innermost.first,
1478 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001479 /*InsertPos=*/0);
John McCallb0cb0222010-03-27 05:57:59 +00001480 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001481 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001482 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001483 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001484
Mike Stump1eb44332009-09-09 15:08:12 +00001485 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001486 // out-of-line, the instantiation will have the same lexical
1487 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001488 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001489 if (NumTempParamLists)
1490 Method->setTemplateParameterListsInfo(SemaRef.Context,
1491 NumTempParamLists,
1492 TempParamLists.data());
1493
John McCallb0cb0222010-03-27 05:57:59 +00001494 Method->setLexicalDeclContext(Owner);
1495 Method->setObjectOfFriendDecl(true);
1496 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001497 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Douglas Gregor5545e162009-03-24 00:38:23 +00001499 // Attach the parameters
1500 for (unsigned P = 0; P < Params.size(); ++P)
1501 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001502 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001503
1504 if (InitMethodInstantiation(Method, D))
1505 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001506
Abramo Bagnara25777432010-08-11 22:01:17 +00001507 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1508 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001509
John McCallb0cb0222010-03-27 05:57:59 +00001510 if (!FunctionTemplate || TemplateParams || isFriend) {
1511 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001512
Douglas Gregordec06662009-08-21 18:42:58 +00001513 // In C++, the previous declaration we find might be a tag type
1514 // (class or enum). In this case, the new declaration will hide the
1515 // tag type. Note that this does does not apply if we're declaring a
1516 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001517 if (Previous.isSingleTagDecl())
1518 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001519 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001520
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001521 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001522 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001523
Douglas Gregor4ba31362009-12-01 17:24:26 +00001524 if (D->isPure())
1525 SemaRef.CheckPureMethod(Method, SourceRange());
1526
John McCall46460a62010-01-20 21:53:11 +00001527 Method->setAccess(D->getAccess());
1528
Anders Carlsson9eefa222011-01-20 06:52:44 +00001529 SemaRef.CheckOverrideControl(Method);
1530
Eli Friedman3bc45152011-11-15 22:39:08 +00001531 // If a function is defined as defaulted or deleted, mark it as such now.
1532 if (D->isDefaulted())
1533 Method->setDefaulted();
1534 if (D->isDeletedAsWritten())
1535 Method->setDeletedAsWritten();
1536
John McCallb0cb0222010-03-27 05:57:59 +00001537 if (FunctionTemplate) {
1538 // If there's a function template, let our caller handle it.
1539 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1540 // Don't hide a (potentially) valid declaration with an invalid one.
1541 } else {
1542 NamedDecl *DeclToAdd = (TemplateParams
1543 ? cast<NamedDecl>(FunctionTemplate)
1544 : Method);
1545 if (isFriend)
1546 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001547 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001548 Owner->addDecl(DeclToAdd);
1549 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001550
1551 if (D->isExplicitlyDefaulted()) {
1552 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1553 } else {
1554 assert(!D->isDefaulted() &&
1555 "should not implicitly default uninstantiated function");
1556 }
1557
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001558 return Method;
1559}
1560
Douglas Gregor615c5d42009-03-24 16:43:20 +00001561Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001562 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001563}
1564
Douglas Gregor03b2b072009-03-24 00:15:49 +00001565Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001566 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001567}
1568
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001569Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001570 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001571}
1572
Douglas Gregor6477b692009-03-25 15:04:13 +00001573ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001574 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001575 llvm::Optional<unsigned>(),
1576 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001577}
1578
John McCalle29ba202009-08-20 01:44:21 +00001579Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1580 TemplateTypeParmDecl *D) {
1581 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001582 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001583
John McCalle29ba202009-08-20 01:44:21 +00001584 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001585 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1586 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001587 D->getDepth() - TemplateArgs.getNumLevels(),
1588 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001589 D->wasDeclaredWithTypename(),
1590 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001591 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001592
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001593 if (D->hasDefaultArgument())
1594 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1595
1596 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001597 // scope.
1598 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001599
John McCalle29ba202009-08-20 01:44:21 +00001600 return Inst;
1601}
1602
Douglas Gregor33642df2009-10-23 23:25:44 +00001603Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1604 NonTypeTemplateParmDecl *D) {
1605 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001606 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001607 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1608 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001609 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001610 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001611 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001612 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001613
1614 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001615 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001616 // expansion of types. Substitute into each of the expanded types.
1617 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1618 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1619 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1620 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1621 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001622 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001623 D->getDeclName());
1624 if (!NewDI)
1625 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001626
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001627 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1628 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1629 D->getLocation());
1630 if (NewT.isNull())
1631 return 0;
1632 ExpandedParameterPackTypes.push_back(NewT);
1633 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001634
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001635 IsExpandedParameterPack = true;
1636 DI = D->getTypeSourceInfo();
1637 T = DI->getType();
1638 } else if (isa<PackExpansionTypeLoc>(TL)) {
1639 // The non-type template parameter pack's type is a pack expansion of types.
1640 // Determine whether we need to expand this parameter pack into separate
1641 // types.
1642 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1643 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001644 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001645 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001646
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001647 // Determine whether the set of unexpanded parameter packs can and should
1648 // be expanded.
1649 bool Expand = true;
1650 bool RetainExpansion = false;
1651 llvm::Optional<unsigned> OrigNumExpansions
1652 = Expansion.getTypePtr()->getNumExpansions();
1653 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1654 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1655 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001656 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001657 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001658 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001659 NumExpansions))
1660 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001661
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001662 if (Expand) {
1663 for (unsigned I = 0; I != *NumExpansions; ++I) {
1664 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1665 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001666 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001667 D->getDeclName());
1668 if (!NewDI)
1669 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001670
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001671 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1672 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1673 NewDI->getType(),
1674 D->getLocation());
1675 if (NewT.isNull())
1676 return 0;
1677 ExpandedParameterPackTypes.push_back(NewT);
1678 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001679
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001680 // Note that we have an expanded parameter pack. The "type" of this
1681 // expanded parameter pack is the original expansion type, but callers
1682 // will end up using the expanded parameter pack types for type-checking.
1683 IsExpandedParameterPack = true;
1684 DI = D->getTypeSourceInfo();
1685 T = DI->getType();
1686 } else {
1687 // We cannot fully expand the pack expansion now, so substitute into the
1688 // pattern and create a new pack expansion type.
1689 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1690 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001691 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001692 D->getDeclName());
1693 if (!NewPattern)
1694 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001695
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001696 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1697 NumExpansions);
1698 if (!DI)
1699 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001700
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001701 T = DI->getType();
1702 }
1703 } else {
1704 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001705 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001706 D->getLocation(), D->getDeclName());
1707 if (!DI)
1708 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001709
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001710 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001711 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001712 D->getLocation());
1713 if (T.isNull()) {
1714 T = SemaRef.Context.IntTy;
1715 Invalid = true;
1716 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001717 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001718
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001719 NonTypeTemplateParmDecl *Param;
1720 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001721 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001722 D->getInnerLocStart(),
1723 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001724 D->getDepth() - TemplateArgs.getNumLevels(),
1725 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001726 D->getIdentifier(), T,
1727 DI,
1728 ExpandedParameterPackTypes.data(),
1729 ExpandedParameterPackTypes.size(),
1730 ExpandedParameterPackTypesAsWritten.data());
1731 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001732 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001733 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001734 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001735 D->getDepth() - TemplateArgs.getNumLevels(),
1736 D->getPosition(),
1737 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001738 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001739
Douglas Gregor9a299e02011-03-04 17:52:15 +00001740 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001741 if (Invalid)
1742 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001743
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001744 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001745
1746 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001747 // scope.
1748 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001749 return Param;
1750}
1751
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001752Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001753TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1754 TemplateTemplateParmDecl *D) {
1755 // Instantiate the template parameter list of the template template parameter.
1756 TemplateParameterList *TempParams = D->getTemplateParameters();
1757 TemplateParameterList *InstParams;
1758 {
1759 // Perform the actual substitution of template parameters within a new,
1760 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001761 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001762 InstParams = SubstTemplateParams(TempParams);
1763 if (!InstParams)
1764 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001765 }
1766
Douglas Gregor9106ef72009-11-11 16:58:32 +00001767 // Build the template template parameter.
1768 TemplateTemplateParmDecl *Param
1769 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001770 D->getDepth() - TemplateArgs.getNumLevels(),
1771 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001772 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001773 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001774 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001775
1776 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001777 // scope.
1778 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001779
Douglas Gregor9106ef72009-11-11 16:58:32 +00001780 return Param;
1781}
1782
Douglas Gregor48c32a72009-11-17 06:07:40 +00001783Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001784 // Using directives are never dependent (and never contain any types or
1785 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001786
Douglas Gregor48c32a72009-11-17 06:07:40 +00001787 UsingDirectiveDecl *Inst
1788 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001789 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001790 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001791 D->getIdentLocation(),
1792 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001793 D->getCommonAncestor());
1794 Owner->addDecl(Inst);
1795 return Inst;
1796}
1797
John McCalled976492009-12-04 22:46:56 +00001798Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001799
1800 // The nested name specifier may be dependent, for example
1801 // template <typename T> struct t {
1802 // struct s1 { T f1(); };
1803 // struct s2 : s1 { using s1::f1; };
1804 // };
1805 // template struct t<int>;
1806 // Here, in using s1::f1, s1 refers to t<T>::s1;
1807 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001808 NestedNameSpecifierLoc QualifierLoc
1809 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1810 TemplateArgs);
1811 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001812 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001813
1814 // The name info is non-dependent, so no transformation
1815 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001816 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001817
John McCall9f54ad42009-12-10 09:41:52 +00001818 // We only need to do redeclaration lookups if we're in a class
1819 // scope (in fact, it's not really even possible in non-class
1820 // scopes).
1821 bool CheckRedeclaration = Owner->isRecord();
1822
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001823 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1824 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001825
John McCalled976492009-12-04 22:46:56 +00001826 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001827 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001828 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001829 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001830 D->isTypeName());
1831
Douglas Gregor5149f372011-02-25 15:54:31 +00001832 CXXScopeSpec SS;
1833 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001834 if (CheckRedeclaration) {
1835 Prev.setHideTags(false);
1836 SemaRef.LookupQualifiedName(Prev, Owner);
1837
1838 // Check for invalid redeclarations.
1839 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1840 D->isTypeName(), SS,
1841 D->getLocation(), Prev))
1842 NewUD->setInvalidDecl();
1843
1844 }
1845
1846 if (!NewUD->isInvalidDecl() &&
1847 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001848 D->getLocation()))
1849 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001850
John McCalled976492009-12-04 22:46:56 +00001851 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1852 NewUD->setAccess(D->getAccess());
1853 Owner->addDecl(NewUD);
1854
John McCall9f54ad42009-12-10 09:41:52 +00001855 // Don't process the shadow decls for an invalid decl.
1856 if (NewUD->isInvalidDecl())
1857 return NewUD;
1858
Richard Smithc5a89a12012-04-02 01:30:27 +00001859 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
1860 if (SemaRef.CheckInheritingConstructorUsingDecl(NewUD))
1861 NewUD->setInvalidDecl();
1862 return NewUD;
1863 }
1864
John McCall323c3102009-12-22 22:26:37 +00001865 bool isFunctionScope = Owner->isFunctionOrMethod();
1866
John McCall9f54ad42009-12-10 09:41:52 +00001867 // Process the shadow decls.
1868 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1869 I != E; ++I) {
1870 UsingShadowDecl *Shadow = *I;
1871 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001872 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1873 Shadow->getLocation(),
1874 Shadow->getTargetDecl(),
1875 TemplateArgs));
1876 if (!InstTarget)
1877 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001878
1879 if (CheckRedeclaration &&
1880 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1881 continue;
1882
1883 UsingShadowDecl *InstShadow
1884 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1885 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001886
1887 if (isFunctionScope)
1888 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001889 }
John McCalled976492009-12-04 22:46:56 +00001890
1891 return NewUD;
1892}
1893
1894Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001895 // Ignore these; we handle them in bulk when processing the UsingDecl.
1896 return 0;
John McCalled976492009-12-04 22:46:56 +00001897}
1898
John McCall7ba107a2009-11-18 02:36:19 +00001899Decl * TemplateDeclInstantiator
1900 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001901 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001902 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001903 TemplateArgs);
1904 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001905 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001906
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001907 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001908 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001909
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001910 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1911 // Hence, no tranformation is required for it.
1912 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001913 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001914 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001915 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001916 /*instantiation*/ true,
1917 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001918 if (UD)
John McCalled976492009-12-04 22:46:56 +00001919 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1920
John McCall7ba107a2009-11-18 02:36:19 +00001921 return UD;
1922}
1923
1924Decl * TemplateDeclInstantiator
1925 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001926 NestedNameSpecifierLoc QualifierLoc
1927 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1928 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001929 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001930
John McCall7ba107a2009-11-18 02:36:19 +00001931 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001932 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001933
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001934 DeclarationNameInfo NameInfo
1935 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1936
John McCall7ba107a2009-11-18 02:36:19 +00001937 NamedDecl *UD =
1938 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001939 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001940 /*instantiation*/ true,
1941 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001942 if (UD)
John McCalled976492009-12-04 22:46:56 +00001943 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1944
Anders Carlsson0d8df782009-08-29 19:37:28 +00001945 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001946}
1947
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001948
1949Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1950 ClassScopeFunctionSpecializationDecl *Decl) {
1951 CXXMethodDecl *OldFD = Decl->getSpecialization();
1952 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1953
1954 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1955 Sema::ForRedeclaration);
1956
1957 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1958 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1959 NewFD->setInvalidDecl();
1960 return NewFD;
1961 }
1962
1963 // Associate the specialization with the pattern.
1964 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1965 assert(Specialization && "Class scope Specialization is null");
1966 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1967
1968 return NewFD;
1969}
1970
John McCallce3ff2b2009-08-25 22:02:44 +00001971Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001972 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001973 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001974 if (D->isInvalidDecl())
1975 return 0;
1976
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001977 return Instantiator.Visit(D);
1978}
1979
John McCalle29ba202009-08-20 01:44:21 +00001980/// \brief Instantiates a nested template parameter list in the current
1981/// instantiation context.
1982///
1983/// \param L The parameter list to instantiate
1984///
1985/// \returns NULL if there was an error
1986TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001987TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001988 // Get errors for all the parameters before bailing out.
1989 bool Invalid = false;
1990
1991 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001992 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001993 ParamVector Params;
1994 Params.reserve(N);
1995 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1996 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001997 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001998 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001999 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002000 }
2001
2002 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002003 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002004 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002005
2006 TemplateParameterList *InstL
2007 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2008 L->getLAngleLoc(), &Params.front(), N,
2009 L->getRAngleLoc());
2010 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002011}
John McCalle29ba202009-08-20 01:44:21 +00002012
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002013/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002014/// specialization.
2015///
2016/// \param ClassTemplate the (instantiated) class template that is partially
2017// specialized by the instantiation of \p PartialSpec.
2018///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002019/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002020/// specialization that we are instantiating.
2021///
Douglas Gregord65587f2010-11-10 19:44:59 +00002022/// \returns The instantiated partial specialization, if successful; otherwise,
2023/// NULL to indicate an error.
2024ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2026 ClassTemplateDecl *ClassTemplate,
2027 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002028 // Create a local instantiation scope for this class template partial
2029 // specialization, which will contain the instantiations of the template
2030 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002031 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002032
Douglas Gregored9c0f92009-10-29 00:04:11 +00002033 // Substitute into the template parameters of the class template partial
2034 // specialization.
2035 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2036 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2037 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002038 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002039
Douglas Gregored9c0f92009-10-29 00:04:11 +00002040 // Substitute into the template arguments of the class template partial
2041 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002042 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002043 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2044 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002045 InstTemplateArgs, TemplateArgs))
2046 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002047
Douglas Gregored9c0f92009-10-29 00:04:11 +00002048 // Check that the template argument list is well-formed for this
2049 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002050 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002051 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002052 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002053 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002054 false,
2055 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002056 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002057
2058 // Figure out where to insert this class template partial specialization
2059 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002060 void *InsertPos = 0;
2061 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002062 = ClassTemplate->findPartialSpecialization(Converted.data(),
2063 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002064
Douglas Gregored9c0f92009-10-29 00:04:11 +00002065 // Build the canonical type that describes the converted template
2066 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002067 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002068 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002069 Converted.data(),
2070 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002071
2072 // Build the fully-sugared type for this class template
2073 // specialization as the user wrote in the specialization
2074 // itself. This means that we'll pretty-print the type retrieved
2075 // from the specialization's declaration the way that the user
2076 // actually wrote the specialization, rather than formatting the
2077 // name based on the "canonical" representation used to store the
2078 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002079 TypeSourceInfo *WrittenTy
2080 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2081 TemplateName(ClassTemplate),
2082 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002083 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002084 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002085
Douglas Gregored9c0f92009-10-29 00:04:11 +00002086 if (PrevDecl) {
2087 // We've already seen a partial specialization with the same template
2088 // parameters and template arguments. This can happen, for example, when
2089 // substituting the outer template arguments ends up causing two
2090 // class template partial specializations of a member class template
2091 // to have identical forms, e.g.,
2092 //
2093 // template<typename T, typename U>
2094 // struct Outer {
2095 // template<typename X, typename Y> struct Inner;
2096 // template<typename Y> struct Inner<T, Y>;
2097 // template<typename Y> struct Inner<U, Y>;
2098 // };
2099 //
2100 // Outer<int, int> outer; // error: the partial specializations of Inner
2101 // // have the same signature.
2102 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002103 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002104 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2105 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002106 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002107 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002108
2109
Douglas Gregored9c0f92009-10-29 00:04:11 +00002110 // Create the class template partial specialization declaration.
2111 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002112 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002113 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002114 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002115 PartialSpec->getLocStart(),
2116 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002117 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002118 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002119 Converted.data(),
2120 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002121 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002122 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002123 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002124 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002125 // Substitute the nested name specifier, if any.
2126 if (SubstQualifier(PartialSpec, InstPartialSpec))
2127 return 0;
2128
Douglas Gregored9c0f92009-10-29 00:04:11 +00002129 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002130 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002131
Douglas Gregored9c0f92009-10-29 00:04:11 +00002132 // Add this partial specialization to the set of class template partial
2133 // specializations.
Douglas Gregor1e1e9722012-03-28 14:34:23 +00002134 ClassTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/0);
Douglas Gregord65587f2010-11-10 19:44:59 +00002135 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002136}
2137
John McCall21ef0fa2010-03-11 09:03:00 +00002138TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002139TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002140 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002141 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2142 assert(OldTInfo && "substituting function without type source info");
2143 assert(Params.empty() && "parameter vector is non-empty at start");
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002144
2145 CXXRecordDecl *ThisContext = 0;
2146 unsigned ThisTypeQuals = 0;
2147 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2148 ThisContext = Method->getParent();
2149 ThisTypeQuals = Method->getTypeQualifiers();
2150 }
2151
John McCall6cd3b9f2010-04-09 17:38:44 +00002152 TypeSourceInfo *NewTInfo
2153 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2154 D->getTypeSpecStartLoc(),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002155 D->getDeclName(),
2156 ThisContext, ThisTypeQuals);
John McCall21ef0fa2010-03-11 09:03:00 +00002157 if (!NewTInfo)
2158 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002159
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002160 if (NewTInfo != OldTInfo) {
2161 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002162 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002163 if (FunctionProtoTypeLoc *OldProtoLoc
2164 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002165 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002166 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2167 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002168 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2169 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2170 OldIdx != NumOldParams; ++OldIdx) {
2171 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2172 if (!OldParam->isParameterPack() ||
Richard Smith7c5d28b2012-03-13 06:56:52 +00002173 // FIXME: Is this right? OldParam could expand to an empty parameter
2174 // pack and the next parameter could be an unexpanded parameter pack
Douglas Gregor12c9c002011-01-07 16:43:16 +00002175 (NewIdx < NumNewParams &&
2176 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002177 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002178 // instantiated to a (still-dependent) parameter pack.
2179 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2180 Params.push_back(NewParam);
2181 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2182 NewParam);
2183 continue;
2184 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002185
Douglas Gregor12c9c002011-01-07 16:43:16 +00002186 // Parameter pack: make the instantiation an argument pack.
2187 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2188 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002189 unsigned NumArgumentsInExpansion
2190 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2191 TemplateArgs);
2192 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002193 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2194 Params.push_back(NewParam);
2195 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2196 NewParam);
2197 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002198 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002199 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002200 } else {
2201 // The function type itself was not dependent and therefore no
2202 // substitution occurred. However, we still need to instantiate
2203 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002204 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002205 if (FunctionProtoTypeLoc *OldProtoLoc
2206 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2207 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2208 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2209 if (!Parm)
2210 return 0;
2211 Params.push_back(Parm);
2212 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002213 }
2214 }
John McCall21ef0fa2010-03-11 09:03:00 +00002215 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002216}
2217
Mike Stump1eb44332009-09-09 15:08:12 +00002218/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002219/// declaration (New) from the corresponding fields of its template (Tmpl).
2220///
2221/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002222bool
2223TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002224 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002225 if (Tmpl->isDeletedAsWritten())
2226 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002227
Douglas Gregorcca9e962009-07-01 22:01:06 +00002228 // If we are performing substituting explicitly-specified template arguments
2229 // or deduced template arguments into a function template and we reach this
2230 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002231 // to keeping the new function template specialization. We therefore
2232 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002233 // into a template instantiation for this specific function template
2234 // specialization, which is not a SFINAE context, so that we diagnose any
2235 // further errors in the declaration itself.
2236 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2237 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2238 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2239 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002240 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002241 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002242 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002243 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002244 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002245 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2246 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002247 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002248 }
2249 }
Mike Stump1eb44332009-09-09 15:08:12 +00002250
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002251 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2252 assert(Proto && "Function template without prototype?");
2253
Sebastian Redl60618fa2011-03-12 11:50:43 +00002254 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002255 // C++11 [expr.prim.general]p3:
2256 // If a declaration declares a member function or member function
2257 // template of a class X, the expression this is a prvalue of type
2258 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2259 // and the end of the function-definition, member-declarator, or
2260 // declarator.
2261 CXXRecordDecl *ThisContext = 0;
2262 unsigned ThisTypeQuals = 0;
2263 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) {
2264 ThisContext = Method->getParent();
2265 ThisTypeQuals = Method->getTypeQualifiers();
2266 }
2267 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals,
2268 SemaRef.getLangOpts().CPlusPlus0x);
2269
2270
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002271 // The function has an exception specification or a "noreturn"
2272 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002273 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002274 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2275 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002276 if (const PackExpansionType *PackExpansion
2277 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2278 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002279 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002280 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2281 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002282 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002283 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002284
Douglas Gregorb99268b2010-12-21 00:52:54 +00002285 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002286 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002287 llvm::Optional<unsigned> NumExpansions
2288 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002289 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002290 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002291 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002292 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002293 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002294 RetainExpansion,
2295 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002296 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002297
Douglas Gregorb99268b2010-12-21 00:52:54 +00002298 if (!Expand) {
2299 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002300 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002301 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002302 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002303 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002304 TemplateArgs,
2305 New->getLocation(), New->getDeclName());
2306 if (T.isNull())
2307 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002308
Douglas Gregorcded4f62011-01-14 17:04:44 +00002309 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002310 Exceptions.push_back(T);
2311 continue;
2312 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002313
Douglas Gregorb99268b2010-12-21 00:52:54 +00002314 // Substitute into the pack expansion pattern for each template
2315 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002316 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002317 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002318
2319 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002320 TemplateArgs,
2321 New->getLocation(), New->getDeclName());
2322 if (T.isNull()) {
2323 Invalid = true;
2324 break;
2325 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002326
Douglas Gregorb99268b2010-12-21 00:52:54 +00002327 Exceptions.push_back(T);
2328 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002329
Douglas Gregorb99268b2010-12-21 00:52:54 +00002330 if (Invalid)
2331 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002332
Douglas Gregorb99268b2010-12-21 00:52:54 +00002333 continue;
2334 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002335
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002336 QualType T
2337 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2338 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002339 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002340 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2341 continue;
2342
2343 Exceptions.push_back(T);
2344 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002345 Expr *NoexceptExpr = 0;
2346 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002347 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2348 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002349 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2350 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002351 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002352
Douglas Gregor5c340e82011-10-09 18:31:23 +00002353 if (E.isUsable()) {
Sebastian Redl56fb9262011-03-14 18:51:50 +00002354 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002355 if (!NoexceptExpr->isTypeDependent() &&
Richard Smith282e7e62012-02-04 09:53:13 +00002356 !NoexceptExpr->isValueDependent())
2357 NoexceptExpr = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2358 0, SemaRef.PDiag(diag::err_noexcept_needs_constant_expression),
2359 /*AllowFold*/ false).take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002360 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002361 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002362
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002363 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002364
John McCalle23cf432010-12-14 08:05:40 +00002365 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002366 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002367 EPI.NumExceptions = Exceptions.size();
2368 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002369 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002370 EPI.ExtInfo = Proto->getExtInfo();
2371
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002372 const FunctionProtoType *NewProto
2373 = New->getType()->getAs<FunctionProtoType>();
2374 assert(NewProto && "Template instantiation without function prototype?");
2375 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2376 NewProto->arg_type_begin(),
2377 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002378 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002379 }
2380
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002381 const FunctionDecl* Definition = Tmpl;
2382
2383 // Get the definition. Leaves the variable unchanged if undefined.
2384 Tmpl->isDefined(Definition);
2385
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002386 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2387 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002388
Douglas Gregore53060f2009-06-25 22:08:12 +00002389 return false;
2390}
2391
Douglas Gregor5545e162009-03-24 00:38:23 +00002392/// \brief Initializes common fields of an instantiated method
2393/// declaration (New) from the corresponding fields of its template
2394/// (Tmpl).
2395///
2396/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002397bool
2398TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002399 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002400 if (InitFunctionInstantiation(New, Tmpl))
2401 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002402
Douglas Gregor5545e162009-03-24 00:38:23 +00002403 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002404 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002405 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002406
2407 // FIXME: attributes
2408 // FIXME: New needs a pointer to Tmpl
2409 return false;
2410}
Douglas Gregora58861f2009-05-13 20:28:22 +00002411
2412/// \brief Instantiate the definition of the given function from its
2413/// template.
2414///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002415/// \param PointOfInstantiation the point at which the instantiation was
2416/// required. Note that this is not precisely a "point of instantiation"
2417/// for the function, but it's close.
2418///
Douglas Gregora58861f2009-05-13 20:28:22 +00002419/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002420/// function template specialization or member function of a class template
2421/// specialization.
2422///
2423/// \param Recursive if true, recursively instantiates any functions that
2424/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002425///
2426/// \param DefinitionRequired if true, then we are performing an explicit
2427/// instantiation where the body of the function is required. Complain if
2428/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002429void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002430 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002431 bool Recursive,
2432 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002433 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002434 return;
2435
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002436 // Never instantiate an explicit specialization except if it is a class scope
2437 // explicit specialization.
2438 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2439 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002440 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002441
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002442 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002443 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002444 assert(PatternDecl && "instantiating a non-template");
2445
2446 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2447 assert(PatternDecl && "template definition is not a template");
2448 if (!Pattern) {
2449 // Try to find a defaulted definition
2450 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002451 }
Sean Huntf996e052011-05-27 20:00:14 +00002452 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002453
Francois Pichet8387e2a2011-04-22 22:18:13 +00002454 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002455 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002456 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002457 PendingInstantiations.push_back(
2458 std::make_pair(Function, PointOfInstantiation));
2459 return;
2460 }
2461
2462 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002463 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002464 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002465 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002466 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002467 Pattern = PatternDecl->getBody(PatternDecl);
2468 }
2469
Sean Huntf996e052011-05-27 20:00:14 +00002470 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002471 if (DefinitionRequired) {
2472 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002473 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002474 diag::err_explicit_instantiation_undefined_func_template)
2475 << Function->getPrimaryTemplate();
2476 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002477 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002478 diag::err_explicit_instantiation_undefined_member)
2479 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002480
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002481 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002482 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002483 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002484 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002485 } else if (Function->getTemplateSpecializationKind()
2486 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002487 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002488 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002489 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002490
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002491 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002492 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002493
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002494 // C++0x [temp.explicit]p9:
2495 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002496 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002497 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002498 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002499 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002500 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002501 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002502
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002503 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2504 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002505 return;
2506
Abramo Bagnarae9946242011-11-18 08:08:52 +00002507 // Copy the inner loc start from the pattern.
2508 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2509
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002510 // If we're performing recursive template instantiation, create our own
2511 // queue of pending implicit instantiations that we will instantiate later,
2512 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002513 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002514 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002515 if (Recursive) {
2516 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002517 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002518 }
Mike Stump1eb44332009-09-09 15:08:12 +00002519
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002520 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002521 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002522 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002523
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002524 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002525 // recorded, unless we're actually a member function within a local
2526 // class, in which case we need to merge our results with the parent
2527 // scope (of the enclosing function).
2528 bool MergeWithParentScope = false;
2529 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2530 MergeWithParentScope = Rec->isLocalClass();
2531
2532 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002533
Richard Smith7c5d28b2012-03-13 06:56:52 +00002534 // Enter the scope of this instantiation. We don't use
2535 // PushDeclContext because we don't have a scope.
2536 Sema::ContextRAII savedContext(*this, Function);
2537
2538 MultiLevelTemplateArgumentList TemplateArgs =
2539 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2540
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002541 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002542 // instantiation scope, and set the parameter names to those used
2543 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002544 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002545 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2546 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002547 if (!PatternParam->isParameterPack()) {
2548 // Simple case: not a parameter pack.
2549 assert(FParamIdx < Function->getNumParams());
Richard Smith7c5d28b2012-03-13 06:56:52 +00002550 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002551 FunctionParam->setDeclName(PatternParam->getDeclName());
2552 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2553 ++FParamIdx;
2554 continue;
2555 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002556
Douglas Gregor12c9c002011-01-07 16:43:16 +00002557 // Expand the parameter pack.
2558 Scope.MakeInstantiatedLocalArgPack(PatternParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002559 unsigned NumArgumentsInExpansion
2560 = getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
2561 for (unsigned Arg = 0; Arg < NumArgumentsInExpansion; ++Arg) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002562 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2563 FunctionParam->setDeclName(PatternParam->getDeclName());
2564 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
Richard Smith7c5d28b2012-03-13 06:56:52 +00002565 ++FParamIdx;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002566 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002567 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002568
Sean Huntcd10dec2011-05-23 23:14:04 +00002569 if (PatternDecl->isDefaulted()) {
2570 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2571
2572 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002573 } else {
2574 // If this is a constructor, instantiate the member initializers.
2575 if (const CXXConstructorDecl *Ctor =
2576 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2577 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2578 TemplateArgs);
2579 }
2580
2581 // Instantiate the function body.
2582 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2583
2584 if (Body.isInvalid())
2585 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002586
Sean Huntcd10dec2011-05-23 23:14:04 +00002587 ActOnFinishFunctionBody(Function, Body.get(),
2588 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002589 }
2590
John McCall0c01d182010-03-24 05:22:00 +00002591 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2592
John McCalleee1d542011-02-14 07:13:47 +00002593 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002594
2595 DeclGroupRef DG(Function);
2596 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002597
Douglas Gregor60406be2010-01-16 22:29:39 +00002598 // This class may have local implicit instantiations that need to be
2599 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002600 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002601 Scope.Exit();
2602
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002603 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002604 // Define any pending vtables.
2605 DefineUsedVTables();
2606
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002607 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002608 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002609 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002610
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002611 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002612 assert(VTableUses.empty() &&
2613 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002614 VTableUses.swap(SavedVTableUses);
2615
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002616 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002617 assert(PendingInstantiations.empty() &&
2618 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002619 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002620 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002621}
2622
2623/// \brief Instantiate the definition of the given variable from its
2624/// template.
2625///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002626/// \param PointOfInstantiation the point at which the instantiation was
2627/// required. Note that this is not precisely a "point of instantiation"
2628/// for the function, but it's close.
2629///
2630/// \param Var the already-instantiated declaration of a static member
2631/// variable of a class template specialization.
2632///
2633/// \param Recursive if true, recursively instantiates any functions that
2634/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002635///
2636/// \param DefinitionRequired if true, then we are performing an explicit
2637/// instantiation where an out-of-line definition of the member variable
2638/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002639void Sema::InstantiateStaticDataMemberDefinition(
2640 SourceLocation PointOfInstantiation,
2641 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002642 bool Recursive,
2643 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002644 if (Var->isInvalidDecl())
2645 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002646
Douglas Gregor7caa6822009-07-24 20:34:43 +00002647 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002648 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002649 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002650 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002651 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002652
Douglas Gregor0d035142009-10-27 18:42:08 +00002653 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002654 // We did not find an out-of-line definition of this static data member,
2655 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002656 // instantiate this definition (or provide a specialization for it) in
2657 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002658 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002659 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002660 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002661 diag::err_explicit_instantiation_undefined_member)
2662 << 2 << Var->getDeclName() << Var->getDeclContext();
2663 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002664 } else if (Var->getTemplateSpecializationKind()
2665 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002666 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002667 std::make_pair(Var, PointOfInstantiation));
2668 }
2669
Douglas Gregor7caa6822009-07-24 20:34:43 +00002670 return;
2671 }
2672
Rafael Espindola234fe652012-03-05 10:54:55 +00002673 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2674
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002675 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002676 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002677 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002678
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002679 // C++0x [temp.explicit]p9:
2680 // Except for inline functions, other explicit instantiation declarations
2681 // have the effect of suppressing the implicit instantiation of the entity
2682 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002683 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002684 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002685
Rafael Espindola02503932012-03-08 15:51:03 +00002686 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2687
Douglas Gregorf15748a2011-06-03 03:35:07 +00002688 // If we already have a definition, we're done.
Nick Lewycky95e38722012-04-04 02:38:36 +00002689 if (VarDecl *Def = Var->getDefinition()) {
2690 // We may be explicitly instantiating something we've already implicitly
2691 // instantiated.
2692 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
2693 PointOfInstantiation);
Douglas Gregorf15748a2011-06-03 03:35:07 +00002694 return;
Nick Lewycky95e38722012-04-04 02:38:36 +00002695 }
Douglas Gregorf15748a2011-06-03 03:35:07 +00002696
Douglas Gregor7caa6822009-07-24 20:34:43 +00002697 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2698 if (Inst)
2699 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002700
Douglas Gregor7caa6822009-07-24 20:34:43 +00002701 // If we're performing recursive template instantiation, create our own
2702 // queue of pending implicit instantiations that we will instantiate later,
2703 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002704 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002705 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002706 if (Recursive) {
2707 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002708 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002709 }
Mike Stump1eb44332009-09-09 15:08:12 +00002710
Douglas Gregor7caa6822009-07-24 20:34:43 +00002711 // Enter the scope of this instantiation. We don't use
2712 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002713 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002714 LocalInstantiationScope Local(*this);
2715
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002716 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002717 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002718 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002719
2720 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002721
2722 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002723 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2724 assert(MSInfo && "Missing member specialization information?");
2725 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2726 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002727 DeclGroupRef DG(Var);
2728 Consumer.HandleTopLevelDecl(DG);
2729 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002730 Local.Exit();
2731
Douglas Gregor7caa6822009-07-24 20:34:43 +00002732 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002733 // Define any newly required vtables.
2734 DefineUsedVTables();
2735
Douglas Gregor7caa6822009-07-24 20:34:43 +00002736 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002737 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002738 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002739
Nick Lewycky81559102011-05-31 07:58:42 +00002740 // Restore the set of pending vtables.
2741 assert(VTableUses.empty() &&
2742 "VTableUses should be empty before it is discarded, "
2743 "while instantiating static data member.");
2744 VTableUses.swap(SavedVTableUses);
2745
Douglas Gregor7caa6822009-07-24 20:34:43 +00002746 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002747 assert(PendingInstantiations.empty() &&
2748 "PendingInstantiations should be empty before it is discarded, "
2749 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002750 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002751 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002752}
Douglas Gregor815215d2009-05-27 05:35:12 +00002753
Anders Carlsson09025312009-08-29 05:16:22 +00002754void
2755Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2756 const CXXConstructorDecl *Tmpl,
2757 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002758
Richard Trieu90ab75b2011-09-09 03:18:59 +00002759 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002760 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002761
Anders Carlsson09025312009-08-29 05:16:22 +00002762 // Instantiate all the initializers.
2763 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002764 InitsEnd = Tmpl->init_end();
2765 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002766 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002767
Chandler Carruth030ef472010-09-03 21:54:20 +00002768 // Only instantiate written initializers, let Sema re-construct implicit
2769 // ones.
2770 if (!Init->isWritten())
2771 continue;
2772
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002773 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002774
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002775 if (Init->isPackExpansion()) {
2776 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002777 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002778 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002779 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2780 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002781 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002782 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002783 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002784 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002785 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002786 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002787 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002788 NumExpansions)) {
2789 AnyErrors = true;
2790 New->setInvalidDecl();
2791 continue;
2792 }
2793 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002794
2795 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002796 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002797 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2798
2799 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002800 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2801 /*CXXDirectInit=*/true);
2802 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002803 AnyErrors = true;
2804 break;
2805 }
2806
2807 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002808 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002809 TemplateArgs,
2810 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002811 New->getDeclName());
2812 if (!BaseTInfo) {
2813 AnyErrors = true;
2814 break;
2815 }
2816
2817 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002818 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002819 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002820 New->getParent(),
2821 SourceLocation());
2822 if (NewInit.isInvalid()) {
2823 AnyErrors = true;
2824 break;
2825 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002826
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002827 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002828 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002829
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002830 continue;
2831 }
2832
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002833 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002834 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
2835 /*CXXDirectInit=*/true);
2836 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002837 AnyErrors = true;
2838 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002839 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002840
Anders Carlsson09025312009-08-29 05:16:22 +00002841 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002842 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2843 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2844 TemplateArgs,
2845 Init->getSourceLocation(),
2846 New->getDeclName());
2847 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002848 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002849 New->setInvalidDecl();
2850 continue;
2851 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002852
Douglas Gregor76852c22011-11-01 01:16:03 +00002853 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002854 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002855 New->getParent(), EllipsisLoc);
2856 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002857 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00002858 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002859 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002860 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002861 Init->getMemberLocation(),
2862 Init->getMember(),
2863 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002864 if (!Member) {
2865 AnyErrors = true;
2866 New->setInvalidDecl();
2867 continue;
2868 }
Mike Stump1eb44332009-09-09 15:08:12 +00002869
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002870 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002871 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002872 } else if (Init->isIndirectMemberInitializer()) {
2873 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002874 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002875 Init->getMemberLocation(),
2876 Init->getIndirectMember(), TemplateArgs));
2877
Douglas Gregorb7107222011-03-04 19:46:35 +00002878 if (!IndirectMember) {
2879 AnyErrors = true;
2880 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002881 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002882 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002883
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002884 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002885 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002886 }
2887
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002888 if (NewInit.isInvalid()) {
2889 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002890 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002891 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00002892 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002893 }
2894 }
Mike Stump1eb44332009-09-09 15:08:12 +00002895
Anders Carlsson09025312009-08-29 05:16:22 +00002896 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002897 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002898 /*FIXME: ColonLoc */
2899 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002900 NewInits.data(), NewInits.size(),
2901 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002902}
2903
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002904ExprResult Sema::SubstInitializer(Expr *Init,
2905 const MultiLevelTemplateArgumentList &TemplateArgs,
2906 bool CXXDirectInit) {
2907 // Initializers are instantiated like expressions, except that various outer
2908 // layers are stripped.
2909 if (!Init)
2910 return Owned(Init);
2911
2912 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
2913 Init = ExprTemp->getSubExpr();
2914
2915 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
2916 Init = Binder->getSubExpr();
2917
2918 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
2919 Init = ICE->getSubExprAsWritten();
2920
2921 // If this is a direct-initializer, we take apart CXXConstructExprs.
2922 // Everything else is passed through.
2923 CXXConstructExpr *Construct;
2924 if (!CXXDirectInit || !(Construct = dyn_cast<CXXConstructExpr>(Init)) ||
2925 isa<CXXTemporaryObjectExpr>(Construct))
2926 return SubstExpr(Init, TemplateArgs);
2927
2928 ASTOwningVector<Expr*> NewArgs(*this);
2929 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
2930 TemplateArgs, NewArgs))
2931 return ExprError();
2932
2933 // Treat an empty initializer like none.
2934 if (NewArgs.empty())
2935 return Owned((Expr*)0);
2936
2937 // Build a ParenListExpr to represent anything else.
2938 // FIXME: Fake locations!
2939 SourceLocation Loc = PP.getLocForEndOfToken(Init->getLocStart());
2940 return ActOnParenListExpr(Loc, Loc, move_arg(NewArgs));
2941}
2942
John McCall52a575a2009-08-29 08:11:13 +00002943// TODO: this could be templated if the various decl types used the
2944// same method name.
2945static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2946 ClassTemplateDecl *Instance) {
2947 Pattern = Pattern->getCanonicalDecl();
2948
2949 do {
2950 Instance = Instance->getCanonicalDecl();
2951 if (Pattern == Instance) return true;
2952 Instance = Instance->getInstantiatedFromMemberTemplate();
2953 } while (Instance);
2954
2955 return false;
2956}
2957
Douglas Gregor0d696532009-09-28 06:34:35 +00002958static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2959 FunctionTemplateDecl *Instance) {
2960 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002961
Douglas Gregor0d696532009-09-28 06:34:35 +00002962 do {
2963 Instance = Instance->getCanonicalDecl();
2964 if (Pattern == Instance) return true;
2965 Instance = Instance->getInstantiatedFromMemberTemplate();
2966 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002967
Douglas Gregor0d696532009-09-28 06:34:35 +00002968 return false;
2969}
2970
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002971static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002972isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2973 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002974 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002975 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2976 do {
2977 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2978 Instance->getCanonicalDecl());
2979 if (Pattern == Instance)
2980 return true;
2981 Instance = Instance->getInstantiatedFromMember();
2982 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002983
Douglas Gregored9c0f92009-10-29 00:04:11 +00002984 return false;
2985}
2986
John McCall52a575a2009-08-29 08:11:13 +00002987static bool isInstantiationOf(CXXRecordDecl *Pattern,
2988 CXXRecordDecl *Instance) {
2989 Pattern = Pattern->getCanonicalDecl();
2990
2991 do {
2992 Instance = Instance->getCanonicalDecl();
2993 if (Pattern == Instance) return true;
2994 Instance = Instance->getInstantiatedFromMemberClass();
2995 } while (Instance);
2996
2997 return false;
2998}
2999
3000static bool isInstantiationOf(FunctionDecl *Pattern,
3001 FunctionDecl *Instance) {
3002 Pattern = Pattern->getCanonicalDecl();
3003
3004 do {
3005 Instance = Instance->getCanonicalDecl();
3006 if (Pattern == Instance) return true;
3007 Instance = Instance->getInstantiatedFromMemberFunction();
3008 } while (Instance);
3009
3010 return false;
3011}
3012
3013static bool isInstantiationOf(EnumDecl *Pattern,
3014 EnumDecl *Instance) {
3015 Pattern = Pattern->getCanonicalDecl();
3016
3017 do {
3018 Instance = Instance->getCanonicalDecl();
3019 if (Pattern == Instance) return true;
3020 Instance = Instance->getInstantiatedFromMemberEnum();
3021 } while (Instance);
3022
3023 return false;
3024}
3025
John McCalled976492009-12-04 22:46:56 +00003026static bool isInstantiationOf(UsingShadowDecl *Pattern,
3027 UsingShadowDecl *Instance,
3028 ASTContext &C) {
3029 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
3030}
3031
3032static bool isInstantiationOf(UsingDecl *Pattern,
3033 UsingDecl *Instance,
3034 ASTContext &C) {
3035 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3036}
3037
John McCall7ba107a2009-11-18 02:36:19 +00003038static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3039 UsingDecl *Instance,
3040 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003041 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003042}
3043
3044static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003045 UsingDecl *Instance,
3046 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003047 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003048}
3049
John McCall52a575a2009-08-29 08:11:13 +00003050static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3051 VarDecl *Instance) {
3052 assert(Instance->isStaticDataMember());
3053
3054 Pattern = Pattern->getCanonicalDecl();
3055
3056 do {
3057 Instance = Instance->getCanonicalDecl();
3058 if (Pattern == Instance) return true;
3059 Instance = Instance->getInstantiatedFromStaticDataMember();
3060 } while (Instance);
3061
3062 return false;
3063}
3064
John McCalled976492009-12-04 22:46:56 +00003065// Other is the prospective instantiation
3066// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003067static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003068 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003069 if (UnresolvedUsingTypenameDecl *UUD
3070 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3071 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3072 return isInstantiationOf(UUD, UD, Ctx);
3073 }
3074 }
3075
3076 if (UnresolvedUsingValueDecl *UUD
3077 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003078 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3079 return isInstantiationOf(UUD, UD, Ctx);
3080 }
3081 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003082
Anders Carlsson0d8df782009-08-29 19:37:28 +00003083 return false;
3084 }
Mike Stump1eb44332009-09-09 15:08:12 +00003085
John McCall52a575a2009-08-29 08:11:13 +00003086 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3087 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003088
John McCall52a575a2009-08-29 08:11:13 +00003089 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3090 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003091
John McCall52a575a2009-08-29 08:11:13 +00003092 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3093 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003094
Douglas Gregor7caa6822009-07-24 20:34:43 +00003095 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003096 if (Var->isStaticDataMember())
3097 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3098
3099 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3100 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003101
Douglas Gregor0d696532009-09-28 06:34:35 +00003102 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3103 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3104
Douglas Gregored9c0f92009-10-29 00:04:11 +00003105 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3106 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3107 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3108 PartialSpec);
3109
Anders Carlssond8b285f2009-09-01 04:26:58 +00003110 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3111 if (!Field->getDeclName()) {
3112 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003113 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003114 cast<FieldDecl>(D);
3115 }
3116 }
Mike Stump1eb44332009-09-09 15:08:12 +00003117
John McCalled976492009-12-04 22:46:56 +00003118 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3119 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3120
3121 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3122 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3123
Douglas Gregor815215d2009-05-27 05:35:12 +00003124 return D->getDeclName() && isa<NamedDecl>(Other) &&
3125 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3126}
3127
3128template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003129static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003130 NamedDecl *D,
3131 ForwardIterator first,
3132 ForwardIterator last) {
3133 for (; first != last; ++first)
3134 if (isInstantiationOf(Ctx, D, *first))
3135 return cast<NamedDecl>(*first);
3136
3137 return 0;
3138}
3139
John McCall02cace72009-08-28 07:59:38 +00003140/// \brief Finds the instantiation of the given declaration context
3141/// within the current instantiation.
3142///
3143/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003144DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003145 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003146 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003147 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003148 return cast_or_null<DeclContext>(ID);
3149 } else return DC;
3150}
3151
Douglas Gregored961e72009-05-27 17:54:46 +00003152/// \brief Find the instantiation of the given declaration within the
3153/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003154///
3155/// This routine is intended to be used when \p D is a declaration
3156/// referenced from within a template, that needs to mapped into the
3157/// corresponding declaration within an instantiation. For example,
3158/// given:
3159///
3160/// \code
3161/// template<typename T>
3162/// struct X {
3163/// enum Kind {
3164/// KnownValue = sizeof(T)
3165/// };
3166///
3167/// bool getKind() const { return KnownValue; }
3168/// };
3169///
3170/// template struct X<int>;
3171/// \endcode
3172///
3173/// In the instantiation of X<int>::getKind(), we need to map the
3174/// EnumConstantDecl for KnownValue (which refers to
3175/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003176/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3177/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003178NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003179 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003180 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003181 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003182 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003183 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3184 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003185 // D is a local of some kind. Look into the map of local
3186 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003187 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3188 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3189 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003190
Chris Lattner57ad3782011-02-17 20:34:02 +00003191 if (Found) {
3192 if (Decl *FD = Found->dyn_cast<Decl *>())
3193 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003194
Chris Lattner57ad3782011-02-17 20:34:02 +00003195 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3196 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3197 }
3198
3199 // If we didn't find the decl, then we must have a label decl that hasn't
3200 // been found yet. Lazily instantiate it and return it now.
3201 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003202
Chris Lattner57ad3782011-02-17 20:34:02 +00003203 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3204 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003205
Chris Lattner57ad3782011-02-17 20:34:02 +00003206 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3207 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003208 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003209
Douglas Gregore95b4092009-09-16 18:34:49 +00003210 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3211 if (!Record->isDependentContext())
3212 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003213
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003214 // Determine whether this record is the "templated" declaration describing
3215 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003216 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003217 if (ClassTemplate)
3218 ClassTemplate = ClassTemplate->getCanonicalDecl();
3219 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3220 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3221 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3222
3223 // Walk the current context to find either the record or an instantiation of
3224 // it.
3225 DeclContext *DC = CurContext;
3226 while (!DC->isFileContext()) {
3227 // If we're performing substitution while we're inside the template
3228 // definition, we'll find our own context. We're done.
3229 if (DC->Equals(Record))
3230 return Record;
3231
3232 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3233 // Check whether we're in the process of instantiating a class template
3234 // specialization of the template we're mapping.
3235 if (ClassTemplateSpecializationDecl *InstSpec
3236 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3237 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3238 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3239 return InstRecord;
3240 }
3241
3242 // Check whether we're in the process of instantiating a member class.
3243 if (isInstantiationOf(Record, InstRecord))
3244 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003245 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003246
3247
3248 // Move to the outer template scope.
3249 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3250 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3251 DC = FD->getLexicalDeclContext();
3252 continue;
3253 }
John McCall52a575a2009-08-29 08:11:13 +00003254 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003255
3256 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003257 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003258
Douglas Gregore95b4092009-09-16 18:34:49 +00003259 // Fall through to deal with other dependent record types (e.g.,
3260 // anonymous unions in class templates).
3261 }
John McCall52a575a2009-08-29 08:11:13 +00003262
Douglas Gregore95b4092009-09-16 18:34:49 +00003263 if (!ParentDC->isDependentContext())
3264 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003265
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003266 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003267 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003268 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003269
Douglas Gregor815215d2009-05-27 05:35:12 +00003270 if (ParentDC != D->getDeclContext()) {
3271 // We performed some kind of instantiation in the parent context,
3272 // so now we need to look into the instantiated parent context to
3273 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003274
John McCall3cb0ebd2010-03-10 03:28:59 +00003275 // If our context used to be dependent, we may need to instantiate
3276 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003277 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003278 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003279 if (!Spec->isDependentContext()) {
3280 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003281 const RecordType *Tag = T->getAs<RecordType>();
3282 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003283 if (Tag->isBeingDefined())
3284 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003285 if (!Tag->isBeingDefined() &&
3286 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3287 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003288
3289 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003290 }
3291 }
3292
Douglas Gregor815215d2009-05-27 05:35:12 +00003293 NamedDecl *Result = 0;
3294 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003295 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003296 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3297 } else {
3298 // Since we don't have a name for the entity we're looking for,
3299 // our only option is to walk through all of the declarations to
3300 // find that name. This will occur in a few cases:
3301 //
3302 // - anonymous struct/union within a template
3303 // - unnamed class/struct/union/enum within a template
3304 //
3305 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003306 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003307 ParentDC->decls_begin(),
3308 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003309 }
Mike Stump1eb44332009-09-09 15:08:12 +00003310
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003311 if (!Result) {
3312 if (isa<UsingShadowDecl>(D)) {
3313 // UsingShadowDecls can instantiate to nothing because of using hiding.
3314 } else if (Diags.hasErrorOccurred()) {
3315 // We've already complained about something, so most likely this
3316 // declaration failed to instantiate. There's no point in complaining
3317 // further, since this is normal in invalid code.
3318 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003319 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003320 // instantiated, and we haven't gotten around to instantiating this
3321 // member yet. This can happen when the code uses forward declarations
3322 // of member classes, and introduces ordering dependencies via
3323 // template instantiation.
3324 Diag(Loc, diag::err_member_not_yet_instantiated)
3325 << D->getDeclName()
3326 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3327 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith0724b7c2012-03-26 20:28:16 +00003328 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
3329 // This enumeration constant was found when the template was defined,
3330 // but can't be found in the instantiation. This can happen if an
3331 // unscoped enumeration member is explicitly specialized.
3332 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
3333 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
3334 TemplateArgs));
3335 assert(Spec->getTemplateSpecializationKind() ==
3336 TSK_ExplicitSpecialization);
3337 Diag(Loc, diag::err_enumerator_does_not_exist)
3338 << D->getDeclName()
3339 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
3340 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
3341 << Context.getTypeDeclType(Spec);
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003342 } else {
3343 // We should have found something, but didn't.
3344 llvm_unreachable("Unable to find instantiation of declaration!");
3345 }
3346 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003347
Douglas Gregor815215d2009-05-27 05:35:12 +00003348 D = Result;
3349 }
3350
Douglas Gregor815215d2009-05-27 05:35:12 +00003351 return D;
3352}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003353
Mike Stump1eb44332009-09-09 15:08:12 +00003354/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003355/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003356void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003357 // Load pending instantiations from the external source.
3358 if (!LocalOnly && ExternalSource) {
3359 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3360 ExternalSource->ReadPendingInstantiations(Pending);
3361 PendingInstantiations.insert(PendingInstantiations.begin(),
3362 Pending.begin(), Pending.end());
3363 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003364
Douglas Gregor60406be2010-01-16 22:29:39 +00003365 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003366 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003367 PendingImplicitInstantiation Inst;
3368
3369 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003370 Inst = PendingInstantiations.front();
3371 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003372 } else {
3373 Inst = PendingLocalImplicitInstantiations.front();
3374 PendingLocalImplicitInstantiations.pop_front();
3375 }
Mike Stump1eb44332009-09-09 15:08:12 +00003376
Douglas Gregor7caa6822009-07-24 20:34:43 +00003377 // Instantiate function definitions
3378 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003379 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3380 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003381 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3382 TSK_ExplicitInstantiationDefinition;
3383 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3384 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003385 continue;
3386 }
Mike Stump1eb44332009-09-09 15:08:12 +00003387
Douglas Gregor7caa6822009-07-24 20:34:43 +00003388 // Instantiate static data member definitions.
3389 VarDecl *Var = cast<VarDecl>(Inst.first);
3390 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003391
Chandler Carruth291b4412010-02-13 10:17:50 +00003392 // Don't try to instantiate declarations if the most recent redeclaration
3393 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003394 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003395 continue;
3396
3397 // Check if the most recent declaration has changed the specialization kind
3398 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003399 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003400 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003401 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003402 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003403 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003404 continue; // No longer need to instantiate this type.
3405 case TSK_ExplicitInstantiationDefinition:
3406 // We only need an instantiation if the pending instantiation *is* the
3407 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003408 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003409 case TSK_ImplicitInstantiation:
3410 break;
3411 }
3412
John McCallf312b1e2010-08-26 23:41:50 +00003413 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3414 "instantiating static data member "
3415 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003416
Chandler Carruth58e390e2010-08-25 08:27:02 +00003417 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3418 TSK_ExplicitInstantiationDefinition;
3419 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3420 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003421 }
3422}
John McCall0c01d182010-03-24 05:22:00 +00003423
3424void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3425 const MultiLevelTemplateArgumentList &TemplateArgs) {
3426 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3427 E = Pattern->ddiag_end(); I != E; ++I) {
3428 DependentDiagnostic *DD = *I;
3429
3430 switch (DD->getKind()) {
3431 case DependentDiagnostic::Access:
3432 HandleDependentAccessCheck(*DD, TemplateArgs);
3433 break;
3434 }
3435 }
3436}