blob: 3cf816a332f826c149068ddd4c54d8f4f5ba804b [file] [log] [blame]
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001//===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//===----------------------------------------------------------------------===/
8//
9// This file implements C++ template instantiation for declarations.
10//
11//===----------------------------------------------------------------------===/
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000013#include "clang/Sema/Lookup.h"
John McCallf312b1e2010-08-26 23:41:50 +000014#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall7cd088e2010-08-24 07:21:54 +000015#include "clang/Sema/Template.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000016#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000020#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000021#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000022#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000023#include "clang/AST/TypeLoc.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025
26using namespace clang;
27
John McCallb6217662010-03-15 10:12:16 +000028bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29 DeclaratorDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000030 if (!OldDecl->getQualifierLoc())
31 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000032
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000033 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000034 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000035 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000037 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000039
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000040 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000041 return false;
42}
43
44bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45 TagDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000046 if (!OldDecl->getQualifierLoc())
47 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000049 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000050 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000051 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000052
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000053 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000056 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000060// Include attribute instantiation code.
61#include "clang/Sema/AttrTemplateInstantiate.inc"
62
John McCall1d8d1cc2010-08-01 02:01:53 +000063void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins23323e02012-01-20 22:50:54 +000064 const Decl *Tmpl, Decl *New,
65 LateInstantiatedAttrVec *LateAttrs,
66 LocalInstantiationScope *OuterMostScope) {
Sean Huntcf807c42010-08-18 23:23:40 +000067 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
68 i != e; ++i) {
69 const Attr *TmplAttr = *i;
DeLesley Hutchins23323e02012-01-20 22:50:54 +000070
Chandler Carruth4ced79f2010-06-25 03:22:07 +000071 // FIXME: This should be generalized to more than just the AlignedAttr.
72 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000074 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000075 // The alignment expression is a constant expression.
76 EnterExpressionEvaluationContext Unevaluated(*this,
77 Sema::ConstantEvaluated);
78
John McCall60d7b3a2010-08-24 06:29:42 +000079 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000081 if (!Result.isInvalid())
82 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
Richard Smithf6702a32011-12-20 02:08:33 +000083 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000084 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000085 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000086 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000087 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000088 if (Result)
89 AddAlignedAttr(Aligned->getLocation(), New, Result);
90 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000091 continue;
92 }
93 }
94
DeLesley Hutchins23323e02012-01-20 22:50:54 +000095 if (TmplAttr->isLateParsed() && LateAttrs) {
96 // Late parsed attributes must be instantiated and attached after the
97 // enclosing class has been instantiated. See Sema::InstantiateClass.
98 LocalInstantiationScope *Saved = 0;
99 if (CurrentInstantiationScope)
100 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
101 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
102 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000103 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
104 *this, TemplateArgs);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000105 New->addAttr(NewAttr);
106 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000107 }
108}
109
Douglas Gregor4f722be2009-03-25 15:45:12 +0000110Decl *
111TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000112 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113}
114
115Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000116TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
117 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
118 D->getIdentifier());
119 Owner->addDecl(Inst);
120 return Inst;
121}
122
123Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000124TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000125 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000126}
127
John McCall3dbd3d52010-02-16 06:53:13 +0000128Decl *
129TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
130 NamespaceAliasDecl *Inst
131 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
132 D->getNamespaceLoc(),
133 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000134 D->getIdentifier(),
135 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000136 D->getTargetNameLoc(),
137 D->getNamespace());
138 Owner->addDecl(Inst);
139 return Inst;
140}
141
Richard Smith3e4c6c42011-05-05 21:57:07 +0000142Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
143 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000145 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000146 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000147 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000148 DI = SemaRef.SubstType(DI, TemplateArgs,
149 D->getLocation(), D->getDeclName());
150 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000151 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000152 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000153 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000154 } else {
155 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000158 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000159 TypedefNameDecl *Typedef;
160 if (IsTypeAlias)
161 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
162 D->getLocation(), D->getIdentifier(), DI);
163 else
164 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
165 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000166 if (Invalid)
167 Typedef->setInvalidDecl();
168
John McCallcde5a402011-02-01 08:20:08 +0000169 // If the old typedef was the name for linkage purposes of an anonymous
170 // tag decl, re-establish that relationship for the new typedef.
171 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
172 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000173 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000174 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000175 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
176 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000177 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000178 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000179
Douglas Gregoref96ee02012-01-14 16:38:05 +0000180 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000181 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
182 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000183 if (!InstPrev)
184 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000185
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000186 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
187
188 // If the typedef types are not identical, reject them.
189 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
190
191 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000192 }
193
John McCall1d8d1cc2010-08-01 02:01:53 +0000194 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000195
John McCall46460a62010-01-20 21:53:11 +0000196 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000198 return Typedef;
199}
200
Richard Smith162e1c12011-04-15 14:24:37 +0000201Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000202 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
203 Owner->addDecl(Typedef);
204 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000205}
206
207Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000208 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
209 Owner->addDecl(Typedef);
210 return Typedef;
211}
212
213Decl *
214TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
215 // Create a local instantiation scope for this type alias template, which
216 // will contain the instantiations of the template parameters.
217 LocalInstantiationScope Scope(SemaRef);
218
219 TemplateParameterList *TempParams = D->getTemplateParameters();
220 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
221 if (!InstParams)
222 return 0;
223
224 TypeAliasDecl *Pattern = D->getTemplatedDecl();
225
226 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000227 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000228 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
229 if (Found.first != Found.second) {
230 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
231 }
232 }
233
234 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
235 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
236 if (!AliasInst)
237 return 0;
238
239 TypeAliasTemplateDecl *Inst
240 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
241 D->getDeclName(), InstParams, AliasInst);
242 if (PrevAliasTemplate)
243 Inst->setPreviousDeclaration(PrevAliasTemplate);
244
245 Inst->setAccess(D->getAccess());
246
247 if (!PrevAliasTemplate)
248 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000249
Richard Smith3e4c6c42011-05-05 21:57:07 +0000250 Owner->addDecl(Inst);
251
252 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000253}
254
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000255/// \brief Instantiate an initializer, breaking it into separate
256/// initialization arguments.
257///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000258/// \param Init The initializer to instantiate.
259///
260/// \param TemplateArgs Template arguments to be substituted into the
261/// initializer.
262///
263/// \param NewArgs Will be filled in with the instantiation arguments.
264///
265/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000266bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000267 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000268 SourceLocation &LParenLoc,
269 ASTOwningVector<Expr*> &NewArgs,
270 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000271 NewArgs.clear();
272 LParenLoc = SourceLocation();
273 RParenLoc = SourceLocation();
274
275 if (!Init)
276 return false;
277
John McCall4765fa02010-12-06 08:20:24 +0000278 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000279 Init = ExprTemp->getSubExpr();
280
281 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
282 Init = Binder->getSubExpr();
283
284 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
285 Init = ICE->getSubExprAsWritten();
286
287 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
288 LParenLoc = ParenList->getLParenLoc();
289 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000290 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
291 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000292 }
293
294 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000295 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000296 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
297 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000298 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000299
Douglas Gregor28329e52010-03-24 21:22:47 +0000300 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000301 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000302 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000303 return false;
304 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000305 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000306
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000307 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000308 if (Result.isInvalid())
309 return true;
310
311 NewArgs.push_back(Result.takeAs<Expr>());
312 return false;
313}
314
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000315Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000316 // If this is the variable for an anonymous struct or union,
317 // instantiate the anonymous struct/union type first.
318 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
319 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
320 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
321 return 0;
322
John McCallce3ff2b2009-08-25 22:02:44 +0000323 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000324 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000325 TemplateArgs,
326 D->getTypeSpecStartLoc(),
327 D->getDeclName());
328 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000329 return 0;
330
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000331 if (DI->getType()->isFunctionType()) {
332 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
333 << D->isStaticDataMember() << DI->getType();
334 return 0;
335 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000336
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000337 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000338 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000339 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000340 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000341 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000342 D->getStorageClass(),
343 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000344 Var->setThreadSpecified(D->isThreadSpecified());
345 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000346 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000347 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000348
John McCallb6217662010-03-15 10:12:16 +0000349 // Substitute the nested name specifier, if any.
350 if (SubstQualifier(D, Var))
351 return 0;
352
Mike Stump1eb44332009-09-09 15:08:12 +0000353 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000354 // out-of-line, the instantiation will have the same lexical
355 // context (which will be a namespace scope) as the template.
356 if (D->isOutOfLine())
357 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000358
John McCall46460a62010-01-20 21:53:11 +0000359 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000360
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000361 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000362 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000363 Var->setReferenced(D->isReferenced());
364 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000365
Mike Stump390b4cc2009-05-16 07:39:55 +0000366 // FIXME: In theory, we could have a previous declaration for variables that
367 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000368 // FIXME: having to fake up a LookupResult is dumb.
369 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000370 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000371 if (D->isStaticDataMember())
372 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000373
374 // In ARC, infer 'retaining' for variables of retainable type.
375 if (SemaRef.getLangOptions().ObjCAutoRefCount &&
376 SemaRef.inferObjCARCLifetime(Var))
377 Var->setInvalidDecl();
378
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000379 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Douglas Gregor7caa6822009-07-24 20:34:43 +0000381 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000382 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000383 Owner->makeDeclVisibleInContext(Var);
384 } else {
385 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000386 if (Owner->isFunctionOrMethod())
387 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000388 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000389 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000390
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000391 // Link instantiations of static data members back to the template from
392 // which they were instantiated.
393 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000394 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000395 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000396
Douglas Gregor60c93c92010-02-09 07:26:29 +0000397 if (Var->getAnyInitializer()) {
398 // We already have an initializer in the class.
399 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000400 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000401 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000402 else
403 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
404
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000405 // Instantiate the initializer.
406 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000407 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000408 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
409 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000410 bool TypeMayContainAuto = true;
Eli Friedman6aeaa602012-01-05 22:34:08 +0000411 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000412 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000413 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000414 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000415 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000416 RParenLoc,
417 TypeMayContainAuto);
Eli Friedman6aeaa602012-01-05 22:34:08 +0000418 } else if (InitArgs.size() == 0) {
419 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000420 } else {
421 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000422 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000423 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000424 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000425 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000426 // FIXME: Not too happy about invalidating the declaration
427 // because of a bogus initializer.
428 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000429 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000430
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000431 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000432 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
433 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000434 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000435
Richard Smithe3499ca2011-06-21 23:42:09 +0000436 // Diagnose unused local variables with dependent types, where the diagnostic
437 // will have been deferred.
438 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
439 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000440 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000441
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000442 return Var;
443}
444
Abramo Bagnara6206d532010-06-05 05:09:32 +0000445Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
446 AccessSpecDecl* AD
447 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
448 D->getAccessSpecifierLoc(), D->getColonLoc());
449 Owner->addHiddenDecl(AD);
450 return AD;
451}
452
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000453Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
454 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000455 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000456 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000457 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000458 DI = SemaRef.SubstType(DI, TemplateArgs,
459 D->getLocation(), D->getDeclName());
460 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000461 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000462 Invalid = true;
463 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000464 // C++ [temp.arg.type]p3:
465 // If a declaration acquires a function type through a type
466 // dependent on a template-parameter and this causes a
467 // declaration that does not use the syntactic form of a
468 // function declarator to have function type, the program is
469 // ill-formed.
470 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000471 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000472 Invalid = true;
473 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000474 } else {
475 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000476 }
477
478 Expr *BitWidth = D->getBitWidth();
479 if (Invalid)
480 BitWidth = 0;
481 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000482 // The bit-width expression is a constant expression.
483 EnterExpressionEvaluationContext Unevaluated(SemaRef,
484 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000485
John McCall60d7b3a2010-08-24 06:29:42 +0000486 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000487 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000488 if (InstantiatedBitWidth.isInvalid()) {
489 Invalid = true;
490 BitWidth = 0;
491 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000492 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000493 }
494
John McCall07fb6be2009-10-22 23:33:21 +0000495 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
496 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000497 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000498 D->getLocation(),
499 D->isMutable(),
500 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000501 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000502 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000503 D->getAccess(),
504 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000505 if (!Field) {
506 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000507 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000508 }
Mike Stump1eb44332009-09-09 15:08:12 +0000509
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000510 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000511
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000512 if (Invalid)
513 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000514
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000515 if (!Field->getDeclName()) {
516 // Keep track of where this decl came from.
517 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000518 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000519 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
520 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000521 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000522 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000523 }
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000525 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000526 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000527 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000528
529 return Field;
530}
531
Francois Pichet87c2e122010-11-21 06:08:52 +0000532Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
533 NamedDecl **NamedChain =
534 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
535
536 int i = 0;
537 for (IndirectFieldDecl::chain_iterator PI =
538 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000539 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000540 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000541 TemplateArgs);
542 if (!Next)
543 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000544
Douglas Gregorb7107222011-03-04 19:46:35 +0000545 NamedChain[i++] = Next;
546 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000547
Francois Pichet40e17752010-12-09 10:07:54 +0000548 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000549 IndirectFieldDecl* IndirectField
550 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000551 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000552 NamedChain, D->getChainingSize());
553
554
555 IndirectField->setImplicit(D->isImplicit());
556 IndirectField->setAccess(D->getAccess());
557 Owner->addDecl(IndirectField);
558 return IndirectField;
559}
560
John McCall02cace72009-08-28 07:59:38 +0000561Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000562 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000563 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000564 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000565 TypeSourceInfo *InstTy;
566 // If this is an unsupported friend, don't bother substituting template
567 // arguments into it. The actual type referred to won't be used by any
568 // parts of Clang, and may not be valid for instantiating. Just use the
569 // same info for the instantiated friend.
570 if (D->isUnsupportedFriend()) {
571 InstTy = Ty;
572 } else {
573 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
574 D->getLocation(), DeclarationName());
575 }
576 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000577 return 0;
John McCall02cace72009-08-28 07:59:38 +0000578
Abramo Bagnara0216df82011-10-29 20:52:52 +0000579 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
580 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000581 if (!FD)
582 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000583
Douglas Gregor06245bf2010-04-07 17:57:12 +0000584 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000585 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000586 Owner->addDecl(FD);
587 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000588 }
589
Douglas Gregor06245bf2010-04-07 17:57:12 +0000590 NamedDecl *ND = D->getFriendDecl();
591 assert(ND && "friend decl must be a decl or a type!");
592
John McCallaf2094e2010-04-08 09:05:18 +0000593 // All of the Visit implementations for the various potential friend
594 // declarations have to be carefully written to work for friend
595 // objects, with the most important detail being that the target
596 // decl should almost certainly not be placed in Owner.
597 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000598 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000599
John McCall02cace72009-08-28 07:59:38 +0000600 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000601 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000602 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000603 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000604 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000605 Owner->addDecl(FD);
606 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000607}
608
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000609Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
610 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Richard Smithf6702a32011-12-20 02:08:33 +0000612 // The expression in a static assertion is a constant expression.
613 EnterExpressionEvaluationContext Unevaluated(SemaRef,
614 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000615
John McCall60d7b3a2010-08-24 06:29:42 +0000616 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000617 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000618 if (InstantiatedAssertExpr.isInvalid())
619 return 0;
620
John McCall60d7b3a2010-08-24 06:29:42 +0000621 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000622 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000623 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000624 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000625 Message.get(),
626 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000627}
628
629Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000630 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000631 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000632 /*PrevDecl=*/0, D->isScoped(),
633 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000634 if (D->isFixed()) {
635 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
636 // If we have type source information for the underlying type, it means it
637 // has been explicitly set by the user. Perform substitution on it before
638 // moving on.
639 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
640 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
641 TemplateArgs,
642 UnderlyingLoc,
643 DeclarationName()));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000644
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000645 if (!Enum->getIntegerTypeSourceInfo())
646 Enum->setIntegerType(SemaRef.Context.IntTy);
647 }
648 else {
649 assert(!D->getIntegerType()->isDependentType()
650 && "Dependent type without type source info");
651 Enum->setIntegerType(D->getIntegerType());
652 }
653 }
654
John McCall5b629aa2010-10-22 23:36:17 +0000655 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
656
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000657 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000658 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000659 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000660 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000661 Enum->startDefinition();
662
Douglas Gregor96084f12010-03-01 19:00:07 +0000663 if (D->getDeclContext()->isFunctionOrMethod())
664 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000665
Chris Lattner5f9e2722011-07-23 10:55:15 +0000666 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667
668 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000669 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
670 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000671 EC != ECEnd; ++EC) {
672 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000673 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000674 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000675 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000676 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000677 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000678
John McCallce3ff2b2009-08-25 22:02:44 +0000679 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000680 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000681
682 // Drop the initial value and continue.
683 bool isInvalid = false;
684 if (Value.isInvalid()) {
685 Value = SemaRef.Owned((Expr *)0);
686 isInvalid = true;
687 }
688
Mike Stump1eb44332009-09-09 15:08:12 +0000689 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000690 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
691 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000692 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000693
694 if (isInvalid) {
695 if (EnumConst)
696 EnumConst->setInvalidDecl();
697 Enum->setInvalidDecl();
698 }
699
700 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000701 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
702
John McCall3b85ecf2010-01-23 22:37:59 +0000703 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000704 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000705 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000706 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000707
Douglas Gregor96084f12010-03-01 19:00:07 +0000708 if (D->getDeclContext()->isFunctionOrMethod()) {
709 // If the enumeration is within a function or method, record the enum
710 // constant as a local.
711 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
712 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000713 }
714 }
Mike Stump1eb44332009-09-09 15:08:12 +0000715
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000716 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000717 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000718 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000719 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000720 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000721 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000722
723 return Enum;
724}
725
Douglas Gregor6477b692009-03-25 15:04:13 +0000726Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000727 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000728}
729
John McCalle29ba202009-08-20 01:44:21 +0000730Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000731 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
732
Douglas Gregor550d9b22009-10-31 17:21:17 +0000733 // Create a local instantiation scope for this class template, which
734 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000735 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000736 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000737 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000738 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000739 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000740
741 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000742
743 // Instantiate the qualifier. We have to do this first in case
744 // we're a friend declaration, because if we are then we need to put
745 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000746 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
747 if (QualifierLoc) {
748 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
749 TemplateArgs);
750 if (!QualifierLoc)
751 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000752 }
753
754 CXXRecordDecl *PrevDecl = 0;
755 ClassTemplateDecl *PrevClassTemplate = 0;
756
Douglas Gregoref96ee02012-01-14 16:38:05 +0000757 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000758 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
759 if (Found.first != Found.second) {
760 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
761 if (PrevClassTemplate)
762 PrevDecl = PrevClassTemplate->getTemplatedDecl();
763 }
764 }
765
John McCall93ba8572010-03-25 06:39:04 +0000766 // If this isn't a friend, then it's a member template, in which
767 // case we just want to build the instantiation in the
768 // specialization. If it is a friend, we want to build it in
769 // the appropriate context.
770 DeclContext *DC = Owner;
771 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000772 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000773 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000774 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000775 DC = SemaRef.computeDeclContext(SS);
776 if (!DC) return 0;
777 } else {
778 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
779 Pattern->getDeclContext(),
780 TemplateArgs);
781 }
782
783 // Look for a previous declaration of the template in the owning
784 // context.
785 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
786 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
787 SemaRef.LookupQualifiedName(R, DC);
788
789 if (R.isSingleResult()) {
790 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
791 if (PrevClassTemplate)
792 PrevDecl = PrevClassTemplate->getTemplatedDecl();
793 }
794
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000795 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000796 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000797 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000798 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000799 return 0;
800 }
801
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000802 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000803 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000804 bool Complain = true;
805
806 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
807 // template for struct std::tr1::__detail::_Map_base, where the
808 // template parameters of the friend declaration don't match the
809 // template parameters of the original declaration. In this one
810 // case, we don't complain about the ill-formed friend
811 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000812 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000813 Pattern->getIdentifier()->isStr("_Map_base") &&
814 DC->isNamespace() &&
815 cast<NamespaceDecl>(DC)->getIdentifier() &&
816 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
817 DeclContext *DCParent = DC->getParent();
818 if (DCParent->isNamespace() &&
819 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
820 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
821 DeclContext *DCParent2 = DCParent->getParent();
822 if (DCParent2->isNamespace() &&
823 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
824 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
825 DCParent2->getParent()->isTranslationUnit())
826 Complain = false;
827 }
828 }
829
John McCall93ba8572010-03-25 06:39:04 +0000830 TemplateParameterList *PrevParams
831 = PrevClassTemplate->getTemplateParameters();
832
833 // Make sure the parameter lists match.
834 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000835 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000836 Sema::TPL_TemplateMatch)) {
837 if (Complain)
838 return 0;
839
840 AdoptedPreviousTemplateParams = true;
841 InstParams = PrevParams;
842 }
John McCall93ba8572010-03-25 06:39:04 +0000843
844 // Do some additional validation, then merge default arguments
845 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000846 if (!AdoptedPreviousTemplateParams &&
847 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000848 Sema::TPC_ClassTemplate))
849 return 0;
850 }
851 }
852
John McCalle29ba202009-08-20 01:44:21 +0000853 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000854 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000855 Pattern->getLocStart(), Pattern->getLocation(),
856 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000857 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000858
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000859 if (QualifierLoc)
860 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000861
John McCalle29ba202009-08-20 01:44:21 +0000862 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000863 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
864 D->getIdentifier(), InstParams, RecordInst,
865 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000866 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000867
John McCall93ba8572010-03-25 06:39:04 +0000868 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000869 if (PrevClassTemplate)
870 Inst->setAccess(PrevClassTemplate->getAccess());
871 else
872 Inst->setAccess(D->getAccess());
873
John McCall93ba8572010-03-25 06:39:04 +0000874 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
875 // TODO: do we want to track the instantiation progeny of this
876 // friend target decl?
877 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000878 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000879 if (!PrevClassTemplate)
880 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000881 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000882
Douglas Gregorf0510d42009-10-12 23:11:44 +0000883 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000884 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000885 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000886
Douglas Gregor259571e2009-10-30 22:42:42 +0000887 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000888 if (isFriend) {
889 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000890 Inst->setLexicalDeclContext(Owner);
891 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000892 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000893 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000894
Abramo Bagnara4c515482011-11-26 13:33:46 +0000895 if (D->isOutOfLine()) {
896 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
897 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
898 }
899
John McCalle29ba202009-08-20 01:44:21 +0000900 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000901
902 if (!PrevClassTemplate) {
903 // Queue up any out-of-line partial specializations of this member
904 // class template; the client will force their instantiation once
905 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000906 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000907 D->getPartialSpecializations(PartialSpecs);
908 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
909 if (PartialSpecs[I]->isOutOfLine())
910 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
911 }
912
John McCalle29ba202009-08-20 01:44:21 +0000913 return Inst;
914}
915
Douglas Gregord60e1052009-08-27 16:57:43 +0000916Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000917TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
918 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000919 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000920
Douglas Gregored9c0f92009-10-29 00:04:11 +0000921 // Lookup the already-instantiated declaration in the instantiation
922 // of the class template and return that.
923 DeclContext::lookup_result Found
924 = Owner->lookup(ClassTemplate->getDeclName());
925 if (Found.first == Found.second)
926 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000927
Douglas Gregored9c0f92009-10-29 00:04:11 +0000928 ClassTemplateDecl *InstClassTemplate
929 = dyn_cast<ClassTemplateDecl>(*Found.first);
930 if (!InstClassTemplate)
931 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000932
Douglas Gregord65587f2010-11-10 19:44:59 +0000933 if (ClassTemplatePartialSpecializationDecl *Result
934 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
935 return Result;
936
937 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000938}
939
940Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000941TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000942 // Create a local instantiation scope for this function template, which
943 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000944 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000945 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000946 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000947
Douglas Gregord60e1052009-08-27 16:57:43 +0000948 TemplateParameterList *TempParams = D->getTemplateParameters();
949 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000950 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000951 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000952
Douglas Gregora735b202009-10-13 14:39:41 +0000953 FunctionDecl *Instantiated = 0;
954 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000955 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000956 InstParams));
957 else
958 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000959 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000960 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000961
Douglas Gregora735b202009-10-13 14:39:41 +0000962 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000963 return 0;
964
John McCall46460a62010-01-20 21:53:11 +0000965 Instantiated->setAccess(D->getAccess());
966
Mike Stump1eb44332009-09-09 15:08:12 +0000967 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000968 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000969 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000970 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000971 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000972 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000973 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000974
John McCallb1a56e72010-03-26 23:10:15 +0000975 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
976
John McCalle976ffe2009-12-14 23:19:40 +0000977 // Link the instantiation back to the pattern *unless* this is a
978 // non-definition friend declaration.
979 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000980 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000981 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000982
John McCallb1a56e72010-03-26 23:10:15 +0000983 // Make declarations visible in the appropriate context.
984 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000985 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000986
Douglas Gregord60e1052009-08-27 16:57:43 +0000987 return InstTemplate;
988}
989
Douglas Gregord475b8d2009-03-25 21:17:03 +0000990Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
991 CXXRecordDecl *PrevDecl = 0;
992 if (D->isInjectedClassName())
993 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000994 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000995 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000996 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000997 TemplateArgs);
998 if (!Prev) return 0;
999 PrevDecl = cast<CXXRecordDecl>(Prev);
1000 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001001
1002 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +00001003 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001004 D->getLocStart(), D->getLocation(),
1005 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +00001006
1007 // Substitute the nested name specifier, if any.
1008 if (SubstQualifier(D, Record))
1009 return 0;
1010
Douglas Gregord475b8d2009-03-25 21:17:03 +00001011 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +00001012 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1013 // the tag decls introduced by friend class declarations don't have an access
1014 // specifier. Remove once this area of the code gets sorted out.
1015 if (D->getAccess() != AS_none)
1016 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001017 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001018 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001019
John McCall02cace72009-08-28 07:59:38 +00001020 // If the original function was part of a friend declaration,
1021 // inherit its namespace state.
1022 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
1023 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
1024
Douglas Gregor9901c572010-05-21 00:31:19 +00001025 // Make sure that anonymous structs and unions are recorded.
1026 if (D->isAnonymousStructOrUnion()) {
1027 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001028 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001029 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1030 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001031
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001032 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001033 return Record;
1034}
1035
John McCall02cace72009-08-28 07:59:38 +00001036/// Normal class members are of more specific types and therefore
1037/// don't make it here. This function serves two purposes:
1038/// 1) instantiating function templates
1039/// 2) substituting friend declarations
1040/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001041Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001042 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001043 // Check whether there is already a function template specialization for
1044 // this declaration.
1045 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1046 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001047 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001048 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001049 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001050
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001051 FunctionDecl *SpecFunc
1052 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1053 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001054
Douglas Gregor127102b2009-06-29 20:59:39 +00001055 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001056 if (SpecFunc)
1057 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001058 }
Mike Stump1eb44332009-09-09 15:08:12 +00001059
John McCallb0cb0222010-03-27 05:57:59 +00001060 bool isFriend;
1061 if (FunctionTemplate)
1062 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1063 else
1064 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1065
Douglas Gregor79c22782010-01-16 20:21:20 +00001066 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001067 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001068 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001069 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001070 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001071
Chris Lattner5f9e2722011-07-23 10:55:15 +00001072 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001073 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001074 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001075 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001076 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001077
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001078 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1079 if (QualifierLoc) {
1080 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1081 TemplateArgs);
1082 if (!QualifierLoc)
1083 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001084 }
1085
John McCall68b6b872010-02-06 01:50:47 +00001086 // If we're instantiating a local function declaration, put the result
1087 // in the owner; otherwise we need to find the instantiated context.
1088 DeclContext *DC;
1089 if (D->getDeclContext()->isFunctionOrMethod())
1090 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001091 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001092 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001093 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001094 DC = SemaRef.computeDeclContext(SS);
1095 if (!DC) return 0;
1096 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001097 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001098 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001099 }
John McCall68b6b872010-02-06 01:50:47 +00001100
John McCall02cace72009-08-28 07:59:38 +00001101 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001102 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1103 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001104 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001105 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001106 /*isConstexpr*/ false);
John McCallb6217662010-03-15 10:12:16 +00001107
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001108 if (QualifierLoc)
1109 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001110
John McCallb1a56e72010-03-26 23:10:15 +00001111 DeclContext *LexicalDC = Owner;
1112 if (!isFriend && D->isOutOfLine()) {
1113 assert(D->getDeclContext()->isFileContext());
1114 LexicalDC = D->getDeclContext();
1115 }
1116
1117 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001118
Douglas Gregore53060f2009-06-25 22:08:12 +00001119 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001120 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001121 // Adopt the already-instantiated parameters into our own context.
1122 for (unsigned P = 0; P < Params.size(); ++P)
1123 if (Params[P])
1124 Params[P]->setOwningFunction(Function);
1125 } else {
1126 // Since we were instantiated via a typedef of a function type, create
1127 // new parameters.
1128 const FunctionProtoType *Proto
1129 = Function->getType()->getAs<FunctionProtoType>();
1130 assert(Proto && "No function prototype in template instantiation?");
1131 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1132 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1133 ParmVarDecl *Param
1134 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1135 *AI);
1136 Param->setScopeInfo(0, Params.size());
1137 Params.push_back(Param);
1138 }
1139 }
David Blaikie4278c652011-09-21 18:16:56 +00001140 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001141
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001142 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001143 if (TemplateParams) {
1144 // Our resulting instantiation is actually a function template, since we
1145 // are substituting only the outer template parameters. For example, given
1146 //
1147 // template<typename T>
1148 // struct X {
1149 // template<typename U> friend void f(T, U);
1150 // };
1151 //
1152 // X<int> x;
1153 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001154 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001155 // which means substituting int for T, but leaving "f" as a friend function
1156 // template.
1157 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001158 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001159 Function->getLocation(),
1160 Function->getDeclName(),
1161 TemplateParams, Function);
1162 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001163
1164 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001165
1166 if (isFriend && D->isThisDeclarationADefinition()) {
1167 // TODO: should we remember this connection regardless of whether
1168 // the friend declaration provided a body?
1169 FunctionTemplate->setInstantiatedFromMemberTemplate(
1170 D->getDescribedFunctionTemplate());
1171 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001172 } else if (FunctionTemplate) {
1173 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001174 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001175 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001176 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001177 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001178 Innermost.first,
1179 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001180 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001181 } else if (isFriend) {
1182 // Note, we need this connection even if the friend doesn't have a body.
1183 // Its body may exist but not have been attached yet due to deferred
1184 // parsing.
1185 // FIXME: It might be cleaner to set this when attaching the body to the
1186 // friend function declaration, however that would require finding all the
1187 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001188 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001189 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001190
Douglas Gregore53060f2009-06-25 22:08:12 +00001191 if (InitFunctionInstantiation(Function, D))
1192 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001193
John McCallaf2094e2010-04-08 09:05:18 +00001194 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001195
John McCall68263142009-11-18 22:49:29 +00001196 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1197 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1198
John McCallaf2094e2010-04-08 09:05:18 +00001199 if (DependentFunctionTemplateSpecializationInfo *Info
1200 = D->getDependentSpecializationInfo()) {
1201 assert(isFriend && "non-friend has dependent specialization info?");
1202
1203 // This needs to be set now for future sanity.
1204 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1205
1206 // Instantiate the explicit template arguments.
1207 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1208 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001209 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1210 ExplicitArgs, TemplateArgs))
1211 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001212
1213 // Map the candidate templates to their instantiations.
1214 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1215 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1216 Info->getTemplate(I),
1217 TemplateArgs);
1218 if (!Temp) return 0;
1219
1220 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1221 }
1222
1223 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1224 &ExplicitArgs,
1225 Previous))
1226 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001227
John McCallaf2094e2010-04-08 09:05:18 +00001228 isExplicitSpecialization = true;
1229
1230 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001231 // Look only into the namespace where the friend would be declared to
1232 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001233 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001234 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001235
Douglas Gregora735b202009-10-13 14:39:41 +00001236 // In C++, the previous declaration we find might be a tag type
1237 // (class or enum). In this case, the new declaration will hide the
1238 // tag type. Note that this does does not apply if we're declaring a
1239 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001240 if (Previous.isSingleTagDecl())
1241 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001242 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001243
John McCall9f54ad42009-12-10 09:41:52 +00001244 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001245 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001246
John McCall76d32642010-04-24 01:30:58 +00001247 NamedDecl *PrincipalDecl = (TemplateParams
1248 ? cast<NamedDecl>(FunctionTemplate)
1249 : Function);
1250
Douglas Gregora735b202009-10-13 14:39:41 +00001251 // If the original function was part of a friend declaration,
1252 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001253 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001254 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001255 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001256 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001257 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001258 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001259
1260 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1261 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001262
Gabor Greif77535df2010-08-30 22:25:56 +00001263 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001264
Richard Smith53e53512011-10-19 00:54:10 +00001265 // C++98 [temp.friend]p5: When a function is defined in a friend function
1266 // declaration in a class template, the function is defined at each
1267 // instantiation of the class template. The function is defined even if it
1268 // is never used.
1269 // C++11 [temp.friend]p4: When a function is defined in a friend function
1270 // declaration in a class template, the function is instantiated when the
1271 // function is odr-used.
1272 //
1273 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1274 // redefinition, but don't instantiate the function.
1275 if ((!SemaRef.getLangOptions().CPlusPlus0x ||
1276 SemaRef.Diags.getDiagnosticLevel(
1277 diag::warn_cxx98_compat_friend_redefinition,
1278 Function->getLocation())
1279 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001280 D->isThisDeclarationADefinition()) {
1281 // Check for a function body.
1282 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001283 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001284 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001285 SemaRef.Diag(Function->getLocation(),
1286 SemaRef.getLangOptions().CPlusPlus0x ?
1287 diag::warn_cxx98_compat_friend_redefinition :
1288 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001289 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001290 if (!SemaRef.getLangOptions().CPlusPlus0x)
1291 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001292 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001293 // Check for redefinitions due to other instantiations of this or
1294 // a similar friend function.
1295 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1296 REnd = Function->redecls_end();
1297 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001298 if (*R == Function)
1299 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001300 switch (R->getFriendObjectKind()) {
1301 case Decl::FOK_None:
Richard Smith53e53512011-10-19 00:54:10 +00001302 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1303 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001304 if (MemberSpecializationInfo *MSInfo
1305 = Function->getMemberSpecializationInfo()) {
1306 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1307 SourceLocation Loc = R->getLocation(); // FIXME
1308 MSInfo->setPointOfInstantiation(Loc);
1309 SemaRef.PendingLocalImplicitInstantiations.push_back(
1310 std::make_pair(Function, Loc));
1311 queuedInstantiation = true;
1312 }
1313 }
1314 }
1315 break;
1316 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001317 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001318 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001319 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001320 SemaRef.Diag(Function->getLocation(),
1321 SemaRef.getLangOptions().CPlusPlus0x ?
1322 diag::warn_cxx98_compat_friend_redefinition :
1323 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001324 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001325 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001326 if (!SemaRef.getLangOptions().CPlusPlus0x)
1327 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001328 break;
1329 }
1330 }
1331 }
1332 }
Douglas Gregora735b202009-10-13 14:39:41 +00001333 }
1334
John McCall76d32642010-04-24 01:30:58 +00001335 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1336 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1337 PrincipalDecl->setNonMemberOperator();
1338
Sean Hunteb88ae52011-05-23 21:07:59 +00001339 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001340 return Function;
1341}
1342
Douglas Gregord60e1052009-08-27 16:57:43 +00001343Decl *
1344TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001345 TemplateParameterList *TemplateParams,
1346 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001347 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1348 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001349 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001350 // We are creating a function template specialization from a function
1351 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001352 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001353 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001354 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001355
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001356 FunctionDecl *SpecFunc
1357 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1358 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001359
Douglas Gregor6b906862009-08-21 00:16:32 +00001360 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001361 if (SpecFunc)
1362 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001363 }
1364
John McCallb0cb0222010-03-27 05:57:59 +00001365 bool isFriend;
1366 if (FunctionTemplate)
1367 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1368 else
1369 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1370
Douglas Gregor79c22782010-01-16 20:21:20 +00001371 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001372 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001373 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001374 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001375
John McCall4eab39f2010-10-19 02:26:41 +00001376 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001377 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001378 unsigned NumTempParamLists = 0;
1379 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1380 TempParamLists.set_size(NumTempParamLists);
1381 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1382 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1383 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1384 if (!InstParams)
1385 return NULL;
1386 TempParamLists[I] = InstParams;
1387 }
1388 }
1389
Chris Lattner5f9e2722011-07-23 10:55:15 +00001390 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001391 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001392 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001393 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001394 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001395
Abramo Bagnara723df242010-12-14 22:11:44 +00001396 // \brief If the type of this function, after ignoring parentheses,
1397 // is not *directly* a function type, then we're instantiating a function
1398 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001399 //
1400 // typedef int functype(int, int);
1401 // functype func;
1402 //
1403 // In this case, we'll just go instantiate the ParmVarDecls that we
1404 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001405 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001406 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001407 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001408 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1409 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001410 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001411 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001412 }
1413
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001414 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1415 if (QualifierLoc) {
1416 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001417 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001418 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001419 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001420 }
1421
1422 DeclContext *DC = Owner;
1423 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001424 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001425 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001426 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001427 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001428
1429 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1430 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001431 } else {
1432 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1433 D->getDeclContext(),
1434 TemplateArgs);
1435 }
1436 if (!DC) return 0;
1437 }
1438
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001439 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001440 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001441 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001442
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001443 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001444 DeclarationNameInfo NameInfo
1445 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001446 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001447 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001448 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001449 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001450 Constructor->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001451 false, /*isConstexpr*/ false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001452 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001453 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001454 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001455 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001456 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001457 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001458 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001459 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001460 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001461 Conversion->isExplicit(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001462 /*isConstexpr*/ false,
1463 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001464 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001465 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001466 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001467 D->isStatic(),
1468 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001469 D->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001470 /*isConstexpr*/ false, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001471 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001472
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001473 if (QualifierLoc)
1474 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001475
Douglas Gregord60e1052009-08-27 16:57:43 +00001476 if (TemplateParams) {
1477 // Our resulting instantiation is actually a function template, since we
1478 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001479 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001480 // template<typename T>
1481 // struct X {
1482 // template<typename U> void f(T, U);
1483 // };
1484 //
1485 // X<int> x;
1486 //
1487 // We are instantiating the member template "f" within X<int>, which means
1488 // substituting int for T, but leaving "f" as a member function template.
1489 // Build the function template itself.
1490 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1491 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001492 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001493 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001494 if (isFriend) {
1495 FunctionTemplate->setLexicalDeclContext(Owner);
1496 FunctionTemplate->setObjectOfFriendDecl(true);
1497 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001498 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001499 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001500 } else if (FunctionTemplate) {
1501 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001502 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001503 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001504 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001505 TemplateArgumentList::CreateCopy(SemaRef.Context,
1506 Innermost.first,
1507 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001508 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001509 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001510 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001511 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001512 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001513
Mike Stump1eb44332009-09-09 15:08:12 +00001514 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001515 // out-of-line, the instantiation will have the same lexical
1516 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001517 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001518 if (NumTempParamLists)
1519 Method->setTemplateParameterListsInfo(SemaRef.Context,
1520 NumTempParamLists,
1521 TempParamLists.data());
1522
John McCallb0cb0222010-03-27 05:57:59 +00001523 Method->setLexicalDeclContext(Owner);
1524 Method->setObjectOfFriendDecl(true);
1525 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001526 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001527
Douglas Gregor5545e162009-03-24 00:38:23 +00001528 // Attach the parameters
1529 for (unsigned P = 0; P < Params.size(); ++P)
1530 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001531 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001532
1533 if (InitMethodInstantiation(Method, D))
1534 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001535
Abramo Bagnara25777432010-08-11 22:01:17 +00001536 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1537 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001538
John McCallb0cb0222010-03-27 05:57:59 +00001539 if (!FunctionTemplate || TemplateParams || isFriend) {
1540 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001541
Douglas Gregordec06662009-08-21 18:42:58 +00001542 // In C++, the previous declaration we find might be a tag type
1543 // (class or enum). In this case, the new declaration will hide the
1544 // tag type. Note that this does does not apply if we're declaring a
1545 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001546 if (Previous.isSingleTagDecl())
1547 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001548 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001549
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001550 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001551 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001552
Douglas Gregor4ba31362009-12-01 17:24:26 +00001553 if (D->isPure())
1554 SemaRef.CheckPureMethod(Method, SourceRange());
1555
John McCall46460a62010-01-20 21:53:11 +00001556 Method->setAccess(D->getAccess());
1557
Anders Carlsson9eefa222011-01-20 06:52:44 +00001558 SemaRef.CheckOverrideControl(Method);
1559
Eli Friedman3bc45152011-11-15 22:39:08 +00001560 // If a function is defined as defaulted or deleted, mark it as such now.
1561 if (D->isDefaulted())
1562 Method->setDefaulted();
1563 if (D->isDeletedAsWritten())
1564 Method->setDeletedAsWritten();
1565
John McCallb0cb0222010-03-27 05:57:59 +00001566 if (FunctionTemplate) {
1567 // If there's a function template, let our caller handle it.
1568 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1569 // Don't hide a (potentially) valid declaration with an invalid one.
1570 } else {
1571 NamedDecl *DeclToAdd = (TemplateParams
1572 ? cast<NamedDecl>(FunctionTemplate)
1573 : Method);
1574 if (isFriend)
1575 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001576 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001577 Owner->addDecl(DeclToAdd);
1578 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001579
1580 if (D->isExplicitlyDefaulted()) {
1581 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1582 } else {
1583 assert(!D->isDefaulted() &&
1584 "should not implicitly default uninstantiated function");
1585 }
1586
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001587 return Method;
1588}
1589
Douglas Gregor615c5d42009-03-24 16:43:20 +00001590Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001591 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001592}
1593
Douglas Gregor03b2b072009-03-24 00:15:49 +00001594Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001595 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001596}
1597
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001598Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001599 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001600}
1601
Douglas Gregor6477b692009-03-25 15:04:13 +00001602ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001603 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001604 llvm::Optional<unsigned>(),
1605 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001606}
1607
John McCalle29ba202009-08-20 01:44:21 +00001608Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1609 TemplateTypeParmDecl *D) {
1610 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001611 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001612
John McCalle29ba202009-08-20 01:44:21 +00001613 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001614 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1615 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001616 D->getDepth() - TemplateArgs.getNumLevels(),
1617 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001618 D->wasDeclaredWithTypename(),
1619 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001620 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001621
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001622 if (D->hasDefaultArgument())
1623 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1624
1625 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001626 // scope.
1627 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001628
John McCalle29ba202009-08-20 01:44:21 +00001629 return Inst;
1630}
1631
Douglas Gregor33642df2009-10-23 23:25:44 +00001632Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1633 NonTypeTemplateParmDecl *D) {
1634 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001635 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001636 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1637 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001638 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001639 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001640 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001641 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001642
1643 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001644 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001645 // expansion of types. Substitute into each of the expanded types.
1646 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1647 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1648 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1649 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1650 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001651 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001652 D->getDeclName());
1653 if (!NewDI)
1654 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001655
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001656 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1657 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1658 D->getLocation());
1659 if (NewT.isNull())
1660 return 0;
1661 ExpandedParameterPackTypes.push_back(NewT);
1662 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001663
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001664 IsExpandedParameterPack = true;
1665 DI = D->getTypeSourceInfo();
1666 T = DI->getType();
1667 } else if (isa<PackExpansionTypeLoc>(TL)) {
1668 // The non-type template parameter pack's type is a pack expansion of types.
1669 // Determine whether we need to expand this parameter pack into separate
1670 // types.
1671 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1672 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001673 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001674 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001675
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001676 // Determine whether the set of unexpanded parameter packs can and should
1677 // be expanded.
1678 bool Expand = true;
1679 bool RetainExpansion = false;
1680 llvm::Optional<unsigned> OrigNumExpansions
1681 = Expansion.getTypePtr()->getNumExpansions();
1682 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1683 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1684 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001685 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001686 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001687 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001688 NumExpansions))
1689 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001690
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001691 if (Expand) {
1692 for (unsigned I = 0; I != *NumExpansions; ++I) {
1693 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1694 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001695 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001696 D->getDeclName());
1697 if (!NewDI)
1698 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001699
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001700 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1701 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1702 NewDI->getType(),
1703 D->getLocation());
1704 if (NewT.isNull())
1705 return 0;
1706 ExpandedParameterPackTypes.push_back(NewT);
1707 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001708
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001709 // Note that we have an expanded parameter pack. The "type" of this
1710 // expanded parameter pack is the original expansion type, but callers
1711 // will end up using the expanded parameter pack types for type-checking.
1712 IsExpandedParameterPack = true;
1713 DI = D->getTypeSourceInfo();
1714 T = DI->getType();
1715 } else {
1716 // We cannot fully expand the pack expansion now, so substitute into the
1717 // pattern and create a new pack expansion type.
1718 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1719 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001720 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001721 D->getDeclName());
1722 if (!NewPattern)
1723 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001724
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001725 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1726 NumExpansions);
1727 if (!DI)
1728 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001729
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001730 T = DI->getType();
1731 }
1732 } else {
1733 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001734 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001735 D->getLocation(), D->getDeclName());
1736 if (!DI)
1737 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001738
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001739 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001740 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001741 D->getLocation());
1742 if (T.isNull()) {
1743 T = SemaRef.Context.IntTy;
1744 Invalid = true;
1745 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001746 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001747
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001748 NonTypeTemplateParmDecl *Param;
1749 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001750 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001751 D->getInnerLocStart(),
1752 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001753 D->getDepth() - TemplateArgs.getNumLevels(),
1754 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001755 D->getIdentifier(), T,
1756 DI,
1757 ExpandedParameterPackTypes.data(),
1758 ExpandedParameterPackTypes.size(),
1759 ExpandedParameterPackTypesAsWritten.data());
1760 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001761 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001762 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001763 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001764 D->getDepth() - TemplateArgs.getNumLevels(),
1765 D->getPosition(),
1766 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001767 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001768
Douglas Gregor9a299e02011-03-04 17:52:15 +00001769 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001770 if (Invalid)
1771 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001772
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001773 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001774
1775 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001776 // scope.
1777 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001778 return Param;
1779}
1780
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001781Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001782TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1783 TemplateTemplateParmDecl *D) {
1784 // Instantiate the template parameter list of the template template parameter.
1785 TemplateParameterList *TempParams = D->getTemplateParameters();
1786 TemplateParameterList *InstParams;
1787 {
1788 // Perform the actual substitution of template parameters within a new,
1789 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001790 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001791 InstParams = SubstTemplateParams(TempParams);
1792 if (!InstParams)
1793 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001794 }
1795
Douglas Gregor9106ef72009-11-11 16:58:32 +00001796 // Build the template template parameter.
1797 TemplateTemplateParmDecl *Param
1798 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001799 D->getDepth() - TemplateArgs.getNumLevels(),
1800 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001801 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001802 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001803 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001804
1805 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001806 // scope.
1807 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001808
Douglas Gregor9106ef72009-11-11 16:58:32 +00001809 return Param;
1810}
1811
Douglas Gregor48c32a72009-11-17 06:07:40 +00001812Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001813 // Using directives are never dependent (and never contain any types or
1814 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001815
Douglas Gregor48c32a72009-11-17 06:07:40 +00001816 UsingDirectiveDecl *Inst
1817 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001818 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001819 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001820 D->getIdentLocation(),
1821 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001822 D->getCommonAncestor());
1823 Owner->addDecl(Inst);
1824 return Inst;
1825}
1826
John McCalled976492009-12-04 22:46:56 +00001827Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001828
1829 // The nested name specifier may be dependent, for example
1830 // template <typename T> struct t {
1831 // struct s1 { T f1(); };
1832 // struct s2 : s1 { using s1::f1; };
1833 // };
1834 // template struct t<int>;
1835 // Here, in using s1::f1, s1 refers to t<T>::s1;
1836 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001837 NestedNameSpecifierLoc QualifierLoc
1838 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1839 TemplateArgs);
1840 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001841 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001842
1843 // The name info is non-dependent, so no transformation
1844 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001845 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001846
John McCall9f54ad42009-12-10 09:41:52 +00001847 // We only need to do redeclaration lookups if we're in a class
1848 // scope (in fact, it's not really even possible in non-class
1849 // scopes).
1850 bool CheckRedeclaration = Owner->isRecord();
1851
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001852 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1853 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001854
John McCalled976492009-12-04 22:46:56 +00001855 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001856 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001857 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001858 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001859 D->isTypeName());
1860
Douglas Gregor5149f372011-02-25 15:54:31 +00001861 CXXScopeSpec SS;
1862 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001863 if (CheckRedeclaration) {
1864 Prev.setHideTags(false);
1865 SemaRef.LookupQualifiedName(Prev, Owner);
1866
1867 // Check for invalid redeclarations.
1868 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1869 D->isTypeName(), SS,
1870 D->getLocation(), Prev))
1871 NewUD->setInvalidDecl();
1872
1873 }
1874
1875 if (!NewUD->isInvalidDecl() &&
1876 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001877 D->getLocation()))
1878 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001879
John McCalled976492009-12-04 22:46:56 +00001880 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1881 NewUD->setAccess(D->getAccess());
1882 Owner->addDecl(NewUD);
1883
John McCall9f54ad42009-12-10 09:41:52 +00001884 // Don't process the shadow decls for an invalid decl.
1885 if (NewUD->isInvalidDecl())
1886 return NewUD;
1887
John McCall323c3102009-12-22 22:26:37 +00001888 bool isFunctionScope = Owner->isFunctionOrMethod();
1889
John McCall9f54ad42009-12-10 09:41:52 +00001890 // Process the shadow decls.
1891 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1892 I != E; ++I) {
1893 UsingShadowDecl *Shadow = *I;
1894 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001895 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1896 Shadow->getLocation(),
1897 Shadow->getTargetDecl(),
1898 TemplateArgs));
1899 if (!InstTarget)
1900 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001901
1902 if (CheckRedeclaration &&
1903 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1904 continue;
1905
1906 UsingShadowDecl *InstShadow
1907 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1908 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001909
1910 if (isFunctionScope)
1911 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001912 }
John McCalled976492009-12-04 22:46:56 +00001913
1914 return NewUD;
1915}
1916
1917Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001918 // Ignore these; we handle them in bulk when processing the UsingDecl.
1919 return 0;
John McCalled976492009-12-04 22:46:56 +00001920}
1921
John McCall7ba107a2009-11-18 02:36:19 +00001922Decl * TemplateDeclInstantiator
1923 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001924 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001925 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001926 TemplateArgs);
1927 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001928 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001929
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001930 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001931 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001932
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001933 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1934 // Hence, no tranformation is required for it.
1935 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001936 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001937 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001938 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001939 /*instantiation*/ true,
1940 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001941 if (UD)
John McCalled976492009-12-04 22:46:56 +00001942 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1943
John McCall7ba107a2009-11-18 02:36:19 +00001944 return UD;
1945}
1946
1947Decl * TemplateDeclInstantiator
1948 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001949 NestedNameSpecifierLoc QualifierLoc
1950 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1951 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001952 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001953
John McCall7ba107a2009-11-18 02:36:19 +00001954 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001955 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001956
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001957 DeclarationNameInfo NameInfo
1958 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1959
John McCall7ba107a2009-11-18 02:36:19 +00001960 NamedDecl *UD =
1961 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001962 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001963 /*instantiation*/ true,
1964 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001965 if (UD)
John McCalled976492009-12-04 22:46:56 +00001966 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1967
Anders Carlsson0d8df782009-08-29 19:37:28 +00001968 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001969}
1970
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001971
1972Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1973 ClassScopeFunctionSpecializationDecl *Decl) {
1974 CXXMethodDecl *OldFD = Decl->getSpecialization();
1975 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1976
1977 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1978 Sema::ForRedeclaration);
1979
1980 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1981 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1982 NewFD->setInvalidDecl();
1983 return NewFD;
1984 }
1985
1986 // Associate the specialization with the pattern.
1987 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1988 assert(Specialization && "Class scope Specialization is null");
1989 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1990
1991 return NewFD;
1992}
1993
John McCallce3ff2b2009-08-25 22:02:44 +00001994Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001995 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001996 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001997 if (D->isInvalidDecl())
1998 return 0;
1999
Douglas Gregor8dbc2692009-03-17 21:15:40 +00002000 return Instantiator.Visit(D);
2001}
2002
John McCalle29ba202009-08-20 01:44:21 +00002003/// \brief Instantiates a nested template parameter list in the current
2004/// instantiation context.
2005///
2006/// \param L The parameter list to instantiate
2007///
2008/// \returns NULL if there was an error
2009TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00002010TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00002011 // Get errors for all the parameters before bailing out.
2012 bool Invalid = false;
2013
2014 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002015 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002016 ParamVector Params;
2017 Params.reserve(N);
2018 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2019 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002020 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002021 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002022 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002023 }
2024
2025 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002026 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002027 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002028
2029 TemplateParameterList *InstL
2030 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2031 L->getLAngleLoc(), &Params.front(), N,
2032 L->getRAngleLoc());
2033 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002034}
John McCalle29ba202009-08-20 01:44:21 +00002035
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002036/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002037/// specialization.
2038///
2039/// \param ClassTemplate the (instantiated) class template that is partially
2040// specialized by the instantiation of \p PartialSpec.
2041///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002042/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002043/// specialization that we are instantiating.
2044///
Douglas Gregord65587f2010-11-10 19:44:59 +00002045/// \returns The instantiated partial specialization, if successful; otherwise,
2046/// NULL to indicate an error.
2047ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002048TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2049 ClassTemplateDecl *ClassTemplate,
2050 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002051 // Create a local instantiation scope for this class template partial
2052 // specialization, which will contain the instantiations of the template
2053 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002054 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002055
Douglas Gregored9c0f92009-10-29 00:04:11 +00002056 // Substitute into the template parameters of the class template partial
2057 // specialization.
2058 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2059 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2060 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002061 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002062
Douglas Gregored9c0f92009-10-29 00:04:11 +00002063 // Substitute into the template arguments of the class template partial
2064 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002065 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002066 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2067 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002068 InstTemplateArgs, TemplateArgs))
2069 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002070
Douglas Gregored9c0f92009-10-29 00:04:11 +00002071 // Check that the template argument list is well-formed for this
2072 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002073 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002074 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002075 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002076 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002077 false,
2078 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002079 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002080
2081 // Figure out where to insert this class template partial specialization
2082 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002083 void *InsertPos = 0;
2084 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002085 = ClassTemplate->findPartialSpecialization(Converted.data(),
2086 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002087
Douglas Gregored9c0f92009-10-29 00:04:11 +00002088 // Build the canonical type that describes the converted template
2089 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002090 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002091 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002092 Converted.data(),
2093 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002094
2095 // Build the fully-sugared type for this class template
2096 // specialization as the user wrote in the specialization
2097 // itself. This means that we'll pretty-print the type retrieved
2098 // from the specialization's declaration the way that the user
2099 // actually wrote the specialization, rather than formatting the
2100 // name based on the "canonical" representation used to store the
2101 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002102 TypeSourceInfo *WrittenTy
2103 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2104 TemplateName(ClassTemplate),
2105 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002106 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002107 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002108
Douglas Gregored9c0f92009-10-29 00:04:11 +00002109 if (PrevDecl) {
2110 // We've already seen a partial specialization with the same template
2111 // parameters and template arguments. This can happen, for example, when
2112 // substituting the outer template arguments ends up causing two
2113 // class template partial specializations of a member class template
2114 // to have identical forms, e.g.,
2115 //
2116 // template<typename T, typename U>
2117 // struct Outer {
2118 // template<typename X, typename Y> struct Inner;
2119 // template<typename Y> struct Inner<T, Y>;
2120 // template<typename Y> struct Inner<U, Y>;
2121 // };
2122 //
2123 // Outer<int, int> outer; // error: the partial specializations of Inner
2124 // // have the same signature.
2125 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002126 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002127 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2128 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002129 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002130 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002131
2132
Douglas Gregored9c0f92009-10-29 00:04:11 +00002133 // Create the class template partial specialization declaration.
2134 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002135 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002136 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002137 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002138 PartialSpec->getLocStart(),
2139 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002140 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002141 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002142 Converted.data(),
2143 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002144 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002145 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002146 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002147 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002148 // Substitute the nested name specifier, if any.
2149 if (SubstQualifier(PartialSpec, InstPartialSpec))
2150 return 0;
2151
Douglas Gregored9c0f92009-10-29 00:04:11 +00002152 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002153 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002154
Douglas Gregored9c0f92009-10-29 00:04:11 +00002155 // Add this partial specialization to the set of class template partial
2156 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002157 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002158 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002159}
2160
John McCall21ef0fa2010-03-11 09:03:00 +00002161TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002162TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002163 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002164 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2165 assert(OldTInfo && "substituting function without type source info");
2166 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002167 TypeSourceInfo *NewTInfo
2168 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2169 D->getTypeSpecStartLoc(),
2170 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002171 if (!NewTInfo)
2172 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002173
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002174 if (NewTInfo != OldTInfo) {
2175 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002176 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002177 if (FunctionProtoTypeLoc *OldProtoLoc
2178 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002179 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002180 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2181 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002182 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2183 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2184 OldIdx != NumOldParams; ++OldIdx) {
2185 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2186 if (!OldParam->isParameterPack() ||
2187 (NewIdx < NumNewParams &&
2188 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002189 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002190 // instantiated to a (still-dependent) parameter pack.
2191 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2192 Params.push_back(NewParam);
2193 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2194 NewParam);
2195 continue;
2196 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002197
Douglas Gregor12c9c002011-01-07 16:43:16 +00002198 // Parameter pack: make the instantiation an argument pack.
2199 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2200 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002201 unsigned NumArgumentsInExpansion
2202 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2203 TemplateArgs);
2204 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002205 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2206 Params.push_back(NewParam);
2207 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2208 NewParam);
2209 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002210 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002211 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002212 } else {
2213 // The function type itself was not dependent and therefore no
2214 // substitution occurred. However, we still need to instantiate
2215 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002216 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002217 if (FunctionProtoTypeLoc *OldProtoLoc
2218 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2219 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2220 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2221 if (!Parm)
2222 return 0;
2223 Params.push_back(Parm);
2224 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002225 }
2226 }
John McCall21ef0fa2010-03-11 09:03:00 +00002227 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002228}
2229
Mike Stump1eb44332009-09-09 15:08:12 +00002230/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002231/// declaration (New) from the corresponding fields of its template (Tmpl).
2232///
2233/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002234bool
2235TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002236 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002237 if (Tmpl->isDeletedAsWritten())
2238 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002239
Douglas Gregorcca9e962009-07-01 22:01:06 +00002240 // If we are performing substituting explicitly-specified template arguments
2241 // or deduced template arguments into a function template and we reach this
2242 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002243 // to keeping the new function template specialization. We therefore
2244 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002245 // into a template instantiation for this specific function template
2246 // specialization, which is not a SFINAE context, so that we diagnose any
2247 // further errors in the declaration itself.
2248 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2249 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2250 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2251 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002252 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002253 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002254 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002255 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002256 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002257 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2258 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002259 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002260 }
2261 }
Mike Stump1eb44332009-09-09 15:08:12 +00002262
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002263 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2264 assert(Proto && "Function template without prototype?");
2265
Sebastian Redl60618fa2011-03-12 11:50:43 +00002266 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002267 // The function has an exception specification or a "noreturn"
2268 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002269 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002270 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2271 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002272 if (const PackExpansionType *PackExpansion
2273 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2274 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002275 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002276 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2277 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002278 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002279 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002280
Douglas Gregorb99268b2010-12-21 00:52:54 +00002281 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002282 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002283 llvm::Optional<unsigned> NumExpansions
2284 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002286 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002287 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002288 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002289 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002290 RetainExpansion,
2291 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002292 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002293
Douglas Gregorb99268b2010-12-21 00:52:54 +00002294 if (!Expand) {
2295 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002296 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002297 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002298 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002299 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002300 TemplateArgs,
2301 New->getLocation(), New->getDeclName());
2302 if (T.isNull())
2303 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002304
Douglas Gregorcded4f62011-01-14 17:04:44 +00002305 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002306 Exceptions.push_back(T);
2307 continue;
2308 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002309
Douglas Gregorb99268b2010-12-21 00:52:54 +00002310 // Substitute into the pack expansion pattern for each template
2311 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002312 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002313 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002314
2315 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002316 TemplateArgs,
2317 New->getLocation(), New->getDeclName());
2318 if (T.isNull()) {
2319 Invalid = true;
2320 break;
2321 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002322
Douglas Gregorb99268b2010-12-21 00:52:54 +00002323 Exceptions.push_back(T);
2324 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002325
Douglas Gregorb99268b2010-12-21 00:52:54 +00002326 if (Invalid)
2327 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002328
Douglas Gregorb99268b2010-12-21 00:52:54 +00002329 continue;
2330 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002331
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002332 QualType T
2333 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2334 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002335 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002336 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2337 continue;
2338
2339 Exceptions.push_back(T);
2340 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002341 Expr *NoexceptExpr = 0;
2342 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002343 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2344 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002345 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2346 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002347 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002348
Douglas Gregor5c340e82011-10-09 18:31:23 +00002349 if (E.isUsable()) {
Sebastian Redl56fb9262011-03-14 18:51:50 +00002350 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002351 if (!NoexceptExpr->isTypeDependent() &&
Richard Smith282e7e62012-02-04 09:53:13 +00002352 !NoexceptExpr->isValueDependent())
2353 NoexceptExpr = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2354 0, SemaRef.PDiag(diag::err_noexcept_needs_constant_expression),
2355 /*AllowFold*/ false).take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002356 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002357 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002358
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002359 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002360
John McCalle23cf432010-12-14 08:05:40 +00002361 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002362 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002363 EPI.NumExceptions = Exceptions.size();
2364 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002365 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002366 EPI.ExtInfo = Proto->getExtInfo();
2367
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002368 const FunctionProtoType *NewProto
2369 = New->getType()->getAs<FunctionProtoType>();
2370 assert(NewProto && "Template instantiation without function prototype?");
2371 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2372 NewProto->arg_type_begin(),
2373 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002374 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002375 }
2376
Richard Smith9f569cc2011-10-01 02:31:28 +00002377 // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2378 // a constexpr function template satisfies the requirements for a constexpr
2379 // function, then it is a constexpr function.
2380 if (Tmpl->isConstexpr() &&
2381 SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2382 New->setConstexpr(true);
2383
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002384 const FunctionDecl* Definition = Tmpl;
2385
2386 // Get the definition. Leaves the variable unchanged if undefined.
2387 Tmpl->isDefined(Definition);
2388
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002389 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2390 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002391
Douglas Gregore53060f2009-06-25 22:08:12 +00002392 return false;
2393}
2394
Douglas Gregor5545e162009-03-24 00:38:23 +00002395/// \brief Initializes common fields of an instantiated method
2396/// declaration (New) from the corresponding fields of its template
2397/// (Tmpl).
2398///
2399/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002400bool
2401TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002402 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002403 if (InitFunctionInstantiation(New, Tmpl))
2404 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002405
Douglas Gregor5545e162009-03-24 00:38:23 +00002406 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002407 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002408 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002409
2410 // FIXME: attributes
2411 // FIXME: New needs a pointer to Tmpl
2412 return false;
2413}
Douglas Gregora58861f2009-05-13 20:28:22 +00002414
2415/// \brief Instantiate the definition of the given function from its
2416/// template.
2417///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002418/// \param PointOfInstantiation the point at which the instantiation was
2419/// required. Note that this is not precisely a "point of instantiation"
2420/// for the function, but it's close.
2421///
Douglas Gregora58861f2009-05-13 20:28:22 +00002422/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002423/// function template specialization or member function of a class template
2424/// specialization.
2425///
2426/// \param Recursive if true, recursively instantiates any functions that
2427/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002428///
2429/// \param DefinitionRequired if true, then we are performing an explicit
2430/// instantiation where the body of the function is required. Complain if
2431/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002432void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002433 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002434 bool Recursive,
2435 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002436 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002437 return;
2438
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002439 // Never instantiate an explicit specialization except if it is a class scope
2440 // explicit specialization.
2441 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2442 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002443 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002444
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002445 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002446 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002447 assert(PatternDecl && "instantiating a non-template");
2448
2449 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2450 assert(PatternDecl && "template definition is not a template");
2451 if (!Pattern) {
2452 // Try to find a defaulted definition
2453 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002454 }
Sean Huntf996e052011-05-27 20:00:14 +00002455 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002456
Francois Pichet8387e2a2011-04-22 22:18:13 +00002457 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002458 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002459 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002460 PendingInstantiations.push_back(
2461 std::make_pair(Function, PointOfInstantiation));
2462 return;
2463 }
2464
2465 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002466 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002467 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002468 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002469 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002470 Pattern = PatternDecl->getBody(PatternDecl);
2471 }
2472
Sean Huntf996e052011-05-27 20:00:14 +00002473 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002474 if (DefinitionRequired) {
2475 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002476 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002477 diag::err_explicit_instantiation_undefined_func_template)
2478 << Function->getPrimaryTemplate();
2479 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002480 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002481 diag::err_explicit_instantiation_undefined_member)
2482 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002483
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002484 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002485 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002486 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002487 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002488 } else if (Function->getTemplateSpecializationKind()
2489 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002490 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002491 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002492 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002493
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002494 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002495 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002496
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002497 // C++0x [temp.explicit]p9:
2498 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002499 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002500 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002501 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002502 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002503 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002504 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002505
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002506 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2507 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002508 return;
2509
Abramo Bagnarae9946242011-11-18 08:08:52 +00002510 // Copy the inner loc start from the pattern.
2511 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2512
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002513 // If we're performing recursive template instantiation, create our own
2514 // queue of pending implicit instantiations that we will instantiate later,
2515 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002516 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002517 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002518 if (Recursive) {
2519 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002520 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002521 }
Mike Stump1eb44332009-09-09 15:08:12 +00002522
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002523 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002524 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002525 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002526
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002527 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002528 // recorded, unless we're actually a member function within a local
2529 // class, in which case we need to merge our results with the parent
2530 // scope (of the enclosing function).
2531 bool MergeWithParentScope = false;
2532 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2533 MergeWithParentScope = Rec->isLocalClass();
2534
2535 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002536
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002537 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002538 // instantiation scope, and set the parameter names to those used
2539 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002540 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002541 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2542 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002543 if (!PatternParam->isParameterPack()) {
2544 // Simple case: not a parameter pack.
2545 assert(FParamIdx < Function->getNumParams());
2546 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2547 FunctionParam->setDeclName(PatternParam->getDeclName());
2548 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2549 ++FParamIdx;
2550 continue;
2551 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002552
Douglas Gregor12c9c002011-01-07 16:43:16 +00002553 // Expand the parameter pack.
2554 Scope.MakeInstantiatedLocalArgPack(PatternParam);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002555 for (unsigned NumFParams = Function->getNumParams();
2556 FParamIdx < NumFParams;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002557 ++FParamIdx) {
2558 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2559 FunctionParam->setDeclName(PatternParam->getDeclName());
2560 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2561 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002562 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002563
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002564 // Enter the scope of this instantiation. We don't use
2565 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002566 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002567
Mike Stump1eb44332009-09-09 15:08:12 +00002568 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002569 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002570
Sean Huntcd10dec2011-05-23 23:14:04 +00002571 if (PatternDecl->isDefaulted()) {
2572 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2573
2574 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002575 } else {
2576 // If this is a constructor, instantiate the member initializers.
2577 if (const CXXConstructorDecl *Ctor =
2578 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2579 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2580 TemplateArgs);
2581 }
2582
2583 // Instantiate the function body.
2584 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2585
2586 if (Body.isInvalid())
2587 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002588
Sean Huntcd10dec2011-05-23 23:14:04 +00002589 ActOnFinishFunctionBody(Function, Body.get(),
2590 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002591 }
2592
John McCall0c01d182010-03-24 05:22:00 +00002593 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2594
John McCalleee1d542011-02-14 07:13:47 +00002595 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002596
2597 DeclGroupRef DG(Function);
2598 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002599
Douglas Gregor60406be2010-01-16 22:29:39 +00002600 // This class may have local implicit instantiations that need to be
2601 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002602 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002603 Scope.Exit();
2604
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002605 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002606 // Define any pending vtables.
2607 DefineUsedVTables();
2608
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002609 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002610 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002611 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002612
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002613 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002614 assert(VTableUses.empty() &&
2615 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002616 VTableUses.swap(SavedVTableUses);
2617
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002618 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002619 assert(PendingInstantiations.empty() &&
2620 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002621 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002622 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002623}
2624
2625/// \brief Instantiate the definition of the given variable from its
2626/// template.
2627///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002628/// \param PointOfInstantiation the point at which the instantiation was
2629/// required. Note that this is not precisely a "point of instantiation"
2630/// for the function, but it's close.
2631///
2632/// \param Var the already-instantiated declaration of a static member
2633/// variable of a class template specialization.
2634///
2635/// \param Recursive if true, recursively instantiates any functions that
2636/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002637///
2638/// \param DefinitionRequired if true, then we are performing an explicit
2639/// instantiation where an out-of-line definition of the member variable
2640/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002641void Sema::InstantiateStaticDataMemberDefinition(
2642 SourceLocation PointOfInstantiation,
2643 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002644 bool Recursive,
2645 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002646 if (Var->isInvalidDecl())
2647 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002648
Douglas Gregor7caa6822009-07-24 20:34:43 +00002649 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002650 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002651 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002652 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002653 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002654
Douglas Gregor0d035142009-10-27 18:42:08 +00002655 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002656 // We did not find an out-of-line definition of this static data member,
2657 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002658 // instantiate this definition (or provide a specialization for it) in
2659 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002660 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002661 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002662 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002663 diag::err_explicit_instantiation_undefined_member)
2664 << 2 << Var->getDeclName() << Var->getDeclContext();
2665 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002666 } else if (Var->getTemplateSpecializationKind()
2667 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002668 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002669 std::make_pair(Var, PointOfInstantiation));
2670 }
2671
Douglas Gregor7caa6822009-07-24 20:34:43 +00002672 return;
2673 }
2674
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002675 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002676 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002677 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002678
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002679 // C++0x [temp.explicit]p9:
2680 // Except for inline functions, other explicit instantiation declarations
2681 // have the effect of suppressing the implicit instantiation of the entity
2682 // to which they refer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002683 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002684 == TSK_ExplicitInstantiationDeclaration)
2685 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002686
Douglas Gregorf15748a2011-06-03 03:35:07 +00002687 // If we already have a definition, we're done.
2688 if (Var->getDefinition())
2689 return;
2690
Douglas Gregor7caa6822009-07-24 20:34:43 +00002691 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2692 if (Inst)
2693 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002694
Douglas Gregor7caa6822009-07-24 20:34:43 +00002695 // If we're performing recursive template instantiation, create our own
2696 // queue of pending implicit instantiations that we will instantiate later,
2697 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002698 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002699 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002700 if (Recursive) {
2701 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002702 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002703 }
Mike Stump1eb44332009-09-09 15:08:12 +00002704
Douglas Gregor7caa6822009-07-24 20:34:43 +00002705 // Enter the scope of this instantiation. We don't use
2706 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002707 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002708
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002709 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002710 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002711 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002712
2713 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002714
2715 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002716 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2717 assert(MSInfo && "Missing member specialization information?");
2718 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2719 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002720 DeclGroupRef DG(Var);
2721 Consumer.HandleTopLevelDecl(DG);
2722 }
Mike Stump1eb44332009-09-09 15:08:12 +00002723
Douglas Gregor7caa6822009-07-24 20:34:43 +00002724 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002725 // Define any newly required vtables.
2726 DefineUsedVTables();
2727
Douglas Gregor7caa6822009-07-24 20:34:43 +00002728 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002729 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002730 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002731
Nick Lewycky81559102011-05-31 07:58:42 +00002732 // Restore the set of pending vtables.
2733 assert(VTableUses.empty() &&
2734 "VTableUses should be empty before it is discarded, "
2735 "while instantiating static data member.");
2736 VTableUses.swap(SavedVTableUses);
2737
Douglas Gregor7caa6822009-07-24 20:34:43 +00002738 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002739 assert(PendingInstantiations.empty() &&
2740 "PendingInstantiations should be empty before it is discarded, "
2741 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002742 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002743 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002744}
Douglas Gregor815215d2009-05-27 05:35:12 +00002745
Benjamin Kramer54dec5f2011-10-08 16:15:07 +00002746static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args,
2747 const CXXCtorInitializer *Init) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002748 // FIXME: This is a hack that will do slightly the wrong thing for an
2749 // initializer of the form foo({...}).
2750 // The right thing to do would be to modify InstantiateInitializer to create
2751 // the MultiInitializer.
2752 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2753 return MultiInitializer(Args[0]);
Sebastian Redlc046f302011-10-17 16:53:50 +00002754 return MultiInitializer(Init->getLParenLoc(), Args.data(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002755 Args.size(), Init->getRParenLoc());
2756}
2757
Anders Carlsson09025312009-08-29 05:16:22 +00002758void
2759Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2760 const CXXConstructorDecl *Tmpl,
2761 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002762
Richard Trieu90ab75b2011-09-09 03:18:59 +00002763 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002764 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002765
Anders Carlsson09025312009-08-29 05:16:22 +00002766 // Instantiate all the initializers.
2767 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002768 InitsEnd = Tmpl->init_end();
2769 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002770 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002771
Chandler Carruth030ef472010-09-03 21:54:20 +00002772 // Only instantiate written initializers, let Sema re-construct implicit
2773 // ones.
2774 if (!Init->isWritten())
2775 continue;
2776
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002777 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002778 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002779
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002780 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002781
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002782 if (Init->isPackExpansion()) {
2783 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002784 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002785 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002786 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2787 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002788 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002789 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002790 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002791 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002792 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002793 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002794 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002795 NumExpansions)) {
2796 AnyErrors = true;
2797 New->setInvalidDecl();
2798 continue;
2799 }
2800 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002801
2802 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002803 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002804 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2805
2806 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002807 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002808 LParenLoc, NewArgs, RParenLoc)) {
2809 AnyErrors = true;
2810 break;
2811 }
2812
2813 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002814 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002815 TemplateArgs,
2816 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002817 New->getDeclName());
2818 if (!BaseTInfo) {
2819 AnyErrors = true;
2820 break;
2821 }
2822
2823 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002824 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2825 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2826 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002827 New->getParent(),
2828 SourceLocation());
2829 if (NewInit.isInvalid()) {
2830 AnyErrors = true;
2831 break;
2832 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002833
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002834 NewInits.push_back(NewInit.get());
2835 NewArgs.clear();
2836 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002837
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002838 continue;
2839 }
2840
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002841 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002842 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002843 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002844 AnyErrors = true;
2845 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002846 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002847
Anders Carlsson09025312009-08-29 05:16:22 +00002848 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002849 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2850 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2851 TemplateArgs,
2852 Init->getSourceLocation(),
2853 New->getDeclName());
2854 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002855 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002856 New->setInvalidDecl();
2857 continue;
2858 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002859
2860 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
Douglas Gregor76852c22011-11-01 01:16:03 +00002861
2862 if (Init->isBaseInitializer())
2863 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, MultiInit,
2864 New->getParent(), EllipsisLoc);
2865 else
2866 NewInit = BuildDelegatingInitializer(TInfo, MultiInit,
2867 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002868 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002869 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002870 Init->getMemberLocation(),
2871 Init->getMember(),
2872 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002873 if (!Member) {
2874 AnyErrors = true;
2875 New->setInvalidDecl();
2876 continue;
2877 }
Mike Stump1eb44332009-09-09 15:08:12 +00002878
Sebastian Redl6df65482011-09-24 17:48:25 +00002879 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2880 NewInit = BuildMemberInitializer(Member, MultiInit,
2881 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002882 } else if (Init->isIndirectMemberInitializer()) {
2883 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002884 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002885 Init->getMemberLocation(),
2886 Init->getIndirectMember(), TemplateArgs));
2887
Douglas Gregorb7107222011-03-04 19:46:35 +00002888 if (!IndirectMember) {
2889 AnyErrors = true;
2890 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002891 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002892 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002893
2894 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2895 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2896 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002897 }
2898
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002899 if (NewInit.isInvalid()) {
2900 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002901 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002902 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002903 // FIXME: It would be nice if ASTOwningVector had a release function.
2904 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002905
Richard Trieu90ab75b2011-09-09 03:18:59 +00002906 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002907 }
2908 }
Mike Stump1eb44332009-09-09 15:08:12 +00002909
Anders Carlsson09025312009-08-29 05:16:22 +00002910 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002911 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002912 /*FIXME: ColonLoc */
2913 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002914 NewInits.data(), NewInits.size(),
2915 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002916}
2917
John McCall52a575a2009-08-29 08:11:13 +00002918// TODO: this could be templated if the various decl types used the
2919// same method name.
2920static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2921 ClassTemplateDecl *Instance) {
2922 Pattern = Pattern->getCanonicalDecl();
2923
2924 do {
2925 Instance = Instance->getCanonicalDecl();
2926 if (Pattern == Instance) return true;
2927 Instance = Instance->getInstantiatedFromMemberTemplate();
2928 } while (Instance);
2929
2930 return false;
2931}
2932
Douglas Gregor0d696532009-09-28 06:34:35 +00002933static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2934 FunctionTemplateDecl *Instance) {
2935 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002936
Douglas Gregor0d696532009-09-28 06:34:35 +00002937 do {
2938 Instance = Instance->getCanonicalDecl();
2939 if (Pattern == Instance) return true;
2940 Instance = Instance->getInstantiatedFromMemberTemplate();
2941 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002942
Douglas Gregor0d696532009-09-28 06:34:35 +00002943 return false;
2944}
2945
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002946static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002947isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2948 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002949 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002950 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2951 do {
2952 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2953 Instance->getCanonicalDecl());
2954 if (Pattern == Instance)
2955 return true;
2956 Instance = Instance->getInstantiatedFromMember();
2957 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002958
Douglas Gregored9c0f92009-10-29 00:04:11 +00002959 return false;
2960}
2961
John McCall52a575a2009-08-29 08:11:13 +00002962static bool isInstantiationOf(CXXRecordDecl *Pattern,
2963 CXXRecordDecl *Instance) {
2964 Pattern = Pattern->getCanonicalDecl();
2965
2966 do {
2967 Instance = Instance->getCanonicalDecl();
2968 if (Pattern == Instance) return true;
2969 Instance = Instance->getInstantiatedFromMemberClass();
2970 } while (Instance);
2971
2972 return false;
2973}
2974
2975static bool isInstantiationOf(FunctionDecl *Pattern,
2976 FunctionDecl *Instance) {
2977 Pattern = Pattern->getCanonicalDecl();
2978
2979 do {
2980 Instance = Instance->getCanonicalDecl();
2981 if (Pattern == Instance) return true;
2982 Instance = Instance->getInstantiatedFromMemberFunction();
2983 } while (Instance);
2984
2985 return false;
2986}
2987
2988static bool isInstantiationOf(EnumDecl *Pattern,
2989 EnumDecl *Instance) {
2990 Pattern = Pattern->getCanonicalDecl();
2991
2992 do {
2993 Instance = Instance->getCanonicalDecl();
2994 if (Pattern == Instance) return true;
2995 Instance = Instance->getInstantiatedFromMemberEnum();
2996 } while (Instance);
2997
2998 return false;
2999}
3000
John McCalled976492009-12-04 22:46:56 +00003001static bool isInstantiationOf(UsingShadowDecl *Pattern,
3002 UsingShadowDecl *Instance,
3003 ASTContext &C) {
3004 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
3005}
3006
3007static bool isInstantiationOf(UsingDecl *Pattern,
3008 UsingDecl *Instance,
3009 ASTContext &C) {
3010 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3011}
3012
John McCall7ba107a2009-11-18 02:36:19 +00003013static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3014 UsingDecl *Instance,
3015 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003016 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003017}
3018
3019static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003020 UsingDecl *Instance,
3021 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003022 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003023}
3024
John McCall52a575a2009-08-29 08:11:13 +00003025static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3026 VarDecl *Instance) {
3027 assert(Instance->isStaticDataMember());
3028
3029 Pattern = Pattern->getCanonicalDecl();
3030
3031 do {
3032 Instance = Instance->getCanonicalDecl();
3033 if (Pattern == Instance) return true;
3034 Instance = Instance->getInstantiatedFromStaticDataMember();
3035 } while (Instance);
3036
3037 return false;
3038}
3039
John McCalled976492009-12-04 22:46:56 +00003040// Other is the prospective instantiation
3041// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003042static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003043 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003044 if (UnresolvedUsingTypenameDecl *UUD
3045 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3046 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3047 return isInstantiationOf(UUD, UD, Ctx);
3048 }
3049 }
3050
3051 if (UnresolvedUsingValueDecl *UUD
3052 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003053 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3054 return isInstantiationOf(UUD, UD, Ctx);
3055 }
3056 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003057
Anders Carlsson0d8df782009-08-29 19:37:28 +00003058 return false;
3059 }
Mike Stump1eb44332009-09-09 15:08:12 +00003060
John McCall52a575a2009-08-29 08:11:13 +00003061 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3062 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003063
John McCall52a575a2009-08-29 08:11:13 +00003064 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3065 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003066
John McCall52a575a2009-08-29 08:11:13 +00003067 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3068 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003069
Douglas Gregor7caa6822009-07-24 20:34:43 +00003070 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003071 if (Var->isStaticDataMember())
3072 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3073
3074 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3075 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003076
Douglas Gregor0d696532009-09-28 06:34:35 +00003077 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3078 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3079
Douglas Gregored9c0f92009-10-29 00:04:11 +00003080 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3081 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3082 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3083 PartialSpec);
3084
Anders Carlssond8b285f2009-09-01 04:26:58 +00003085 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3086 if (!Field->getDeclName()) {
3087 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003088 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003089 cast<FieldDecl>(D);
3090 }
3091 }
Mike Stump1eb44332009-09-09 15:08:12 +00003092
John McCalled976492009-12-04 22:46:56 +00003093 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3094 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3095
3096 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3097 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3098
Douglas Gregor815215d2009-05-27 05:35:12 +00003099 return D->getDeclName() && isa<NamedDecl>(Other) &&
3100 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3101}
3102
3103template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003104static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003105 NamedDecl *D,
3106 ForwardIterator first,
3107 ForwardIterator last) {
3108 for (; first != last; ++first)
3109 if (isInstantiationOf(Ctx, D, *first))
3110 return cast<NamedDecl>(*first);
3111
3112 return 0;
3113}
3114
John McCall02cace72009-08-28 07:59:38 +00003115/// \brief Finds the instantiation of the given declaration context
3116/// within the current instantiation.
3117///
3118/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003119DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003120 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003121 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003122 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003123 return cast_or_null<DeclContext>(ID);
3124 } else return DC;
3125}
3126
Douglas Gregored961e72009-05-27 17:54:46 +00003127/// \brief Find the instantiation of the given declaration within the
3128/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003129///
3130/// This routine is intended to be used when \p D is a declaration
3131/// referenced from within a template, that needs to mapped into the
3132/// corresponding declaration within an instantiation. For example,
3133/// given:
3134///
3135/// \code
3136/// template<typename T>
3137/// struct X {
3138/// enum Kind {
3139/// KnownValue = sizeof(T)
3140/// };
3141///
3142/// bool getKind() const { return KnownValue; }
3143/// };
3144///
3145/// template struct X<int>;
3146/// \endcode
3147///
3148/// In the instantiation of X<int>::getKind(), we need to map the
3149/// EnumConstantDecl for KnownValue (which refers to
3150/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003151/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3152/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003153NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003154 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003155 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003156 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003157 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003158 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003159 // D is a local of some kind. Look into the map of local
3160 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003161 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3162 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3163 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003164
Chris Lattner57ad3782011-02-17 20:34:02 +00003165 if (Found) {
3166 if (Decl *FD = Found->dyn_cast<Decl *>())
3167 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003168
Chris Lattner57ad3782011-02-17 20:34:02 +00003169 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3170 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3171 }
3172
3173 // If we didn't find the decl, then we must have a label decl that hasn't
3174 // been found yet. Lazily instantiate it and return it now.
3175 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003176
Chris Lattner57ad3782011-02-17 20:34:02 +00003177 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3178 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003179
Chris Lattner57ad3782011-02-17 20:34:02 +00003180 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3181 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003182 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003183
Douglas Gregore95b4092009-09-16 18:34:49 +00003184 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3185 if (!Record->isDependentContext())
3186 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003187
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003188 // Determine whether this record is the "templated" declaration describing
3189 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003190 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003191 if (ClassTemplate)
3192 ClassTemplate = ClassTemplate->getCanonicalDecl();
3193 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3194 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3195 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3196
3197 // Walk the current context to find either the record or an instantiation of
3198 // it.
3199 DeclContext *DC = CurContext;
3200 while (!DC->isFileContext()) {
3201 // If we're performing substitution while we're inside the template
3202 // definition, we'll find our own context. We're done.
3203 if (DC->Equals(Record))
3204 return Record;
3205
3206 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3207 // Check whether we're in the process of instantiating a class template
3208 // specialization of the template we're mapping.
3209 if (ClassTemplateSpecializationDecl *InstSpec
3210 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3211 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3212 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3213 return InstRecord;
3214 }
3215
3216 // Check whether we're in the process of instantiating a member class.
3217 if (isInstantiationOf(Record, InstRecord))
3218 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003219 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003220
3221
3222 // Move to the outer template scope.
3223 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3224 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3225 DC = FD->getLexicalDeclContext();
3226 continue;
3227 }
John McCall52a575a2009-08-29 08:11:13 +00003228 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003229
3230 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003231 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003232
Douglas Gregore95b4092009-09-16 18:34:49 +00003233 // Fall through to deal with other dependent record types (e.g.,
3234 // anonymous unions in class templates).
3235 }
John McCall52a575a2009-08-29 08:11:13 +00003236
Douglas Gregore95b4092009-09-16 18:34:49 +00003237 if (!ParentDC->isDependentContext())
3238 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003239
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003240 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003241 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003242 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003243
Douglas Gregor815215d2009-05-27 05:35:12 +00003244 if (ParentDC != D->getDeclContext()) {
3245 // We performed some kind of instantiation in the parent context,
3246 // so now we need to look into the instantiated parent context to
3247 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003248
John McCall3cb0ebd2010-03-10 03:28:59 +00003249 // If our context used to be dependent, we may need to instantiate
3250 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003251 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003252 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003253 if (!Spec->isDependentContext()) {
3254 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003255 const RecordType *Tag = T->getAs<RecordType>();
3256 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003257 if (Tag->isBeingDefined())
3258 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003259 if (!Tag->isBeingDefined() &&
3260 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3261 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003262
3263 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003264 }
3265 }
3266
Douglas Gregor815215d2009-05-27 05:35:12 +00003267 NamedDecl *Result = 0;
3268 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003269 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003270 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3271 } else {
3272 // Since we don't have a name for the entity we're looking for,
3273 // our only option is to walk through all of the declarations to
3274 // find that name. This will occur in a few cases:
3275 //
3276 // - anonymous struct/union within a template
3277 // - unnamed class/struct/union/enum within a template
3278 //
3279 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003280 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003281 ParentDC->decls_begin(),
3282 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003283 }
Mike Stump1eb44332009-09-09 15:08:12 +00003284
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003285 if (!Result) {
3286 if (isa<UsingShadowDecl>(D)) {
3287 // UsingShadowDecls can instantiate to nothing because of using hiding.
3288 } else if (Diags.hasErrorOccurred()) {
3289 // We've already complained about something, so most likely this
3290 // declaration failed to instantiate. There's no point in complaining
3291 // further, since this is normal in invalid code.
3292 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003293 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003294 // instantiated, and we haven't gotten around to instantiating this
3295 // member yet. This can happen when the code uses forward declarations
3296 // of member classes, and introduces ordering dependencies via
3297 // template instantiation.
3298 Diag(Loc, diag::err_member_not_yet_instantiated)
3299 << D->getDeclName()
3300 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3301 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3302 } else {
3303 // We should have found something, but didn't.
3304 llvm_unreachable("Unable to find instantiation of declaration!");
3305 }
3306 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003307
Douglas Gregor815215d2009-05-27 05:35:12 +00003308 D = Result;
3309 }
3310
Douglas Gregor815215d2009-05-27 05:35:12 +00003311 return D;
3312}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003313
Mike Stump1eb44332009-09-09 15:08:12 +00003314/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003315/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003316void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003317 // Load pending instantiations from the external source.
3318 if (!LocalOnly && ExternalSource) {
3319 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3320 ExternalSource->ReadPendingInstantiations(Pending);
3321 PendingInstantiations.insert(PendingInstantiations.begin(),
3322 Pending.begin(), Pending.end());
3323 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003324
Douglas Gregor60406be2010-01-16 22:29:39 +00003325 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003326 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003327 PendingImplicitInstantiation Inst;
3328
3329 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003330 Inst = PendingInstantiations.front();
3331 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003332 } else {
3333 Inst = PendingLocalImplicitInstantiations.front();
3334 PendingLocalImplicitInstantiations.pop_front();
3335 }
Mike Stump1eb44332009-09-09 15:08:12 +00003336
Douglas Gregor7caa6822009-07-24 20:34:43 +00003337 // Instantiate function definitions
3338 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003339 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3340 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003341 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3342 TSK_ExplicitInstantiationDefinition;
3343 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3344 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003345 continue;
3346 }
Mike Stump1eb44332009-09-09 15:08:12 +00003347
Douglas Gregor7caa6822009-07-24 20:34:43 +00003348 // Instantiate static data member definitions.
3349 VarDecl *Var = cast<VarDecl>(Inst.first);
3350 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003351
Chandler Carruth291b4412010-02-13 10:17:50 +00003352 // Don't try to instantiate declarations if the most recent redeclaration
3353 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003354 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003355 continue;
3356
3357 // Check if the most recent declaration has changed the specialization kind
3358 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003359 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003360 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003361 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003362 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003363 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003364 continue; // No longer need to instantiate this type.
3365 case TSK_ExplicitInstantiationDefinition:
3366 // We only need an instantiation if the pending instantiation *is* the
3367 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003368 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003369 case TSK_ImplicitInstantiation:
3370 break;
3371 }
3372
John McCallf312b1e2010-08-26 23:41:50 +00003373 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3374 "instantiating static data member "
3375 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003376
Chandler Carruth58e390e2010-08-25 08:27:02 +00003377 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3378 TSK_ExplicitInstantiationDefinition;
3379 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3380 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003381 }
3382}
John McCall0c01d182010-03-24 05:22:00 +00003383
3384void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3385 const MultiLevelTemplateArgumentList &TemplateArgs) {
3386 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3387 E = Pattern->ddiag_end(); I != E; ++I) {
3388 DependentDiagnostic *DD = *I;
3389
3390 switch (DD->getKind()) {
3391 case DependentDiagnostic::Access:
3392 HandleDependentAccessCheck(*DD, TemplateArgs);
3393 break;
3394 }
3395 }
3396}