blob: ee9d529c69e3033af716df041f0fa73e82298301 [file] [log] [blame]
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001//===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//===----------------------------------------------------------------------===/
8//
9// This file implements C++ template instantiation for declarations.
10//
11//===----------------------------------------------------------------------===/
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000013#include "clang/Sema/Lookup.h"
John McCallf312b1e2010-08-26 23:41:50 +000014#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall7cd088e2010-08-24 07:21:54 +000015#include "clang/Sema/Template.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000016#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000020#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000021#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000022#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000023#include "clang/AST/TypeLoc.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025
26using namespace clang;
27
John McCallb6217662010-03-15 10:12:16 +000028bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29 DeclaratorDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000030 if (!OldDecl->getQualifierLoc())
31 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000032
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000033 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000034 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000035 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000037 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000039
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000040 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000041 return false;
42}
43
44bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45 TagDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000046 if (!OldDecl->getQualifierLoc())
47 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000049 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000050 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000051 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000052
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000053 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000056 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000060// Include attribute instantiation code.
61#include "clang/Sema/AttrTemplateInstantiate.inc"
62
John McCall1d8d1cc2010-08-01 02:01:53 +000063void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins23323e02012-01-20 22:50:54 +000064 const Decl *Tmpl, Decl *New,
65 LateInstantiatedAttrVec *LateAttrs,
66 LocalInstantiationScope *OuterMostScope) {
Sean Huntcf807c42010-08-18 23:23:40 +000067 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
68 i != e; ++i) {
69 const Attr *TmplAttr = *i;
DeLesley Hutchins23323e02012-01-20 22:50:54 +000070
Chandler Carruth4ced79f2010-06-25 03:22:07 +000071 // FIXME: This should be generalized to more than just the AlignedAttr.
72 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000074 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000075 // The alignment expression is a constant expression.
76 EnterExpressionEvaluationContext Unevaluated(*this,
77 Sema::ConstantEvaluated);
78
John McCall60d7b3a2010-08-24 06:29:42 +000079 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000081 if (!Result.isInvalid())
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000082 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>(),
83 Aligned->getIsMSDeclSpec());
Richard Smithf6702a32011-12-20 02:08:33 +000084 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000085 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000086 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000087 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000088 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000089 if (Result)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000090 AddAlignedAttr(Aligned->getLocation(), New, Result,
91 Aligned->getIsMSDeclSpec());
Sean Huntcf807c42010-08-18 23:23:40 +000092 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000093 continue;
94 }
95 }
96
DeLesley Hutchins23323e02012-01-20 22:50:54 +000097 if (TmplAttr->isLateParsed() && LateAttrs) {
98 // Late parsed attributes must be instantiated and attached after the
99 // enclosing class has been instantiated. See Sema::InstantiateClass.
100 LocalInstantiationScope *Saved = 0;
101 if (CurrentInstantiationScope)
102 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
103 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
104 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000105 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
106 *this, TemplateArgs);
Rafael Espindola31c195a2012-05-15 14:09:55 +0000107 if (NewAttr)
108 New->addAttr(NewAttr);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000109 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000110 }
111}
112
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113Decl *
114TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000115 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000116}
117
118Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000119TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
120 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
121 D->getIdentifier());
122 Owner->addDecl(Inst);
123 return Inst;
124}
125
126Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000127TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000128 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000129}
130
John McCall3dbd3d52010-02-16 06:53:13 +0000131Decl *
132TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
133 NamespaceAliasDecl *Inst
134 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
135 D->getNamespaceLoc(),
136 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000137 D->getIdentifier(),
138 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000139 D->getTargetNameLoc(),
140 D->getNamespace());
141 Owner->addDecl(Inst);
142 return Inst;
143}
144
Richard Smith3e4c6c42011-05-05 21:57:07 +0000145Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
146 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000147 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000148 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000149 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000150 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000151 DI = SemaRef.SubstType(DI, TemplateArgs,
152 D->getLocation(), D->getDeclName());
153 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000154 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000155 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000157 } else {
158 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000159 }
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000161 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000162 TypedefNameDecl *Typedef;
163 if (IsTypeAlias)
164 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
165 D->getLocation(), D->getIdentifier(), DI);
166 else
167 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
168 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000169 if (Invalid)
170 Typedef->setInvalidDecl();
171
John McCallcde5a402011-02-01 08:20:08 +0000172 // If the old typedef was the name for linkage purposes of an anonymous
173 // tag decl, re-establish that relationship for the new typedef.
174 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
175 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000176 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000177 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000178 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
179 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000180 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000181 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000182
Douglas Gregoref96ee02012-01-14 16:38:05 +0000183 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000184 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
185 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000186 if (!InstPrev)
187 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000188
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000189 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
190
191 // If the typedef types are not identical, reject them.
192 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
193
194 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000195 }
196
John McCall1d8d1cc2010-08-01 02:01:53 +0000197 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000198
John McCall46460a62010-01-20 21:53:11 +0000199 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000201 return Typedef;
202}
203
Richard Smith162e1c12011-04-15 14:24:37 +0000204Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000205 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
206 Owner->addDecl(Typedef);
207 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000208}
209
210Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000211 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
212 Owner->addDecl(Typedef);
213 return Typedef;
214}
215
216Decl *
217TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
218 // Create a local instantiation scope for this type alias template, which
219 // will contain the instantiations of the template parameters.
220 LocalInstantiationScope Scope(SemaRef);
221
222 TemplateParameterList *TempParams = D->getTemplateParameters();
223 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
224 if (!InstParams)
225 return 0;
226
227 TypeAliasDecl *Pattern = D->getTemplatedDecl();
228
229 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000230 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000231 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
232 if (Found.first != Found.second) {
233 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
234 }
235 }
236
237 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
238 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
239 if (!AliasInst)
240 return 0;
241
242 TypeAliasTemplateDecl *Inst
243 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
244 D->getDeclName(), InstParams, AliasInst);
245 if (PrevAliasTemplate)
246 Inst->setPreviousDeclaration(PrevAliasTemplate);
247
248 Inst->setAccess(D->getAccess());
249
250 if (!PrevAliasTemplate)
251 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000252
Richard Smith3e4c6c42011-05-05 21:57:07 +0000253 Owner->addDecl(Inst);
254
255 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000256}
257
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000258Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000259 // If this is the variable for an anonymous struct or union,
260 // instantiate the anonymous struct/union type first.
261 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
262 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
263 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
264 return 0;
265
John McCallce3ff2b2009-08-25 22:02:44 +0000266 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000267 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000268 TemplateArgs,
269 D->getTypeSpecStartLoc(),
270 D->getDeclName());
271 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000272 return 0;
273
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000274 if (DI->getType()->isFunctionType()) {
275 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
276 << D->isStaticDataMember() << DI->getType();
277 return 0;
278 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000279
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000280 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000281 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000282 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000283 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000284 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000285 D->getStorageClass(),
286 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000287 Var->setThreadSpecified(D->isThreadSpecified());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000288 Var->setInitStyle(D->getInitStyle());
Richard Smithad762fc2011-04-14 22:09:26 +0000289 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000290 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000291
John McCallb6217662010-03-15 10:12:16 +0000292 // Substitute the nested name specifier, if any.
293 if (SubstQualifier(D, Var))
294 return 0;
295
Mike Stump1eb44332009-09-09 15:08:12 +0000296 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000297 // out-of-line, the instantiation will have the same lexical
298 // context (which will be a namespace scope) as the template.
299 if (D->isOutOfLine())
300 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000301
John McCall46460a62010-01-20 21:53:11 +0000302 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000303
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000304 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000305 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000306 Var->setReferenced(D->isReferenced());
307 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000308
Mike Stump390b4cc2009-05-16 07:39:55 +0000309 // FIXME: In theory, we could have a previous declaration for variables that
310 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000311 // FIXME: having to fake up a LookupResult is dumb.
312 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000313 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000314 if (D->isStaticDataMember())
315 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000316
317 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +0000318 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000319 SemaRef.inferObjCARCLifetime(Var))
320 Var->setInvalidDecl();
321
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000322 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Douglas Gregor7caa6822009-07-24 20:34:43 +0000324 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000325 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000326 Owner->makeDeclVisibleInContext(Var);
327 } else {
328 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000329 if (Owner->isFunctionOrMethod())
330 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000331 }
DeLesley Hutchinsdd5756c2012-02-16 17:30:51 +0000332 SemaRef.InstantiateAttrs(TemplateArgs, D, Var, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000333
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000334 // Link instantiations of static data members back to the template from
335 // which they were instantiated.
336 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000337 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000338 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000339
Douglas Gregor60c93c92010-02-09 07:26:29 +0000340 if (Var->getAnyInitializer()) {
341 // We already have an initializer in the class.
342 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000343 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithadb1d4c2012-07-22 23:45:10 +0000344 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated, D);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000345 else
Richard Smithadb1d4c2012-07-22 23:45:10 +0000346 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated, D);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000347
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000348 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000349 ExprResult Init = SemaRef.SubstInitializer(D->getInit(), TemplateArgs,
350 D->getInitStyle() == VarDecl::CallInit);
351 if (!Init.isInvalid()) {
Richard Smith34b41d92011-02-20 03:19:35 +0000352 bool TypeMayContainAuto = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000353 if (Init.get()) {
354 bool DirectInit = D->isDirectInit();
355 SemaRef.AddInitializerToDecl(Var, Init.take(), DirectInit,
356 TypeMayContainAuto);
357 } else
Eli Friedman6aeaa602012-01-05 22:34:08 +0000358 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000359 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000360 // FIXME: Not too happy about invalidating the declaration
361 // because of a bogus initializer.
362 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000363 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000364
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000365 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000366 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
367 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000368 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000369
Richard Smithe3499ca2011-06-21 23:42:09 +0000370 // Diagnose unused local variables with dependent types, where the diagnostic
371 // will have been deferred.
372 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
373 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000374 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000375
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000376 return Var;
377}
378
Abramo Bagnara6206d532010-06-05 05:09:32 +0000379Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
380 AccessSpecDecl* AD
381 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
382 D->getAccessSpecifierLoc(), D->getColonLoc());
383 Owner->addHiddenDecl(AD);
384 return AD;
385}
386
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000387Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
388 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000389 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000390 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000391 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000392 DI = SemaRef.SubstType(DI, TemplateArgs,
393 D->getLocation(), D->getDeclName());
394 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000395 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000396 Invalid = true;
397 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000398 // C++ [temp.arg.type]p3:
399 // If a declaration acquires a function type through a type
400 // dependent on a template-parameter and this causes a
401 // declaration that does not use the syntactic form of a
402 // function declarator to have function type, the program is
403 // ill-formed.
404 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000405 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000406 Invalid = true;
407 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000408 } else {
409 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000410 }
411
412 Expr *BitWidth = D->getBitWidth();
413 if (Invalid)
414 BitWidth = 0;
415 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000416 // The bit-width expression is a constant expression.
417 EnterExpressionEvaluationContext Unevaluated(SemaRef,
418 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000419
John McCall60d7b3a2010-08-24 06:29:42 +0000420 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000421 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000422 if (InstantiatedBitWidth.isInvalid()) {
423 Invalid = true;
424 BitWidth = 0;
425 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000426 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000427 }
428
John McCall07fb6be2009-10-22 23:33:21 +0000429 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
430 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000431 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000432 D->getLocation(),
433 D->isMutable(),
434 BitWidth,
Richard Smithca523302012-06-10 03:12:00 +0000435 D->getInClassInitStyle(),
Richard Smith703b6012012-05-23 04:22:22 +0000436 D->getInnerLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000437 D->getAccess(),
438 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000439 if (!Field) {
440 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000441 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000442 }
Mike Stump1eb44332009-09-09 15:08:12 +0000443
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000444 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000445
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000446 if (Invalid)
447 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000449 if (!Field->getDeclName()) {
450 // Keep track of where this decl came from.
451 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000452 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000453 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
454 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000455 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000456 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000457 }
Mike Stump1eb44332009-09-09 15:08:12 +0000458
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000459 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000460 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000461 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000462
463 return Field;
464}
465
Francois Pichet87c2e122010-11-21 06:08:52 +0000466Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
467 NamedDecl **NamedChain =
468 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
469
470 int i = 0;
471 for (IndirectFieldDecl::chain_iterator PI =
472 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000473 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000474 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000475 TemplateArgs);
476 if (!Next)
477 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000478
Douglas Gregorb7107222011-03-04 19:46:35 +0000479 NamedChain[i++] = Next;
480 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000481
Francois Pichet40e17752010-12-09 10:07:54 +0000482 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000483 IndirectFieldDecl* IndirectField
484 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000485 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000486 NamedChain, D->getChainingSize());
487
488
489 IndirectField->setImplicit(D->isImplicit());
490 IndirectField->setAccess(D->getAccess());
491 Owner->addDecl(IndirectField);
492 return IndirectField;
493}
494
John McCall02cace72009-08-28 07:59:38 +0000495Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000496 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000497 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000498 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000499 TypeSourceInfo *InstTy;
500 // If this is an unsupported friend, don't bother substituting template
501 // arguments into it. The actual type referred to won't be used by any
502 // parts of Clang, and may not be valid for instantiating. Just use the
503 // same info for the instantiated friend.
504 if (D->isUnsupportedFriend()) {
505 InstTy = Ty;
506 } else {
507 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
508 D->getLocation(), DeclarationName());
509 }
510 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000511 return 0;
John McCall02cace72009-08-28 07:59:38 +0000512
Richard Smithd6f80da2012-09-20 01:31:00 +0000513 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(),
Abramo Bagnara0216df82011-10-29 20:52:52 +0000514 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000515 if (!FD)
516 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000517
Douglas Gregor06245bf2010-04-07 17:57:12 +0000518 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000519 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000520 Owner->addDecl(FD);
521 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000522 }
523
Douglas Gregor06245bf2010-04-07 17:57:12 +0000524 NamedDecl *ND = D->getFriendDecl();
525 assert(ND && "friend decl must be a decl or a type!");
526
John McCallaf2094e2010-04-08 09:05:18 +0000527 // All of the Visit implementations for the various potential friend
528 // declarations have to be carefully written to work for friend
529 // objects, with the most important detail being that the target
530 // decl should almost certainly not be placed in Owner.
531 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000532 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000533
John McCall02cace72009-08-28 07:59:38 +0000534 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000535 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000536 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000537 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000538 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000539 Owner->addDecl(FD);
540 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000541}
542
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000543Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
544 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Richard Smithf6702a32011-12-20 02:08:33 +0000546 // The expression in a static assertion is a constant expression.
547 EnterExpressionEvaluationContext Unevaluated(SemaRef,
548 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000549
John McCall60d7b3a2010-08-24 06:29:42 +0000550 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000551 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000552 if (InstantiatedAssertExpr.isInvalid())
553 return 0;
554
Richard Smithe3f470a2012-07-11 22:37:56 +0000555 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000556 InstantiatedAssertExpr.get(),
Richard Smithe3f470a2012-07-11 22:37:56 +0000557 D->getMessage(),
558 D->getRParenLoc(),
559 D->isFailed());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000560}
561
562Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Richard Smith38f0df32012-03-26 04:58:10 +0000563 EnumDecl *PrevDecl = 0;
564 if (D->getPreviousDecl()) {
565 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
566 D->getPreviousDecl(),
567 TemplateArgs);
568 if (!Prev) return 0;
569 PrevDecl = cast<EnumDecl>(Prev);
570 }
571
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000572 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000573 D->getLocation(), D->getIdentifier(),
Richard Smith38f0df32012-03-26 04:58:10 +0000574 PrevDecl, D->isScoped(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000575 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000576 if (D->isFixed()) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000577 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000578 // If we have type source information for the underlying type, it means it
579 // has been explicitly set by the user. Perform substitution on it before
580 // moving on.
581 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smithf1c66b42012-03-14 23:13:10 +0000582 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
583 DeclarationName());
584 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000585 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smithf1c66b42012-03-14 23:13:10 +0000586 else
587 Enum->setIntegerTypeSourceInfo(NewTI);
588 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000589 assert(!D->getIntegerType()->isDependentType()
590 && "Dependent type without type source info");
591 Enum->setIntegerType(D->getIntegerType());
592 }
593 }
594
John McCall5b629aa2010-10-22 23:36:17 +0000595 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
596
Richard Smithf1c66b42012-03-14 23:13:10 +0000597 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000598 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000599 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000600 Owner->addDecl(Enum);
Richard Smithf1c66b42012-03-14 23:13:10 +0000601
Richard Smith4ca93d92012-03-26 04:08:46 +0000602 EnumDecl *Def = D->getDefinition();
603 if (Def && Def != D) {
604 // If this is an out-of-line definition of an enum member template, check
605 // that the underlying types match in the instantiation of both
606 // declarations.
607 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
608 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
609 QualType DefnUnderlying =
610 SemaRef.SubstType(TI->getType(), TemplateArgs,
611 UnderlyingLoc, DeclarationName());
612 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
613 DefnUnderlying, Enum);
614 }
615 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000616
Douglas Gregor96084f12010-03-01 19:00:07 +0000617 if (D->getDeclContext()->isFunctionOrMethod())
618 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000619
Richard Smithf1c66b42012-03-14 23:13:10 +0000620 // C++11 [temp.inst]p1: The implicit instantiation of a class template
621 // specialization causes the implicit instantiation of the declarations, but
622 // not the definitions of scoped member enumerations.
623 // FIXME: There appears to be no wording for what happens for an enum defined
Richard Smith38f0df32012-03-26 04:58:10 +0000624 // within a block scope, but we treat that much like a member template. Only
625 // instantiate the definition when visiting the definition in that case, since
626 // we will visit all redeclarations.
627 if (!Enum->isScoped() && Def &&
628 (!D->getDeclContext()->isFunctionOrMethod() || D->isCompleteDefinition()))
Richard Smith4ca93d92012-03-26 04:08:46 +0000629 InstantiateEnumDefinition(Enum, Def);
Richard Smithf1c66b42012-03-14 23:13:10 +0000630
631 return Enum;
632}
633
634void TemplateDeclInstantiator::InstantiateEnumDefinition(
635 EnumDecl *Enum, EnumDecl *Pattern) {
636 Enum->startDefinition();
637
Richard Smith1af83c42012-03-23 03:33:32 +0000638 // Update the location to refer to the definition.
639 Enum->setLocation(Pattern->getLocation());
640
Chris Lattner5f9e2722011-07-23 10:55:15 +0000641 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000642
643 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000644 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
645 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000646 EC != ECEnd; ++EC) {
647 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000648 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000649 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000650 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000651 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000652 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000653
John McCallce3ff2b2009-08-25 22:02:44 +0000654 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000655 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000656
657 // Drop the initial value and continue.
658 bool isInvalid = false;
659 if (Value.isInvalid()) {
660 Value = SemaRef.Owned((Expr *)0);
661 isInvalid = true;
662 }
663
Mike Stump1eb44332009-09-09 15:08:12 +0000664 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000665 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
666 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000667 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000668
669 if (isInvalid) {
670 if (EnumConst)
671 EnumConst->setInvalidDecl();
672 Enum->setInvalidDecl();
673 }
674
675 if (EnumConst) {
David Blaikie581deb32012-06-06 20:45:41 +0000676 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
John McCall5b629aa2010-10-22 23:36:17 +0000677
John McCall3b85ecf2010-01-23 22:37:59 +0000678 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000679 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000680 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000681 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000682
Richard Smithf1c66b42012-03-14 23:13:10 +0000683 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
684 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000685 // If the enumeration is within a function or method, record the enum
686 // constant as a local.
David Blaikie581deb32012-06-06 20:45:41 +0000687 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
Douglas Gregor96084f12010-03-01 19:00:07 +0000688 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000689 }
690 }
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Richard Smithf1c66b42012-03-14 23:13:10 +0000692 // FIXME: Fixup LBraceLoc
693 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
694 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000695 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000696 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000697}
698
Douglas Gregor6477b692009-03-25 15:04:13 +0000699Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000700 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000701}
702
John McCalle29ba202009-08-20 01:44:21 +0000703Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000704 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
705
Douglas Gregor550d9b22009-10-31 17:21:17 +0000706 // Create a local instantiation scope for this class template, which
707 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000708 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000709 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000710 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000711 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000712 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000713
714 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000715
716 // Instantiate the qualifier. We have to do this first in case
717 // we're a friend declaration, because if we are then we need to put
718 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000719 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
720 if (QualifierLoc) {
721 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
722 TemplateArgs);
723 if (!QualifierLoc)
724 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000725 }
726
727 CXXRecordDecl *PrevDecl = 0;
728 ClassTemplateDecl *PrevClassTemplate = 0;
729
Douglas Gregoref96ee02012-01-14 16:38:05 +0000730 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000731 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
732 if (Found.first != Found.second) {
733 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
734 if (PrevClassTemplate)
735 PrevDecl = PrevClassTemplate->getTemplatedDecl();
736 }
737 }
738
John McCall93ba8572010-03-25 06:39:04 +0000739 // If this isn't a friend, then it's a member template, in which
740 // case we just want to build the instantiation in the
741 // specialization. If it is a friend, we want to build it in
742 // the appropriate context.
743 DeclContext *DC = Owner;
744 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000745 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000746 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000747 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000748 DC = SemaRef.computeDeclContext(SS);
749 if (!DC) return 0;
750 } else {
751 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
752 Pattern->getDeclContext(),
753 TemplateArgs);
754 }
755
756 // Look for a previous declaration of the template in the owning
757 // context.
758 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
759 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
760 SemaRef.LookupQualifiedName(R, DC);
761
762 if (R.isSingleResult()) {
763 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
764 if (PrevClassTemplate)
765 PrevDecl = PrevClassTemplate->getTemplatedDecl();
766 }
767
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000768 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000769 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000770 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000771 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000772 return 0;
773 }
774
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000775 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000776 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000777 bool Complain = true;
778
779 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
780 // template for struct std::tr1::__detail::_Map_base, where the
781 // template parameters of the friend declaration don't match the
782 // template parameters of the original declaration. In this one
783 // case, we don't complain about the ill-formed friend
784 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000785 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000786 Pattern->getIdentifier()->isStr("_Map_base") &&
787 DC->isNamespace() &&
788 cast<NamespaceDecl>(DC)->getIdentifier() &&
789 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
790 DeclContext *DCParent = DC->getParent();
791 if (DCParent->isNamespace() &&
792 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
793 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
794 DeclContext *DCParent2 = DCParent->getParent();
795 if (DCParent2->isNamespace() &&
796 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
797 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
798 DCParent2->getParent()->isTranslationUnit())
799 Complain = false;
800 }
801 }
802
John McCall93ba8572010-03-25 06:39:04 +0000803 TemplateParameterList *PrevParams
804 = PrevClassTemplate->getTemplateParameters();
805
806 // Make sure the parameter lists match.
807 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000808 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000809 Sema::TPL_TemplateMatch)) {
810 if (Complain)
811 return 0;
812
813 AdoptedPreviousTemplateParams = true;
814 InstParams = PrevParams;
815 }
John McCall93ba8572010-03-25 06:39:04 +0000816
817 // Do some additional validation, then merge default arguments
818 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000819 if (!AdoptedPreviousTemplateParams &&
820 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000821 Sema::TPC_ClassTemplate))
822 return 0;
823 }
824 }
825
John McCalle29ba202009-08-20 01:44:21 +0000826 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000827 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000828 Pattern->getLocStart(), Pattern->getLocation(),
829 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000830 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000831
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000832 if (QualifierLoc)
833 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000834
John McCalle29ba202009-08-20 01:44:21 +0000835 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000836 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
837 D->getIdentifier(), InstParams, RecordInst,
838 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000839 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000840
John McCall93ba8572010-03-25 06:39:04 +0000841 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000842 if (PrevClassTemplate)
843 Inst->setAccess(PrevClassTemplate->getAccess());
844 else
845 Inst->setAccess(D->getAccess());
846
John McCall93ba8572010-03-25 06:39:04 +0000847 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
848 // TODO: do we want to track the instantiation progeny of this
849 // friend target decl?
850 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000851 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000852 if (!PrevClassTemplate)
853 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000854 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000855
Douglas Gregorf0510d42009-10-12 23:11:44 +0000856 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000857 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000858 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000859
Douglas Gregor259571e2009-10-30 22:42:42 +0000860 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000861 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000862 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000863 Inst->setLexicalDeclContext(Owner);
864 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000865 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000866 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000867
Abramo Bagnara4c515482011-11-26 13:33:46 +0000868 if (D->isOutOfLine()) {
869 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
870 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
871 }
872
John McCalle29ba202009-08-20 01:44:21 +0000873 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000874
875 if (!PrevClassTemplate) {
876 // Queue up any out-of-line partial specializations of this member
877 // class template; the client will force their instantiation once
878 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000879 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000880 D->getPartialSpecializations(PartialSpecs);
881 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
882 if (PartialSpecs[I]->isOutOfLine())
883 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
884 }
885
John McCalle29ba202009-08-20 01:44:21 +0000886 return Inst;
887}
888
Douglas Gregord60e1052009-08-27 16:57:43 +0000889Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000890TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
891 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000892 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000893
Douglas Gregored9c0f92009-10-29 00:04:11 +0000894 // Lookup the already-instantiated declaration in the instantiation
895 // of the class template and return that.
896 DeclContext::lookup_result Found
897 = Owner->lookup(ClassTemplate->getDeclName());
898 if (Found.first == Found.second)
899 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000900
Douglas Gregored9c0f92009-10-29 00:04:11 +0000901 ClassTemplateDecl *InstClassTemplate
902 = dyn_cast<ClassTemplateDecl>(*Found.first);
903 if (!InstClassTemplate)
904 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000905
Douglas Gregord65587f2010-11-10 19:44:59 +0000906 if (ClassTemplatePartialSpecializationDecl *Result
907 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
908 return Result;
909
910 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000911}
912
913Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000914TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000915 // Create a local instantiation scope for this function template, which
916 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000917 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000918 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000919 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000920
Douglas Gregord60e1052009-08-27 16:57:43 +0000921 TemplateParameterList *TempParams = D->getTemplateParameters();
922 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000923 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000924 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000925
Douglas Gregora735b202009-10-13 14:39:41 +0000926 FunctionDecl *Instantiated = 0;
927 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000928 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000929 InstParams));
930 else
931 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000932 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000933 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000934
Douglas Gregora735b202009-10-13 14:39:41 +0000935 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000936 return 0;
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.
John McCall1f2e1a92012-08-10 03:15:35 +0000955 if (!isFriend) {
Douglas Gregora735b202009-10-13 14:39:41 +0000956 Owner->addDecl(InstTemplate);
John McCall1f2e1a92012-08-10 03:15:35 +0000957 } else if (InstTemplate->getDeclContext()->isRecord() &&
958 !D->getPreviousDecl()) {
959 SemaRef.CheckFriendAccess(InstTemplate);
960 }
John McCallb1a56e72010-03-26 23:10:15 +0000961
Douglas Gregord60e1052009-08-27 16:57:43 +0000962 return InstTemplate;
963}
964
Douglas Gregord475b8d2009-03-25 21:17:03 +0000965Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
966 CXXRecordDecl *PrevDecl = 0;
967 if (D->isInjectedClassName())
968 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000969 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000970 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000971 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000972 TemplateArgs);
973 if (!Prev) return 0;
974 PrevDecl = cast<CXXRecordDecl>(Prev);
975 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000976
977 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000978 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000979 D->getLocStart(), D->getLocation(),
980 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000981
982 // Substitute the nested name specifier, if any.
983 if (SubstQualifier(D, Record))
984 return 0;
985
Douglas Gregord475b8d2009-03-25 21:17:03 +0000986 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000987 // FIXME: Check against AS_none is an ugly hack to work around the issue that
988 // the tag decls introduced by friend class declarations don't have an access
989 // specifier. Remove once this area of the code gets sorted out.
990 if (D->getAccess() != AS_none)
991 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000992 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000993 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000994
John McCall02cace72009-08-28 07:59:38 +0000995 // If the original function was part of a friend declaration,
996 // inherit its namespace state.
997 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
998 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
999
Douglas Gregor9901c572010-05-21 00:31:19 +00001000 // Make sure that anonymous structs and unions are recorded.
1001 if (D->isAnonymousStructOrUnion()) {
1002 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001003 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001004 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1005 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001006
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001007 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001008 return Record;
1009}
1010
Douglas Gregor71074fd2012-09-13 21:56:43 +00001011/// \brief Adjust the given function type for an instantiation of the
1012/// given declaration, to cope with modifications to the function's type that
1013/// aren't reflected in the type-source information.
1014///
1015/// \param D The declaration we're instantiating.
1016/// \param TInfo The already-instantiated type.
1017static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1018 FunctionDecl *D,
1019 TypeSourceInfo *TInfo) {
Douglas Gregorbed51fe2012-09-13 22:01:49 +00001020 const FunctionProtoType *OrigFunc
1021 = D->getType()->castAs<FunctionProtoType>();
1022 const FunctionProtoType *NewFunc
1023 = TInfo->getType()->castAs<FunctionProtoType>();
1024 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1025 return TInfo->getType();
1026
1027 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1028 NewEPI.ExtInfo = OrigFunc->getExtInfo();
1029 return Context.getFunctionType(NewFunc->getResultType(),
1030 NewFunc->arg_type_begin(),
1031 NewFunc->getNumArgs(),
1032 NewEPI);
Douglas Gregor71074fd2012-09-13 21:56:43 +00001033}
1034
John McCall02cace72009-08-28 07:59:38 +00001035/// Normal class members are of more specific types and therefore
1036/// don't make it here. This function serves two purposes:
1037/// 1) instantiating function templates
1038/// 2) substituting friend declarations
1039/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001040Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001041 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001042 // Check whether there is already a function template specialization for
1043 // this declaration.
1044 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCallb0cb0222010-03-27 05:57:59 +00001045 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001046 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001047 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001048
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001049 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001050 FunctionDecl *SpecFunc
1051 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1052 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Douglas Gregor127102b2009-06-29 20:59:39 +00001054 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001055 if (SpecFunc)
1056 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001057 }
Mike Stump1eb44332009-09-09 15:08:12 +00001058
John McCallb0cb0222010-03-27 05:57:59 +00001059 bool isFriend;
1060 if (FunctionTemplate)
1061 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1062 else
1063 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1064
Douglas Gregor79c22782010-01-16 20:21:20 +00001065 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001066 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001067 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001068 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001069 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Chris Lattner5f9e2722011-07-23 10:55:15 +00001071 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001072 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001073 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001074 return 0;
Douglas Gregor71074fd2012-09-13 21:56:43 +00001075 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCallfd810b12009-08-14 02:03:10 +00001076
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001077 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1078 if (QualifierLoc) {
1079 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1080 TemplateArgs);
1081 if (!QualifierLoc)
1082 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001083 }
1084
John McCall68b6b872010-02-06 01:50:47 +00001085 // If we're instantiating a local function declaration, put the result
1086 // in the owner; otherwise we need to find the instantiated context.
1087 DeclContext *DC;
1088 if (D->getDeclContext()->isFunctionOrMethod())
1089 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001090 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001091 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001092 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001093 DC = SemaRef.computeDeclContext(SS);
1094 if (!DC) return 0;
1095 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001096 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001097 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001098 }
John McCall68b6b872010-02-06 01:50:47 +00001099
John McCall02cace72009-08-28 07:59:38 +00001100 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001101 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
Abramo Bagnara635311f2012-10-04 21:40:42 +00001102 D->getNameInfo(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001103 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001104 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001105 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001106
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001107 if (QualifierLoc)
1108 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001109
John McCallb1a56e72010-03-26 23:10:15 +00001110 DeclContext *LexicalDC = Owner;
1111 if (!isFriend && D->isOutOfLine()) {
1112 assert(D->getDeclContext()->isFileContext());
1113 LexicalDC = D->getDeclContext();
1114 }
1115
1116 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001117
Douglas Gregore53060f2009-06-25 22:08:12 +00001118 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001119 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001120 // Adopt the already-instantiated parameters into our own context.
1121 for (unsigned P = 0; P < Params.size(); ++P)
1122 if (Params[P])
1123 Params[P]->setOwningFunction(Function);
1124 } else {
1125 // Since we were instantiated via a typedef of a function type, create
1126 // new parameters.
1127 const FunctionProtoType *Proto
1128 = Function->getType()->getAs<FunctionProtoType>();
1129 assert(Proto && "No function prototype in template instantiation?");
1130 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1131 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1132 ParmVarDecl *Param
1133 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1134 *AI);
1135 Param->setScopeInfo(0, Params.size());
1136 Params.push_back(Param);
1137 }
1138 }
David Blaikie4278c652011-09-21 18:16:56 +00001139 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001140
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001141 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001142 if (TemplateParams) {
1143 // Our resulting instantiation is actually a function template, since we
1144 // are substituting only the outer template parameters. For example, given
1145 //
1146 // template<typename T>
1147 // struct X {
1148 // template<typename U> friend void f(T, U);
1149 // };
1150 //
1151 // X<int> x;
1152 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001153 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001154 // which means substituting int for T, but leaving "f" as a friend function
1155 // template.
1156 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001157 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001158 Function->getLocation(),
1159 Function->getDeclName(),
1160 TemplateParams, Function);
1161 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001162
1163 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001164
1165 if (isFriend && D->isThisDeclarationADefinition()) {
1166 // TODO: should we remember this connection regardless of whether
1167 // the friend declaration provided a body?
1168 FunctionTemplate->setInstantiatedFromMemberTemplate(
1169 D->getDescribedFunctionTemplate());
1170 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001171 } else if (FunctionTemplate) {
1172 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001173 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001174 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001175 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001176 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001177 Innermost.first,
1178 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001179 /*InsertPos=*/0);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001180 } else if (isFriend) {
1181 // Note, we need this connection even if the friend doesn't have a body.
1182 // Its body may exist but not have been attached yet due to deferred
1183 // parsing.
1184 // FIXME: It might be cleaner to set this when attaching the body to the
1185 // friend function declaration, however that would require finding all the
1186 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001187 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001188 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001189
Douglas Gregore53060f2009-06-25 22:08:12 +00001190 if (InitFunctionInstantiation(Function, D))
1191 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001192
John McCallaf2094e2010-04-08 09:05:18 +00001193 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001194
John McCall68263142009-11-18 22:49:29 +00001195 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1196 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1197
John McCallaf2094e2010-04-08 09:05:18 +00001198 if (DependentFunctionTemplateSpecializationInfo *Info
1199 = D->getDependentSpecializationInfo()) {
1200 assert(isFriend && "non-friend has dependent specialization info?");
1201
1202 // This needs to be set now for future sanity.
1203 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1204
1205 // Instantiate the explicit template arguments.
1206 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1207 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001208 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1209 ExplicitArgs, TemplateArgs))
1210 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001211
1212 // Map the candidate templates to their instantiations.
1213 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1214 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1215 Info->getTemplate(I),
1216 TemplateArgs);
1217 if (!Temp) return 0;
1218
1219 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1220 }
1221
1222 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1223 &ExplicitArgs,
1224 Previous))
1225 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001226
John McCallaf2094e2010-04-08 09:05:18 +00001227 isExplicitSpecialization = true;
1228
1229 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001230 // Look only into the namespace where the friend would be declared to
1231 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001232 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001233 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001234
Douglas Gregora735b202009-10-13 14:39:41 +00001235 // In C++, the previous declaration we find might be a tag type
1236 // (class or enum). In this case, the new declaration will hide the
1237 // tag type. Note that this does does not apply if we're declaring a
1238 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001239 if (Previous.isSingleTagDecl())
1240 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001241 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001242
John McCall9f54ad42009-12-10 09:41:52 +00001243 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001244 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001245
John McCall76d32642010-04-24 01:30:58 +00001246 NamedDecl *PrincipalDecl = (TemplateParams
1247 ? cast<NamedDecl>(FunctionTemplate)
1248 : Function);
1249
Douglas Gregora735b202009-10-13 14:39:41 +00001250 // If the original function was part of a friend declaration,
1251 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001252 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001253 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001254 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001255 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001256 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001257 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001258
1259 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001260 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001261
Gabor Greif77535df2010-08-30 22:25:56 +00001262 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001263
Richard Smith53e53512011-10-19 00:54:10 +00001264 // C++98 [temp.friend]p5: When a function is defined in a friend function
1265 // declaration in a class template, the function is defined at each
1266 // instantiation of the class template. The function is defined even if it
1267 // is never used.
1268 // C++11 [temp.friend]p4: When a function is defined in a friend function
1269 // declaration in a class template, the function is instantiated when the
1270 // function is odr-used.
1271 //
1272 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1273 // redefinition, but don't instantiate the function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001274 if ((!SemaRef.getLangOpts().CPlusPlus0x ||
Richard Smith53e53512011-10-19 00:54:10 +00001275 SemaRef.Diags.getDiagnosticLevel(
1276 diag::warn_cxx98_compat_friend_redefinition,
1277 Function->getLocation())
1278 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001279 D->isThisDeclarationADefinition()) {
1280 // Check for a function body.
1281 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001282 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001283 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001284 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001285 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001286 diag::warn_cxx98_compat_friend_redefinition :
1287 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001288 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001289 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001290 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001291 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001292 // Check for redefinitions due to other instantiations of this or
1293 // a similar friend function.
1294 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1295 REnd = Function->redecls_end();
1296 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001297 if (*R == Function)
1298 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001299 switch (R->getFriendObjectKind()) {
1300 case Decl::FOK_None:
David Blaikie4e4d0842012-03-11 07:00:24 +00001301 if (!SemaRef.getLangOpts().CPlusPlus0x &&
Richard Smith53e53512011-10-19 00:54:10 +00001302 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001303 if (MemberSpecializationInfo *MSInfo
1304 = Function->getMemberSpecializationInfo()) {
1305 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1306 SourceLocation Loc = R->getLocation(); // FIXME
1307 MSInfo->setPointOfInstantiation(Loc);
1308 SemaRef.PendingLocalImplicitInstantiations.push_back(
1309 std::make_pair(Function, Loc));
1310 queuedInstantiation = true;
1311 }
1312 }
1313 }
1314 break;
1315 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001316 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001317 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001318 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001319 SemaRef.Diag(Function->getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001320 SemaRef.getLangOpts().CPlusPlus0x ?
Richard Smith53e53512011-10-19 00:54:10 +00001321 diag::warn_cxx98_compat_friend_redefinition :
1322 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001323 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001324 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
David Blaikie4e4d0842012-03-11 07:00:24 +00001325 if (!SemaRef.getLangOpts().CPlusPlus0x)
Richard Smith53e53512011-10-19 00:54:10 +00001326 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001327 break;
1328 }
1329 }
1330 }
1331 }
Douglas Gregora735b202009-10-13 14:39:41 +00001332 }
1333
John McCall76d32642010-04-24 01:30:58 +00001334 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1335 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1336 PrincipalDecl->setNonMemberOperator();
1337
Sean Hunteb88ae52011-05-23 21:07:59 +00001338 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001339 return Function;
1340}
1341
Douglas Gregord60e1052009-08-27 16:57:43 +00001342Decl *
1343TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001344 TemplateParameterList *TemplateParams,
1345 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001346 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregord60e1052009-08-27 16:57:43 +00001347 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001348 // We are creating a function template specialization from a function
1349 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001350 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001351 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001352 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001353
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001354 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001355 FunctionDecl *SpecFunc
1356 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1357 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001358
Douglas Gregor6b906862009-08-21 00:16:32 +00001359 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001360 if (SpecFunc)
1361 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001362 }
1363
John McCallb0cb0222010-03-27 05:57:59 +00001364 bool isFriend;
1365 if (FunctionTemplate)
1366 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1367 else
1368 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1369
Douglas Gregor79c22782010-01-16 20:21:20 +00001370 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001371 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001372 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001373 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001374
John McCall4eab39f2010-10-19 02:26:41 +00001375 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001376 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001377 unsigned NumTempParamLists = 0;
1378 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1379 TempParamLists.set_size(NumTempParamLists);
1380 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1381 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1382 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1383 if (!InstParams)
1384 return NULL;
1385 TempParamLists[I] = InstParams;
1386 }
1387 }
1388
Chris Lattner5f9e2722011-07-23 10:55:15 +00001389 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001390 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001391 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001392 return 0;
Douglas Gregor71074fd2012-09-13 21:56:43 +00001393 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001394
Abramo Bagnara723df242010-12-14 22:11:44 +00001395 // \brief If the type of this function, after ignoring parentheses,
1396 // is not *directly* a function type, then we're instantiating a function
1397 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001398 //
1399 // typedef int functype(int, int);
1400 // functype func;
1401 //
1402 // In this case, we'll just go instantiate the ParmVarDecls that we
1403 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001404 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001405 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001406 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001407 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1408 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001409 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001410 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001411 }
1412
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001413 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1414 if (QualifierLoc) {
1415 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001416 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001417 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001418 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001419 }
1420
1421 DeclContext *DC = Owner;
1422 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001423 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001424 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001425 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001426 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001427
1428 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1429 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001430 } else {
1431 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1432 D->getDeclContext(),
1433 TemplateArgs);
1434 }
1435 if (!DC) return 0;
1436 }
1437
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001438 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001439 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001440 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001441
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001442 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001443 DeclarationNameInfo NameInfo
1444 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001445 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001446 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001447 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001448 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001449 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001450 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001451 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001452 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001453 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001454 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001455 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001456 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001457 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001458 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001459 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001460 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001461 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001462 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001463 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001464 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001465 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001466 D->isStatic(),
1467 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001468 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001469 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001470 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001471
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001472 if (QualifierLoc)
1473 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001474
Douglas Gregord60e1052009-08-27 16:57:43 +00001475 if (TemplateParams) {
1476 // Our resulting instantiation is actually a function template, since we
1477 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001478 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001479 // template<typename T>
1480 // struct X {
1481 // template<typename U> void f(T, U);
1482 // };
1483 //
1484 // X<int> x;
1485 //
1486 // We are instantiating the member template "f" within X<int>, which means
1487 // substituting int for T, but leaving "f" as a member function template.
1488 // Build the function template itself.
1489 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1490 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001491 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001492 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001493 if (isFriend) {
1494 FunctionTemplate->setLexicalDeclContext(Owner);
1495 FunctionTemplate->setObjectOfFriendDecl(true);
1496 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001497 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001498 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001499 } else if (FunctionTemplate) {
1500 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001501 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001502 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001503 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001504 TemplateArgumentList::CreateCopy(SemaRef.Context,
1505 Innermost.first,
1506 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001507 /*InsertPos=*/0);
John McCallb0cb0222010-03-27 05:57:59 +00001508 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001509 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001510 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001511 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001512
Mike Stump1eb44332009-09-09 15:08:12 +00001513 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001514 // out-of-line, the instantiation will have the same lexical
1515 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001516 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001517 if (NumTempParamLists)
1518 Method->setTemplateParameterListsInfo(SemaRef.Context,
1519 NumTempParamLists,
1520 TempParamLists.data());
1521
John McCallb0cb0222010-03-27 05:57:59 +00001522 Method->setLexicalDeclContext(Owner);
1523 Method->setObjectOfFriendDecl(true);
1524 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001525 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001526
Douglas Gregor5545e162009-03-24 00:38:23 +00001527 // Attach the parameters
1528 for (unsigned P = 0; P < Params.size(); ++P)
1529 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001530 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001531
1532 if (InitMethodInstantiation(Method, D))
1533 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001534
Abramo Bagnara25777432010-08-11 22:01:17 +00001535 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1536 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001537
John McCallb0cb0222010-03-27 05:57:59 +00001538 if (!FunctionTemplate || TemplateParams || isFriend) {
1539 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001540
Douglas Gregordec06662009-08-21 18:42:58 +00001541 // In C++, the previous declaration we find might be a tag type
1542 // (class or enum). In this case, the new declaration will hide the
1543 // tag type. Note that this does does not apply if we're declaring a
1544 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001545 if (Previous.isSingleTagDecl())
1546 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001547 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001548
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001549 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001550 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001551
Douglas Gregor4ba31362009-12-01 17:24:26 +00001552 if (D->isPure())
1553 SemaRef.CheckPureMethod(Method, SourceRange());
1554
John McCall1f2e1a92012-08-10 03:15:35 +00001555 // Propagate access. For a non-friend declaration, the access is
1556 // whatever we're propagating from. For a friend, it should be the
1557 // previous declaration we just found.
1558 if (isFriend && Method->getPreviousDecl())
1559 Method->setAccess(Method->getPreviousDecl()->getAccess());
1560 else
1561 Method->setAccess(D->getAccess());
1562 if (FunctionTemplate)
1563 FunctionTemplate->setAccess(Method->getAccess());
John McCall46460a62010-01-20 21:53:11 +00001564
Anders Carlsson9eefa222011-01-20 06:52:44 +00001565 SemaRef.CheckOverrideControl(Method);
1566
Eli Friedman3bc45152011-11-15 22:39:08 +00001567 // If a function is defined as defaulted or deleted, mark it as such now.
1568 if (D->isDefaulted())
1569 Method->setDefaulted();
1570 if (D->isDeletedAsWritten())
1571 Method->setDeletedAsWritten();
1572
John McCall1f2e1a92012-08-10 03:15:35 +00001573 // If there's a function template, let our caller handle it.
John McCallb0cb0222010-03-27 05:57:59 +00001574 if (FunctionTemplate) {
John McCall1f2e1a92012-08-10 03:15:35 +00001575 // do nothing
1576
1577 // Don't hide a (potentially) valid declaration with an invalid one.
John McCallb0cb0222010-03-27 05:57:59 +00001578 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCall1f2e1a92012-08-10 03:15:35 +00001579 // do nothing
1580
1581 // Otherwise, check access to friends and make them visible.
1582 } else if (isFriend) {
1583 // We only need to re-check access for methods which we didn't
1584 // manage to match during parsing.
1585 if (!D->getPreviousDecl())
1586 SemaRef.CheckFriendAccess(Method);
1587
1588 Record->makeDeclVisibleInContext(Method);
1589
1590 // Otherwise, add the declaration. We don't need to do this for
1591 // class-scope specializations because we'll have matched them with
1592 // the appropriate template.
1593 } else if (!IsClassScopeSpecialization) {
1594 Owner->addDecl(Method);
John McCallb0cb0222010-03-27 05:57:59 +00001595 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001596
1597 if (D->isExplicitlyDefaulted()) {
1598 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1599 } else {
1600 assert(!D->isDefaulted() &&
1601 "should not implicitly default uninstantiated function");
1602 }
1603
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001604 return Method;
1605}
1606
Douglas Gregor615c5d42009-03-24 16:43:20 +00001607Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001608 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001609}
1610
Douglas Gregor03b2b072009-03-24 00:15:49 +00001611Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001612 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001613}
1614
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001615Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001616 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001617}
1618
Douglas Gregor6477b692009-03-25 15:04:13 +00001619ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001620 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001621 llvm::Optional<unsigned>(),
1622 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001623}
1624
John McCalle29ba202009-08-20 01:44:21 +00001625Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1626 TemplateTypeParmDecl *D) {
1627 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001628 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001629
John McCalle29ba202009-08-20 01:44:21 +00001630 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001631 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1632 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001633 D->getDepth() - TemplateArgs.getNumLevels(),
1634 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001635 D->wasDeclaredWithTypename(),
1636 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001637 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001638
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001639 if (D->hasDefaultArgument())
1640 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1641
1642 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001643 // scope.
1644 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001645
John McCalle29ba202009-08-20 01:44:21 +00001646 return Inst;
1647}
1648
Douglas Gregor33642df2009-10-23 23:25:44 +00001649Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1650 NonTypeTemplateParmDecl *D) {
1651 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001652 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001653 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1654 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001655 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001656 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001657 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001658 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001659
1660 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001661 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001662 // expansion of types. Substitute into each of the expanded types.
1663 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1664 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1665 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1666 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1667 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001668 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001669 D->getDeclName());
1670 if (!NewDI)
1671 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001672
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001673 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1674 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1675 D->getLocation());
1676 if (NewT.isNull())
1677 return 0;
1678 ExpandedParameterPackTypes.push_back(NewT);
1679 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001680
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001681 IsExpandedParameterPack = true;
1682 DI = D->getTypeSourceInfo();
1683 T = DI->getType();
Richard Smith6964b3f2012-09-07 02:06:42 +00001684 } else if (D->isPackExpansion()) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001685 // The non-type template parameter pack's type is a pack expansion of types.
1686 // Determine whether we need to expand this parameter pack into separate
1687 // types.
1688 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1689 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001690 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001691 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001692
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001693 // Determine whether the set of unexpanded parameter packs can and should
1694 // be expanded.
1695 bool Expand = true;
1696 bool RetainExpansion = false;
1697 llvm::Optional<unsigned> OrigNumExpansions
1698 = Expansion.getTypePtr()->getNumExpansions();
1699 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1700 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1701 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001702 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001703 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001704 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001705 NumExpansions))
1706 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001707
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001708 if (Expand) {
1709 for (unsigned I = 0; I != *NumExpansions; ++I) {
1710 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1711 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001712 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001713 D->getDeclName());
1714 if (!NewDI)
1715 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001716
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001717 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1718 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1719 NewDI->getType(),
1720 D->getLocation());
1721 if (NewT.isNull())
1722 return 0;
1723 ExpandedParameterPackTypes.push_back(NewT);
1724 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001725
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001726 // Note that we have an expanded parameter pack. The "type" of this
1727 // expanded parameter pack is the original expansion type, but callers
1728 // will end up using the expanded parameter pack types for type-checking.
1729 IsExpandedParameterPack = true;
1730 DI = D->getTypeSourceInfo();
1731 T = DI->getType();
1732 } else {
1733 // We cannot fully expand the pack expansion now, so substitute into the
1734 // pattern and create a new pack expansion type.
1735 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1736 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001737 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001738 D->getDeclName());
1739 if (!NewPattern)
1740 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001741
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001742 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1743 NumExpansions);
1744 if (!DI)
1745 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001746
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001747 T = DI->getType();
1748 }
1749 } else {
1750 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001751 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001752 D->getLocation(), D->getDeclName());
1753 if (!DI)
1754 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001755
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001756 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001757 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001758 D->getLocation());
1759 if (T.isNull()) {
1760 T = SemaRef.Context.IntTy;
1761 Invalid = true;
1762 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001763 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001764
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001765 NonTypeTemplateParmDecl *Param;
1766 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001767 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001768 D->getInnerLocStart(),
1769 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001770 D->getDepth() - TemplateArgs.getNumLevels(),
1771 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001772 D->getIdentifier(), T,
1773 DI,
1774 ExpandedParameterPackTypes.data(),
1775 ExpandedParameterPackTypes.size(),
1776 ExpandedParameterPackTypesAsWritten.data());
1777 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001778 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001779 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001780 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001781 D->getDepth() - TemplateArgs.getNumLevels(),
1782 D->getPosition(),
1783 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001784 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001785
Douglas Gregor9a299e02011-03-04 17:52:15 +00001786 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001787 if (Invalid)
1788 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001789
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001790 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001791
1792 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001793 // scope.
1794 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001795 return Param;
1796}
1797
Richard Smith6964b3f2012-09-07 02:06:42 +00001798static void collectUnexpandedParameterPacks(
1799 Sema &S,
1800 TemplateParameterList *Params,
1801 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
1802 for (TemplateParameterList::const_iterator I = Params->begin(),
1803 E = Params->end(); I != E; ++I) {
1804 if ((*I)->isTemplateParameterPack())
1805 continue;
1806 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*I))
1807 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
1808 Unexpanded);
1809 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(*I))
1810 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
1811 Unexpanded);
1812 }
1813}
1814
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001815Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001816TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1817 TemplateTemplateParmDecl *D) {
1818 // Instantiate the template parameter list of the template template parameter.
1819 TemplateParameterList *TempParams = D->getTemplateParameters();
1820 TemplateParameterList *InstParams;
Richard Smith6964b3f2012-09-07 02:06:42 +00001821 SmallVector<TemplateParameterList*, 8> ExpandedParams;
1822
1823 bool IsExpandedParameterPack = false;
1824
1825 if (D->isExpandedParameterPack()) {
1826 // The template template parameter pack is an already-expanded pack
1827 // expansion of template parameters. Substitute into each of the expanded
1828 // parameters.
1829 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
1830 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
1831 I != N; ++I) {
1832 LocalInstantiationScope Scope(SemaRef);
1833 TemplateParameterList *Expansion =
1834 SubstTemplateParams(D->getExpansionTemplateParameters(I));
1835 if (!Expansion)
1836 return 0;
1837 ExpandedParams.push_back(Expansion);
1838 }
1839
1840 IsExpandedParameterPack = true;
1841 InstParams = TempParams;
1842 } else if (D->isPackExpansion()) {
1843 // The template template parameter pack expands to a pack of template
1844 // template parameters. Determine whether we need to expand this parameter
1845 // pack into separate parameters.
1846 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1847 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
1848 Unexpanded);
1849
1850 // Determine whether the set of unexpanded parameter packs can and should
1851 // be expanded.
1852 bool Expand = true;
1853 bool RetainExpansion = false;
1854 llvm::Optional<unsigned> NumExpansions;
1855 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
1856 TempParams->getSourceRange(),
1857 Unexpanded,
1858 TemplateArgs,
1859 Expand, RetainExpansion,
1860 NumExpansions))
1861 return 0;
1862
1863 if (Expand) {
1864 for (unsigned I = 0; I != *NumExpansions; ++I) {
1865 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1866 LocalInstantiationScope Scope(SemaRef);
1867 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
1868 if (!Expansion)
1869 return 0;
1870 ExpandedParams.push_back(Expansion);
1871 }
1872
1873 // Note that we have an expanded parameter pack. The "type" of this
1874 // expanded parameter pack is the original expansion type, but callers
1875 // will end up using the expanded parameter pack types for type-checking.
1876 IsExpandedParameterPack = true;
1877 InstParams = TempParams;
1878 } else {
1879 // We cannot fully expand the pack expansion now, so just substitute
1880 // into the pattern.
1881 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1882
1883 LocalInstantiationScope Scope(SemaRef);
1884 InstParams = SubstTemplateParams(TempParams);
1885 if (!InstParams)
1886 return 0;
1887 }
1888 } else {
Douglas Gregor9106ef72009-11-11 16:58:32 +00001889 // Perform the actual substitution of template parameters within a new,
1890 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001891 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001892 InstParams = SubstTemplateParams(TempParams);
1893 if (!InstParams)
Richard Smith6964b3f2012-09-07 02:06:42 +00001894 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001895 }
1896
Douglas Gregor9106ef72009-11-11 16:58:32 +00001897 // Build the template template parameter.
Richard Smith6964b3f2012-09-07 02:06:42 +00001898 TemplateTemplateParmDecl *Param;
1899 if (IsExpandedParameterPack)
1900 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
1901 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001902 D->getDepth() - TemplateArgs.getNumLevels(),
Richard Smith6964b3f2012-09-07 02:06:42 +00001903 D->getPosition(),
1904 D->getIdentifier(), InstParams,
1905 ExpandedParams);
1906 else
1907 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
1908 D->getLocation(),
1909 D->getDepth() - TemplateArgs.getNumLevels(),
1910 D->getPosition(),
1911 D->isParameterPack(),
1912 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001913 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001914 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001915
1916 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001917 // scope.
1918 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001919
Douglas Gregor9106ef72009-11-11 16:58:32 +00001920 return Param;
1921}
1922
Douglas Gregor48c32a72009-11-17 06:07:40 +00001923Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001924 // Using directives are never dependent (and never contain any types or
1925 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001926
Douglas Gregor48c32a72009-11-17 06:07:40 +00001927 UsingDirectiveDecl *Inst
1928 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001929 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001930 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001931 D->getIdentLocation(),
1932 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001933 D->getCommonAncestor());
Abramo Bagnara536afbe2012-09-05 09:55:10 +00001934
1935 // Add the using directive to its declaration context
1936 // only if this is not a function or method.
1937 if (!Owner->isFunctionOrMethod())
1938 Owner->addDecl(Inst);
1939
Douglas Gregor48c32a72009-11-17 06:07:40 +00001940 return Inst;
1941}
1942
John McCalled976492009-12-04 22:46:56 +00001943Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001944
1945 // The nested name specifier may be dependent, for example
1946 // template <typename T> struct t {
1947 // struct s1 { T f1(); };
1948 // struct s2 : s1 { using s1::f1; };
1949 // };
1950 // template struct t<int>;
1951 // Here, in using s1::f1, s1 refers to t<T>::s1;
1952 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001953 NestedNameSpecifierLoc QualifierLoc
1954 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1955 TemplateArgs);
1956 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001957 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001958
1959 // The name info is non-dependent, so no transformation
1960 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001961 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001962
John McCall9f54ad42009-12-10 09:41:52 +00001963 // We only need to do redeclaration lookups if we're in a class
1964 // scope (in fact, it's not really even possible in non-class
1965 // scopes).
1966 bool CheckRedeclaration = Owner->isRecord();
1967
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001968 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1969 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001970
John McCalled976492009-12-04 22:46:56 +00001971 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001972 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001973 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001974 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001975 D->isTypeName());
1976
Douglas Gregor5149f372011-02-25 15:54:31 +00001977 CXXScopeSpec SS;
1978 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001979 if (CheckRedeclaration) {
1980 Prev.setHideTags(false);
1981 SemaRef.LookupQualifiedName(Prev, Owner);
1982
1983 // Check for invalid redeclarations.
1984 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1985 D->isTypeName(), SS,
1986 D->getLocation(), Prev))
1987 NewUD->setInvalidDecl();
1988
1989 }
1990
1991 if (!NewUD->isInvalidDecl() &&
1992 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001993 D->getLocation()))
1994 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001995
John McCalled976492009-12-04 22:46:56 +00001996 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1997 NewUD->setAccess(D->getAccess());
1998 Owner->addDecl(NewUD);
1999
John McCall9f54ad42009-12-10 09:41:52 +00002000 // Don't process the shadow decls for an invalid decl.
2001 if (NewUD->isInvalidDecl())
2002 return NewUD;
2003
Richard Smithc5a89a12012-04-02 01:30:27 +00002004 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
2005 if (SemaRef.CheckInheritingConstructorUsingDecl(NewUD))
2006 NewUD->setInvalidDecl();
2007 return NewUD;
2008 }
2009
John McCall323c3102009-12-22 22:26:37 +00002010 bool isFunctionScope = Owner->isFunctionOrMethod();
2011
John McCall9f54ad42009-12-10 09:41:52 +00002012 // Process the shadow decls.
2013 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
2014 I != E; ++I) {
2015 UsingShadowDecl *Shadow = *I;
2016 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00002017 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
2018 Shadow->getLocation(),
2019 Shadow->getTargetDecl(),
2020 TemplateArgs));
2021 if (!InstTarget)
2022 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00002023
2024 if (CheckRedeclaration &&
2025 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
2026 continue;
2027
2028 UsingShadowDecl *InstShadow
2029 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
2030 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00002031
2032 if (isFunctionScope)
2033 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00002034 }
John McCalled976492009-12-04 22:46:56 +00002035
2036 return NewUD;
2037}
2038
2039Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00002040 // Ignore these; we handle them in bulk when processing the UsingDecl.
2041 return 0;
John McCalled976492009-12-04 22:46:56 +00002042}
2043
John McCall7ba107a2009-11-18 02:36:19 +00002044Decl * TemplateDeclInstantiator
2045 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00002046 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002047 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00002048 TemplateArgs);
2049 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002050 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002051
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002052 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00002053 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002055 // Since NameInfo refers to a typename, it cannot be a C++ special name.
2056 // Hence, no tranformation is required for it.
2057 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00002058 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00002059 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002060 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00002061 /*instantiation*/ true,
2062 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002063 if (UD)
John McCalled976492009-12-04 22:46:56 +00002064 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2065
John McCall7ba107a2009-11-18 02:36:19 +00002066 return UD;
2067}
2068
2069Decl * TemplateDeclInstantiator
2070 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00002071 NestedNameSpecifierLoc QualifierLoc
2072 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
2073 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00002074 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002075
John McCall7ba107a2009-11-18 02:36:19 +00002076 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00002077 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00002078
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002079 DeclarationNameInfo NameInfo
2080 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2081
John McCall7ba107a2009-11-18 02:36:19 +00002082 NamedDecl *UD =
2083 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002084 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00002085 /*instantiation*/ true,
2086 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002087 if (UD)
John McCalled976492009-12-04 22:46:56 +00002088 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2089
Anders Carlsson0d8df782009-08-29 19:37:28 +00002090 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002091}
2092
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002093
2094Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2095 ClassScopeFunctionSpecializationDecl *Decl) {
2096 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nico Weber6b020092012-06-25 17:21:05 +00002097 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD,
2098 0, true));
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002099
2100 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
2101 Sema::ForRedeclaration);
2102
Nico Weber6b020092012-06-25 17:21:05 +00002103 TemplateArgumentListInfo TemplateArgs;
2104 TemplateArgumentListInfo* TemplateArgsPtr = 0;
2105 if (Decl->hasExplicitTemplateArgs()) {
2106 TemplateArgs = Decl->templateArgs();
2107 TemplateArgsPtr = &TemplateArgs;
2108 }
2109
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002110 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber6b020092012-06-25 17:21:05 +00002111 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2112 Previous)) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002113 NewFD->setInvalidDecl();
2114 return NewFD;
2115 }
2116
2117 // Associate the specialization with the pattern.
2118 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2119 assert(Specialization && "Class scope Specialization is null");
2120 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2121
2122 return NewFD;
2123}
2124
John McCallce3ff2b2009-08-25 22:02:44 +00002125Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00002126 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00002127 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00002128 if (D->isInvalidDecl())
2129 return 0;
2130
Douglas Gregor8dbc2692009-03-17 21:15:40 +00002131 return Instantiator.Visit(D);
2132}
2133
John McCalle29ba202009-08-20 01:44:21 +00002134/// \brief Instantiates a nested template parameter list in the current
2135/// instantiation context.
2136///
2137/// \param L The parameter list to instantiate
2138///
2139/// \returns NULL if there was an error
2140TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00002141TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00002142 // Get errors for all the parameters before bailing out.
2143 bool Invalid = false;
2144
2145 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002146 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002147 ParamVector Params;
2148 Params.reserve(N);
2149 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2150 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002151 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002152 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002153 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002154 }
2155
2156 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002157 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002158 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002159
2160 TemplateParameterList *InstL
2161 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2162 L->getLAngleLoc(), &Params.front(), N,
2163 L->getRAngleLoc());
2164 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002165}
John McCalle29ba202009-08-20 01:44:21 +00002166
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002167/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002168/// specialization.
2169///
2170/// \param ClassTemplate the (instantiated) class template that is partially
2171// specialized by the instantiation of \p PartialSpec.
2172///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002173/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002174/// specialization that we are instantiating.
2175///
Douglas Gregord65587f2010-11-10 19:44:59 +00002176/// \returns The instantiated partial specialization, if successful; otherwise,
2177/// NULL to indicate an error.
2178ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002179TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2180 ClassTemplateDecl *ClassTemplate,
2181 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002182 // Create a local instantiation scope for this class template partial
2183 // specialization, which will contain the instantiations of the template
2184 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002185 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002186
Douglas Gregored9c0f92009-10-29 00:04:11 +00002187 // Substitute into the template parameters of the class template partial
2188 // specialization.
2189 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2190 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2191 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002192 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002193
Douglas Gregored9c0f92009-10-29 00:04:11 +00002194 // Substitute into the template arguments of the class template partial
2195 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002196 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002197 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2198 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002199 InstTemplateArgs, TemplateArgs))
2200 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002201
Douglas Gregored9c0f92009-10-29 00:04:11 +00002202 // Check that the template argument list is well-formed for this
2203 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002204 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002205 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002206 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002207 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002208 false,
2209 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002210 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002211
2212 // Figure out where to insert this class template partial specialization
2213 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002214 void *InsertPos = 0;
2215 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002216 = ClassTemplate->findPartialSpecialization(Converted.data(),
2217 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002218
Douglas Gregored9c0f92009-10-29 00:04:11 +00002219 // Build the canonical type that describes the converted template
2220 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002221 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002222 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002223 Converted.data(),
2224 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002225
2226 // Build the fully-sugared type for this class template
2227 // specialization as the user wrote in the specialization
2228 // itself. This means that we'll pretty-print the type retrieved
2229 // from the specialization's declaration the way that the user
2230 // actually wrote the specialization, rather than formatting the
2231 // name based on the "canonical" representation used to store the
2232 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002233 TypeSourceInfo *WrittenTy
2234 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2235 TemplateName(ClassTemplate),
2236 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002237 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002238 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002239
Douglas Gregored9c0f92009-10-29 00:04:11 +00002240 if (PrevDecl) {
2241 // We've already seen a partial specialization with the same template
2242 // parameters and template arguments. This can happen, for example, when
2243 // substituting the outer template arguments ends up causing two
2244 // class template partial specializations of a member class template
2245 // to have identical forms, e.g.,
2246 //
2247 // template<typename T, typename U>
2248 // struct Outer {
2249 // template<typename X, typename Y> struct Inner;
2250 // template<typename Y> struct Inner<T, Y>;
2251 // template<typename Y> struct Inner<U, Y>;
2252 // };
2253 //
2254 // Outer<int, int> outer; // error: the partial specializations of Inner
2255 // // have the same signature.
2256 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002257 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002258 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2259 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002260 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002261 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002262
2263
Douglas Gregored9c0f92009-10-29 00:04:11 +00002264 // Create the class template partial specialization declaration.
2265 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002266 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002267 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002268 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002269 PartialSpec->getLocStart(),
2270 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002271 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002272 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002273 Converted.data(),
2274 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002275 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002276 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002277 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002278 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002279 // Substitute the nested name specifier, if any.
2280 if (SubstQualifier(PartialSpec, InstPartialSpec))
2281 return 0;
2282
Douglas Gregored9c0f92009-10-29 00:04:11 +00002283 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002284 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285
Douglas Gregored9c0f92009-10-29 00:04:11 +00002286 // Add this partial specialization to the set of class template partial
2287 // specializations.
Douglas Gregor1e1e9722012-03-28 14:34:23 +00002288 ClassTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/0);
Douglas Gregord65587f2010-11-10 19:44:59 +00002289 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002290}
2291
John McCall21ef0fa2010-03-11 09:03:00 +00002292TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002293TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002294 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002295 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2296 assert(OldTInfo && "substituting function without type source info");
2297 assert(Params.empty() && "parameter vector is non-empty at start");
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002298
2299 CXXRecordDecl *ThisContext = 0;
2300 unsigned ThisTypeQuals = 0;
2301 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2302 ThisContext = Method->getParent();
2303 ThisTypeQuals = Method->getTypeQualifiers();
2304 }
2305
John McCall6cd3b9f2010-04-09 17:38:44 +00002306 TypeSourceInfo *NewTInfo
2307 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2308 D->getTypeSpecStartLoc(),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002309 D->getDeclName(),
2310 ThisContext, ThisTypeQuals);
John McCall21ef0fa2010-03-11 09:03:00 +00002311 if (!NewTInfo)
2312 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002313
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002314 if (NewTInfo != OldTInfo) {
2315 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002316 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002317 if (FunctionProtoTypeLoc *OldProtoLoc
2318 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002319 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002320 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2321 assert(NewProtoLoc && "Missing prototype?");
Richard Smith500d7292012-07-18 01:29:05 +00002322 unsigned NewIdx = 0;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002323 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2324 OldIdx != NumOldParams; ++OldIdx) {
2325 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
Richard Smith500d7292012-07-18 01:29:05 +00002326 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
2327
2328 llvm::Optional<unsigned> NumArgumentsInExpansion;
2329 if (OldParam->isParameterPack())
2330 NumArgumentsInExpansion =
2331 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2332 TemplateArgs);
2333 if (!NumArgumentsInExpansion) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002334 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002335 // instantiated to a (still-dependent) parameter pack.
2336 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2337 Params.push_back(NewParam);
Richard Smith500d7292012-07-18 01:29:05 +00002338 Scope->InstantiatedLocal(OldParam, NewParam);
2339 } else {
2340 // Parameter pack expansion: make the instantiation an argument pack.
2341 Scope->MakeInstantiatedLocalArgPack(OldParam);
2342 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
2343 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2344 Params.push_back(NewParam);
2345 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
2346 }
Douglas Gregor12c9c002011-01-07 16:43:16 +00002347 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002348 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002349 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002350 } else {
2351 // The function type itself was not dependent and therefore no
2352 // substitution occurred. However, we still need to instantiate
2353 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002354 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002355 if (FunctionProtoTypeLoc *OldProtoLoc
2356 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2357 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2358 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2359 if (!Parm)
2360 return 0;
2361 Params.push_back(Parm);
2362 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002363 }
2364 }
John McCall21ef0fa2010-03-11 09:03:00 +00002365 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002366}
2367
Richard Smithe6975e92012-04-17 00:58:00 +00002368/// Introduce the instantiated function parameters into the local
2369/// instantiation scope, and set the parameter names to those used
2370/// in the template.
2371static void addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
2372 const FunctionDecl *PatternDecl,
2373 LocalInstantiationScope &Scope,
2374 const MultiLevelTemplateArgumentList &TemplateArgs) {
2375 unsigned FParamIdx = 0;
2376 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2377 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2378 if (!PatternParam->isParameterPack()) {
2379 // Simple case: not a parameter pack.
2380 assert(FParamIdx < Function->getNumParams());
2381 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2382 FunctionParam->setDeclName(PatternParam->getDeclName());
2383 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2384 ++FParamIdx;
2385 continue;
2386 }
2387
2388 // Expand the parameter pack.
2389 Scope.MakeInstantiatedLocalArgPack(PatternParam);
Richard Smith500d7292012-07-18 01:29:05 +00002390 llvm::Optional<unsigned> NumArgumentsInExpansion
Richard Smithe6975e92012-04-17 00:58:00 +00002391 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith500d7292012-07-18 01:29:05 +00002392 assert(NumArgumentsInExpansion &&
2393 "should only be called when all template arguments are known");
2394 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithe6975e92012-04-17 00:58:00 +00002395 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2396 FunctionParam->setDeclName(PatternParam->getDeclName());
2397 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2398 ++FParamIdx;
2399 }
2400 }
2401}
2402
2403static void InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New,
2404 const FunctionProtoType *Proto,
2405 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith13bffc52012-04-19 00:08:28 +00002406 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
2407
Richard Smithe6975e92012-04-17 00:58:00 +00002408 // C++11 [expr.prim.general]p3:
2409 // If a declaration declares a member function or member function
2410 // template of a class X, the expression this is a prvalue of type
2411 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2412 // and the end of the function-definition, member-declarator, or
2413 // declarator.
2414 CXXRecordDecl *ThisContext = 0;
2415 unsigned ThisTypeQuals = 0;
2416 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) {
2417 ThisContext = Method->getParent();
2418 ThisTypeQuals = Method->getTypeQualifiers();
2419 }
2420 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals,
2421 SemaRef.getLangOpts().CPlusPlus0x);
2422
2423 // The function has an exception specification or a "noreturn"
2424 // attribute. Substitute into each of the exception types.
2425 SmallVector<QualType, 4> Exceptions;
2426 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2427 // FIXME: Poor location information!
2428 if (const PackExpansionType *PackExpansion
2429 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2430 // We have a pack expansion. Instantiate it.
2431 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2432 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2433 Unexpanded);
2434 assert(!Unexpanded.empty() &&
2435 "Pack expansion without parameter packs?");
2436
2437 bool Expand = false;
2438 bool RetainExpansion = false;
2439 llvm::Optional<unsigned> NumExpansions
2440 = PackExpansion->getNumExpansions();
2441 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2442 SourceRange(),
2443 Unexpanded,
2444 TemplateArgs,
2445 Expand,
2446 RetainExpansion,
2447 NumExpansions))
2448 break;
2449
2450 if (!Expand) {
2451 // We can't expand this pack expansion into separate arguments yet;
2452 // just substitute into the pattern and create a new pack expansion
2453 // type.
2454 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2455 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2456 TemplateArgs,
2457 New->getLocation(), New->getDeclName());
2458 if (T.isNull())
2459 break;
2460
2461 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
2462 Exceptions.push_back(T);
2463 continue;
2464 }
2465
2466 // Substitute into the pack expansion pattern for each template
2467 bool Invalid = false;
2468 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
2469 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2470
2471 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2472 TemplateArgs,
2473 New->getLocation(), New->getDeclName());
2474 if (T.isNull()) {
2475 Invalid = true;
2476 break;
2477 }
2478
2479 Exceptions.push_back(T);
2480 }
2481
2482 if (Invalid)
2483 break;
2484
2485 continue;
2486 }
2487
2488 QualType T
2489 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2490 New->getLocation(), New->getDeclName());
2491 if (T.isNull() ||
2492 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2493 continue;
2494
2495 Exceptions.push_back(T);
2496 }
2497 Expr *NoexceptExpr = 0;
2498 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
2499 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2500 Sema::ConstantEvaluated);
2501 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2502 if (E.isUsable())
2503 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
2504
2505 if (E.isUsable()) {
2506 NoexceptExpr = E.take();
2507 if (!NoexceptExpr->isTypeDependent() &&
2508 !NoexceptExpr->isValueDependent())
Douglas Gregorab41fe92012-05-04 22:38:52 +00002509 NoexceptExpr
2510 = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2511 0, diag::err_noexcept_needs_constant_expression,
2512 /*AllowFold*/ false).take();
Richard Smithe6975e92012-04-17 00:58:00 +00002513 }
2514 }
2515
2516 // Rebuild the function type
2517 const FunctionProtoType *NewProto
2518 = New->getType()->getAs<FunctionProtoType>();
2519 assert(NewProto && "Template instantiation without function prototype?");
2520
2521 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
2522 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2523 EPI.NumExceptions = Exceptions.size();
2524 EPI.Exceptions = Exceptions.data();
2525 EPI.NoexceptExpr = NoexceptExpr;
2526
2527 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2528 NewProto->arg_type_begin(),
2529 NewProto->getNumArgs(),
2530 EPI));
2531}
2532
2533void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
2534 FunctionDecl *Decl) {
Richard Smith13bffc52012-04-19 00:08:28 +00002535 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
2536 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithe6975e92012-04-17 00:58:00 +00002537 return;
2538
2539 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
2540 InstantiatingTemplate::ExceptionSpecification());
Richard Smithb9d0b762012-07-27 04:22:15 +00002541 if (Inst) {
2542 // We hit the instantiation depth limit. Clear the exception specification
2543 // so that our callers don't have to cope with EST_Uninstantiated.
2544 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
2545 EPI.ExceptionSpecType = EST_None;
2546 Decl->setType(Context.getFunctionType(Proto->getResultType(),
2547 Proto->arg_type_begin(),
2548 Proto->getNumArgs(),
2549 EPI));
Richard Smithe6975e92012-04-17 00:58:00 +00002550 return;
Richard Smithb9d0b762012-07-27 04:22:15 +00002551 }
Richard Smithe6975e92012-04-17 00:58:00 +00002552
2553 // Enter the scope of this instantiation. We don't use
2554 // PushDeclContext because we don't have a scope.
2555 Sema::ContextRAII savedContext(*this, Decl);
2556 LocalInstantiationScope Scope(*this);
2557
2558 MultiLevelTemplateArgumentList TemplateArgs =
2559 getTemplateInstantiationArgs(Decl, 0, /*RelativeToPrimary*/true);
2560
Richard Smith13bffc52012-04-19 00:08:28 +00002561 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
2562 addInstantiatedParametersToScope(*this, Decl, Template, Scope, TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002563
Richard Smith13bffc52012-04-19 00:08:28 +00002564 ::InstantiateExceptionSpec(*this, Decl,
2565 Template->getType()->castAs<FunctionProtoType>(),
2566 TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002567}
2568
Mike Stump1eb44332009-09-09 15:08:12 +00002569/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002570/// declaration (New) from the corresponding fields of its template (Tmpl).
2571///
2572/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002573bool
2574TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002575 FunctionDecl *Tmpl) {
David Blaikie85f485a2012-07-16 18:50:45 +00002576 if (Tmpl->isDeleted())
Sean Hunt10620eb2011-05-06 20:44:56 +00002577 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Douglas Gregorcca9e962009-07-01 22:01:06 +00002579 // If we are performing substituting explicitly-specified template arguments
2580 // or deduced template arguments into a function template and we reach this
2581 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002582 // to keeping the new function template specialization. We therefore
2583 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002584 // into a template instantiation for this specific function template
2585 // specialization, which is not a SFINAE context, so that we diagnose any
2586 // further errors in the declaration itself.
2587 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2588 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2589 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2590 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002591 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002592 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002593 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002594 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002595 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002596 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2597 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
2598 }
2599 }
Mike Stump1eb44332009-09-09 15:08:12 +00002600
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002601 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2602 assert(Proto && "Function template without prototype?");
2603
Sebastian Redl60618fa2011-03-12 11:50:43 +00002604 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalle23cf432010-12-14 08:05:40 +00002605 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalle23cf432010-12-14 08:05:40 +00002606
Richard Smithe6975e92012-04-17 00:58:00 +00002607 // DR1330: In C++11, defer instantiation of a non-trivial
2608 // exception specification.
2609 if (SemaRef.getLangOpts().CPlusPlus0x &&
2610 EPI.ExceptionSpecType != EST_None &&
2611 EPI.ExceptionSpecType != EST_DynamicNone &&
2612 EPI.ExceptionSpecType != EST_BasicNoexcept) {
Richard Smith13bffc52012-04-19 00:08:28 +00002613 FunctionDecl *ExceptionSpecTemplate = Tmpl;
2614 if (EPI.ExceptionSpecType == EST_Uninstantiated)
2615 ExceptionSpecTemplate = EPI.ExceptionSpecTemplate;
Richard Smithb9d0b762012-07-27 04:22:15 +00002616 assert(EPI.ExceptionSpecType != EST_Unevaluated &&
2617 "instantiating implicitly-declared special member");
Richard Smith13bffc52012-04-19 00:08:28 +00002618
Richard Smithe6975e92012-04-17 00:58:00 +00002619 // Mark the function has having an uninstantiated exception specification.
2620 const FunctionProtoType *NewProto
2621 = New->getType()->getAs<FunctionProtoType>();
2622 assert(NewProto && "Template instantiation without function prototype?");
2623 EPI = NewProto->getExtProtoInfo();
2624 EPI.ExceptionSpecType = EST_Uninstantiated;
2625 EPI.ExceptionSpecDecl = New;
Richard Smith13bffc52012-04-19 00:08:28 +00002626 EPI.ExceptionSpecTemplate = ExceptionSpecTemplate;
Richard Smithe6975e92012-04-17 00:58:00 +00002627 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2628 NewProto->arg_type_begin(),
2629 NewProto->getNumArgs(),
2630 EPI));
2631 } else {
2632 ::InstantiateExceptionSpec(SemaRef, New, Proto, TemplateArgs);
2633 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002634 }
2635
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002636 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithe6975e92012-04-17 00:58:00 +00002637 const FunctionDecl *Definition = Tmpl;
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002638 Tmpl->isDefined(Definition);
2639
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002640 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2641 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002642
Douglas Gregore53060f2009-06-25 22:08:12 +00002643 return false;
2644}
2645
Douglas Gregor5545e162009-03-24 00:38:23 +00002646/// \brief Initializes common fields of an instantiated method
2647/// declaration (New) from the corresponding fields of its template
2648/// (Tmpl).
2649///
2650/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002651bool
2652TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002653 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002654 if (InitFunctionInstantiation(New, Tmpl))
2655 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002656
Douglas Gregor5545e162009-03-24 00:38:23 +00002657 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002658 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002659 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002660
2661 // FIXME: attributes
2662 // FIXME: New needs a pointer to Tmpl
2663 return false;
2664}
Douglas Gregora58861f2009-05-13 20:28:22 +00002665
2666/// \brief Instantiate the definition of the given function from its
2667/// template.
2668///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002669/// \param PointOfInstantiation the point at which the instantiation was
2670/// required. Note that this is not precisely a "point of instantiation"
2671/// for the function, but it's close.
2672///
Douglas Gregora58861f2009-05-13 20:28:22 +00002673/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002674/// function template specialization or member function of a class template
2675/// specialization.
2676///
2677/// \param Recursive if true, recursively instantiates any functions that
2678/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002679///
2680/// \param DefinitionRequired if true, then we are performing an explicit
2681/// instantiation where the body of the function is required. Complain if
2682/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002683void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002684 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002685 bool Recursive,
2686 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002687 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002688 return;
2689
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002690 // Never instantiate an explicit specialization except if it is a class scope
2691 // explicit specialization.
2692 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2693 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002694 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002695
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002696 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002697 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002698 assert(PatternDecl && "instantiating a non-template");
2699
2700 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2701 assert(PatternDecl && "template definition is not a template");
2702 if (!Pattern) {
2703 // Try to find a defaulted definition
2704 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002705 }
Sean Huntf996e052011-05-27 20:00:14 +00002706 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002707
Francois Pichet8387e2a2011-04-22 22:18:13 +00002708 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002709 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002710 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002711 PendingInstantiations.push_back(
2712 std::make_pair(Function, PointOfInstantiation));
2713 return;
2714 }
2715
2716 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002717 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002718 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002719 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002720 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002721 Pattern = PatternDecl->getBody(PatternDecl);
2722 }
2723
Sean Huntf996e052011-05-27 20:00:14 +00002724 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002725 if (DefinitionRequired) {
2726 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002727 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002728 diag::err_explicit_instantiation_undefined_func_template)
2729 << Function->getPrimaryTemplate();
2730 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002731 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002732 diag::err_explicit_instantiation_undefined_member)
2733 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002734
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002735 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002736 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002737 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002738 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002739 } else if (Function->getTemplateSpecializationKind()
2740 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002741 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002742 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002743 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002744
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002745 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002746 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002747
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002748 // C++0x [temp.explicit]p9:
2749 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002750 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002751 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002752 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002753 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002754 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002755 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002756
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002757 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2758 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002759 return;
2760
Abramo Bagnarae9946242011-11-18 08:08:52 +00002761 // Copy the inner loc start from the pattern.
2762 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2763
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002764 // If we're performing recursive template instantiation, create our own
2765 // queue of pending implicit instantiations that we will instantiate later,
2766 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002767 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002768 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002769 if (Recursive) {
2770 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002771 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002772 }
Mike Stump1eb44332009-09-09 15:08:12 +00002773
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002774 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002775 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002776 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002777
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002778 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002779 // recorded, unless we're actually a member function within a local
2780 // class, in which case we need to merge our results with the parent
2781 // scope (of the enclosing function).
2782 bool MergeWithParentScope = false;
2783 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2784 MergeWithParentScope = Rec->isLocalClass();
2785
2786 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002787
Richard Smith7c5d28b2012-03-13 06:56:52 +00002788 // Enter the scope of this instantiation. We don't use
2789 // PushDeclContext because we don't have a scope.
2790 Sema::ContextRAII savedContext(*this, Function);
2791
2792 MultiLevelTemplateArgumentList TemplateArgs =
2793 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2794
Richard Smithe6975e92012-04-17 00:58:00 +00002795 addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
2796 TemplateArgs);
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002797
Sean Huntcd10dec2011-05-23 23:14:04 +00002798 if (PatternDecl->isDefaulted()) {
2799 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2800
2801 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002802 } else {
2803 // If this is a constructor, instantiate the member initializers.
2804 if (const CXXConstructorDecl *Ctor =
2805 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2806 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2807 TemplateArgs);
2808 }
2809
2810 // Instantiate the function body.
2811 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2812
2813 if (Body.isInvalid())
2814 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002815
Sean Huntcd10dec2011-05-23 23:14:04 +00002816 ActOnFinishFunctionBody(Function, Body.get(),
2817 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002818 }
2819
John McCall0c01d182010-03-24 05:22:00 +00002820 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2821
John McCalleee1d542011-02-14 07:13:47 +00002822 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002823
2824 DeclGroupRef DG(Function);
2825 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002826
Douglas Gregor60406be2010-01-16 22:29:39 +00002827 // This class may have local implicit instantiations that need to be
2828 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002829 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002830 Scope.Exit();
2831
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002832 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002833 // Define any pending vtables.
2834 DefineUsedVTables();
2835
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002836 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002837 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002838 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002839
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002840 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002841 assert(VTableUses.empty() &&
2842 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002843 VTableUses.swap(SavedVTableUses);
2844
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002845 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002846 assert(PendingInstantiations.empty() &&
2847 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002848 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002849 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002850}
2851
2852/// \brief Instantiate the definition of the given variable from its
2853/// template.
2854///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002855/// \param PointOfInstantiation the point at which the instantiation was
2856/// required. Note that this is not precisely a "point of instantiation"
2857/// for the function, but it's close.
2858///
2859/// \param Var the already-instantiated declaration of a static member
2860/// variable of a class template specialization.
2861///
2862/// \param Recursive if true, recursively instantiates any functions that
2863/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002864///
2865/// \param DefinitionRequired if true, then we are performing an explicit
2866/// instantiation where an out-of-line definition of the member variable
2867/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002868void Sema::InstantiateStaticDataMemberDefinition(
2869 SourceLocation PointOfInstantiation,
2870 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002871 bool Recursive,
2872 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002873 if (Var->isInvalidDecl())
2874 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002875
Douglas Gregor7caa6822009-07-24 20:34:43 +00002876 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002877 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002878 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002879 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002880 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002881
Douglas Gregor0d035142009-10-27 18:42:08 +00002882 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002883 // We did not find an out-of-line definition of this static data member,
2884 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002885 // instantiate this definition (or provide a specialization for it) in
2886 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002887 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002888 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002889 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002890 diag::err_explicit_instantiation_undefined_member)
2891 << 2 << Var->getDeclName() << Var->getDeclContext();
2892 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002893 } else if (Var->getTemplateSpecializationKind()
2894 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002895 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002896 std::make_pair(Var, PointOfInstantiation));
2897 }
2898
Douglas Gregor7caa6822009-07-24 20:34:43 +00002899 return;
2900 }
2901
Rafael Espindola234fe652012-03-05 10:54:55 +00002902 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2903
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002904 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002905 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002906 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002907
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002908 // C++0x [temp.explicit]p9:
2909 // Except for inline functions, other explicit instantiation declarations
2910 // have the effect of suppressing the implicit instantiation of the entity
2911 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002912 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002913 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002914
Rafael Espindola02503932012-03-08 15:51:03 +00002915 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2916
Douglas Gregorf15748a2011-06-03 03:35:07 +00002917 // If we already have a definition, we're done.
Nick Lewycky95e38722012-04-04 02:38:36 +00002918 if (VarDecl *Def = Var->getDefinition()) {
2919 // We may be explicitly instantiating something we've already implicitly
2920 // instantiated.
2921 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
2922 PointOfInstantiation);
Douglas Gregorf15748a2011-06-03 03:35:07 +00002923 return;
Nick Lewycky95e38722012-04-04 02:38:36 +00002924 }
Douglas Gregorf15748a2011-06-03 03:35:07 +00002925
Douglas Gregor7caa6822009-07-24 20:34:43 +00002926 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2927 if (Inst)
2928 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002929
Douglas Gregor7caa6822009-07-24 20:34:43 +00002930 // If we're performing recursive template instantiation, create our own
2931 // queue of pending implicit instantiations that we will instantiate later,
2932 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002933 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002934 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002935 if (Recursive) {
2936 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002937 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002938 }
Mike Stump1eb44332009-09-09 15:08:12 +00002939
Douglas Gregor7caa6822009-07-24 20:34:43 +00002940 // Enter the scope of this instantiation. We don't use
2941 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002942 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002943 LocalInstantiationScope Local(*this);
2944
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002945 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002946 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002947 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002948
2949 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002950
2951 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002952 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2953 assert(MSInfo && "Missing member specialization information?");
2954 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2955 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002956 DeclGroupRef DG(Var);
2957 Consumer.HandleTopLevelDecl(DG);
2958 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002959 Local.Exit();
2960
Douglas Gregor7caa6822009-07-24 20:34:43 +00002961 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002962 // Define any newly required vtables.
2963 DefineUsedVTables();
2964
Douglas Gregor7caa6822009-07-24 20:34:43 +00002965 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002966 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002967 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002968
Nick Lewycky81559102011-05-31 07:58:42 +00002969 // Restore the set of pending vtables.
2970 assert(VTableUses.empty() &&
2971 "VTableUses should be empty before it is discarded, "
2972 "while instantiating static data member.");
2973 VTableUses.swap(SavedVTableUses);
2974
Douglas Gregor7caa6822009-07-24 20:34:43 +00002975 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002976 assert(PendingInstantiations.empty() &&
2977 "PendingInstantiations should be empty before it is discarded, "
2978 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002979 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002980 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002981}
Douglas Gregor815215d2009-05-27 05:35:12 +00002982
Anders Carlsson09025312009-08-29 05:16:22 +00002983void
2984Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2985 const CXXConstructorDecl *Tmpl,
2986 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002987
Richard Trieu90ab75b2011-09-09 03:18:59 +00002988 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith54b3ba82012-09-25 00:23:05 +00002989 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002990
Anders Carlsson09025312009-08-29 05:16:22 +00002991 // Instantiate all the initializers.
2992 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002993 InitsEnd = Tmpl->init_end();
2994 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002995 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002996
Chandler Carruth030ef472010-09-03 21:54:20 +00002997 // Only instantiate written initializers, let Sema re-construct implicit
2998 // ones.
2999 if (!Init->isWritten())
3000 continue;
3001
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003002 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003003
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003004 if (Init->isPackExpansion()) {
3005 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00003006 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00003007 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003008 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
3009 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00003010 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00003011 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003012 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003013 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00003014 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003015 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00003016 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003017 NumExpansions)) {
3018 AnyErrors = true;
3019 New->setInvalidDecl();
3020 continue;
3021 }
3022 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003023
3024 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00003025 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003026 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
3027
3028 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003029 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
3030 /*CXXDirectInit=*/true);
3031 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003032 AnyErrors = true;
3033 break;
3034 }
3035
3036 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00003037 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003038 TemplateArgs,
3039 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003040 New->getDeclName());
3041 if (!BaseTInfo) {
3042 AnyErrors = true;
3043 break;
3044 }
3045
3046 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00003047 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003048 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003049 New->getParent(),
3050 SourceLocation());
3051 if (NewInit.isInvalid()) {
3052 AnyErrors = true;
3053 break;
3054 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003055
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003056 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003057 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003058
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003059 continue;
3060 }
3061
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00003062 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003063 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
3064 /*CXXDirectInit=*/true);
3065 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00003066 AnyErrors = true;
3067 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00003068 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003069
Anders Carlsson09025312009-08-29 05:16:22 +00003070 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00003071 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
3072 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
3073 TemplateArgs,
3074 Init->getSourceLocation(),
3075 New->getDeclName());
3076 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003077 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00003078 New->setInvalidDecl();
3079 continue;
3080 }
Sebastian Redl6df65482011-09-24 17:48:25 +00003081
Douglas Gregor76852c22011-11-01 01:16:03 +00003082 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003083 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00003084 New->getParent(), EllipsisLoc);
3085 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003086 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00003087 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00003088 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00003089 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00003090 Init->getMemberLocation(),
3091 Init->getMember(),
3092 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00003093 if (!Member) {
3094 AnyErrors = true;
3095 New->setInvalidDecl();
3096 continue;
3097 }
Mike Stump1eb44332009-09-09 15:08:12 +00003098
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003099 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00003100 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00003101 } else if (Init->isIndirectMemberInitializer()) {
3102 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00003103 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00003104 Init->getMemberLocation(),
3105 Init->getIndirectMember(), TemplateArgs));
3106
Douglas Gregorb7107222011-03-04 19:46:35 +00003107 if (!IndirectMember) {
3108 AnyErrors = true;
3109 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00003110 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00003111 }
Sebastian Redl6df65482011-09-24 17:48:25 +00003112
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003113 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00003114 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00003115 }
3116
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003117 if (NewInit.isInvalid()) {
3118 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00003119 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003120 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00003121 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00003122 }
3123 }
Mike Stump1eb44332009-09-09 15:08:12 +00003124
Anders Carlsson09025312009-08-29 05:16:22 +00003125 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00003126 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00003127 /*FIXME: ColonLoc */
3128 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003129 NewInits.data(), NewInits.size(),
3130 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00003131}
3132
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003133ExprResult Sema::SubstInitializer(Expr *Init,
3134 const MultiLevelTemplateArgumentList &TemplateArgs,
3135 bool CXXDirectInit) {
3136 // Initializers are instantiated like expressions, except that various outer
3137 // layers are stripped.
3138 if (!Init)
3139 return Owned(Init);
3140
3141 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
3142 Init = ExprTemp->getSubExpr();
3143
3144 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
3145 Init = Binder->getSubExpr();
3146
3147 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
3148 Init = ICE->getSubExprAsWritten();
3149
3150 // If this is a direct-initializer, we take apart CXXConstructExprs.
3151 // Everything else is passed through.
3152 CXXConstructExpr *Construct;
3153 if (!CXXDirectInit || !(Construct = dyn_cast<CXXConstructExpr>(Init)) ||
3154 isa<CXXTemporaryObjectExpr>(Construct))
3155 return SubstExpr(Init, TemplateArgs);
3156
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00003157 SmallVector<Expr*, 8> NewArgs;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003158 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
3159 TemplateArgs, NewArgs))
3160 return ExprError();
3161
3162 // Treat an empty initializer like none.
3163 if (NewArgs.empty())
3164 return Owned((Expr*)0);
3165
3166 // Build a ParenListExpr to represent anything else.
3167 // FIXME: Fake locations!
3168 SourceLocation Loc = PP.getLocForEndOfToken(Init->getLocStart());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00003169 return ActOnParenListExpr(Loc, Loc, NewArgs);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003170}
3171
John McCall52a575a2009-08-29 08:11:13 +00003172// TODO: this could be templated if the various decl types used the
3173// same method name.
3174static bool isInstantiationOf(ClassTemplateDecl *Pattern,
3175 ClassTemplateDecl *Instance) {
3176 Pattern = Pattern->getCanonicalDecl();
3177
3178 do {
3179 Instance = Instance->getCanonicalDecl();
3180 if (Pattern == Instance) return true;
3181 Instance = Instance->getInstantiatedFromMemberTemplate();
3182 } while (Instance);
3183
3184 return false;
3185}
3186
Douglas Gregor0d696532009-09-28 06:34:35 +00003187static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
3188 FunctionTemplateDecl *Instance) {
3189 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003190
Douglas Gregor0d696532009-09-28 06:34:35 +00003191 do {
3192 Instance = Instance->getCanonicalDecl();
3193 if (Pattern == Instance) return true;
3194 Instance = Instance->getInstantiatedFromMemberTemplate();
3195 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003196
Douglas Gregor0d696532009-09-28 06:34:35 +00003197 return false;
3198}
3199
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003200static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00003201isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
3202 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003203 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00003204 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
3205 do {
3206 Instance = cast<ClassTemplatePartialSpecializationDecl>(
3207 Instance->getCanonicalDecl());
3208 if (Pattern == Instance)
3209 return true;
3210 Instance = Instance->getInstantiatedFromMember();
3211 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003212
Douglas Gregored9c0f92009-10-29 00:04:11 +00003213 return false;
3214}
3215
John McCall52a575a2009-08-29 08:11:13 +00003216static bool isInstantiationOf(CXXRecordDecl *Pattern,
3217 CXXRecordDecl *Instance) {
3218 Pattern = Pattern->getCanonicalDecl();
3219
3220 do {
3221 Instance = Instance->getCanonicalDecl();
3222 if (Pattern == Instance) return true;
3223 Instance = Instance->getInstantiatedFromMemberClass();
3224 } while (Instance);
3225
3226 return false;
3227}
3228
3229static bool isInstantiationOf(FunctionDecl *Pattern,
3230 FunctionDecl *Instance) {
3231 Pattern = Pattern->getCanonicalDecl();
3232
3233 do {
3234 Instance = Instance->getCanonicalDecl();
3235 if (Pattern == Instance) return true;
3236 Instance = Instance->getInstantiatedFromMemberFunction();
3237 } while (Instance);
3238
3239 return false;
3240}
3241
3242static bool isInstantiationOf(EnumDecl *Pattern,
3243 EnumDecl *Instance) {
3244 Pattern = Pattern->getCanonicalDecl();
3245
3246 do {
3247 Instance = Instance->getCanonicalDecl();
3248 if (Pattern == Instance) return true;
3249 Instance = Instance->getInstantiatedFromMemberEnum();
3250 } while (Instance);
3251
3252 return false;
3253}
3254
John McCalled976492009-12-04 22:46:56 +00003255static bool isInstantiationOf(UsingShadowDecl *Pattern,
3256 UsingShadowDecl *Instance,
3257 ASTContext &C) {
3258 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
3259}
3260
3261static bool isInstantiationOf(UsingDecl *Pattern,
3262 UsingDecl *Instance,
3263 ASTContext &C) {
3264 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3265}
3266
John McCall7ba107a2009-11-18 02:36:19 +00003267static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3268 UsingDecl *Instance,
3269 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003270 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003271}
3272
3273static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003274 UsingDecl *Instance,
3275 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003276 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003277}
3278
John McCall52a575a2009-08-29 08:11:13 +00003279static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3280 VarDecl *Instance) {
3281 assert(Instance->isStaticDataMember());
3282
3283 Pattern = Pattern->getCanonicalDecl();
3284
3285 do {
3286 Instance = Instance->getCanonicalDecl();
3287 if (Pattern == Instance) return true;
3288 Instance = Instance->getInstantiatedFromStaticDataMember();
3289 } while (Instance);
3290
3291 return false;
3292}
3293
John McCalled976492009-12-04 22:46:56 +00003294// Other is the prospective instantiation
3295// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003296static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003297 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003298 if (UnresolvedUsingTypenameDecl *UUD
3299 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3300 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3301 return isInstantiationOf(UUD, UD, Ctx);
3302 }
3303 }
3304
3305 if (UnresolvedUsingValueDecl *UUD
3306 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003307 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3308 return isInstantiationOf(UUD, UD, Ctx);
3309 }
3310 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003311
Anders Carlsson0d8df782009-08-29 19:37:28 +00003312 return false;
3313 }
Mike Stump1eb44332009-09-09 15:08:12 +00003314
John McCall52a575a2009-08-29 08:11:13 +00003315 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3316 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003317
John McCall52a575a2009-08-29 08:11:13 +00003318 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3319 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003320
John McCall52a575a2009-08-29 08:11:13 +00003321 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3322 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003323
Douglas Gregor7caa6822009-07-24 20:34:43 +00003324 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003325 if (Var->isStaticDataMember())
3326 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3327
3328 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3329 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003330
Douglas Gregor0d696532009-09-28 06:34:35 +00003331 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3332 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3333
Douglas Gregored9c0f92009-10-29 00:04:11 +00003334 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3335 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3336 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3337 PartialSpec);
3338
Anders Carlssond8b285f2009-09-01 04:26:58 +00003339 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3340 if (!Field->getDeclName()) {
3341 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003342 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003343 cast<FieldDecl>(D);
3344 }
3345 }
Mike Stump1eb44332009-09-09 15:08:12 +00003346
John McCalled976492009-12-04 22:46:56 +00003347 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3348 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3349
3350 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3351 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3352
Douglas Gregor815215d2009-05-27 05:35:12 +00003353 return D->getDeclName() && isa<NamedDecl>(Other) &&
3354 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3355}
3356
3357template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003358static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003359 NamedDecl *D,
3360 ForwardIterator first,
3361 ForwardIterator last) {
3362 for (; first != last; ++first)
3363 if (isInstantiationOf(Ctx, D, *first))
3364 return cast<NamedDecl>(*first);
3365
3366 return 0;
3367}
3368
John McCall02cace72009-08-28 07:59:38 +00003369/// \brief Finds the instantiation of the given declaration context
3370/// within the current instantiation.
3371///
3372/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003373DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003374 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003375 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003376 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003377 return cast_or_null<DeclContext>(ID);
3378 } else return DC;
3379}
3380
Douglas Gregored961e72009-05-27 17:54:46 +00003381/// \brief Find the instantiation of the given declaration within the
3382/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003383///
3384/// This routine is intended to be used when \p D is a declaration
3385/// referenced from within a template, that needs to mapped into the
3386/// corresponding declaration within an instantiation. For example,
3387/// given:
3388///
3389/// \code
3390/// template<typename T>
3391/// struct X {
3392/// enum Kind {
3393/// KnownValue = sizeof(T)
3394/// };
3395///
3396/// bool getKind() const { return KnownValue; }
3397/// };
3398///
3399/// template struct X<int>;
3400/// \endcode
3401///
3402/// In the instantiation of X<int>::getKind(), we need to map the
3403/// EnumConstantDecl for KnownValue (which refers to
James Dennettf198d122012-06-17 03:36:08 +00003404/// X<T>::\<Kind>\::KnownValue) to its instantiation
James Dennettef2b5b32012-06-15 22:23:43 +00003405/// (X<int>::\<Kind>\::KnownValue). InstantiateCurrentDeclRef() performs
Douglas Gregored961e72009-05-27 17:54:46 +00003406/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003407NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003408 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003409 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003410 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003411 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003412 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3413 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003414 // D is a local of some kind. Look into the map of local
3415 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003416 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3417 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3418 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003419
Chris Lattner57ad3782011-02-17 20:34:02 +00003420 if (Found) {
3421 if (Decl *FD = Found->dyn_cast<Decl *>())
3422 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003423
Richard Smith9a4db032012-09-12 00:56:43 +00003424 int PackIdx = ArgumentPackSubstitutionIndex;
3425 assert(PackIdx != -1 && "found declaration pack but not pack expanding");
Chris Lattner57ad3782011-02-17 20:34:02 +00003426 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3427 }
3428
3429 // If we didn't find the decl, then we must have a label decl that hasn't
3430 // been found yet. Lazily instantiate it and return it now.
3431 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003432
Chris Lattner57ad3782011-02-17 20:34:02 +00003433 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3434 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003435
Chris Lattner57ad3782011-02-17 20:34:02 +00003436 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3437 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003438 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003439
Douglas Gregore95b4092009-09-16 18:34:49 +00003440 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3441 if (!Record->isDependentContext())
3442 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003443
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003444 // Determine whether this record is the "templated" declaration describing
3445 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003446 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003447 if (ClassTemplate)
3448 ClassTemplate = ClassTemplate->getCanonicalDecl();
3449 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3450 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3451 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3452
3453 // Walk the current context to find either the record or an instantiation of
3454 // it.
3455 DeclContext *DC = CurContext;
3456 while (!DC->isFileContext()) {
3457 // If we're performing substitution while we're inside the template
3458 // definition, we'll find our own context. We're done.
3459 if (DC->Equals(Record))
3460 return Record;
3461
3462 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3463 // Check whether we're in the process of instantiating a class template
3464 // specialization of the template we're mapping.
3465 if (ClassTemplateSpecializationDecl *InstSpec
3466 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3467 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3468 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3469 return InstRecord;
3470 }
3471
3472 // Check whether we're in the process of instantiating a member class.
3473 if (isInstantiationOf(Record, InstRecord))
3474 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003475 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003476
3477
3478 // Move to the outer template scope.
3479 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3480 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3481 DC = FD->getLexicalDeclContext();
3482 continue;
3483 }
John McCall52a575a2009-08-29 08:11:13 +00003484 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003485
3486 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003487 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003488
Douglas Gregore95b4092009-09-16 18:34:49 +00003489 // Fall through to deal with other dependent record types (e.g.,
3490 // anonymous unions in class templates).
3491 }
John McCall52a575a2009-08-29 08:11:13 +00003492
Douglas Gregore95b4092009-09-16 18:34:49 +00003493 if (!ParentDC->isDependentContext())
3494 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003495
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003496 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003497 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003498 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003499
Douglas Gregor815215d2009-05-27 05:35:12 +00003500 if (ParentDC != D->getDeclContext()) {
3501 // We performed some kind of instantiation in the parent context,
3502 // so now we need to look into the instantiated parent context to
3503 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003504
John McCall3cb0ebd2010-03-10 03:28:59 +00003505 // If our context used to be dependent, we may need to instantiate
3506 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003507 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003508 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003509 if (!Spec->isDependentContext()) {
3510 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003511 const RecordType *Tag = T->getAs<RecordType>();
3512 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003513 if (Tag->isBeingDefined())
3514 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003515 if (!Tag->isBeingDefined() &&
3516 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3517 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003518
3519 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003520 }
3521 }
3522
Douglas Gregor815215d2009-05-27 05:35:12 +00003523 NamedDecl *Result = 0;
3524 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003525 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003526 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3527 } else {
3528 // Since we don't have a name for the entity we're looking for,
3529 // our only option is to walk through all of the declarations to
3530 // find that name. This will occur in a few cases:
3531 //
3532 // - anonymous struct/union within a template
3533 // - unnamed class/struct/union/enum within a template
3534 //
3535 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003536 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003537 ParentDC->decls_begin(),
3538 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003539 }
Mike Stump1eb44332009-09-09 15:08:12 +00003540
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003541 if (!Result) {
3542 if (isa<UsingShadowDecl>(D)) {
3543 // UsingShadowDecls can instantiate to nothing because of using hiding.
3544 } else if (Diags.hasErrorOccurred()) {
3545 // We've already complained about something, so most likely this
3546 // declaration failed to instantiate. There's no point in complaining
3547 // further, since this is normal in invalid code.
3548 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003549 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003550 // instantiated, and we haven't gotten around to instantiating this
3551 // member yet. This can happen when the code uses forward declarations
3552 // of member classes, and introduces ordering dependencies via
3553 // template instantiation.
3554 Diag(Loc, diag::err_member_not_yet_instantiated)
3555 << D->getDeclName()
3556 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3557 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith0724b7c2012-03-26 20:28:16 +00003558 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
3559 // This enumeration constant was found when the template was defined,
3560 // but can't be found in the instantiation. This can happen if an
3561 // unscoped enumeration member is explicitly specialized.
3562 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
3563 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
3564 TemplateArgs));
3565 assert(Spec->getTemplateSpecializationKind() ==
3566 TSK_ExplicitSpecialization);
3567 Diag(Loc, diag::err_enumerator_does_not_exist)
3568 << D->getDeclName()
3569 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
3570 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
3571 << Context.getTypeDeclType(Spec);
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003572 } else {
3573 // We should have found something, but didn't.
3574 llvm_unreachable("Unable to find instantiation of declaration!");
3575 }
3576 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003577
Douglas Gregor815215d2009-05-27 05:35:12 +00003578 D = Result;
3579 }
3580
Douglas Gregor815215d2009-05-27 05:35:12 +00003581 return D;
3582}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003583
Mike Stump1eb44332009-09-09 15:08:12 +00003584/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003585/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003586void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003587 // Load pending instantiations from the external source.
3588 if (!LocalOnly && ExternalSource) {
Richard Smithb9d0b762012-07-27 04:22:15 +00003589 SmallVector<PendingImplicitInstantiation, 4> Pending;
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003590 ExternalSource->ReadPendingInstantiations(Pending);
3591 PendingInstantiations.insert(PendingInstantiations.begin(),
3592 Pending.begin(), Pending.end());
3593 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003594
Douglas Gregor60406be2010-01-16 22:29:39 +00003595 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003596 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003597 PendingImplicitInstantiation Inst;
3598
3599 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003600 Inst = PendingInstantiations.front();
3601 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003602 } else {
3603 Inst = PendingLocalImplicitInstantiations.front();
3604 PendingLocalImplicitInstantiations.pop_front();
3605 }
Mike Stump1eb44332009-09-09 15:08:12 +00003606
Douglas Gregor7caa6822009-07-24 20:34:43 +00003607 // Instantiate function definitions
3608 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003609 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3610 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003611 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3612 TSK_ExplicitInstantiationDefinition;
3613 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3614 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003615 continue;
3616 }
Mike Stump1eb44332009-09-09 15:08:12 +00003617
Douglas Gregor7caa6822009-07-24 20:34:43 +00003618 // Instantiate static data member definitions.
3619 VarDecl *Var = cast<VarDecl>(Inst.first);
3620 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003621
Chandler Carruth291b4412010-02-13 10:17:50 +00003622 // Don't try to instantiate declarations if the most recent redeclaration
3623 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003624 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003625 continue;
3626
3627 // Check if the most recent declaration has changed the specialization kind
3628 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003629 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003630 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003631 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003632 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003633 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003634 continue; // No longer need to instantiate this type.
3635 case TSK_ExplicitInstantiationDefinition:
3636 // We only need an instantiation if the pending instantiation *is* the
3637 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003638 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003639 case TSK_ImplicitInstantiation:
3640 break;
3641 }
3642
John McCallf312b1e2010-08-26 23:41:50 +00003643 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3644 "instantiating static data member "
3645 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003646
Chandler Carruth58e390e2010-08-25 08:27:02 +00003647 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3648 TSK_ExplicitInstantiationDefinition;
3649 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3650 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003651 }
3652}
John McCall0c01d182010-03-24 05:22:00 +00003653
3654void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3655 const MultiLevelTemplateArgumentList &TemplateArgs) {
3656 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3657 E = Pattern->ddiag_end(); I != E; ++I) {
3658 DependentDiagnostic *DD = *I;
3659
3660 switch (DD->getKind()) {
3661 case DependentDiagnostic::Access:
3662 HandleDependentAccessCheck(*DD, TemplateArgs);
3663 break;
3664 }
3665 }
3666}