blob: 1f879838052ee345109df6f3f42865736ea5183b [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
Chandler Carruth4ced79f2010-06-25 03:22:07 +000060// FIXME: Is this still too simple?
John McCall1d8d1cc2010-08-01 02:01:53 +000061void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
Rafael Espindola19f74ac2011-07-06 15:46:09 +000062 const Decl *Tmpl, Decl *New) {
Sean Huntcf807c42010-08-18 23:23:40 +000063 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
64 i != e; ++i) {
65 const Attr *TmplAttr = *i;
Chandler Carruth4ced79f2010-06-25 03:22:07 +000066 // FIXME: This should be generalized to more than just the AlignedAttr.
67 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000068 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000069 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000070 // The alignment expression is a constant expression.
71 EnterExpressionEvaluationContext Unevaluated(*this,
72 Sema::ConstantEvaluated);
73
John McCall60d7b3a2010-08-24 06:29:42 +000074 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000075 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000076 if (!Result.isInvalid())
77 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>());
Richard Smithf6702a32011-12-20 02:08:33 +000078 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000079 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000081 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000082 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000083 if (Result)
84 AddAlignedAttr(Aligned->getLocation(), New, Result);
85 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000086 continue;
87 }
88 }
89
Anders Carlssond8fe2d52009-11-07 06:07:58 +000090 // FIXME: Is cloning correct for all attributes?
John McCall1d8d1cc2010-08-01 02:01:53 +000091 Attr *NewAttr = TmplAttr->clone(Context);
Anders Carlssond8fe2d52009-11-07 06:07:58 +000092 New->addAttr(NewAttr);
93 }
94}
95
Douglas Gregor4f722be2009-03-25 15:45:12 +000096Decl *
97TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +000098 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +000099}
100
101Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000102TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
103 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
104 D->getIdentifier());
105 Owner->addDecl(Inst);
106 return Inst;
107}
108
109Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000110TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000111 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000112}
113
John McCall3dbd3d52010-02-16 06:53:13 +0000114Decl *
115TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
116 NamespaceAliasDecl *Inst
117 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
118 D->getNamespaceLoc(),
119 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000120 D->getIdentifier(),
121 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000122 D->getTargetNameLoc(),
123 D->getNamespace());
124 Owner->addDecl(Inst);
125 return Inst;
126}
127
Richard Smith3e4c6c42011-05-05 21:57:07 +0000128Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
129 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000130 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000131 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000132 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000133 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000134 DI = SemaRef.SubstType(DI, TemplateArgs,
135 D->getLocation(), D->getDeclName());
136 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000137 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000138 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000139 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000140 } else {
141 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000142 }
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000145 TypedefNameDecl *Typedef;
146 if (IsTypeAlias)
147 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
148 D->getLocation(), D->getIdentifier(), DI);
149 else
150 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
151 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000152 if (Invalid)
153 Typedef->setInvalidDecl();
154
John McCallcde5a402011-02-01 08:20:08 +0000155 // If the old typedef was the name for linkage purposes of an anonymous
156 // tag decl, re-establish that relationship for the new typedef.
157 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
158 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000159 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000160 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000161 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
162 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000163 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000164 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000165
Richard Smith162e1c12011-04-15 14:24:37 +0000166 if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000167 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
168 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000169 if (!InstPrev)
170 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000171
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000172 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
173
174 // If the typedef types are not identical, reject them.
175 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
176
177 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000178 }
179
John McCall1d8d1cc2010-08-01 02:01:53 +0000180 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000181
John McCall46460a62010-01-20 21:53:11 +0000182 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000184 return Typedef;
185}
186
Richard Smith162e1c12011-04-15 14:24:37 +0000187Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000188 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
189 Owner->addDecl(Typedef);
190 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000191}
192
193Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000194 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
195 Owner->addDecl(Typedef);
196 return Typedef;
197}
198
199Decl *
200TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
201 // Create a local instantiation scope for this type alias template, which
202 // will contain the instantiations of the template parameters.
203 LocalInstantiationScope Scope(SemaRef);
204
205 TemplateParameterList *TempParams = D->getTemplateParameters();
206 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
207 if (!InstParams)
208 return 0;
209
210 TypeAliasDecl *Pattern = D->getTemplatedDecl();
211
212 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
213 if (Pattern->getPreviousDeclaration()) {
214 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
215 if (Found.first != Found.second) {
216 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
217 }
218 }
219
220 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
221 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
222 if (!AliasInst)
223 return 0;
224
225 TypeAliasTemplateDecl *Inst
226 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
227 D->getDeclName(), InstParams, AliasInst);
228 if (PrevAliasTemplate)
229 Inst->setPreviousDeclaration(PrevAliasTemplate);
230
231 Inst->setAccess(D->getAccess());
232
233 if (!PrevAliasTemplate)
234 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000235
Richard Smith3e4c6c42011-05-05 21:57:07 +0000236 Owner->addDecl(Inst);
237
238 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000239}
240
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000241/// \brief Instantiate an initializer, breaking it into separate
242/// initialization arguments.
243///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000244/// \param Init The initializer to instantiate.
245///
246/// \param TemplateArgs Template arguments to be substituted into the
247/// initializer.
248///
249/// \param NewArgs Will be filled in with the instantiation arguments.
250///
251/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000252bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000253 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000254 SourceLocation &LParenLoc,
255 ASTOwningVector<Expr*> &NewArgs,
256 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000257 NewArgs.clear();
258 LParenLoc = SourceLocation();
259 RParenLoc = SourceLocation();
260
261 if (!Init)
262 return false;
263
John McCall4765fa02010-12-06 08:20:24 +0000264 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000265 Init = ExprTemp->getSubExpr();
266
267 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
268 Init = Binder->getSubExpr();
269
270 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
271 Init = ICE->getSubExprAsWritten();
272
273 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
274 LParenLoc = ParenList->getLParenLoc();
275 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000276 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
277 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000278 }
279
280 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000281 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000282 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
283 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000284 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000285
Douglas Gregor28329e52010-03-24 21:22:47 +0000286 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000287 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000288 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000289 return false;
290 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000291 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000292
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000293 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000294 if (Result.isInvalid())
295 return true;
296
297 NewArgs.push_back(Result.takeAs<Expr>());
298 return false;
299}
300
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000301Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000302 // If this is the variable for an anonymous struct or union,
303 // instantiate the anonymous struct/union type first.
304 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
305 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
306 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
307 return 0;
308
John McCallce3ff2b2009-08-25 22:02:44 +0000309 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000310 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000311 TemplateArgs,
312 D->getTypeSpecStartLoc(),
313 D->getDeclName());
314 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000315 return 0;
316
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000317 if (DI->getType()->isFunctionType()) {
318 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
319 << D->isStaticDataMember() << DI->getType();
320 return 0;
321 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000322
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000323 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000324 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000325 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000327 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000328 D->getStorageClass(),
329 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000330 Var->setThreadSpecified(D->isThreadSpecified());
331 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000332 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCallb6217662010-03-15 10:12:16 +0000334 // Substitute the nested name specifier, if any.
335 if (SubstQualifier(D, Var))
336 return 0;
337
Mike Stump1eb44332009-09-09 15:08:12 +0000338 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000339 // out-of-line, the instantiation will have the same lexical
340 // context (which will be a namespace scope) as the template.
341 if (D->isOutOfLine())
342 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000343
John McCall46460a62010-01-20 21:53:11 +0000344 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000345
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000346 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000347 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000348 Var->setReferenced(D->isReferenced());
349 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000350
Mike Stump390b4cc2009-05-16 07:39:55 +0000351 // FIXME: In theory, we could have a previous declaration for variables that
352 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000353 // FIXME: having to fake up a LookupResult is dumb.
354 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000355 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000356 if (D->isStaticDataMember())
357 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000358
359 // In ARC, infer 'retaining' for variables of retainable type.
360 if (SemaRef.getLangOptions().ObjCAutoRefCount &&
361 SemaRef.inferObjCARCLifetime(Var))
362 Var->setInvalidDecl();
363
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000364 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Douglas Gregor7caa6822009-07-24 20:34:43 +0000366 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000367 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000368 Owner->makeDeclVisibleInContext(Var);
369 } else {
370 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000371 if (Owner->isFunctionOrMethod())
372 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000373 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000374 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000375
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000376 // Link instantiations of static data members back to the template from
377 // which they were instantiated.
378 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000379 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000380 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000381
Douglas Gregor60c93c92010-02-09 07:26:29 +0000382 if (Var->getAnyInitializer()) {
383 // We already have an initializer in the class.
384 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000385 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000386 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000387 else
388 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
389
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000390 // Instantiate the initializer.
391 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000392 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000393 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
394 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000395 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000396 // Attach the initializer to the declaration, if we have one.
397 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000398 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000399 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000400 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000401 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000402 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000403 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000404 RParenLoc,
405 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000406 } else {
407 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000408 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000409 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000410 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000411 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000412 // FIXME: Not too happy about invalidating the declaration
413 // because of a bogus initializer.
414 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000415 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000416
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000417 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000418 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
419 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000420 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000421
Richard Smithe3499ca2011-06-21 23:42:09 +0000422 // Diagnose unused local variables with dependent types, where the diagnostic
423 // will have been deferred.
424 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
425 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000426 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000427
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000428 return Var;
429}
430
Abramo Bagnara6206d532010-06-05 05:09:32 +0000431Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
432 AccessSpecDecl* AD
433 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
434 D->getAccessSpecifierLoc(), D->getColonLoc());
435 Owner->addHiddenDecl(AD);
436 return AD;
437}
438
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000439Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
440 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000441 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000442 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000443 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000444 DI = SemaRef.SubstType(DI, TemplateArgs,
445 D->getLocation(), D->getDeclName());
446 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000447 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000448 Invalid = true;
449 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000450 // C++ [temp.arg.type]p3:
451 // If a declaration acquires a function type through a type
452 // dependent on a template-parameter and this causes a
453 // declaration that does not use the syntactic form of a
454 // function declarator to have function type, the program is
455 // ill-formed.
456 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000457 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000458 Invalid = true;
459 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000460 } else {
461 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000462 }
463
464 Expr *BitWidth = D->getBitWidth();
465 if (Invalid)
466 BitWidth = 0;
467 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000468 // The bit-width expression is a constant expression.
469 EnterExpressionEvaluationContext Unevaluated(SemaRef,
470 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000471
John McCall60d7b3a2010-08-24 06:29:42 +0000472 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000473 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474 if (InstantiatedBitWidth.isInvalid()) {
475 Invalid = true;
476 BitWidth = 0;
477 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000478 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000479 }
480
John McCall07fb6be2009-10-22 23:33:21 +0000481 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
482 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000483 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000484 D->getLocation(),
485 D->isMutable(),
486 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000487 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000488 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000489 D->getAccess(),
490 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000491 if (!Field) {
492 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000493 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000494 }
Mike Stump1eb44332009-09-09 15:08:12 +0000495
John McCall1d8d1cc2010-08-01 02:01:53 +0000496 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000497
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000498 if (Invalid)
499 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000500
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000501 if (!Field->getDeclName()) {
502 // Keep track of where this decl came from.
503 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000504 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000505 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
506 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000507 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000508 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000509 }
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000511 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000512 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000513 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000514
515 return Field;
516}
517
Francois Pichet87c2e122010-11-21 06:08:52 +0000518Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
519 NamedDecl **NamedChain =
520 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
521
522 int i = 0;
523 for (IndirectFieldDecl::chain_iterator PI =
524 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000525 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000526 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000527 TemplateArgs);
528 if (!Next)
529 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000530
Douglas Gregorb7107222011-03-04 19:46:35 +0000531 NamedChain[i++] = Next;
532 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000533
Francois Pichet40e17752010-12-09 10:07:54 +0000534 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000535 IndirectFieldDecl* IndirectField
536 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000537 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000538 NamedChain, D->getChainingSize());
539
540
541 IndirectField->setImplicit(D->isImplicit());
542 IndirectField->setAccess(D->getAccess());
543 Owner->addDecl(IndirectField);
544 return IndirectField;
545}
546
John McCall02cace72009-08-28 07:59:38 +0000547Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000548 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000549 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000550 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000551 TypeSourceInfo *InstTy;
552 // If this is an unsupported friend, don't bother substituting template
553 // arguments into it. The actual type referred to won't be used by any
554 // parts of Clang, and may not be valid for instantiating. Just use the
555 // same info for the instantiated friend.
556 if (D->isUnsupportedFriend()) {
557 InstTy = Ty;
558 } else {
559 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
560 D->getLocation(), DeclarationName());
561 }
562 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000563 return 0;
John McCall02cace72009-08-28 07:59:38 +0000564
Abramo Bagnara0216df82011-10-29 20:52:52 +0000565 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
566 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000567 if (!FD)
568 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000569
Douglas Gregor06245bf2010-04-07 17:57:12 +0000570 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000571 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000572 Owner->addDecl(FD);
573 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000574 }
575
Douglas Gregor06245bf2010-04-07 17:57:12 +0000576 NamedDecl *ND = D->getFriendDecl();
577 assert(ND && "friend decl must be a decl or a type!");
578
John McCallaf2094e2010-04-08 09:05:18 +0000579 // All of the Visit implementations for the various potential friend
580 // declarations have to be carefully written to work for friend
581 // objects, with the most important detail being that the target
582 // decl should almost certainly not be placed in Owner.
583 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000584 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
John McCall02cace72009-08-28 07:59:38 +0000586 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000587 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000588 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000589 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000590 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000591 Owner->addDecl(FD);
592 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000593}
594
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000595Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
596 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Richard Smithf6702a32011-12-20 02:08:33 +0000598 // The expression in a static assertion is a constant expression.
599 EnterExpressionEvaluationContext Unevaluated(SemaRef,
600 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000601
John McCall60d7b3a2010-08-24 06:29:42 +0000602 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000603 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000604 if (InstantiatedAssertExpr.isInvalid())
605 return 0;
606
John McCall60d7b3a2010-08-24 06:29:42 +0000607 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000608 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000609 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000610 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000611 Message.get(),
612 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000613}
614
615Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000616 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000617 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000618 /*PrevDecl=*/0, D->isScoped(),
619 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000620 if (D->isFixed()) {
621 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
622 // If we have type source information for the underlying type, it means it
623 // has been explicitly set by the user. Perform substitution on it before
624 // moving on.
625 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
626 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
627 TemplateArgs,
628 UnderlyingLoc,
629 DeclarationName()));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000630
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000631 if (!Enum->getIntegerTypeSourceInfo())
632 Enum->setIntegerType(SemaRef.Context.IntTy);
633 }
634 else {
635 assert(!D->getIntegerType()->isDependentType()
636 && "Dependent type without type source info");
637 Enum->setIntegerType(D->getIntegerType());
638 }
639 }
640
John McCall5b629aa2010-10-22 23:36:17 +0000641 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
642
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000643 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000644 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000645 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000646 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000647 Enum->startDefinition();
648
Douglas Gregor96084f12010-03-01 19:00:07 +0000649 if (D->getDeclContext()->isFunctionOrMethod())
650 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000651
Chris Lattner5f9e2722011-07-23 10:55:15 +0000652 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000653
654 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000655 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
656 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000657 EC != ECEnd; ++EC) {
658 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000659 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000660 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000661 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000662 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000663 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000664
John McCallce3ff2b2009-08-25 22:02:44 +0000665 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000666 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667
668 // Drop the initial value and continue.
669 bool isInvalid = false;
670 if (Value.isInvalid()) {
671 Value = SemaRef.Owned((Expr *)0);
672 isInvalid = true;
673 }
674
Mike Stump1eb44332009-09-09 15:08:12 +0000675 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000676 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
677 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000678 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000679
680 if (isInvalid) {
681 if (EnumConst)
682 EnumConst->setInvalidDecl();
683 Enum->setInvalidDecl();
684 }
685
686 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000687 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
688
John McCall3b85ecf2010-01-23 22:37:59 +0000689 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000690 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000691 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000692 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000693
Douglas Gregor96084f12010-03-01 19:00:07 +0000694 if (D->getDeclContext()->isFunctionOrMethod()) {
695 // If the enumeration is within a function or method, record the enum
696 // constant as a local.
697 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
698 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000699 }
700 }
Mike Stump1eb44332009-09-09 15:08:12 +0000701
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000702 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000703 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000704 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000705 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000706 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000707 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000708
709 return Enum;
710}
711
Douglas Gregor6477b692009-03-25 15:04:13 +0000712Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000713 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000714}
715
John McCalle29ba202009-08-20 01:44:21 +0000716Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000717 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
718
Douglas Gregor550d9b22009-10-31 17:21:17 +0000719 // Create a local instantiation scope for this class template, which
720 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000721 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000722 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000723 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000724 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000725 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000726
727 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000728
729 // Instantiate the qualifier. We have to do this first in case
730 // we're a friend declaration, because if we are then we need to put
731 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000732 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
733 if (QualifierLoc) {
734 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
735 TemplateArgs);
736 if (!QualifierLoc)
737 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000738 }
739
740 CXXRecordDecl *PrevDecl = 0;
741 ClassTemplateDecl *PrevClassTemplate = 0;
742
Nick Lewycky37574f52010-11-08 23:29:42 +0000743 if (!isFriend && Pattern->getPreviousDeclaration()) {
744 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
745 if (Found.first != Found.second) {
746 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
747 if (PrevClassTemplate)
748 PrevDecl = PrevClassTemplate->getTemplatedDecl();
749 }
750 }
751
John McCall93ba8572010-03-25 06:39:04 +0000752 // If this isn't a friend, then it's a member template, in which
753 // case we just want to build the instantiation in the
754 // specialization. If it is a friend, we want to build it in
755 // the appropriate context.
756 DeclContext *DC = Owner;
757 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000758 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000759 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000760 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000761 DC = SemaRef.computeDeclContext(SS);
762 if (!DC) return 0;
763 } else {
764 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
765 Pattern->getDeclContext(),
766 TemplateArgs);
767 }
768
769 // Look for a previous declaration of the template in the owning
770 // context.
771 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
772 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
773 SemaRef.LookupQualifiedName(R, DC);
774
775 if (R.isSingleResult()) {
776 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
777 if (PrevClassTemplate)
778 PrevDecl = PrevClassTemplate->getTemplatedDecl();
779 }
780
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000781 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000782 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000783 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000784 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000785 return 0;
786 }
787
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000788 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000789 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000790 bool Complain = true;
791
792 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
793 // template for struct std::tr1::__detail::_Map_base, where the
794 // template parameters of the friend declaration don't match the
795 // template parameters of the original declaration. In this one
796 // case, we don't complain about the ill-formed friend
797 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000798 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000799 Pattern->getIdentifier()->isStr("_Map_base") &&
800 DC->isNamespace() &&
801 cast<NamespaceDecl>(DC)->getIdentifier() &&
802 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
803 DeclContext *DCParent = DC->getParent();
804 if (DCParent->isNamespace() &&
805 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
806 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
807 DeclContext *DCParent2 = DCParent->getParent();
808 if (DCParent2->isNamespace() &&
809 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
810 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
811 DCParent2->getParent()->isTranslationUnit())
812 Complain = false;
813 }
814 }
815
John McCall93ba8572010-03-25 06:39:04 +0000816 TemplateParameterList *PrevParams
817 = PrevClassTemplate->getTemplateParameters();
818
819 // Make sure the parameter lists match.
820 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000821 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000822 Sema::TPL_TemplateMatch)) {
823 if (Complain)
824 return 0;
825
826 AdoptedPreviousTemplateParams = true;
827 InstParams = PrevParams;
828 }
John McCall93ba8572010-03-25 06:39:04 +0000829
830 // Do some additional validation, then merge default arguments
831 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000832 if (!AdoptedPreviousTemplateParams &&
833 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000834 Sema::TPC_ClassTemplate))
835 return 0;
836 }
837 }
838
John McCalle29ba202009-08-20 01:44:21 +0000839 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000840 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000841 Pattern->getLocStart(), Pattern->getLocation(),
842 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000843 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000844
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000845 if (QualifierLoc)
846 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000847
John McCalle29ba202009-08-20 01:44:21 +0000848 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000849 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
850 D->getIdentifier(), InstParams, RecordInst,
851 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000852 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000853
John McCall93ba8572010-03-25 06:39:04 +0000854 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000855 if (PrevClassTemplate)
856 Inst->setAccess(PrevClassTemplate->getAccess());
857 else
858 Inst->setAccess(D->getAccess());
859
John McCall93ba8572010-03-25 06:39:04 +0000860 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
861 // TODO: do we want to track the instantiation progeny of this
862 // friend target decl?
863 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000864 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000865 if (!PrevClassTemplate)
866 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000867 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000868
Douglas Gregorf0510d42009-10-12 23:11:44 +0000869 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000870 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000871 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000872
Douglas Gregor259571e2009-10-30 22:42:42 +0000873 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000874 if (isFriend) {
875 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000876 Inst->setLexicalDeclContext(Owner);
877 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000878 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000879 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000880
Abramo Bagnara4c515482011-11-26 13:33:46 +0000881 if (D->isOutOfLine()) {
882 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
883 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
884 }
885
John McCalle29ba202009-08-20 01:44:21 +0000886 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000887
888 if (!PrevClassTemplate) {
889 // Queue up any out-of-line partial specializations of this member
890 // class template; the client will force their instantiation once
891 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000892 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000893 D->getPartialSpecializations(PartialSpecs);
894 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
895 if (PartialSpecs[I]->isOutOfLine())
896 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
897 }
898
John McCalle29ba202009-08-20 01:44:21 +0000899 return Inst;
900}
901
Douglas Gregord60e1052009-08-27 16:57:43 +0000902Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000903TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
904 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000905 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000906
Douglas Gregored9c0f92009-10-29 00:04:11 +0000907 // Lookup the already-instantiated declaration in the instantiation
908 // of the class template and return that.
909 DeclContext::lookup_result Found
910 = Owner->lookup(ClassTemplate->getDeclName());
911 if (Found.first == Found.second)
912 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000913
Douglas Gregored9c0f92009-10-29 00:04:11 +0000914 ClassTemplateDecl *InstClassTemplate
915 = dyn_cast<ClassTemplateDecl>(*Found.first);
916 if (!InstClassTemplate)
917 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000918
Douglas Gregord65587f2010-11-10 19:44:59 +0000919 if (ClassTemplatePartialSpecializationDecl *Result
920 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
921 return Result;
922
923 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000924}
925
926Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000927TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000928 // Create a local instantiation scope for this function template, which
929 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000930 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000931 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000932 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000933
Douglas Gregord60e1052009-08-27 16:57:43 +0000934 TemplateParameterList *TempParams = D->getTemplateParameters();
935 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000936 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000937 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000938
Douglas Gregora735b202009-10-13 14:39:41 +0000939 FunctionDecl *Instantiated = 0;
940 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000941 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000942 InstParams));
943 else
944 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000945 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000946 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000947
Douglas Gregora735b202009-10-13 14:39:41 +0000948 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000949 return 0;
950
John McCall46460a62010-01-20 21:53:11 +0000951 Instantiated->setAccess(D->getAccess());
952
Mike Stump1eb44332009-09-09 15:08:12 +0000953 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000954 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000955 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000956 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000957 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000958 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000959 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000960
John McCallb1a56e72010-03-26 23:10:15 +0000961 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
962
John McCalle976ffe2009-12-14 23:19:40 +0000963 // Link the instantiation back to the pattern *unless* this is a
964 // non-definition friend declaration.
965 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000966 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000967 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000968
John McCallb1a56e72010-03-26 23:10:15 +0000969 // Make declarations visible in the appropriate context.
970 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000971 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000972
Douglas Gregord60e1052009-08-27 16:57:43 +0000973 return InstTemplate;
974}
975
Douglas Gregord475b8d2009-03-25 21:17:03 +0000976Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
977 CXXRecordDecl *PrevDecl = 0;
978 if (D->isInjectedClassName())
979 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000980 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000981 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
982 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000983 TemplateArgs);
984 if (!Prev) return 0;
985 PrevDecl = cast<CXXRecordDecl>(Prev);
986 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000987
988 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000989 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000990 D->getLocStart(), D->getLocation(),
991 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000992
993 // Substitute the nested name specifier, if any.
994 if (SubstQualifier(D, Record))
995 return 0;
996
Douglas Gregord475b8d2009-03-25 21:17:03 +0000997 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000998 // FIXME: Check against AS_none is an ugly hack to work around the issue that
999 // the tag decls introduced by friend class declarations don't have an access
1000 // specifier. Remove once this area of the code gets sorted out.
1001 if (D->getAccess() != AS_none)
1002 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001003 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001004 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001005
John McCall02cace72009-08-28 07:59:38 +00001006 // If the original function was part of a friend declaration,
1007 // inherit its namespace state.
1008 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
1009 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
1010
Douglas Gregor9901c572010-05-21 00:31:19 +00001011 // Make sure that anonymous structs and unions are recorded.
1012 if (D->isAnonymousStructOrUnion()) {
1013 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001014 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001015 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1016 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001017
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001018 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001019 return Record;
1020}
1021
John McCall02cace72009-08-28 07:59:38 +00001022/// Normal class members are of more specific types and therefore
1023/// don't make it here. This function serves two purposes:
1024/// 1) instantiating function templates
1025/// 2) substituting friend declarations
1026/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001027Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001028 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001029 // Check whether there is already a function template specialization for
1030 // this declaration.
1031 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1032 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001033 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001034 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001035 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001036
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001037 FunctionDecl *SpecFunc
1038 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1039 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Douglas Gregor127102b2009-06-29 20:59:39 +00001041 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001042 if (SpecFunc)
1043 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001044 }
Mike Stump1eb44332009-09-09 15:08:12 +00001045
John McCallb0cb0222010-03-27 05:57:59 +00001046 bool isFriend;
1047 if (FunctionTemplate)
1048 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1049 else
1050 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1051
Douglas Gregor79c22782010-01-16 20:21:20 +00001052 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001053 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001054 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001055 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001056 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Chris Lattner5f9e2722011-07-23 10:55:15 +00001058 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001059 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001060 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001061 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001062 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001063
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001064 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1065 if (QualifierLoc) {
1066 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1067 TemplateArgs);
1068 if (!QualifierLoc)
1069 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001070 }
1071
John McCall68b6b872010-02-06 01:50:47 +00001072 // If we're instantiating a local function declaration, put the result
1073 // in the owner; otherwise we need to find the instantiated context.
1074 DeclContext *DC;
1075 if (D->getDeclContext()->isFunctionOrMethod())
1076 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001077 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001078 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001079 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001080 DC = SemaRef.computeDeclContext(SS);
1081 if (!DC) return 0;
1082 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001083 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001084 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001085 }
John McCall68b6b872010-02-06 01:50:47 +00001086
John McCall02cace72009-08-28 07:59:38 +00001087 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001088 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1089 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001090 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001091 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001092 /*isConstexpr*/ false);
John McCallb6217662010-03-15 10:12:16 +00001093
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001094 if (QualifierLoc)
1095 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001096
John McCallb1a56e72010-03-26 23:10:15 +00001097 DeclContext *LexicalDC = Owner;
1098 if (!isFriend && D->isOutOfLine()) {
1099 assert(D->getDeclContext()->isFileContext());
1100 LexicalDC = D->getDeclContext();
1101 }
1102
1103 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001104
Douglas Gregore53060f2009-06-25 22:08:12 +00001105 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001106 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001107 // Adopt the already-instantiated parameters into our own context.
1108 for (unsigned P = 0; P < Params.size(); ++P)
1109 if (Params[P])
1110 Params[P]->setOwningFunction(Function);
1111 } else {
1112 // Since we were instantiated via a typedef of a function type, create
1113 // new parameters.
1114 const FunctionProtoType *Proto
1115 = Function->getType()->getAs<FunctionProtoType>();
1116 assert(Proto && "No function prototype in template instantiation?");
1117 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1118 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1119 ParmVarDecl *Param
1120 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1121 *AI);
1122 Param->setScopeInfo(0, Params.size());
1123 Params.push_back(Param);
1124 }
1125 }
David Blaikie4278c652011-09-21 18:16:56 +00001126 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001127
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001128 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001129 if (TemplateParams) {
1130 // Our resulting instantiation is actually a function template, since we
1131 // are substituting only the outer template parameters. For example, given
1132 //
1133 // template<typename T>
1134 // struct X {
1135 // template<typename U> friend void f(T, U);
1136 // };
1137 //
1138 // X<int> x;
1139 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001140 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001141 // which means substituting int for T, but leaving "f" as a friend function
1142 // template.
1143 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001144 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001145 Function->getLocation(),
1146 Function->getDeclName(),
1147 TemplateParams, Function);
1148 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001149
1150 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001151
1152 if (isFriend && D->isThisDeclarationADefinition()) {
1153 // TODO: should we remember this connection regardless of whether
1154 // the friend declaration provided a body?
1155 FunctionTemplate->setInstantiatedFromMemberTemplate(
1156 D->getDescribedFunctionTemplate());
1157 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001158 } else if (FunctionTemplate) {
1159 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001160 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001161 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001162 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001163 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001164 Innermost.first,
1165 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001166 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001167 } else if (isFriend) {
1168 // Note, we need this connection even if the friend doesn't have a body.
1169 // Its body may exist but not have been attached yet due to deferred
1170 // parsing.
1171 // FIXME: It might be cleaner to set this when attaching the body to the
1172 // friend function declaration, however that would require finding all the
1173 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001174 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001175 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001176
Douglas Gregore53060f2009-06-25 22:08:12 +00001177 if (InitFunctionInstantiation(Function, D))
1178 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001179
John McCallaf2094e2010-04-08 09:05:18 +00001180 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001181
John McCall68263142009-11-18 22:49:29 +00001182 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1183 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1184
John McCallaf2094e2010-04-08 09:05:18 +00001185 if (DependentFunctionTemplateSpecializationInfo *Info
1186 = D->getDependentSpecializationInfo()) {
1187 assert(isFriend && "non-friend has dependent specialization info?");
1188
1189 // This needs to be set now for future sanity.
1190 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1191
1192 // Instantiate the explicit template arguments.
1193 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1194 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001195 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1196 ExplicitArgs, TemplateArgs))
1197 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001198
1199 // Map the candidate templates to their instantiations.
1200 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1201 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1202 Info->getTemplate(I),
1203 TemplateArgs);
1204 if (!Temp) return 0;
1205
1206 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1207 }
1208
1209 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1210 &ExplicitArgs,
1211 Previous))
1212 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001213
John McCallaf2094e2010-04-08 09:05:18 +00001214 isExplicitSpecialization = true;
1215
1216 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001217 // Look only into the namespace where the friend would be declared to
1218 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001219 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001220 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001221
Douglas Gregora735b202009-10-13 14:39:41 +00001222 // In C++, the previous declaration we find might be a tag type
1223 // (class or enum). In this case, the new declaration will hide the
1224 // tag type. Note that this does does not apply if we're declaring a
1225 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001226 if (Previous.isSingleTagDecl())
1227 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001228 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001229
John McCall9f54ad42009-12-10 09:41:52 +00001230 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001231 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001232
John McCall76d32642010-04-24 01:30:58 +00001233 NamedDecl *PrincipalDecl = (TemplateParams
1234 ? cast<NamedDecl>(FunctionTemplate)
1235 : Function);
1236
Douglas Gregora735b202009-10-13 14:39:41 +00001237 // If the original function was part of a friend declaration,
1238 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001239 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001240 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001241 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001242 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001243 else
Douglas Gregora735b202009-10-13 14:39:41 +00001244 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001245
1246 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1247 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001248
Gabor Greif77535df2010-08-30 22:25:56 +00001249 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001250
Richard Smith53e53512011-10-19 00:54:10 +00001251 // C++98 [temp.friend]p5: When a function is defined in a friend function
1252 // declaration in a class template, the function is defined at each
1253 // instantiation of the class template. The function is defined even if it
1254 // is never used.
1255 // C++11 [temp.friend]p4: When a function is defined in a friend function
1256 // declaration in a class template, the function is instantiated when the
1257 // function is odr-used.
1258 //
1259 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1260 // redefinition, but don't instantiate the function.
1261 if ((!SemaRef.getLangOptions().CPlusPlus0x ||
1262 SemaRef.Diags.getDiagnosticLevel(
1263 diag::warn_cxx98_compat_friend_redefinition,
1264 Function->getLocation())
1265 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001266 D->isThisDeclarationADefinition()) {
1267 // Check for a function body.
1268 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001269 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001270 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001271 SemaRef.Diag(Function->getLocation(),
1272 SemaRef.getLangOptions().CPlusPlus0x ?
1273 diag::warn_cxx98_compat_friend_redefinition :
1274 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001275 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001276 if (!SemaRef.getLangOptions().CPlusPlus0x)
1277 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001278 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001279 // Check for redefinitions due to other instantiations of this or
1280 // a similar friend function.
1281 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1282 REnd = Function->redecls_end();
1283 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001284 if (*R == Function)
1285 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001286 switch (R->getFriendObjectKind()) {
1287 case Decl::FOK_None:
Richard Smith53e53512011-10-19 00:54:10 +00001288 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1289 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001290 if (MemberSpecializationInfo *MSInfo
1291 = Function->getMemberSpecializationInfo()) {
1292 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1293 SourceLocation Loc = R->getLocation(); // FIXME
1294 MSInfo->setPointOfInstantiation(Loc);
1295 SemaRef.PendingLocalImplicitInstantiations.push_back(
1296 std::make_pair(Function, Loc));
1297 queuedInstantiation = true;
1298 }
1299 }
1300 }
1301 break;
1302 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001303 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001304 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001305 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001306 SemaRef.Diag(Function->getLocation(),
1307 SemaRef.getLangOptions().CPlusPlus0x ?
1308 diag::warn_cxx98_compat_friend_redefinition :
1309 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001310 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001311 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001312 if (!SemaRef.getLangOptions().CPlusPlus0x)
1313 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001314 break;
1315 }
1316 }
1317 }
1318 }
Douglas Gregora735b202009-10-13 14:39:41 +00001319 }
1320
John McCall76d32642010-04-24 01:30:58 +00001321 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1322 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1323 PrincipalDecl->setNonMemberOperator();
1324
Sean Hunteb88ae52011-05-23 21:07:59 +00001325 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001326 return Function;
1327}
1328
Douglas Gregord60e1052009-08-27 16:57:43 +00001329Decl *
1330TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001331 TemplateParameterList *TemplateParams,
1332 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001333 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1334 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001335 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001336 // We are creating a function template specialization from a function
1337 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001338 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001339 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001340 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001341
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001342 FunctionDecl *SpecFunc
1343 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1344 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Douglas Gregor6b906862009-08-21 00:16:32 +00001346 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001347 if (SpecFunc)
1348 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001349 }
1350
John McCallb0cb0222010-03-27 05:57:59 +00001351 bool isFriend;
1352 if (FunctionTemplate)
1353 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1354 else
1355 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1356
Douglas Gregor79c22782010-01-16 20:21:20 +00001357 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001358 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001359 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001360 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001361
John McCall4eab39f2010-10-19 02:26:41 +00001362 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001363 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001364 unsigned NumTempParamLists = 0;
1365 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1366 TempParamLists.set_size(NumTempParamLists);
1367 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1368 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1369 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1370 if (!InstParams)
1371 return NULL;
1372 TempParamLists[I] = InstParams;
1373 }
1374 }
1375
Chris Lattner5f9e2722011-07-23 10:55:15 +00001376 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001377 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1378 TInfo = SubstFunctionType(D, Params);
1379 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001380 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001381 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001382
Abramo Bagnara723df242010-12-14 22:11:44 +00001383 // \brief If the type of this function, after ignoring parentheses,
1384 // is not *directly* a function type, then we're instantiating a function
1385 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001386 //
1387 // typedef int functype(int, int);
1388 // functype func;
1389 //
1390 // In this case, we'll just go instantiate the ParmVarDecls that we
1391 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001392 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001393 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001394 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001395 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1396 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001397 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001398 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001399 }
1400
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001401 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1402 if (QualifierLoc) {
1403 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001404 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001405 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001406 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001407 }
1408
1409 DeclContext *DC = Owner;
1410 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001411 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001412 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001413 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001414 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001415
1416 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1417 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001418 } else {
1419 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1420 D->getDeclContext(),
1421 TemplateArgs);
1422 }
1423 if (!DC) return 0;
1424 }
1425
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001426 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001427 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001428 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001429
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001430 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001431 DeclarationNameInfo NameInfo
1432 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001433 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001434 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001435 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001436 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001437 Constructor->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001438 false, /*isConstexpr*/ false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001439 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001440 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001441 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001442 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001443 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001444 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001445 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001446 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001447 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001448 Conversion->isExplicit(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001449 /*isConstexpr*/ false,
1450 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001451 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001452 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001453 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001454 D->isStatic(),
1455 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001456 D->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001457 /*isConstexpr*/ false, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001458 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001459
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001460 if (QualifierLoc)
1461 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001462
Douglas Gregord60e1052009-08-27 16:57:43 +00001463 if (TemplateParams) {
1464 // Our resulting instantiation is actually a function template, since we
1465 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001466 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001467 // template<typename T>
1468 // struct X {
1469 // template<typename U> void f(T, U);
1470 // };
1471 //
1472 // X<int> x;
1473 //
1474 // We are instantiating the member template "f" within X<int>, which means
1475 // substituting int for T, but leaving "f" as a member function template.
1476 // Build the function template itself.
1477 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1478 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001479 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001480 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001481 if (isFriend) {
1482 FunctionTemplate->setLexicalDeclContext(Owner);
1483 FunctionTemplate->setObjectOfFriendDecl(true);
1484 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001485 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001486 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001487 } else if (FunctionTemplate) {
1488 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001489 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001490 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001491 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001492 TemplateArgumentList::CreateCopy(SemaRef.Context,
1493 Innermost.first,
1494 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001495 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001496 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001497 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001498 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001499 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001500
Mike Stump1eb44332009-09-09 15:08:12 +00001501 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001502 // out-of-line, the instantiation will have the same lexical
1503 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001504 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001505 if (NumTempParamLists)
1506 Method->setTemplateParameterListsInfo(SemaRef.Context,
1507 NumTempParamLists,
1508 TempParamLists.data());
1509
John McCallb0cb0222010-03-27 05:57:59 +00001510 Method->setLexicalDeclContext(Owner);
1511 Method->setObjectOfFriendDecl(true);
1512 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001513 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001514
Douglas Gregor5545e162009-03-24 00:38:23 +00001515 // Attach the parameters
1516 for (unsigned P = 0; P < Params.size(); ++P)
1517 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001518 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001519
1520 if (InitMethodInstantiation(Method, D))
1521 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001522
Abramo Bagnara25777432010-08-11 22:01:17 +00001523 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1524 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001525
John McCallb0cb0222010-03-27 05:57:59 +00001526 if (!FunctionTemplate || TemplateParams || isFriend) {
1527 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001528
Douglas Gregordec06662009-08-21 18:42:58 +00001529 // In C++, the previous declaration we find might be a tag type
1530 // (class or enum). In this case, the new declaration will hide the
1531 // tag type. Note that this does does not apply if we're declaring a
1532 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001533 if (Previous.isSingleTagDecl())
1534 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001535 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001536
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001537 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001538 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001539
Douglas Gregor4ba31362009-12-01 17:24:26 +00001540 if (D->isPure())
1541 SemaRef.CheckPureMethod(Method, SourceRange());
1542
John McCall46460a62010-01-20 21:53:11 +00001543 Method->setAccess(D->getAccess());
1544
Anders Carlsson9eefa222011-01-20 06:52:44 +00001545 SemaRef.CheckOverrideControl(Method);
1546
Eli Friedman3bc45152011-11-15 22:39:08 +00001547 // If a function is defined as defaulted or deleted, mark it as such now.
1548 if (D->isDefaulted())
1549 Method->setDefaulted();
1550 if (D->isDeletedAsWritten())
1551 Method->setDeletedAsWritten();
1552
John McCallb0cb0222010-03-27 05:57:59 +00001553 if (FunctionTemplate) {
1554 // If there's a function template, let our caller handle it.
1555 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1556 // Don't hide a (potentially) valid declaration with an invalid one.
1557 } else {
1558 NamedDecl *DeclToAdd = (TemplateParams
1559 ? cast<NamedDecl>(FunctionTemplate)
1560 : Method);
1561 if (isFriend)
1562 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001563 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001564 Owner->addDecl(DeclToAdd);
1565 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001566
1567 if (D->isExplicitlyDefaulted()) {
1568 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1569 } else {
1570 assert(!D->isDefaulted() &&
1571 "should not implicitly default uninstantiated function");
1572 }
1573
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001574 return Method;
1575}
1576
Douglas Gregor615c5d42009-03-24 16:43:20 +00001577Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001578 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001579}
1580
Douglas Gregor03b2b072009-03-24 00:15:49 +00001581Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001582 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001583}
1584
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001585Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001586 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001587}
1588
Douglas Gregor6477b692009-03-25 15:04:13 +00001589ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001590 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1591 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001592}
1593
John McCalle29ba202009-08-20 01:44:21 +00001594Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1595 TemplateTypeParmDecl *D) {
1596 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001597 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001598
John McCalle29ba202009-08-20 01:44:21 +00001599 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001600 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1601 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001602 D->getDepth() - TemplateArgs.getNumLevels(),
1603 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001604 D->wasDeclaredWithTypename(),
1605 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001606 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001607
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001608 if (D->hasDefaultArgument())
1609 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1610
1611 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001612 // scope.
1613 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001614
John McCalle29ba202009-08-20 01:44:21 +00001615 return Inst;
1616}
1617
Douglas Gregor33642df2009-10-23 23:25:44 +00001618Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1619 NonTypeTemplateParmDecl *D) {
1620 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001621 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001622 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1623 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001624 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001625 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001626 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001627 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001628
1629 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001630 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001631 // expansion of types. Substitute into each of the expanded types.
1632 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1633 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1634 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1635 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1636 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001637 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001638 D->getDeclName());
1639 if (!NewDI)
1640 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001641
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001642 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1643 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1644 D->getLocation());
1645 if (NewT.isNull())
1646 return 0;
1647 ExpandedParameterPackTypes.push_back(NewT);
1648 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001649
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001650 IsExpandedParameterPack = true;
1651 DI = D->getTypeSourceInfo();
1652 T = DI->getType();
1653 } else if (isa<PackExpansionTypeLoc>(TL)) {
1654 // The non-type template parameter pack's type is a pack expansion of types.
1655 // Determine whether we need to expand this parameter pack into separate
1656 // types.
1657 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1658 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001659 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001660 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001661
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001662 // Determine whether the set of unexpanded parameter packs can and should
1663 // be expanded.
1664 bool Expand = true;
1665 bool RetainExpansion = false;
1666 llvm::Optional<unsigned> OrigNumExpansions
1667 = Expansion.getTypePtr()->getNumExpansions();
1668 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1669 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1670 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001671 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001672 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001673 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001674 NumExpansions))
1675 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001676
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001677 if (Expand) {
1678 for (unsigned I = 0; I != *NumExpansions; ++I) {
1679 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1680 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001681 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001682 D->getDeclName());
1683 if (!NewDI)
1684 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001685
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001686 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1687 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1688 NewDI->getType(),
1689 D->getLocation());
1690 if (NewT.isNull())
1691 return 0;
1692 ExpandedParameterPackTypes.push_back(NewT);
1693 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001694
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001695 // Note that we have an expanded parameter pack. The "type" of this
1696 // expanded parameter pack is the original expansion type, but callers
1697 // will end up using the expanded parameter pack types for type-checking.
1698 IsExpandedParameterPack = true;
1699 DI = D->getTypeSourceInfo();
1700 T = DI->getType();
1701 } else {
1702 // We cannot fully expand the pack expansion now, so substitute into the
1703 // pattern and create a new pack expansion type.
1704 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1705 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001706 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001707 D->getDeclName());
1708 if (!NewPattern)
1709 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001710
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001711 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1712 NumExpansions);
1713 if (!DI)
1714 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001715
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001716 T = DI->getType();
1717 }
1718 } else {
1719 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001720 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001721 D->getLocation(), D->getDeclName());
1722 if (!DI)
1723 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001724
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001725 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001726 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001727 D->getLocation());
1728 if (T.isNull()) {
1729 T = SemaRef.Context.IntTy;
1730 Invalid = true;
1731 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001732 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001733
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001734 NonTypeTemplateParmDecl *Param;
1735 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001736 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001737 D->getInnerLocStart(),
1738 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001739 D->getDepth() - TemplateArgs.getNumLevels(),
1740 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001741 D->getIdentifier(), T,
1742 DI,
1743 ExpandedParameterPackTypes.data(),
1744 ExpandedParameterPackTypes.size(),
1745 ExpandedParameterPackTypesAsWritten.data());
1746 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001747 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001748 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001749 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001750 D->getDepth() - TemplateArgs.getNumLevels(),
1751 D->getPosition(),
1752 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001753 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001754
Douglas Gregor9a299e02011-03-04 17:52:15 +00001755 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001756 if (Invalid)
1757 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001758
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001759 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001760
1761 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001762 // scope.
1763 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001764 return Param;
1765}
1766
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001767Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001768TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1769 TemplateTemplateParmDecl *D) {
1770 // Instantiate the template parameter list of the template template parameter.
1771 TemplateParameterList *TempParams = D->getTemplateParameters();
1772 TemplateParameterList *InstParams;
1773 {
1774 // Perform the actual substitution of template parameters within a new,
1775 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001776 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001777 InstParams = SubstTemplateParams(TempParams);
1778 if (!InstParams)
1779 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001780 }
1781
Douglas Gregor9106ef72009-11-11 16:58:32 +00001782 // Build the template template parameter.
1783 TemplateTemplateParmDecl *Param
1784 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001785 D->getDepth() - TemplateArgs.getNumLevels(),
1786 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001787 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001788 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001789 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001790
1791 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001792 // scope.
1793 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001794
Douglas Gregor9106ef72009-11-11 16:58:32 +00001795 return Param;
1796}
1797
Douglas Gregor48c32a72009-11-17 06:07:40 +00001798Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001799 // Using directives are never dependent (and never contain any types or
1800 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001801
Douglas Gregor48c32a72009-11-17 06:07:40 +00001802 UsingDirectiveDecl *Inst
1803 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001804 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001805 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001806 D->getIdentLocation(),
1807 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001808 D->getCommonAncestor());
1809 Owner->addDecl(Inst);
1810 return Inst;
1811}
1812
John McCalled976492009-12-04 22:46:56 +00001813Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001814
1815 // The nested name specifier may be dependent, for example
1816 // template <typename T> struct t {
1817 // struct s1 { T f1(); };
1818 // struct s2 : s1 { using s1::f1; };
1819 // };
1820 // template struct t<int>;
1821 // Here, in using s1::f1, s1 refers to t<T>::s1;
1822 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001823 NestedNameSpecifierLoc QualifierLoc
1824 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1825 TemplateArgs);
1826 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001827 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001828
1829 // The name info is non-dependent, so no transformation
1830 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001831 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001832
John McCall9f54ad42009-12-10 09:41:52 +00001833 // We only need to do redeclaration lookups if we're in a class
1834 // scope (in fact, it's not really even possible in non-class
1835 // scopes).
1836 bool CheckRedeclaration = Owner->isRecord();
1837
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001838 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1839 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001840
John McCalled976492009-12-04 22:46:56 +00001841 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001842 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001843 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001844 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001845 D->isTypeName());
1846
Douglas Gregor5149f372011-02-25 15:54:31 +00001847 CXXScopeSpec SS;
1848 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001849 if (CheckRedeclaration) {
1850 Prev.setHideTags(false);
1851 SemaRef.LookupQualifiedName(Prev, Owner);
1852
1853 // Check for invalid redeclarations.
1854 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1855 D->isTypeName(), SS,
1856 D->getLocation(), Prev))
1857 NewUD->setInvalidDecl();
1858
1859 }
1860
1861 if (!NewUD->isInvalidDecl() &&
1862 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001863 D->getLocation()))
1864 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001865
John McCalled976492009-12-04 22:46:56 +00001866 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1867 NewUD->setAccess(D->getAccess());
1868 Owner->addDecl(NewUD);
1869
John McCall9f54ad42009-12-10 09:41:52 +00001870 // Don't process the shadow decls for an invalid decl.
1871 if (NewUD->isInvalidDecl())
1872 return NewUD;
1873
John McCall323c3102009-12-22 22:26:37 +00001874 bool isFunctionScope = Owner->isFunctionOrMethod();
1875
John McCall9f54ad42009-12-10 09:41:52 +00001876 // Process the shadow decls.
1877 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1878 I != E; ++I) {
1879 UsingShadowDecl *Shadow = *I;
1880 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001881 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1882 Shadow->getLocation(),
1883 Shadow->getTargetDecl(),
1884 TemplateArgs));
1885 if (!InstTarget)
1886 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001887
1888 if (CheckRedeclaration &&
1889 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1890 continue;
1891
1892 UsingShadowDecl *InstShadow
1893 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1894 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001895
1896 if (isFunctionScope)
1897 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001898 }
John McCalled976492009-12-04 22:46:56 +00001899
1900 return NewUD;
1901}
1902
1903Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001904 // Ignore these; we handle them in bulk when processing the UsingDecl.
1905 return 0;
John McCalled976492009-12-04 22:46:56 +00001906}
1907
John McCall7ba107a2009-11-18 02:36:19 +00001908Decl * TemplateDeclInstantiator
1909 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001910 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001911 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001912 TemplateArgs);
1913 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001914 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001916 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001917 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001918
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001919 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1920 // Hence, no tranformation is required for it.
1921 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001922 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001923 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001924 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001925 /*instantiation*/ true,
1926 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001927 if (UD)
John McCalled976492009-12-04 22:46:56 +00001928 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1929
John McCall7ba107a2009-11-18 02:36:19 +00001930 return UD;
1931}
1932
1933Decl * TemplateDeclInstantiator
1934 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001935 NestedNameSpecifierLoc QualifierLoc
1936 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1937 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001938 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001939
John McCall7ba107a2009-11-18 02:36:19 +00001940 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001941 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001942
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001943 DeclarationNameInfo NameInfo
1944 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1945
John McCall7ba107a2009-11-18 02:36:19 +00001946 NamedDecl *UD =
1947 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001948 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001949 /*instantiation*/ true,
1950 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001951 if (UD)
John McCalled976492009-12-04 22:46:56 +00001952 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1953
Anders Carlsson0d8df782009-08-29 19:37:28 +00001954 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001955}
1956
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001957
1958Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1959 ClassScopeFunctionSpecializationDecl *Decl) {
1960 CXXMethodDecl *OldFD = Decl->getSpecialization();
1961 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1962
1963 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1964 Sema::ForRedeclaration);
1965
1966 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1967 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1968 NewFD->setInvalidDecl();
1969 return NewFD;
1970 }
1971
1972 // Associate the specialization with the pattern.
1973 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1974 assert(Specialization && "Class scope Specialization is null");
1975 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1976
1977 return NewFD;
1978}
1979
John McCallce3ff2b2009-08-25 22:02:44 +00001980Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001981 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001982 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001983 if (D->isInvalidDecl())
1984 return 0;
1985
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001986 return Instantiator.Visit(D);
1987}
1988
John McCalle29ba202009-08-20 01:44:21 +00001989/// \brief Instantiates a nested template parameter list in the current
1990/// instantiation context.
1991///
1992/// \param L The parameter list to instantiate
1993///
1994/// \returns NULL if there was an error
1995TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001996TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001997 // Get errors for all the parameters before bailing out.
1998 bool Invalid = false;
1999
2000 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002001 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002002 ParamVector Params;
2003 Params.reserve(N);
2004 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2005 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002006 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002007 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002008 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002009 }
2010
2011 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002012 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002013 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002014
2015 TemplateParameterList *InstL
2016 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2017 L->getLAngleLoc(), &Params.front(), N,
2018 L->getRAngleLoc());
2019 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002020}
John McCalle29ba202009-08-20 01:44:21 +00002021
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002022/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002023/// specialization.
2024///
2025/// \param ClassTemplate the (instantiated) class template that is partially
2026// specialized by the instantiation of \p PartialSpec.
2027///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002028/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002029/// specialization that we are instantiating.
2030///
Douglas Gregord65587f2010-11-10 19:44:59 +00002031/// \returns The instantiated partial specialization, if successful; otherwise,
2032/// NULL to indicate an error.
2033ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002034TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2035 ClassTemplateDecl *ClassTemplate,
2036 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002037 // Create a local instantiation scope for this class template partial
2038 // specialization, which will contain the instantiations of the template
2039 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002040 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002041
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042 // Substitute into the template parameters of the class template partial
2043 // specialization.
2044 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2045 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2046 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002047 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002048
Douglas Gregored9c0f92009-10-29 00:04:11 +00002049 // Substitute into the template arguments of the class template partial
2050 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002051 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002052 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2053 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002054 InstTemplateArgs, TemplateArgs))
2055 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002056
Douglas Gregored9c0f92009-10-29 00:04:11 +00002057 // Check that the template argument list is well-formed for this
2058 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002059 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002060 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002061 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002062 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002063 false,
2064 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002065 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002066
2067 // Figure out where to insert this class template partial specialization
2068 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002069 void *InsertPos = 0;
2070 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002071 = ClassTemplate->findPartialSpecialization(Converted.data(),
2072 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002073
Douglas Gregored9c0f92009-10-29 00:04:11 +00002074 // Build the canonical type that describes the converted template
2075 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002076 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002077 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002078 Converted.data(),
2079 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002080
2081 // Build the fully-sugared type for this class template
2082 // specialization as the user wrote in the specialization
2083 // itself. This means that we'll pretty-print the type retrieved
2084 // from the specialization's declaration the way that the user
2085 // actually wrote the specialization, rather than formatting the
2086 // name based on the "canonical" representation used to store the
2087 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002088 TypeSourceInfo *WrittenTy
2089 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2090 TemplateName(ClassTemplate),
2091 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002092 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002093 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002094
Douglas Gregored9c0f92009-10-29 00:04:11 +00002095 if (PrevDecl) {
2096 // We've already seen a partial specialization with the same template
2097 // parameters and template arguments. This can happen, for example, when
2098 // substituting the outer template arguments ends up causing two
2099 // class template partial specializations of a member class template
2100 // to have identical forms, e.g.,
2101 //
2102 // template<typename T, typename U>
2103 // struct Outer {
2104 // template<typename X, typename Y> struct Inner;
2105 // template<typename Y> struct Inner<T, Y>;
2106 // template<typename Y> struct Inner<U, Y>;
2107 // };
2108 //
2109 // Outer<int, int> outer; // error: the partial specializations of Inner
2110 // // have the same signature.
2111 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002112 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002113 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2114 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002115 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002116 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002117
2118
Douglas Gregored9c0f92009-10-29 00:04:11 +00002119 // Create the class template partial specialization declaration.
2120 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002121 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002122 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002123 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002124 PartialSpec->getLocStart(),
2125 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002126 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002127 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002128 Converted.data(),
2129 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002130 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002131 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002132 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002133 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002134 // Substitute the nested name specifier, if any.
2135 if (SubstQualifier(PartialSpec, InstPartialSpec))
2136 return 0;
2137
Douglas Gregored9c0f92009-10-29 00:04:11 +00002138 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002139 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002140
Douglas Gregored9c0f92009-10-29 00:04:11 +00002141 // Add this partial specialization to the set of class template partial
2142 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002143 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002144 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002145}
2146
John McCall21ef0fa2010-03-11 09:03:00 +00002147TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002148TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002149 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002150 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2151 assert(OldTInfo && "substituting function without type source info");
2152 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002153 TypeSourceInfo *NewTInfo
2154 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2155 D->getTypeSpecStartLoc(),
2156 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002157 if (!NewTInfo)
2158 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002159
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002160 if (NewTInfo != OldTInfo) {
2161 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002162 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002163 if (FunctionProtoTypeLoc *OldProtoLoc
2164 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002165 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002166 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2167 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002168 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2169 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2170 OldIdx != NumOldParams; ++OldIdx) {
2171 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2172 if (!OldParam->isParameterPack() ||
2173 (NewIdx < NumNewParams &&
2174 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002175 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002176 // instantiated to a (still-dependent) parameter pack.
2177 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2178 Params.push_back(NewParam);
2179 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2180 NewParam);
2181 continue;
2182 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002183
Douglas Gregor12c9c002011-01-07 16:43:16 +00002184 // Parameter pack: make the instantiation an argument pack.
2185 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2186 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002187 unsigned NumArgumentsInExpansion
2188 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2189 TemplateArgs);
2190 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002191 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2192 Params.push_back(NewParam);
2193 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2194 NewParam);
2195 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002196 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002197 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002198 } else {
2199 // The function type itself was not dependent and therefore no
2200 // substitution occurred. However, we still need to instantiate
2201 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002202 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002203 if (FunctionProtoTypeLoc *OldProtoLoc
2204 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2205 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2206 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2207 if (!Parm)
2208 return 0;
2209 Params.push_back(Parm);
2210 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002211 }
2212 }
John McCall21ef0fa2010-03-11 09:03:00 +00002213 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002214}
2215
Mike Stump1eb44332009-09-09 15:08:12 +00002216/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002217/// declaration (New) from the corresponding fields of its template (Tmpl).
2218///
2219/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002220bool
2221TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002222 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002223 if (Tmpl->isDeletedAsWritten())
2224 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002225
Douglas Gregorcca9e962009-07-01 22:01:06 +00002226 // If we are performing substituting explicitly-specified template arguments
2227 // or deduced template arguments into a function template and we reach this
2228 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002229 // to keeping the new function template specialization. We therefore
2230 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002231 // into a template instantiation for this specific function template
2232 // specialization, which is not a SFINAE context, so that we diagnose any
2233 // further errors in the declaration itself.
2234 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2235 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2236 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2237 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002238 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002239 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002240 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002241 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002242 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002243 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2244 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002245 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002246 }
2247 }
Mike Stump1eb44332009-09-09 15:08:12 +00002248
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002249 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2250 assert(Proto && "Function template without prototype?");
2251
Sebastian Redl60618fa2011-03-12 11:50:43 +00002252 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002253 // The function has an exception specification or a "noreturn"
2254 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002255 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002256 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2257 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002258 if (const PackExpansionType *PackExpansion
2259 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2260 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002261 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002262 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2263 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002264 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002265 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002266
Douglas Gregorb99268b2010-12-21 00:52:54 +00002267 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002268 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002269 llvm::Optional<unsigned> NumExpansions
2270 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002271 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002272 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002273 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002274 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002275 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002276 RetainExpansion,
2277 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002278 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002279
Douglas Gregorb99268b2010-12-21 00:52:54 +00002280 if (!Expand) {
2281 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002282 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002283 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002284 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002286 TemplateArgs,
2287 New->getLocation(), New->getDeclName());
2288 if (T.isNull())
2289 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002290
Douglas Gregorcded4f62011-01-14 17:04:44 +00002291 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002292 Exceptions.push_back(T);
2293 continue;
2294 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002295
Douglas Gregorb99268b2010-12-21 00:52:54 +00002296 // Substitute into the pack expansion pattern for each template
2297 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002298 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002299 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002300
2301 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002302 TemplateArgs,
2303 New->getLocation(), New->getDeclName());
2304 if (T.isNull()) {
2305 Invalid = true;
2306 break;
2307 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002308
Douglas Gregorb99268b2010-12-21 00:52:54 +00002309 Exceptions.push_back(T);
2310 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002311
Douglas Gregorb99268b2010-12-21 00:52:54 +00002312 if (Invalid)
2313 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002314
Douglas Gregorb99268b2010-12-21 00:52:54 +00002315 continue;
2316 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002317
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002318 QualType T
2319 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2320 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002321 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002322 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2323 continue;
2324
2325 Exceptions.push_back(T);
2326 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002327 Expr *NoexceptExpr = 0;
2328 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002329 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2330 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002331 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2332 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002333 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002334
Douglas Gregor5c340e82011-10-09 18:31:23 +00002335 if (E.isUsable()) {
2336 SourceLocation ErrLoc;
2337 llvm::APSInt NoexceptVal;
Sebastian Redl56fb9262011-03-14 18:51:50 +00002338 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002339 if (!NoexceptExpr->isTypeDependent() &&
2340 !NoexceptExpr->isValueDependent() &&
2341 !NoexceptExpr->isIntegerConstantExpr(NoexceptVal, SemaRef.Context,
2342 &ErrLoc, /*evaluated=*/false)){
2343 SemaRef.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression)
2344 << NoexceptExpr->getSourceRange();
2345 NoexceptExpr = 0;
2346 }
2347 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002348 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002349
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002350 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002351
John McCalle23cf432010-12-14 08:05:40 +00002352 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002353 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002354 EPI.NumExceptions = Exceptions.size();
2355 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002356 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002357 EPI.ExtInfo = Proto->getExtInfo();
2358
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002359 const FunctionProtoType *NewProto
2360 = New->getType()->getAs<FunctionProtoType>();
2361 assert(NewProto && "Template instantiation without function prototype?");
2362 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2363 NewProto->arg_type_begin(),
2364 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002365 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002366 }
2367
Richard Smith9f569cc2011-10-01 02:31:28 +00002368 // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2369 // a constexpr function template satisfies the requirements for a constexpr
2370 // function, then it is a constexpr function.
2371 if (Tmpl->isConstexpr() &&
2372 SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2373 New->setConstexpr(true);
2374
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002375 const FunctionDecl* Definition = Tmpl;
2376
2377 // Get the definition. Leaves the variable unchanged if undefined.
2378 Tmpl->isDefined(Definition);
2379
2380 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002381
Douglas Gregore53060f2009-06-25 22:08:12 +00002382 return false;
2383}
2384
Douglas Gregor5545e162009-03-24 00:38:23 +00002385/// \brief Initializes common fields of an instantiated method
2386/// declaration (New) from the corresponding fields of its template
2387/// (Tmpl).
2388///
2389/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002390bool
2391TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002392 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002393 if (InitFunctionInstantiation(New, Tmpl))
2394 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002395
Douglas Gregor5545e162009-03-24 00:38:23 +00002396 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002397 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002398 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002399
2400 // FIXME: attributes
2401 // FIXME: New needs a pointer to Tmpl
2402 return false;
2403}
Douglas Gregora58861f2009-05-13 20:28:22 +00002404
2405/// \brief Instantiate the definition of the given function from its
2406/// template.
2407///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002408/// \param PointOfInstantiation the point at which the instantiation was
2409/// required. Note that this is not precisely a "point of instantiation"
2410/// for the function, but it's close.
2411///
Douglas Gregora58861f2009-05-13 20:28:22 +00002412/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002413/// function template specialization or member function of a class template
2414/// specialization.
2415///
2416/// \param Recursive if true, recursively instantiates any functions that
2417/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002418///
2419/// \param DefinitionRequired if true, then we are performing an explicit
2420/// instantiation where the body of the function is required. Complain if
2421/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002422void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002423 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002424 bool Recursive,
2425 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002426 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002427 return;
2428
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002429 // Never instantiate an explicit specialization except if it is a class scope
2430 // explicit specialization.
2431 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2432 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002433 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002434
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002435 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002436 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002437 assert(PatternDecl && "instantiating a non-template");
2438
2439 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2440 assert(PatternDecl && "template definition is not a template");
2441 if (!Pattern) {
2442 // Try to find a defaulted definition
2443 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002444 }
Sean Huntf996e052011-05-27 20:00:14 +00002445 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002446
Francois Pichet8387e2a2011-04-22 22:18:13 +00002447 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002448 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002449 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002450 PendingInstantiations.push_back(
2451 std::make_pair(Function, PointOfInstantiation));
2452 return;
2453 }
2454
2455 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002456 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002457 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002458 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002459 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002460 Pattern = PatternDecl->getBody(PatternDecl);
2461 }
2462
Sean Huntf996e052011-05-27 20:00:14 +00002463 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002464 if (DefinitionRequired) {
2465 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002466 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002467 diag::err_explicit_instantiation_undefined_func_template)
2468 << Function->getPrimaryTemplate();
2469 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002470 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002471 diag::err_explicit_instantiation_undefined_member)
2472 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002473
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002474 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002475 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002476 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002477 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002478 } else if (Function->getTemplateSpecializationKind()
2479 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002480 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002481 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002482 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002483
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002484 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002485 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002486
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002487 // C++0x [temp.explicit]p9:
2488 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002489 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002490 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002491 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002492 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002493 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002494 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002495
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002496 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2497 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002498 return;
2499
Abramo Bagnarae9946242011-11-18 08:08:52 +00002500 // Copy the inner loc start from the pattern.
2501 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2502
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002503 // If we're performing recursive template instantiation, create our own
2504 // queue of pending implicit instantiations that we will instantiate later,
2505 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002506 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002507 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002508 if (Recursive) {
2509 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002510 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002511 }
Mike Stump1eb44332009-09-09 15:08:12 +00002512
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002513 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002514 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002515 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002516
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002517 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002518 // recorded, unless we're actually a member function within a local
2519 // class, in which case we need to merge our results with the parent
2520 // scope (of the enclosing function).
2521 bool MergeWithParentScope = false;
2522 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2523 MergeWithParentScope = Rec->isLocalClass();
2524
2525 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002526
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002527 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002528 // instantiation scope, and set the parameter names to those used
2529 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002530 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002531 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2532 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002533 if (!PatternParam->isParameterPack()) {
2534 // Simple case: not a parameter pack.
2535 assert(FParamIdx < Function->getNumParams());
2536 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2537 FunctionParam->setDeclName(PatternParam->getDeclName());
2538 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2539 ++FParamIdx;
2540 continue;
2541 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002542
Douglas Gregor12c9c002011-01-07 16:43:16 +00002543 // Expand the parameter pack.
2544 Scope.MakeInstantiatedLocalArgPack(PatternParam);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002545 for (unsigned NumFParams = Function->getNumParams();
2546 FParamIdx < NumFParams;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002547 ++FParamIdx) {
2548 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2549 FunctionParam->setDeclName(PatternParam->getDeclName());
2550 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2551 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002552 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002553
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002554 // Enter the scope of this instantiation. We don't use
2555 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002556 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002557
Mike Stump1eb44332009-09-09 15:08:12 +00002558 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002559 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002560
Sean Huntcd10dec2011-05-23 23:14:04 +00002561 if (PatternDecl->isDefaulted()) {
2562 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2563
2564 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002565 } else {
2566 // If this is a constructor, instantiate the member initializers.
2567 if (const CXXConstructorDecl *Ctor =
2568 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2569 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2570 TemplateArgs);
2571 }
2572
2573 // Instantiate the function body.
2574 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2575
2576 if (Body.isInvalid())
2577 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002578
Sean Huntcd10dec2011-05-23 23:14:04 +00002579 ActOnFinishFunctionBody(Function, Body.get(),
2580 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002581 }
2582
John McCall0c01d182010-03-24 05:22:00 +00002583 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2584
John McCalleee1d542011-02-14 07:13:47 +00002585 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002586
2587 DeclGroupRef DG(Function);
2588 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002589
Douglas Gregor60406be2010-01-16 22:29:39 +00002590 // This class may have local implicit instantiations that need to be
2591 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002592 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002593 Scope.Exit();
2594
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002595 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002596 // Define any pending vtables.
2597 DefineUsedVTables();
2598
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002599 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002600 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002601 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002602
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002603 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002604 assert(VTableUses.empty() &&
2605 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002606 VTableUses.swap(SavedVTableUses);
2607
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002608 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002609 assert(PendingInstantiations.empty() &&
2610 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002611 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002612 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002613}
2614
2615/// \brief Instantiate the definition of the given variable from its
2616/// template.
2617///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002618/// \param PointOfInstantiation the point at which the instantiation was
2619/// required. Note that this is not precisely a "point of instantiation"
2620/// for the function, but it's close.
2621///
2622/// \param Var the already-instantiated declaration of a static member
2623/// variable of a class template specialization.
2624///
2625/// \param Recursive if true, recursively instantiates any functions that
2626/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002627///
2628/// \param DefinitionRequired if true, then we are performing an explicit
2629/// instantiation where an out-of-line definition of the member variable
2630/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002631void Sema::InstantiateStaticDataMemberDefinition(
2632 SourceLocation PointOfInstantiation,
2633 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002634 bool Recursive,
2635 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002636 if (Var->isInvalidDecl())
2637 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002638
Douglas Gregor7caa6822009-07-24 20:34:43 +00002639 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002640 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002641 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002642 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002643 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002644
Douglas Gregor0d035142009-10-27 18:42:08 +00002645 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002646 // We did not find an out-of-line definition of this static data member,
2647 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002648 // instantiate this definition (or provide a specialization for it) in
2649 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002650 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002651 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002652 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002653 diag::err_explicit_instantiation_undefined_member)
2654 << 2 << Var->getDeclName() << Var->getDeclContext();
2655 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002656 } else if (Var->getTemplateSpecializationKind()
2657 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002658 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002659 std::make_pair(Var, PointOfInstantiation));
2660 }
2661
Douglas Gregor7caa6822009-07-24 20:34:43 +00002662 return;
2663 }
2664
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002665 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002666 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002667 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002668
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002669 // C++0x [temp.explicit]p9:
2670 // Except for inline functions, other explicit instantiation declarations
2671 // have the effect of suppressing the implicit instantiation of the entity
2672 // to which they refer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002673 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002674 == TSK_ExplicitInstantiationDeclaration)
2675 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002676
Douglas Gregorf15748a2011-06-03 03:35:07 +00002677 // If we already have a definition, we're done.
2678 if (Var->getDefinition())
2679 return;
2680
Douglas Gregor7caa6822009-07-24 20:34:43 +00002681 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2682 if (Inst)
2683 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002684
Douglas Gregor7caa6822009-07-24 20:34:43 +00002685 // If we're performing recursive template instantiation, create our own
2686 // queue of pending implicit instantiations that we will instantiate later,
2687 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002688 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002689 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002690 if (Recursive) {
2691 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002692 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002693 }
Mike Stump1eb44332009-09-09 15:08:12 +00002694
Douglas Gregor7caa6822009-07-24 20:34:43 +00002695 // Enter the scope of this instantiation. We don't use
2696 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002697 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002698
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002699 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002700 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002701 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002702
2703 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002704
2705 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002706 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2707 assert(MSInfo && "Missing member specialization information?");
2708 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2709 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002710 DeclGroupRef DG(Var);
2711 Consumer.HandleTopLevelDecl(DG);
2712 }
Mike Stump1eb44332009-09-09 15:08:12 +00002713
Douglas Gregor7caa6822009-07-24 20:34:43 +00002714 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002715 // Define any newly required vtables.
2716 DefineUsedVTables();
2717
Douglas Gregor7caa6822009-07-24 20:34:43 +00002718 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002719 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002720 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002721
Nick Lewycky81559102011-05-31 07:58:42 +00002722 // Restore the set of pending vtables.
2723 assert(VTableUses.empty() &&
2724 "VTableUses should be empty before it is discarded, "
2725 "while instantiating static data member.");
2726 VTableUses.swap(SavedVTableUses);
2727
Douglas Gregor7caa6822009-07-24 20:34:43 +00002728 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002729 assert(PendingInstantiations.empty() &&
2730 "PendingInstantiations should be empty before it is discarded, "
2731 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002732 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002733 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002734}
Douglas Gregor815215d2009-05-27 05:35:12 +00002735
Benjamin Kramer54dec5f2011-10-08 16:15:07 +00002736static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args,
2737 const CXXCtorInitializer *Init) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002738 // FIXME: This is a hack that will do slightly the wrong thing for an
2739 // initializer of the form foo({...}).
2740 // The right thing to do would be to modify InstantiateInitializer to create
2741 // the MultiInitializer.
2742 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2743 return MultiInitializer(Args[0]);
Sebastian Redlc046f302011-10-17 16:53:50 +00002744 return MultiInitializer(Init->getLParenLoc(), Args.data(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002745 Args.size(), Init->getRParenLoc());
2746}
2747
Anders Carlsson09025312009-08-29 05:16:22 +00002748void
2749Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2750 const CXXConstructorDecl *Tmpl,
2751 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002752
Richard Trieu90ab75b2011-09-09 03:18:59 +00002753 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002754 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002755
Anders Carlsson09025312009-08-29 05:16:22 +00002756 // Instantiate all the initializers.
2757 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002758 InitsEnd = Tmpl->init_end();
2759 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002760 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002761
Chandler Carruth030ef472010-09-03 21:54:20 +00002762 // Only instantiate written initializers, let Sema re-construct implicit
2763 // ones.
2764 if (!Init->isWritten())
2765 continue;
2766
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002767 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002768 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002769
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002770 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002771
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002772 if (Init->isPackExpansion()) {
2773 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002774 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002775 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002776 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2777 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002778 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002779 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002780 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002781 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002782 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002783 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002784 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002785 NumExpansions)) {
2786 AnyErrors = true;
2787 New->setInvalidDecl();
2788 continue;
2789 }
2790 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002791
2792 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002793 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002794 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2795
2796 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002797 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002798 LParenLoc, NewArgs, RParenLoc)) {
2799 AnyErrors = true;
2800 break;
2801 }
2802
2803 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002804 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002805 TemplateArgs,
2806 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002807 New->getDeclName());
2808 if (!BaseTInfo) {
2809 AnyErrors = true;
2810 break;
2811 }
2812
2813 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002814 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2815 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2816 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002817 New->getParent(),
2818 SourceLocation());
2819 if (NewInit.isInvalid()) {
2820 AnyErrors = true;
2821 break;
2822 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002823
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002824 NewInits.push_back(NewInit.get());
2825 NewArgs.clear();
2826 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002827
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002828 continue;
2829 }
2830
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002831 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002832 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002833 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002834 AnyErrors = true;
2835 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002836 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002837
Anders Carlsson09025312009-08-29 05:16:22 +00002838 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002839 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2840 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2841 TemplateArgs,
2842 Init->getSourceLocation(),
2843 New->getDeclName());
2844 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002845 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002846 New->setInvalidDecl();
2847 continue;
2848 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002849
2850 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
Douglas Gregor76852c22011-11-01 01:16:03 +00002851
2852 if (Init->isBaseInitializer())
2853 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, MultiInit,
2854 New->getParent(), EllipsisLoc);
2855 else
2856 NewInit = BuildDelegatingInitializer(TInfo, MultiInit,
2857 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002858 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002859 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002860 Init->getMemberLocation(),
2861 Init->getMember(),
2862 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002863 if (!Member) {
2864 AnyErrors = true;
2865 New->setInvalidDecl();
2866 continue;
2867 }
Mike Stump1eb44332009-09-09 15:08:12 +00002868
Sebastian Redl6df65482011-09-24 17:48:25 +00002869 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2870 NewInit = BuildMemberInitializer(Member, MultiInit,
2871 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002872 } else if (Init->isIndirectMemberInitializer()) {
2873 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002874 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002875 Init->getMemberLocation(),
2876 Init->getIndirectMember(), TemplateArgs));
2877
Douglas Gregorb7107222011-03-04 19:46:35 +00002878 if (!IndirectMember) {
2879 AnyErrors = true;
2880 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002881 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002882 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002883
2884 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2885 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2886 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002887 }
2888
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002889 if (NewInit.isInvalid()) {
2890 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002891 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002892 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002893 // FIXME: It would be nice if ASTOwningVector had a release function.
2894 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002895
Richard Trieu90ab75b2011-09-09 03:18:59 +00002896 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002897 }
2898 }
Mike Stump1eb44332009-09-09 15:08:12 +00002899
Anders Carlsson09025312009-08-29 05:16:22 +00002900 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002901 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002902 /*FIXME: ColonLoc */
2903 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002904 NewInits.data(), NewInits.size(),
2905 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002906}
2907
John McCall52a575a2009-08-29 08:11:13 +00002908// TODO: this could be templated if the various decl types used the
2909// same method name.
2910static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2911 ClassTemplateDecl *Instance) {
2912 Pattern = Pattern->getCanonicalDecl();
2913
2914 do {
2915 Instance = Instance->getCanonicalDecl();
2916 if (Pattern == Instance) return true;
2917 Instance = Instance->getInstantiatedFromMemberTemplate();
2918 } while (Instance);
2919
2920 return false;
2921}
2922
Douglas Gregor0d696532009-09-28 06:34:35 +00002923static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2924 FunctionTemplateDecl *Instance) {
2925 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002926
Douglas Gregor0d696532009-09-28 06:34:35 +00002927 do {
2928 Instance = Instance->getCanonicalDecl();
2929 if (Pattern == Instance) return true;
2930 Instance = Instance->getInstantiatedFromMemberTemplate();
2931 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002932
Douglas Gregor0d696532009-09-28 06:34:35 +00002933 return false;
2934}
2935
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002936static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002937isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2938 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002939 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002940 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2941 do {
2942 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2943 Instance->getCanonicalDecl());
2944 if (Pattern == Instance)
2945 return true;
2946 Instance = Instance->getInstantiatedFromMember();
2947 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002948
Douglas Gregored9c0f92009-10-29 00:04:11 +00002949 return false;
2950}
2951
John McCall52a575a2009-08-29 08:11:13 +00002952static bool isInstantiationOf(CXXRecordDecl *Pattern,
2953 CXXRecordDecl *Instance) {
2954 Pattern = Pattern->getCanonicalDecl();
2955
2956 do {
2957 Instance = Instance->getCanonicalDecl();
2958 if (Pattern == Instance) return true;
2959 Instance = Instance->getInstantiatedFromMemberClass();
2960 } while (Instance);
2961
2962 return false;
2963}
2964
2965static bool isInstantiationOf(FunctionDecl *Pattern,
2966 FunctionDecl *Instance) {
2967 Pattern = Pattern->getCanonicalDecl();
2968
2969 do {
2970 Instance = Instance->getCanonicalDecl();
2971 if (Pattern == Instance) return true;
2972 Instance = Instance->getInstantiatedFromMemberFunction();
2973 } while (Instance);
2974
2975 return false;
2976}
2977
2978static bool isInstantiationOf(EnumDecl *Pattern,
2979 EnumDecl *Instance) {
2980 Pattern = Pattern->getCanonicalDecl();
2981
2982 do {
2983 Instance = Instance->getCanonicalDecl();
2984 if (Pattern == Instance) return true;
2985 Instance = Instance->getInstantiatedFromMemberEnum();
2986 } while (Instance);
2987
2988 return false;
2989}
2990
John McCalled976492009-12-04 22:46:56 +00002991static bool isInstantiationOf(UsingShadowDecl *Pattern,
2992 UsingShadowDecl *Instance,
2993 ASTContext &C) {
2994 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2995}
2996
2997static bool isInstantiationOf(UsingDecl *Pattern,
2998 UsingDecl *Instance,
2999 ASTContext &C) {
3000 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3001}
3002
John McCall7ba107a2009-11-18 02:36:19 +00003003static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3004 UsingDecl *Instance,
3005 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003006 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003007}
3008
3009static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003010 UsingDecl *Instance,
3011 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003012 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003013}
3014
John McCall52a575a2009-08-29 08:11:13 +00003015static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3016 VarDecl *Instance) {
3017 assert(Instance->isStaticDataMember());
3018
3019 Pattern = Pattern->getCanonicalDecl();
3020
3021 do {
3022 Instance = Instance->getCanonicalDecl();
3023 if (Pattern == Instance) return true;
3024 Instance = Instance->getInstantiatedFromStaticDataMember();
3025 } while (Instance);
3026
3027 return false;
3028}
3029
John McCalled976492009-12-04 22:46:56 +00003030// Other is the prospective instantiation
3031// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003032static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003033 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003034 if (UnresolvedUsingTypenameDecl *UUD
3035 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3036 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3037 return isInstantiationOf(UUD, UD, Ctx);
3038 }
3039 }
3040
3041 if (UnresolvedUsingValueDecl *UUD
3042 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003043 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3044 return isInstantiationOf(UUD, UD, Ctx);
3045 }
3046 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003047
Anders Carlsson0d8df782009-08-29 19:37:28 +00003048 return false;
3049 }
Mike Stump1eb44332009-09-09 15:08:12 +00003050
John McCall52a575a2009-08-29 08:11:13 +00003051 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3052 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003053
John McCall52a575a2009-08-29 08:11:13 +00003054 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3055 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003056
John McCall52a575a2009-08-29 08:11:13 +00003057 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3058 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003059
Douglas Gregor7caa6822009-07-24 20:34:43 +00003060 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003061 if (Var->isStaticDataMember())
3062 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3063
3064 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3065 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003066
Douglas Gregor0d696532009-09-28 06:34:35 +00003067 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3068 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3069
Douglas Gregored9c0f92009-10-29 00:04:11 +00003070 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3071 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3072 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3073 PartialSpec);
3074
Anders Carlssond8b285f2009-09-01 04:26:58 +00003075 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3076 if (!Field->getDeclName()) {
3077 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003078 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003079 cast<FieldDecl>(D);
3080 }
3081 }
Mike Stump1eb44332009-09-09 15:08:12 +00003082
John McCalled976492009-12-04 22:46:56 +00003083 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3084 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3085
3086 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3087 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3088
Douglas Gregor815215d2009-05-27 05:35:12 +00003089 return D->getDeclName() && isa<NamedDecl>(Other) &&
3090 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3091}
3092
3093template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003094static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003095 NamedDecl *D,
3096 ForwardIterator first,
3097 ForwardIterator last) {
3098 for (; first != last; ++first)
3099 if (isInstantiationOf(Ctx, D, *first))
3100 return cast<NamedDecl>(*first);
3101
3102 return 0;
3103}
3104
John McCall02cace72009-08-28 07:59:38 +00003105/// \brief Finds the instantiation of the given declaration context
3106/// within the current instantiation.
3107///
3108/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003109DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003110 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003111 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003112 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003113 return cast_or_null<DeclContext>(ID);
3114 } else return DC;
3115}
3116
Douglas Gregored961e72009-05-27 17:54:46 +00003117/// \brief Find the instantiation of the given declaration within the
3118/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003119///
3120/// This routine is intended to be used when \p D is a declaration
3121/// referenced from within a template, that needs to mapped into the
3122/// corresponding declaration within an instantiation. For example,
3123/// given:
3124///
3125/// \code
3126/// template<typename T>
3127/// struct X {
3128/// enum Kind {
3129/// KnownValue = sizeof(T)
3130/// };
3131///
3132/// bool getKind() const { return KnownValue; }
3133/// };
3134///
3135/// template struct X<int>;
3136/// \endcode
3137///
3138/// In the instantiation of X<int>::getKind(), we need to map the
3139/// EnumConstantDecl for KnownValue (which refers to
3140/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003141/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3142/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003143NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003144 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003145 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003146 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003147 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003148 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003149 // D is a local of some kind. Look into the map of local
3150 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003151 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3152 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3153 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003154
Chris Lattner57ad3782011-02-17 20:34:02 +00003155 if (Found) {
3156 if (Decl *FD = Found->dyn_cast<Decl *>())
3157 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003158
Chris Lattner57ad3782011-02-17 20:34:02 +00003159 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3160 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3161 }
3162
3163 // If we didn't find the decl, then we must have a label decl that hasn't
3164 // been found yet. Lazily instantiate it and return it now.
3165 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003166
Chris Lattner57ad3782011-02-17 20:34:02 +00003167 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3168 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003169
Chris Lattner57ad3782011-02-17 20:34:02 +00003170 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3171 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003172 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003173
Douglas Gregore95b4092009-09-16 18:34:49 +00003174 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3175 if (!Record->isDependentContext())
3176 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003177
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003178 // Determine whether this record is the "templated" declaration describing
3179 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003180 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003181 if (ClassTemplate)
3182 ClassTemplate = ClassTemplate->getCanonicalDecl();
3183 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3184 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3185 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3186
3187 // Walk the current context to find either the record or an instantiation of
3188 // it.
3189 DeclContext *DC = CurContext;
3190 while (!DC->isFileContext()) {
3191 // If we're performing substitution while we're inside the template
3192 // definition, we'll find our own context. We're done.
3193 if (DC->Equals(Record))
3194 return Record;
3195
3196 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3197 // Check whether we're in the process of instantiating a class template
3198 // specialization of the template we're mapping.
3199 if (ClassTemplateSpecializationDecl *InstSpec
3200 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3201 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3202 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3203 return InstRecord;
3204 }
3205
3206 // Check whether we're in the process of instantiating a member class.
3207 if (isInstantiationOf(Record, InstRecord))
3208 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003209 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003210
3211
3212 // Move to the outer template scope.
3213 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3214 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3215 DC = FD->getLexicalDeclContext();
3216 continue;
3217 }
John McCall52a575a2009-08-29 08:11:13 +00003218 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003219
3220 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003221 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003222
Douglas Gregore95b4092009-09-16 18:34:49 +00003223 // Fall through to deal with other dependent record types (e.g.,
3224 // anonymous unions in class templates).
3225 }
John McCall52a575a2009-08-29 08:11:13 +00003226
Douglas Gregore95b4092009-09-16 18:34:49 +00003227 if (!ParentDC->isDependentContext())
3228 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003229
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003230 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003231 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003232 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003233
Douglas Gregor815215d2009-05-27 05:35:12 +00003234 if (ParentDC != D->getDeclContext()) {
3235 // We performed some kind of instantiation in the parent context,
3236 // so now we need to look into the instantiated parent context to
3237 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003238
John McCall3cb0ebd2010-03-10 03:28:59 +00003239 // If our context used to be dependent, we may need to instantiate
3240 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003241 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003242 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003243 if (!Spec->isDependentContext()) {
3244 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003245 const RecordType *Tag = T->getAs<RecordType>();
3246 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003247 if (Tag->isBeingDefined())
3248 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003249 if (!Tag->isBeingDefined() &&
3250 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3251 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003252
3253 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003254 }
3255 }
3256
Douglas Gregor815215d2009-05-27 05:35:12 +00003257 NamedDecl *Result = 0;
3258 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003259 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003260 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3261 } else {
3262 // Since we don't have a name for the entity we're looking for,
3263 // our only option is to walk through all of the declarations to
3264 // find that name. This will occur in a few cases:
3265 //
3266 // - anonymous struct/union within a template
3267 // - unnamed class/struct/union/enum within a template
3268 //
3269 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003270 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003271 ParentDC->decls_begin(),
3272 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003273 }
Mike Stump1eb44332009-09-09 15:08:12 +00003274
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003275 if (!Result) {
3276 if (isa<UsingShadowDecl>(D)) {
3277 // UsingShadowDecls can instantiate to nothing because of using hiding.
3278 } else if (Diags.hasErrorOccurred()) {
3279 // We've already complained about something, so most likely this
3280 // declaration failed to instantiate. There's no point in complaining
3281 // further, since this is normal in invalid code.
3282 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003283 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003284 // instantiated, and we haven't gotten around to instantiating this
3285 // member yet. This can happen when the code uses forward declarations
3286 // of member classes, and introduces ordering dependencies via
3287 // template instantiation.
3288 Diag(Loc, diag::err_member_not_yet_instantiated)
3289 << D->getDeclName()
3290 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3291 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3292 } else {
3293 // We should have found something, but didn't.
3294 llvm_unreachable("Unable to find instantiation of declaration!");
3295 }
3296 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003297
Douglas Gregor815215d2009-05-27 05:35:12 +00003298 D = Result;
3299 }
3300
Douglas Gregor815215d2009-05-27 05:35:12 +00003301 return D;
3302}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003303
Mike Stump1eb44332009-09-09 15:08:12 +00003304/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003305/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003306void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003307 // Load pending instantiations from the external source.
3308 if (!LocalOnly && ExternalSource) {
3309 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3310 ExternalSource->ReadPendingInstantiations(Pending);
3311 PendingInstantiations.insert(PendingInstantiations.begin(),
3312 Pending.begin(), Pending.end());
3313 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003314
Douglas Gregor60406be2010-01-16 22:29:39 +00003315 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003316 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003317 PendingImplicitInstantiation Inst;
3318
3319 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003320 Inst = PendingInstantiations.front();
3321 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003322 } else {
3323 Inst = PendingLocalImplicitInstantiations.front();
3324 PendingLocalImplicitInstantiations.pop_front();
3325 }
Mike Stump1eb44332009-09-09 15:08:12 +00003326
Douglas Gregor7caa6822009-07-24 20:34:43 +00003327 // Instantiate function definitions
3328 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003329 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3330 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003331 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3332 TSK_ExplicitInstantiationDefinition;
3333 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3334 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003335 continue;
3336 }
Mike Stump1eb44332009-09-09 15:08:12 +00003337
Douglas Gregor7caa6822009-07-24 20:34:43 +00003338 // Instantiate static data member definitions.
3339 VarDecl *Var = cast<VarDecl>(Inst.first);
3340 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003341
Chandler Carruth291b4412010-02-13 10:17:50 +00003342 // Don't try to instantiate declarations if the most recent redeclaration
3343 // is invalid.
3344 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3345 continue;
3346
3347 // Check if the most recent declaration has changed the specialization kind
3348 // and removed the need for implicit instantiation.
3349 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3350 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003351 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003352 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003353 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003354 continue; // No longer need to instantiate this type.
3355 case TSK_ExplicitInstantiationDefinition:
3356 // We only need an instantiation if the pending instantiation *is* the
3357 // explicit instantiation.
3358 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003359 case TSK_ImplicitInstantiation:
3360 break;
3361 }
3362
John McCallf312b1e2010-08-26 23:41:50 +00003363 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3364 "instantiating static data member "
3365 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003366
Chandler Carruth58e390e2010-08-25 08:27:02 +00003367 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3368 TSK_ExplicitInstantiationDefinition;
3369 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3370 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003371 }
3372}
John McCall0c01d182010-03-24 05:22:00 +00003373
3374void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3375 const MultiLevelTemplateArgumentList &TemplateArgs) {
3376 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3377 E = Pattern->ddiag_end(); I != E; ++I) {
3378 DependentDiagnostic *DD = *I;
3379
3380 switch (DD->getKind()) {
3381 case DependentDiagnostic::Access:
3382 HandleDependentAccessCheck(*DD, TemplateArgs);
3383 break;
3384 }
3385 }
3386}