blob: b2208b63c87fcf5918cc70b518473b6fdc6c054f [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
Richard Smith162e1c12011-04-15 14:24:37 +0000172 Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
John McCall5126fd02009-12-30 00:31:22 +0000173 }
174
John McCall1d8d1cc2010-08-01 02:01:53 +0000175 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000176
John McCall46460a62010-01-20 21:53:11 +0000177 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000179 return Typedef;
180}
181
Richard Smith162e1c12011-04-15 14:24:37 +0000182Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000183 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
184 Owner->addDecl(Typedef);
185 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000186}
187
188Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000189 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
190 Owner->addDecl(Typedef);
191 return Typedef;
192}
193
194Decl *
195TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
196 // Create a local instantiation scope for this type alias template, which
197 // will contain the instantiations of the template parameters.
198 LocalInstantiationScope Scope(SemaRef);
199
200 TemplateParameterList *TempParams = D->getTemplateParameters();
201 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
202 if (!InstParams)
203 return 0;
204
205 TypeAliasDecl *Pattern = D->getTemplatedDecl();
206
207 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
208 if (Pattern->getPreviousDeclaration()) {
209 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
210 if (Found.first != Found.second) {
211 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
212 }
213 }
214
215 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
216 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
217 if (!AliasInst)
218 return 0;
219
220 TypeAliasTemplateDecl *Inst
221 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
222 D->getDeclName(), InstParams, AliasInst);
223 if (PrevAliasTemplate)
224 Inst->setPreviousDeclaration(PrevAliasTemplate);
225
226 Inst->setAccess(D->getAccess());
227
228 if (!PrevAliasTemplate)
229 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000230
Richard Smith3e4c6c42011-05-05 21:57:07 +0000231 Owner->addDecl(Inst);
232
233 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000234}
235
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000236/// \brief Instantiate an initializer, breaking it into separate
237/// initialization arguments.
238///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000239/// \param Init The initializer to instantiate.
240///
241/// \param TemplateArgs Template arguments to be substituted into the
242/// initializer.
243///
244/// \param NewArgs Will be filled in with the instantiation arguments.
245///
246/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000247bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000248 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000249 SourceLocation &LParenLoc,
250 ASTOwningVector<Expr*> &NewArgs,
251 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000252 NewArgs.clear();
253 LParenLoc = SourceLocation();
254 RParenLoc = SourceLocation();
255
256 if (!Init)
257 return false;
258
John McCall4765fa02010-12-06 08:20:24 +0000259 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000260 Init = ExprTemp->getSubExpr();
261
262 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
263 Init = Binder->getSubExpr();
264
265 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
266 Init = ICE->getSubExprAsWritten();
267
268 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
269 LParenLoc = ParenList->getLParenLoc();
270 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000271 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
272 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000273 }
274
275 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000276 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000277 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
278 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000279 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000280
Douglas Gregor28329e52010-03-24 21:22:47 +0000281 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000282 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000283 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000284 return false;
285 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000286 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000287
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000288 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000289 if (Result.isInvalid())
290 return true;
291
292 NewArgs.push_back(Result.takeAs<Expr>());
293 return false;
294}
295
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000296Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000297 // If this is the variable for an anonymous struct or union,
298 // instantiate the anonymous struct/union type first.
299 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
300 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
301 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
302 return 0;
303
John McCallce3ff2b2009-08-25 22:02:44 +0000304 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000305 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000306 TemplateArgs,
307 D->getTypeSpecStartLoc(),
308 D->getDeclName());
309 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000310 return 0;
311
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000312 if (DI->getType()->isFunctionType()) {
313 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
314 << D->isStaticDataMember() << DI->getType();
315 return 0;
316 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000317
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000318 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000319 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000320 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000321 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000322 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000323 D->getStorageClass(),
324 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000325 Var->setThreadSpecified(D->isThreadSpecified());
326 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000327 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000328
John McCallb6217662010-03-15 10:12:16 +0000329 // Substitute the nested name specifier, if any.
330 if (SubstQualifier(D, Var))
331 return 0;
332
Mike Stump1eb44332009-09-09 15:08:12 +0000333 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000334 // out-of-line, the instantiation will have the same lexical
335 // context (which will be a namespace scope) as the template.
336 if (D->isOutOfLine())
337 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000338
John McCall46460a62010-01-20 21:53:11 +0000339 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000340
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000341 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000342 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000343 Var->setReferenced(D->isReferenced());
344 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000345
Mike Stump390b4cc2009-05-16 07:39:55 +0000346 // FIXME: In theory, we could have a previous declaration for variables that
347 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000348 // FIXME: having to fake up a LookupResult is dumb.
349 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000350 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000351 if (D->isStaticDataMember())
352 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000353
354 // In ARC, infer 'retaining' for variables of retainable type.
355 if (SemaRef.getLangOptions().ObjCAutoRefCount &&
356 SemaRef.inferObjCARCLifetime(Var))
357 Var->setInvalidDecl();
358
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000359 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Douglas Gregor7caa6822009-07-24 20:34:43 +0000361 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000362 if (!D->isStaticDataMember())
363 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000364 Owner->makeDeclVisibleInContext(Var);
365 } else {
366 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000367 if (Owner->isFunctionOrMethod())
368 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000369 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000370 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000371
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000372 // Link instantiations of static data members back to the template from
373 // which they were instantiated.
374 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000375 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000376 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000377
Douglas Gregor60c93c92010-02-09 07:26:29 +0000378 if (Var->getAnyInitializer()) {
379 // We already have an initializer in the class.
380 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000381 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithf6702a32011-12-20 02:08:33 +0000382 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000383 else
384 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
385
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000386 // Instantiate the initializer.
387 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000388 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000389 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
390 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000391 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000392 // Attach the initializer to the declaration, if we have one.
393 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000394 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000395 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000396 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000397 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000398 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000399 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000400 RParenLoc,
401 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000402 } else {
403 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000404 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000405 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000406 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000407 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000408 // FIXME: Not too happy about invalidating the declaration
409 // because of a bogus initializer.
410 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000411 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000412
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000413 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000414 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
415 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000416 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000417
Richard Smithe3499ca2011-06-21 23:42:09 +0000418 // Diagnose unused local variables with dependent types, where the diagnostic
419 // will have been deferred.
420 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
421 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000422 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000423
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000424 return Var;
425}
426
Abramo Bagnara6206d532010-06-05 05:09:32 +0000427Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
428 AccessSpecDecl* AD
429 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
430 D->getAccessSpecifierLoc(), D->getColonLoc());
431 Owner->addHiddenDecl(AD);
432 return AD;
433}
434
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000435Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
436 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000437 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000438 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000439 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000440 DI = SemaRef.SubstType(DI, TemplateArgs,
441 D->getLocation(), D->getDeclName());
442 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000443 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000444 Invalid = true;
445 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000446 // C++ [temp.arg.type]p3:
447 // If a declaration acquires a function type through a type
448 // dependent on a template-parameter and this causes a
449 // declaration that does not use the syntactic form of a
450 // function declarator to have function type, the program is
451 // ill-formed.
452 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000453 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 Invalid = true;
455 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000456 } else {
457 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000458 }
459
460 Expr *BitWidth = D->getBitWidth();
461 if (Invalid)
462 BitWidth = 0;
463 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000464 // The bit-width expression is a constant expression.
465 EnterExpressionEvaluationContext Unevaluated(SemaRef,
466 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000467
John McCall60d7b3a2010-08-24 06:29:42 +0000468 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000469 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000470 if (InstantiatedBitWidth.isInvalid()) {
471 Invalid = true;
472 BitWidth = 0;
473 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000474 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000475 }
476
John McCall07fb6be2009-10-22 23:33:21 +0000477 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
478 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000479 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000480 D->getLocation(),
481 D->isMutable(),
482 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000483 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000484 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000485 D->getAccess(),
486 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000487 if (!Field) {
488 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000489 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
John McCall1d8d1cc2010-08-01 02:01:53 +0000492 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000493
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000494 if (Invalid)
495 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000497 if (!Field->getDeclName()) {
498 // Keep track of where this decl came from.
499 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000500 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000501 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
502 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000503 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000504 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000505 }
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000507 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000508 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000509 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000510
511 return Field;
512}
513
Francois Pichet87c2e122010-11-21 06:08:52 +0000514Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
515 NamedDecl **NamedChain =
516 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
517
518 int i = 0;
519 for (IndirectFieldDecl::chain_iterator PI =
520 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000521 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000522 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000523 TemplateArgs);
524 if (!Next)
525 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000526
Douglas Gregorb7107222011-03-04 19:46:35 +0000527 NamedChain[i++] = Next;
528 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000529
Francois Pichet40e17752010-12-09 10:07:54 +0000530 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000531 IndirectFieldDecl* IndirectField
532 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000533 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000534 NamedChain, D->getChainingSize());
535
536
537 IndirectField->setImplicit(D->isImplicit());
538 IndirectField->setAccess(D->getAccess());
539 Owner->addDecl(IndirectField);
540 return IndirectField;
541}
542
John McCall02cace72009-08-28 07:59:38 +0000543Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000544 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000545 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000546 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000547 TypeSourceInfo *InstTy;
548 // If this is an unsupported friend, don't bother substituting template
549 // arguments into it. The actual type referred to won't be used by any
550 // parts of Clang, and may not be valid for instantiating. Just use the
551 // same info for the instantiated friend.
552 if (D->isUnsupportedFriend()) {
553 InstTy = Ty;
554 } else {
555 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
556 D->getLocation(), DeclarationName());
557 }
558 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000559 return 0;
John McCall02cace72009-08-28 07:59:38 +0000560
Abramo Bagnara0216df82011-10-29 20:52:52 +0000561 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocation(),
562 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000563 if (!FD)
564 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000565
Douglas Gregor06245bf2010-04-07 17:57:12 +0000566 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000567 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000568 Owner->addDecl(FD);
569 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000570 }
571
Douglas Gregor06245bf2010-04-07 17:57:12 +0000572 NamedDecl *ND = D->getFriendDecl();
573 assert(ND && "friend decl must be a decl or a type!");
574
John McCallaf2094e2010-04-08 09:05:18 +0000575 // All of the Visit implementations for the various potential friend
576 // declarations have to be carefully written to work for friend
577 // objects, with the most important detail being that the target
578 // decl should almost certainly not be placed in Owner.
579 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000580 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000581
John McCall02cace72009-08-28 07:59:38 +0000582 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000583 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000584 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000585 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000586 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000587 Owner->addDecl(FD);
588 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000589}
590
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000591Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
592 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Richard Smithf6702a32011-12-20 02:08:33 +0000594 // The expression in a static assertion is a constant expression.
595 EnterExpressionEvaluationContext Unevaluated(SemaRef,
596 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000597
John McCall60d7b3a2010-08-24 06:29:42 +0000598 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000599 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000600 if (InstantiatedAssertExpr.isInvalid())
601 return 0;
602
John McCall60d7b3a2010-08-24 06:29:42 +0000603 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000604 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000605 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000606 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000607 Message.get(),
608 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000609}
610
611Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000612 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000613 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000614 /*PrevDecl=*/0, D->isScoped(),
615 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000616 if (D->isFixed()) {
617 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
618 // If we have type source information for the underlying type, it means it
619 // has been explicitly set by the user. Perform substitution on it before
620 // moving on.
621 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
622 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
623 TemplateArgs,
624 UnderlyingLoc,
625 DeclarationName()));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000626
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000627 if (!Enum->getIntegerTypeSourceInfo())
628 Enum->setIntegerType(SemaRef.Context.IntTy);
629 }
630 else {
631 assert(!D->getIntegerType()->isDependentType()
632 && "Dependent type without type source info");
633 Enum->setIntegerType(D->getIntegerType());
634 }
635 }
636
John McCall5b629aa2010-10-22 23:36:17 +0000637 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
638
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000639 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000640 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000641 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000642 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000643 Enum->startDefinition();
644
Douglas Gregor96084f12010-03-01 19:00:07 +0000645 if (D->getDeclContext()->isFunctionOrMethod())
646 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000647
Chris Lattner5f9e2722011-07-23 10:55:15 +0000648 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000649
650 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000651 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
652 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000653 EC != ECEnd; ++EC) {
654 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000655 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000656 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000657 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000658 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000659 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000660
John McCallce3ff2b2009-08-25 22:02:44 +0000661 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000662 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000663
664 // Drop the initial value and continue.
665 bool isInvalid = false;
666 if (Value.isInvalid()) {
667 Value = SemaRef.Owned((Expr *)0);
668 isInvalid = true;
669 }
670
Mike Stump1eb44332009-09-09 15:08:12 +0000671 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000672 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
673 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000674 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000675
676 if (isInvalid) {
677 if (EnumConst)
678 EnumConst->setInvalidDecl();
679 Enum->setInvalidDecl();
680 }
681
682 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000683 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
684
John McCall3b85ecf2010-01-23 22:37:59 +0000685 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000686 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000687 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000688 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000689
Douglas Gregor96084f12010-03-01 19:00:07 +0000690 if (D->getDeclContext()->isFunctionOrMethod()) {
691 // If the enumeration is within a function or method, record the enum
692 // constant as a local.
693 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
694 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000695 }
696 }
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000698 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000699 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000700 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000701 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000702 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000703 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000704
705 return Enum;
706}
707
Douglas Gregor6477b692009-03-25 15:04:13 +0000708Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000709 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000710}
711
John McCalle29ba202009-08-20 01:44:21 +0000712Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000713 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
714
Douglas Gregor550d9b22009-10-31 17:21:17 +0000715 // Create a local instantiation scope for this class template, which
716 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000717 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000718 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000719 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000720 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000721 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000722
723 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000724
725 // Instantiate the qualifier. We have to do this first in case
726 // we're a friend declaration, because if we are then we need to put
727 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000728 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
729 if (QualifierLoc) {
730 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
731 TemplateArgs);
732 if (!QualifierLoc)
733 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000734 }
735
736 CXXRecordDecl *PrevDecl = 0;
737 ClassTemplateDecl *PrevClassTemplate = 0;
738
Nick Lewycky37574f52010-11-08 23:29:42 +0000739 if (!isFriend && Pattern->getPreviousDeclaration()) {
740 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
741 if (Found.first != Found.second) {
742 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
743 if (PrevClassTemplate)
744 PrevDecl = PrevClassTemplate->getTemplatedDecl();
745 }
746 }
747
John McCall93ba8572010-03-25 06:39:04 +0000748 // If this isn't a friend, then it's a member template, in which
749 // case we just want to build the instantiation in the
750 // specialization. If it is a friend, we want to build it in
751 // the appropriate context.
752 DeclContext *DC = Owner;
753 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000754 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000755 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000756 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000757 DC = SemaRef.computeDeclContext(SS);
758 if (!DC) return 0;
759 } else {
760 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
761 Pattern->getDeclContext(),
762 TemplateArgs);
763 }
764
765 // Look for a previous declaration of the template in the owning
766 // context.
767 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
768 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
769 SemaRef.LookupQualifiedName(R, DC);
770
771 if (R.isSingleResult()) {
772 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
773 if (PrevClassTemplate)
774 PrevDecl = PrevClassTemplate->getTemplatedDecl();
775 }
776
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000777 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000778 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000779 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000780 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000781 return 0;
782 }
783
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000784 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000785 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000786 bool Complain = true;
787
788 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
789 // template for struct std::tr1::__detail::_Map_base, where the
790 // template parameters of the friend declaration don't match the
791 // template parameters of the original declaration. In this one
792 // case, we don't complain about the ill-formed friend
793 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000794 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000795 Pattern->getIdentifier()->isStr("_Map_base") &&
796 DC->isNamespace() &&
797 cast<NamespaceDecl>(DC)->getIdentifier() &&
798 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
799 DeclContext *DCParent = DC->getParent();
800 if (DCParent->isNamespace() &&
801 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
802 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
803 DeclContext *DCParent2 = DCParent->getParent();
804 if (DCParent2->isNamespace() &&
805 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
806 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
807 DCParent2->getParent()->isTranslationUnit())
808 Complain = false;
809 }
810 }
811
John McCall93ba8572010-03-25 06:39:04 +0000812 TemplateParameterList *PrevParams
813 = PrevClassTemplate->getTemplateParameters();
814
815 // Make sure the parameter lists match.
816 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000817 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000818 Sema::TPL_TemplateMatch)) {
819 if (Complain)
820 return 0;
821
822 AdoptedPreviousTemplateParams = true;
823 InstParams = PrevParams;
824 }
John McCall93ba8572010-03-25 06:39:04 +0000825
826 // Do some additional validation, then merge default arguments
827 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000828 if (!AdoptedPreviousTemplateParams &&
829 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000830 Sema::TPC_ClassTemplate))
831 return 0;
832 }
833 }
834
John McCalle29ba202009-08-20 01:44:21 +0000835 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000836 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000837 Pattern->getLocStart(), Pattern->getLocation(),
838 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000839 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000840
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000841 if (QualifierLoc)
842 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000843
John McCalle29ba202009-08-20 01:44:21 +0000844 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000845 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
846 D->getIdentifier(), InstParams, RecordInst,
847 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000848 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000849
John McCall93ba8572010-03-25 06:39:04 +0000850 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000851 if (PrevClassTemplate)
852 Inst->setAccess(PrevClassTemplate->getAccess());
853 else
854 Inst->setAccess(D->getAccess());
855
John McCall93ba8572010-03-25 06:39:04 +0000856 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
857 // TODO: do we want to track the instantiation progeny of this
858 // friend target decl?
859 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000860 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000861 if (!PrevClassTemplate)
862 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000863 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000864
Douglas Gregorf0510d42009-10-12 23:11:44 +0000865 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000866 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000867 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000868
Douglas Gregor259571e2009-10-30 22:42:42 +0000869 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000870 if (isFriend) {
871 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000872 Inst->setLexicalDeclContext(Owner);
873 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000874 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000875 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000876
Abramo Bagnara4c515482011-11-26 13:33:46 +0000877 if (D->isOutOfLine()) {
878 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
879 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
880 }
881
John McCalle29ba202009-08-20 01:44:21 +0000882 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000883
884 if (!PrevClassTemplate) {
885 // Queue up any out-of-line partial specializations of this member
886 // class template; the client will force their instantiation once
887 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000888 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000889 D->getPartialSpecializations(PartialSpecs);
890 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
891 if (PartialSpecs[I]->isOutOfLine())
892 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
893 }
894
John McCalle29ba202009-08-20 01:44:21 +0000895 return Inst;
896}
897
Douglas Gregord60e1052009-08-27 16:57:43 +0000898Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000899TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
900 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000901 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000902
Douglas Gregored9c0f92009-10-29 00:04:11 +0000903 // Lookup the already-instantiated declaration in the instantiation
904 // of the class template and return that.
905 DeclContext::lookup_result Found
906 = Owner->lookup(ClassTemplate->getDeclName());
907 if (Found.first == Found.second)
908 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000909
Douglas Gregored9c0f92009-10-29 00:04:11 +0000910 ClassTemplateDecl *InstClassTemplate
911 = dyn_cast<ClassTemplateDecl>(*Found.first);
912 if (!InstClassTemplate)
913 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000914
Douglas Gregord65587f2010-11-10 19:44:59 +0000915 if (ClassTemplatePartialSpecializationDecl *Result
916 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
917 return Result;
918
919 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000920}
921
922Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000923TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000924 // Create a local instantiation scope for this function template, which
925 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000926 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000927 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000928 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000929
Douglas Gregord60e1052009-08-27 16:57:43 +0000930 TemplateParameterList *TempParams = D->getTemplateParameters();
931 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000932 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000933 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000934
Douglas Gregora735b202009-10-13 14:39:41 +0000935 FunctionDecl *Instantiated = 0;
936 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000937 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000938 InstParams));
939 else
940 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000941 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000942 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000943
Douglas Gregora735b202009-10-13 14:39:41 +0000944 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000945 return 0;
946
John McCall46460a62010-01-20 21:53:11 +0000947 Instantiated->setAccess(D->getAccess());
948
Mike Stump1eb44332009-09-09 15:08:12 +0000949 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000950 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000951 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000952 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000953 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000954 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000955 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000956
John McCallb1a56e72010-03-26 23:10:15 +0000957 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
958
John McCalle976ffe2009-12-14 23:19:40 +0000959 // Link the instantiation back to the pattern *unless* this is a
960 // non-definition friend declaration.
961 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000962 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000963 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000964
John McCallb1a56e72010-03-26 23:10:15 +0000965 // Make declarations visible in the appropriate context.
966 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000967 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000968
Douglas Gregord60e1052009-08-27 16:57:43 +0000969 return InstTemplate;
970}
971
Douglas Gregord475b8d2009-03-25 21:17:03 +0000972Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
973 CXXRecordDecl *PrevDecl = 0;
974 if (D->isInjectedClassName())
975 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000976 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000977 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
978 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000979 TemplateArgs);
980 if (!Prev) return 0;
981 PrevDecl = cast<CXXRecordDecl>(Prev);
982 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000983
984 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000985 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000986 D->getLocStart(), D->getLocation(),
987 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000988
989 // Substitute the nested name specifier, if any.
990 if (SubstQualifier(D, Record))
991 return 0;
992
Douglas Gregord475b8d2009-03-25 21:17:03 +0000993 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000994 // FIXME: Check against AS_none is an ugly hack to work around the issue that
995 // the tag decls introduced by friend class declarations don't have an access
996 // specifier. Remove once this area of the code gets sorted out.
997 if (D->getAccess() != AS_none)
998 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000999 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001000 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001001
John McCall02cace72009-08-28 07:59:38 +00001002 // If the original function was part of a friend declaration,
1003 // inherit its namespace state.
1004 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
1005 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
1006
Douglas Gregor9901c572010-05-21 00:31:19 +00001007 // Make sure that anonymous structs and unions are recorded.
1008 if (D->isAnonymousStructOrUnion()) {
1009 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001010 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001011 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1012 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001013
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001014 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001015 return Record;
1016}
1017
John McCall02cace72009-08-28 07:59:38 +00001018/// Normal class members are of more specific types and therefore
1019/// don't make it here. This function serves two purposes:
1020/// 1) instantiating function templates
1021/// 2) substituting friend declarations
1022/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001023Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001024 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001025 // Check whether there is already a function template specialization for
1026 // this declaration.
1027 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1028 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001029 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001030 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001031 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001032
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001033 FunctionDecl *SpecFunc
1034 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1035 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001036
Douglas Gregor127102b2009-06-29 20:59:39 +00001037 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001038 if (SpecFunc)
1039 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001040 }
Mike Stump1eb44332009-09-09 15:08:12 +00001041
John McCallb0cb0222010-03-27 05:57:59 +00001042 bool isFriend;
1043 if (FunctionTemplate)
1044 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1045 else
1046 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1047
Douglas Gregor79c22782010-01-16 20:21:20 +00001048 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001049 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001050 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001051 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001052 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Chris Lattner5f9e2722011-07-23 10:55:15 +00001054 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001055 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001056 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001057 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001058 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001059
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001060 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1061 if (QualifierLoc) {
1062 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1063 TemplateArgs);
1064 if (!QualifierLoc)
1065 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001066 }
1067
John McCall68b6b872010-02-06 01:50:47 +00001068 // If we're instantiating a local function declaration, put the result
1069 // in the owner; otherwise we need to find the instantiated context.
1070 DeclContext *DC;
1071 if (D->getDeclContext()->isFunctionOrMethod())
1072 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001073 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001074 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001075 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001076 DC = SemaRef.computeDeclContext(SS);
1077 if (!DC) return 0;
1078 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001079 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001080 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001081 }
John McCall68b6b872010-02-06 01:50:47 +00001082
John McCall02cace72009-08-28 07:59:38 +00001083 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001084 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1085 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001086 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001087 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001088 /*isConstexpr*/ false);
John McCallb6217662010-03-15 10:12:16 +00001089
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001090 if (QualifierLoc)
1091 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001092
John McCallb1a56e72010-03-26 23:10:15 +00001093 DeclContext *LexicalDC = Owner;
1094 if (!isFriend && D->isOutOfLine()) {
1095 assert(D->getDeclContext()->isFileContext());
1096 LexicalDC = D->getDeclContext();
1097 }
1098
1099 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Douglas Gregore53060f2009-06-25 22:08:12 +00001101 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001102 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001103 // Adopt the already-instantiated parameters into our own context.
1104 for (unsigned P = 0; P < Params.size(); ++P)
1105 if (Params[P])
1106 Params[P]->setOwningFunction(Function);
1107 } else {
1108 // Since we were instantiated via a typedef of a function type, create
1109 // new parameters.
1110 const FunctionProtoType *Proto
1111 = Function->getType()->getAs<FunctionProtoType>();
1112 assert(Proto && "No function prototype in template instantiation?");
1113 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1114 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1115 ParmVarDecl *Param
1116 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1117 *AI);
1118 Param->setScopeInfo(0, Params.size());
1119 Params.push_back(Param);
1120 }
1121 }
David Blaikie4278c652011-09-21 18:16:56 +00001122 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001123
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001124 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001125 if (TemplateParams) {
1126 // Our resulting instantiation is actually a function template, since we
1127 // are substituting only the outer template parameters. For example, given
1128 //
1129 // template<typename T>
1130 // struct X {
1131 // template<typename U> friend void f(T, U);
1132 // };
1133 //
1134 // X<int> x;
1135 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001136 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001137 // which means substituting int for T, but leaving "f" as a friend function
1138 // template.
1139 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001140 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001141 Function->getLocation(),
1142 Function->getDeclName(),
1143 TemplateParams, Function);
1144 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001145
1146 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001147
1148 if (isFriend && D->isThisDeclarationADefinition()) {
1149 // TODO: should we remember this connection regardless of whether
1150 // the friend declaration provided a body?
1151 FunctionTemplate->setInstantiatedFromMemberTemplate(
1152 D->getDescribedFunctionTemplate());
1153 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001154 } else if (FunctionTemplate) {
1155 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001156 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001157 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001158 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001159 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001160 Innermost.first,
1161 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001162 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001163 } else if (isFriend) {
1164 // Note, we need this connection even if the friend doesn't have a body.
1165 // Its body may exist but not have been attached yet due to deferred
1166 // parsing.
1167 // FIXME: It might be cleaner to set this when attaching the body to the
1168 // friend function declaration, however that would require finding all the
1169 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001170 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001171 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001172
Douglas Gregore53060f2009-06-25 22:08:12 +00001173 if (InitFunctionInstantiation(Function, D))
1174 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001175
John McCallaf2094e2010-04-08 09:05:18 +00001176 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001177
John McCall68263142009-11-18 22:49:29 +00001178 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1179 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1180
John McCallaf2094e2010-04-08 09:05:18 +00001181 if (DependentFunctionTemplateSpecializationInfo *Info
1182 = D->getDependentSpecializationInfo()) {
1183 assert(isFriend && "non-friend has dependent specialization info?");
1184
1185 // This needs to be set now for future sanity.
1186 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1187
1188 // Instantiate the explicit template arguments.
1189 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1190 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001191 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1192 ExplicitArgs, TemplateArgs))
1193 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001194
1195 // Map the candidate templates to their instantiations.
1196 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1197 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1198 Info->getTemplate(I),
1199 TemplateArgs);
1200 if (!Temp) return 0;
1201
1202 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1203 }
1204
1205 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1206 &ExplicitArgs,
1207 Previous))
1208 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001209
John McCallaf2094e2010-04-08 09:05:18 +00001210 isExplicitSpecialization = true;
1211
1212 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001213 // Look only into the namespace where the friend would be declared to
1214 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001215 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001216 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001217
Douglas Gregora735b202009-10-13 14:39:41 +00001218 // In C++, the previous declaration we find might be a tag type
1219 // (class or enum). In this case, the new declaration will hide the
1220 // tag type. Note that this does does not apply if we're declaring a
1221 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001222 if (Previous.isSingleTagDecl())
1223 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001224 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001225
John McCall9f54ad42009-12-10 09:41:52 +00001226 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001227 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001228
John McCall76d32642010-04-24 01:30:58 +00001229 NamedDecl *PrincipalDecl = (TemplateParams
1230 ? cast<NamedDecl>(FunctionTemplate)
1231 : Function);
1232
Douglas Gregora735b202009-10-13 14:39:41 +00001233 // If the original function was part of a friend declaration,
1234 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001235 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001236 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001237 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001238 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001239 else
Douglas Gregora735b202009-10-13 14:39:41 +00001240 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001241
1242 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1243 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001244
Gabor Greif77535df2010-08-30 22:25:56 +00001245 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001246
Richard Smith53e53512011-10-19 00:54:10 +00001247 // C++98 [temp.friend]p5: When a function is defined in a friend function
1248 // declaration in a class template, the function is defined at each
1249 // instantiation of the class template. The function is defined even if it
1250 // is never used.
1251 // C++11 [temp.friend]p4: When a function is defined in a friend function
1252 // declaration in a class template, the function is instantiated when the
1253 // function is odr-used.
1254 //
1255 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1256 // redefinition, but don't instantiate the function.
1257 if ((!SemaRef.getLangOptions().CPlusPlus0x ||
1258 SemaRef.Diags.getDiagnosticLevel(
1259 diag::warn_cxx98_compat_friend_redefinition,
1260 Function->getLocation())
1261 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001262 D->isThisDeclarationADefinition()) {
1263 // Check for a function body.
1264 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001265 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001266 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001267 SemaRef.Diag(Function->getLocation(),
1268 SemaRef.getLangOptions().CPlusPlus0x ?
1269 diag::warn_cxx98_compat_friend_redefinition :
1270 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001271 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001272 if (!SemaRef.getLangOptions().CPlusPlus0x)
1273 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001274 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001275 // Check for redefinitions due to other instantiations of this or
1276 // a similar friend function.
1277 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1278 REnd = Function->redecls_end();
1279 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001280 if (*R == Function)
1281 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001282 switch (R->getFriendObjectKind()) {
1283 case Decl::FOK_None:
Richard Smith53e53512011-10-19 00:54:10 +00001284 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1285 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001286 if (MemberSpecializationInfo *MSInfo
1287 = Function->getMemberSpecializationInfo()) {
1288 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1289 SourceLocation Loc = R->getLocation(); // FIXME
1290 MSInfo->setPointOfInstantiation(Loc);
1291 SemaRef.PendingLocalImplicitInstantiations.push_back(
1292 std::make_pair(Function, Loc));
1293 queuedInstantiation = true;
1294 }
1295 }
1296 }
1297 break;
1298 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001299 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001300 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001301 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001302 SemaRef.Diag(Function->getLocation(),
1303 SemaRef.getLangOptions().CPlusPlus0x ?
1304 diag::warn_cxx98_compat_friend_redefinition :
1305 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001306 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001307 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001308 if (!SemaRef.getLangOptions().CPlusPlus0x)
1309 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001310 break;
1311 }
1312 }
1313 }
1314 }
Douglas Gregora735b202009-10-13 14:39:41 +00001315 }
1316
John McCall76d32642010-04-24 01:30:58 +00001317 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1318 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1319 PrincipalDecl->setNonMemberOperator();
1320
Sean Hunteb88ae52011-05-23 21:07:59 +00001321 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001322 return Function;
1323}
1324
Douglas Gregord60e1052009-08-27 16:57:43 +00001325Decl *
1326TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001327 TemplateParameterList *TemplateParams,
1328 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001329 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1330 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001331 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001332 // We are creating a function template specialization from a function
1333 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001334 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001335 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001336 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001337
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001338 FunctionDecl *SpecFunc
1339 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1340 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001341
Douglas Gregor6b906862009-08-21 00:16:32 +00001342 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001343 if (SpecFunc)
1344 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001345 }
1346
John McCallb0cb0222010-03-27 05:57:59 +00001347 bool isFriend;
1348 if (FunctionTemplate)
1349 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1350 else
1351 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1352
Douglas Gregor79c22782010-01-16 20:21:20 +00001353 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001354 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001355 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001356 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001357
John McCall4eab39f2010-10-19 02:26:41 +00001358 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001359 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001360 unsigned NumTempParamLists = 0;
1361 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1362 TempParamLists.set_size(NumTempParamLists);
1363 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1364 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1365 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1366 if (!InstParams)
1367 return NULL;
1368 TempParamLists[I] = InstParams;
1369 }
1370 }
1371
Chris Lattner5f9e2722011-07-23 10:55:15 +00001372 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001373 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1374 TInfo = SubstFunctionType(D, Params);
1375 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001376 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001377 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001378
Abramo Bagnara723df242010-12-14 22:11:44 +00001379 // \brief If the type of this function, after ignoring parentheses,
1380 // is not *directly* a function type, then we're instantiating a function
1381 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001382 //
1383 // typedef int functype(int, int);
1384 // functype func;
1385 //
1386 // In this case, we'll just go instantiate the ParmVarDecls that we
1387 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001388 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001389 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001390 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001391 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1392 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001393 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001394 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001395 }
1396
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001397 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1398 if (QualifierLoc) {
1399 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001400 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001401 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001402 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001403 }
1404
1405 DeclContext *DC = Owner;
1406 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001407 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001408 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001409 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001410 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001411
1412 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1413 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001414 } else {
1415 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1416 D->getDeclContext(),
1417 TemplateArgs);
1418 }
1419 if (!DC) return 0;
1420 }
1421
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001422 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001423 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001424 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001426 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001427 DeclarationNameInfo NameInfo
1428 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001429 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001430 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001431 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001432 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001433 Constructor->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001434 false, /*isConstexpr*/ false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001435 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001436 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001437 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001438 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001439 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001440 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001441 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001442 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001443 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001444 Conversion->isExplicit(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001445 /*isConstexpr*/ false,
1446 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001447 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001448 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001449 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001450 D->isStatic(),
1451 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001452 D->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001453 /*isConstexpr*/ false, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001454 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001455
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001456 if (QualifierLoc)
1457 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001458
Douglas Gregord60e1052009-08-27 16:57:43 +00001459 if (TemplateParams) {
1460 // Our resulting instantiation is actually a function template, since we
1461 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001462 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001463 // template<typename T>
1464 // struct X {
1465 // template<typename U> void f(T, U);
1466 // };
1467 //
1468 // X<int> x;
1469 //
1470 // We are instantiating the member template "f" within X<int>, which means
1471 // substituting int for T, but leaving "f" as a member function template.
1472 // Build the function template itself.
1473 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1474 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001475 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001476 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001477 if (isFriend) {
1478 FunctionTemplate->setLexicalDeclContext(Owner);
1479 FunctionTemplate->setObjectOfFriendDecl(true);
1480 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001481 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001482 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001483 } else if (FunctionTemplate) {
1484 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001485 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001486 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001487 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001488 TemplateArgumentList::CreateCopy(SemaRef.Context,
1489 Innermost.first,
1490 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001491 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001492 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001493 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001494 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001495 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001496
Mike Stump1eb44332009-09-09 15:08:12 +00001497 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001498 // out-of-line, the instantiation will have the same lexical
1499 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001500 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001501 if (NumTempParamLists)
1502 Method->setTemplateParameterListsInfo(SemaRef.Context,
1503 NumTempParamLists,
1504 TempParamLists.data());
1505
John McCallb0cb0222010-03-27 05:57:59 +00001506 Method->setLexicalDeclContext(Owner);
1507 Method->setObjectOfFriendDecl(true);
1508 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001509 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Douglas Gregor5545e162009-03-24 00:38:23 +00001511 // Attach the parameters
1512 for (unsigned P = 0; P < Params.size(); ++P)
1513 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001514 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001515
1516 if (InitMethodInstantiation(Method, D))
1517 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001518
Abramo Bagnara25777432010-08-11 22:01:17 +00001519 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1520 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001521
John McCallb0cb0222010-03-27 05:57:59 +00001522 if (!FunctionTemplate || TemplateParams || isFriend) {
1523 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001524
Douglas Gregordec06662009-08-21 18:42:58 +00001525 // In C++, the previous declaration we find might be a tag type
1526 // (class or enum). In this case, the new declaration will hide the
1527 // tag type. Note that this does does not apply if we're declaring a
1528 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001529 if (Previous.isSingleTagDecl())
1530 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001531 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001532
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001533 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001534 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001535
Douglas Gregor4ba31362009-12-01 17:24:26 +00001536 if (D->isPure())
1537 SemaRef.CheckPureMethod(Method, SourceRange());
1538
John McCall46460a62010-01-20 21:53:11 +00001539 Method->setAccess(D->getAccess());
1540
Anders Carlsson9eefa222011-01-20 06:52:44 +00001541 SemaRef.CheckOverrideControl(Method);
1542
Eli Friedman3bc45152011-11-15 22:39:08 +00001543 // If a function is defined as defaulted or deleted, mark it as such now.
1544 if (D->isDefaulted())
1545 Method->setDefaulted();
1546 if (D->isDeletedAsWritten())
1547 Method->setDeletedAsWritten();
1548
John McCallb0cb0222010-03-27 05:57:59 +00001549 if (FunctionTemplate) {
1550 // If there's a function template, let our caller handle it.
1551 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1552 // Don't hide a (potentially) valid declaration with an invalid one.
1553 } else {
1554 NamedDecl *DeclToAdd = (TemplateParams
1555 ? cast<NamedDecl>(FunctionTemplate)
1556 : Method);
1557 if (isFriend)
1558 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001559 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001560 Owner->addDecl(DeclToAdd);
1561 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001562
1563 if (D->isExplicitlyDefaulted()) {
1564 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1565 } else {
1566 assert(!D->isDefaulted() &&
1567 "should not implicitly default uninstantiated function");
1568 }
1569
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001570 return Method;
1571}
1572
Douglas Gregor615c5d42009-03-24 16:43:20 +00001573Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001574 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001575}
1576
Douglas Gregor03b2b072009-03-24 00:15:49 +00001577Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001578 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001579}
1580
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001581Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001582 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001583}
1584
Douglas Gregor6477b692009-03-25 15:04:13 +00001585ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001586 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1587 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001588}
1589
John McCalle29ba202009-08-20 01:44:21 +00001590Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1591 TemplateTypeParmDecl *D) {
1592 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001593 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001594
John McCalle29ba202009-08-20 01:44:21 +00001595 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001596 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1597 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001598 D->getDepth() - TemplateArgs.getNumLevels(),
1599 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001600 D->wasDeclaredWithTypename(),
1601 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001602 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001603
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001604 if (D->hasDefaultArgument())
1605 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1606
1607 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001608 // scope.
1609 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001610
John McCalle29ba202009-08-20 01:44:21 +00001611 return Inst;
1612}
1613
Douglas Gregor33642df2009-10-23 23:25:44 +00001614Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1615 NonTypeTemplateParmDecl *D) {
1616 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001617 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001618 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1619 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001620 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001621 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001622 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001623 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001624
1625 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001626 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001627 // expansion of types. Substitute into each of the expanded types.
1628 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1629 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1630 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1631 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1632 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001633 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001634 D->getDeclName());
1635 if (!NewDI)
1636 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001637
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001638 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1639 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1640 D->getLocation());
1641 if (NewT.isNull())
1642 return 0;
1643 ExpandedParameterPackTypes.push_back(NewT);
1644 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001645
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001646 IsExpandedParameterPack = true;
1647 DI = D->getTypeSourceInfo();
1648 T = DI->getType();
1649 } else if (isa<PackExpansionTypeLoc>(TL)) {
1650 // The non-type template parameter pack's type is a pack expansion of types.
1651 // Determine whether we need to expand this parameter pack into separate
1652 // types.
1653 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1654 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001655 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001656 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001657
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001658 // Determine whether the set of unexpanded parameter packs can and should
1659 // be expanded.
1660 bool Expand = true;
1661 bool RetainExpansion = false;
1662 llvm::Optional<unsigned> OrigNumExpansions
1663 = Expansion.getTypePtr()->getNumExpansions();
1664 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1665 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1666 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001667 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001668 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001669 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001670 NumExpansions))
1671 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001672
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001673 if (Expand) {
1674 for (unsigned I = 0; I != *NumExpansions; ++I) {
1675 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1676 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001677 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001678 D->getDeclName());
1679 if (!NewDI)
1680 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001681
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001682 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1683 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1684 NewDI->getType(),
1685 D->getLocation());
1686 if (NewT.isNull())
1687 return 0;
1688 ExpandedParameterPackTypes.push_back(NewT);
1689 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001690
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001691 // Note that we have an expanded parameter pack. The "type" of this
1692 // expanded parameter pack is the original expansion type, but callers
1693 // will end up using the expanded parameter pack types for type-checking.
1694 IsExpandedParameterPack = true;
1695 DI = D->getTypeSourceInfo();
1696 T = DI->getType();
1697 } else {
1698 // We cannot fully expand the pack expansion now, so substitute into the
1699 // pattern and create a new pack expansion type.
1700 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1701 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001702 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001703 D->getDeclName());
1704 if (!NewPattern)
1705 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001706
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001707 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1708 NumExpansions);
1709 if (!DI)
1710 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001711
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001712 T = DI->getType();
1713 }
1714 } else {
1715 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001716 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001717 D->getLocation(), D->getDeclName());
1718 if (!DI)
1719 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001720
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001721 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001722 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001723 D->getLocation());
1724 if (T.isNull()) {
1725 T = SemaRef.Context.IntTy;
1726 Invalid = true;
1727 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001728 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001729
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001730 NonTypeTemplateParmDecl *Param;
1731 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001732 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001733 D->getInnerLocStart(),
1734 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001735 D->getDepth() - TemplateArgs.getNumLevels(),
1736 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001737 D->getIdentifier(), T,
1738 DI,
1739 ExpandedParameterPackTypes.data(),
1740 ExpandedParameterPackTypes.size(),
1741 ExpandedParameterPackTypesAsWritten.data());
1742 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001743 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001744 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001745 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001746 D->getDepth() - TemplateArgs.getNumLevels(),
1747 D->getPosition(),
1748 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001749 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001750
Douglas Gregor9a299e02011-03-04 17:52:15 +00001751 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001752 if (Invalid)
1753 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001754
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001755 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001756
1757 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001758 // scope.
1759 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001760 return Param;
1761}
1762
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001763Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001764TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1765 TemplateTemplateParmDecl *D) {
1766 // Instantiate the template parameter list of the template template parameter.
1767 TemplateParameterList *TempParams = D->getTemplateParameters();
1768 TemplateParameterList *InstParams;
1769 {
1770 // Perform the actual substitution of template parameters within a new,
1771 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001772 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001773 InstParams = SubstTemplateParams(TempParams);
1774 if (!InstParams)
1775 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001776 }
1777
Douglas Gregor9106ef72009-11-11 16:58:32 +00001778 // Build the template template parameter.
1779 TemplateTemplateParmDecl *Param
1780 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001781 D->getDepth() - TemplateArgs.getNumLevels(),
1782 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001783 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001784 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001785 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001786
1787 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001788 // scope.
1789 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001790
Douglas Gregor9106ef72009-11-11 16:58:32 +00001791 return Param;
1792}
1793
Douglas Gregor48c32a72009-11-17 06:07:40 +00001794Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001795 // Using directives are never dependent (and never contain any types or
1796 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001797
Douglas Gregor48c32a72009-11-17 06:07:40 +00001798 UsingDirectiveDecl *Inst
1799 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001800 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001801 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001802 D->getIdentLocation(),
1803 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001804 D->getCommonAncestor());
1805 Owner->addDecl(Inst);
1806 return Inst;
1807}
1808
John McCalled976492009-12-04 22:46:56 +00001809Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001810
1811 // The nested name specifier may be dependent, for example
1812 // template <typename T> struct t {
1813 // struct s1 { T f1(); };
1814 // struct s2 : s1 { using s1::f1; };
1815 // };
1816 // template struct t<int>;
1817 // Here, in using s1::f1, s1 refers to t<T>::s1;
1818 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001819 NestedNameSpecifierLoc QualifierLoc
1820 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1821 TemplateArgs);
1822 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001823 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001824
1825 // The name info is non-dependent, so no transformation
1826 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001827 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001828
John McCall9f54ad42009-12-10 09:41:52 +00001829 // We only need to do redeclaration lookups if we're in a class
1830 // scope (in fact, it's not really even possible in non-class
1831 // scopes).
1832 bool CheckRedeclaration = Owner->isRecord();
1833
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001834 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1835 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001836
John McCalled976492009-12-04 22:46:56 +00001837 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001838 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001839 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001840 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001841 D->isTypeName());
1842
Douglas Gregor5149f372011-02-25 15:54:31 +00001843 CXXScopeSpec SS;
1844 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001845 if (CheckRedeclaration) {
1846 Prev.setHideTags(false);
1847 SemaRef.LookupQualifiedName(Prev, Owner);
1848
1849 // Check for invalid redeclarations.
1850 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1851 D->isTypeName(), SS,
1852 D->getLocation(), Prev))
1853 NewUD->setInvalidDecl();
1854
1855 }
1856
1857 if (!NewUD->isInvalidDecl() &&
1858 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001859 D->getLocation()))
1860 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001861
John McCalled976492009-12-04 22:46:56 +00001862 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1863 NewUD->setAccess(D->getAccess());
1864 Owner->addDecl(NewUD);
1865
John McCall9f54ad42009-12-10 09:41:52 +00001866 // Don't process the shadow decls for an invalid decl.
1867 if (NewUD->isInvalidDecl())
1868 return NewUD;
1869
John McCall323c3102009-12-22 22:26:37 +00001870 bool isFunctionScope = Owner->isFunctionOrMethod();
1871
John McCall9f54ad42009-12-10 09:41:52 +00001872 // Process the shadow decls.
1873 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1874 I != E; ++I) {
1875 UsingShadowDecl *Shadow = *I;
1876 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001877 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1878 Shadow->getLocation(),
1879 Shadow->getTargetDecl(),
1880 TemplateArgs));
1881 if (!InstTarget)
1882 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001883
1884 if (CheckRedeclaration &&
1885 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1886 continue;
1887
1888 UsingShadowDecl *InstShadow
1889 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1890 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001891
1892 if (isFunctionScope)
1893 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001894 }
John McCalled976492009-12-04 22:46:56 +00001895
1896 return NewUD;
1897}
1898
1899Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001900 // Ignore these; we handle them in bulk when processing the UsingDecl.
1901 return 0;
John McCalled976492009-12-04 22:46:56 +00001902}
1903
John McCall7ba107a2009-11-18 02:36:19 +00001904Decl * TemplateDeclInstantiator
1905 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001906 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001907 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001908 TemplateArgs);
1909 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001910 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001911
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001912 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001913 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001914
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001915 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1916 // Hence, no tranformation is required for it.
1917 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001918 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001919 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001920 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001921 /*instantiation*/ true,
1922 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001923 if (UD)
John McCalled976492009-12-04 22:46:56 +00001924 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1925
John McCall7ba107a2009-11-18 02:36:19 +00001926 return UD;
1927}
1928
1929Decl * TemplateDeclInstantiator
1930 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001931 NestedNameSpecifierLoc QualifierLoc
1932 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1933 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001934 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001935
John McCall7ba107a2009-11-18 02:36:19 +00001936 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001937 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001938
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001939 DeclarationNameInfo NameInfo
1940 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1941
John McCall7ba107a2009-11-18 02:36:19 +00001942 NamedDecl *UD =
1943 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001944 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001945 /*instantiation*/ true,
1946 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001947 if (UD)
John McCalled976492009-12-04 22:46:56 +00001948 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1949
Anders Carlsson0d8df782009-08-29 19:37:28 +00001950 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001951}
1952
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001953
1954Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1955 ClassScopeFunctionSpecializationDecl *Decl) {
1956 CXXMethodDecl *OldFD = Decl->getSpecialization();
1957 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1958
1959 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1960 Sema::ForRedeclaration);
1961
1962 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1963 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1964 NewFD->setInvalidDecl();
1965 return NewFD;
1966 }
1967
1968 // Associate the specialization with the pattern.
1969 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1970 assert(Specialization && "Class scope Specialization is null");
1971 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1972
1973 return NewFD;
1974}
1975
John McCallce3ff2b2009-08-25 22:02:44 +00001976Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001977 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001978 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001979 if (D->isInvalidDecl())
1980 return 0;
1981
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001982 return Instantiator.Visit(D);
1983}
1984
John McCalle29ba202009-08-20 01:44:21 +00001985/// \brief Instantiates a nested template parameter list in the current
1986/// instantiation context.
1987///
1988/// \param L The parameter list to instantiate
1989///
1990/// \returns NULL if there was an error
1991TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001992TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001993 // Get errors for all the parameters before bailing out.
1994 bool Invalid = false;
1995
1996 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001997 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001998 ParamVector Params;
1999 Params.reserve(N);
2000 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2001 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002002 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002003 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002004 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002005 }
2006
2007 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002008 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002009 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002010
2011 TemplateParameterList *InstL
2012 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2013 L->getLAngleLoc(), &Params.front(), N,
2014 L->getRAngleLoc());
2015 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002016}
John McCalle29ba202009-08-20 01:44:21 +00002017
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002018/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002019/// specialization.
2020///
2021/// \param ClassTemplate the (instantiated) class template that is partially
2022// specialized by the instantiation of \p PartialSpec.
2023///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002024/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025/// specialization that we are instantiating.
2026///
Douglas Gregord65587f2010-11-10 19:44:59 +00002027/// \returns The instantiated partial specialization, if successful; otherwise,
2028/// NULL to indicate an error.
2029ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002030TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2031 ClassTemplateDecl *ClassTemplate,
2032 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002033 // Create a local instantiation scope for this class template partial
2034 // specialization, which will contain the instantiations of the template
2035 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002036 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002037
Douglas Gregored9c0f92009-10-29 00:04:11 +00002038 // Substitute into the template parameters of the class template partial
2039 // specialization.
2040 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2041 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2042 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002043 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002044
Douglas Gregored9c0f92009-10-29 00:04:11 +00002045 // Substitute into the template arguments of the class template partial
2046 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002047 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002048 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2049 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002050 InstTemplateArgs, TemplateArgs))
2051 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002052
Douglas Gregored9c0f92009-10-29 00:04:11 +00002053 // Check that the template argument list is well-formed for this
2054 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002055 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002056 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002057 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002058 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002059 false,
2060 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002061 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002062
2063 // Figure out where to insert this class template partial specialization
2064 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002065 void *InsertPos = 0;
2066 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002067 = ClassTemplate->findPartialSpecialization(Converted.data(),
2068 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002069
Douglas Gregored9c0f92009-10-29 00:04:11 +00002070 // Build the canonical type that describes the converted template
2071 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002072 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002073 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002074 Converted.data(),
2075 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002076
2077 // Build the fully-sugared type for this class template
2078 // specialization as the user wrote in the specialization
2079 // itself. This means that we'll pretty-print the type retrieved
2080 // from the specialization's declaration the way that the user
2081 // actually wrote the specialization, rather than formatting the
2082 // name based on the "canonical" representation used to store the
2083 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002084 TypeSourceInfo *WrittenTy
2085 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2086 TemplateName(ClassTemplate),
2087 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002088 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002089 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002090
Douglas Gregored9c0f92009-10-29 00:04:11 +00002091 if (PrevDecl) {
2092 // We've already seen a partial specialization with the same template
2093 // parameters and template arguments. This can happen, for example, when
2094 // substituting the outer template arguments ends up causing two
2095 // class template partial specializations of a member class template
2096 // to have identical forms, e.g.,
2097 //
2098 // template<typename T, typename U>
2099 // struct Outer {
2100 // template<typename X, typename Y> struct Inner;
2101 // template<typename Y> struct Inner<T, Y>;
2102 // template<typename Y> struct Inner<U, Y>;
2103 // };
2104 //
2105 // Outer<int, int> outer; // error: the partial specializations of Inner
2106 // // have the same signature.
2107 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002108 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002109 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2110 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002111 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002112 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002113
2114
Douglas Gregored9c0f92009-10-29 00:04:11 +00002115 // Create the class template partial specialization declaration.
2116 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002117 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002118 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002119 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002120 PartialSpec->getLocStart(),
2121 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002122 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002123 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002124 Converted.data(),
2125 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002126 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002127 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002128 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002129 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002130 // Substitute the nested name specifier, if any.
2131 if (SubstQualifier(PartialSpec, InstPartialSpec))
2132 return 0;
2133
Douglas Gregored9c0f92009-10-29 00:04:11 +00002134 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002135 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002136
Douglas Gregored9c0f92009-10-29 00:04:11 +00002137 // Add this partial specialization to the set of class template partial
2138 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002139 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002140 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002141}
2142
John McCall21ef0fa2010-03-11 09:03:00 +00002143TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002144TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002145 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002146 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2147 assert(OldTInfo && "substituting function without type source info");
2148 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002149 TypeSourceInfo *NewTInfo
2150 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2151 D->getTypeSpecStartLoc(),
2152 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002153 if (!NewTInfo)
2154 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002155
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002156 if (NewTInfo != OldTInfo) {
2157 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002158 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002159 if (FunctionProtoTypeLoc *OldProtoLoc
2160 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002161 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002162 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2163 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002164 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2165 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2166 OldIdx != NumOldParams; ++OldIdx) {
2167 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2168 if (!OldParam->isParameterPack() ||
2169 (NewIdx < NumNewParams &&
2170 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002171 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002172 // instantiated to a (still-dependent) parameter pack.
2173 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2174 Params.push_back(NewParam);
2175 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2176 NewParam);
2177 continue;
2178 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002179
Douglas Gregor12c9c002011-01-07 16:43:16 +00002180 // Parameter pack: make the instantiation an argument pack.
2181 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2182 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002183 unsigned NumArgumentsInExpansion
2184 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2185 TemplateArgs);
2186 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002187 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2188 Params.push_back(NewParam);
2189 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2190 NewParam);
2191 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002192 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002193 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002194 } else {
2195 // The function type itself was not dependent and therefore no
2196 // substitution occurred. However, we still need to instantiate
2197 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002198 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002199 if (FunctionProtoTypeLoc *OldProtoLoc
2200 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2201 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2202 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2203 if (!Parm)
2204 return 0;
2205 Params.push_back(Parm);
2206 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002207 }
2208 }
John McCall21ef0fa2010-03-11 09:03:00 +00002209 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002210}
2211
Mike Stump1eb44332009-09-09 15:08:12 +00002212/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002213/// declaration (New) from the corresponding fields of its template (Tmpl).
2214///
2215/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002216bool
2217TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002218 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002219 if (Tmpl->isDeletedAsWritten())
2220 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002221
Douglas Gregorcca9e962009-07-01 22:01:06 +00002222 // If we are performing substituting explicitly-specified template arguments
2223 // or deduced template arguments into a function template and we reach this
2224 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002225 // to keeping the new function template specialization. We therefore
2226 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002227 // into a template instantiation for this specific function template
2228 // specialization, which is not a SFINAE context, so that we diagnose any
2229 // further errors in the declaration itself.
2230 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2231 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2232 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2233 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002234 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002235 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002236 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002237 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002238 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002239 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2240 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002241 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002242 }
2243 }
Mike Stump1eb44332009-09-09 15:08:12 +00002244
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002245 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2246 assert(Proto && "Function template without prototype?");
2247
Sebastian Redl60618fa2011-03-12 11:50:43 +00002248 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002249 // The function has an exception specification or a "noreturn"
2250 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002251 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002252 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2253 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002254 if (const PackExpansionType *PackExpansion
2255 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2256 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002257 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002258 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2259 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002260 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002261 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002262
Douglas Gregorb99268b2010-12-21 00:52:54 +00002263 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002264 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002265 llvm::Optional<unsigned> NumExpansions
2266 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002267 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002268 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002269 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002270 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002271 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002272 RetainExpansion,
2273 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002274 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002275
Douglas Gregorb99268b2010-12-21 00:52:54 +00002276 if (!Expand) {
2277 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002278 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002279 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002280 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002281 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002282 TemplateArgs,
2283 New->getLocation(), New->getDeclName());
2284 if (T.isNull())
2285 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002286
Douglas Gregorcded4f62011-01-14 17:04:44 +00002287 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002288 Exceptions.push_back(T);
2289 continue;
2290 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002291
Douglas Gregorb99268b2010-12-21 00:52:54 +00002292 // Substitute into the pack expansion pattern for each template
2293 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002294 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002295 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002296
2297 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002298 TemplateArgs,
2299 New->getLocation(), New->getDeclName());
2300 if (T.isNull()) {
2301 Invalid = true;
2302 break;
2303 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002304
Douglas Gregorb99268b2010-12-21 00:52:54 +00002305 Exceptions.push_back(T);
2306 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002307
Douglas Gregorb99268b2010-12-21 00:52:54 +00002308 if (Invalid)
2309 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002310
Douglas Gregorb99268b2010-12-21 00:52:54 +00002311 continue;
2312 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002313
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002314 QualType T
2315 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2316 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002317 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002318 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2319 continue;
2320
2321 Exceptions.push_back(T);
2322 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002323 Expr *NoexceptExpr = 0;
2324 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +00002325 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2326 Sema::ConstantEvaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002327 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2328 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002329 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
Richard Smithf6702a32011-12-20 02:08:33 +00002330
Douglas Gregor5c340e82011-10-09 18:31:23 +00002331 if (E.isUsable()) {
2332 SourceLocation ErrLoc;
2333 llvm::APSInt NoexceptVal;
Sebastian Redl56fb9262011-03-14 18:51:50 +00002334 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002335 if (!NoexceptExpr->isTypeDependent() &&
2336 !NoexceptExpr->isValueDependent() &&
2337 !NoexceptExpr->isIntegerConstantExpr(NoexceptVal, SemaRef.Context,
2338 &ErrLoc, /*evaluated=*/false)){
2339 SemaRef.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression)
2340 << NoexceptExpr->getSourceRange();
2341 NoexceptExpr = 0;
2342 }
2343 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002344 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002345
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002346 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002347
John McCalle23cf432010-12-14 08:05:40 +00002348 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002349 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002350 EPI.NumExceptions = Exceptions.size();
2351 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002352 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002353 EPI.ExtInfo = Proto->getExtInfo();
2354
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002355 const FunctionProtoType *NewProto
2356 = New->getType()->getAs<FunctionProtoType>();
2357 assert(NewProto && "Template instantiation without function prototype?");
2358 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2359 NewProto->arg_type_begin(),
2360 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002361 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002362 }
2363
Richard Smith9f569cc2011-10-01 02:31:28 +00002364 // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2365 // a constexpr function template satisfies the requirements for a constexpr
2366 // function, then it is a constexpr function.
2367 if (Tmpl->isConstexpr() &&
2368 SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2369 New->setConstexpr(true);
2370
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002371 const FunctionDecl* Definition = Tmpl;
2372
2373 // Get the definition. Leaves the variable unchanged if undefined.
2374 Tmpl->isDefined(Definition);
2375
2376 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002377
Douglas Gregore53060f2009-06-25 22:08:12 +00002378 return false;
2379}
2380
Douglas Gregor5545e162009-03-24 00:38:23 +00002381/// \brief Initializes common fields of an instantiated method
2382/// declaration (New) from the corresponding fields of its template
2383/// (Tmpl).
2384///
2385/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002386bool
2387TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002388 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002389 if (InitFunctionInstantiation(New, Tmpl))
2390 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002391
Douglas Gregor5545e162009-03-24 00:38:23 +00002392 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002393 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002394 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002395
2396 // FIXME: attributes
2397 // FIXME: New needs a pointer to Tmpl
2398 return false;
2399}
Douglas Gregora58861f2009-05-13 20:28:22 +00002400
2401/// \brief Instantiate the definition of the given function from its
2402/// template.
2403///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002404/// \param PointOfInstantiation the point at which the instantiation was
2405/// required. Note that this is not precisely a "point of instantiation"
2406/// for the function, but it's close.
2407///
Douglas Gregora58861f2009-05-13 20:28:22 +00002408/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002409/// function template specialization or member function of a class template
2410/// specialization.
2411///
2412/// \param Recursive if true, recursively instantiates any functions that
2413/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002414///
2415/// \param DefinitionRequired if true, then we are performing an explicit
2416/// instantiation where the body of the function is required. Complain if
2417/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002418void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002419 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002420 bool Recursive,
2421 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002422 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002423 return;
2424
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002425 // Never instantiate an explicit specialization except if it is a class scope
2426 // explicit specialization.
2427 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2428 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002429 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002430
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002431 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002432 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002433 assert(PatternDecl && "instantiating a non-template");
2434
2435 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2436 assert(PatternDecl && "template definition is not a template");
2437 if (!Pattern) {
2438 // Try to find a defaulted definition
2439 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002440 }
Sean Huntf996e052011-05-27 20:00:14 +00002441 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002442
Francois Pichet8387e2a2011-04-22 22:18:13 +00002443 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002444 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002445 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002446 PendingInstantiations.push_back(
2447 std::make_pair(Function, PointOfInstantiation));
2448 return;
2449 }
2450
2451 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002452 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002453 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002454 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002455 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002456 Pattern = PatternDecl->getBody(PatternDecl);
2457 }
2458
Sean Huntf996e052011-05-27 20:00:14 +00002459 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002460 if (DefinitionRequired) {
2461 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002462 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002463 diag::err_explicit_instantiation_undefined_func_template)
2464 << Function->getPrimaryTemplate();
2465 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002466 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002467 diag::err_explicit_instantiation_undefined_member)
2468 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002469
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002470 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002471 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002472 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002473 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002474 } else if (Function->getTemplateSpecializationKind()
2475 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002476 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002477 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002478 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002479
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002480 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002481 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002482
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002483 // C++0x [temp.explicit]p9:
2484 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002485 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002486 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002487 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002488 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002489 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002490 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002491
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002492 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2493 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002494 return;
2495
Abramo Bagnarae9946242011-11-18 08:08:52 +00002496 // Copy the inner loc start from the pattern.
2497 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2498
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002499 // If we're performing recursive template instantiation, create our own
2500 // queue of pending implicit instantiations that we will instantiate later,
2501 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002502 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002503 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002504 if (Recursive) {
2505 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002506 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002507 }
Mike Stump1eb44332009-09-09 15:08:12 +00002508
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002509 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002510 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002511 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002512
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002513 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002514 // recorded, unless we're actually a member function within a local
2515 // class, in which case we need to merge our results with the parent
2516 // scope (of the enclosing function).
2517 bool MergeWithParentScope = false;
2518 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2519 MergeWithParentScope = Rec->isLocalClass();
2520
2521 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002522
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002523 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002524 // instantiation scope, and set the parameter names to those used
2525 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002526 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002527 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2528 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002529 if (!PatternParam->isParameterPack()) {
2530 // Simple case: not a parameter pack.
2531 assert(FParamIdx < Function->getNumParams());
2532 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2533 FunctionParam->setDeclName(PatternParam->getDeclName());
2534 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2535 ++FParamIdx;
2536 continue;
2537 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002538
Douglas Gregor12c9c002011-01-07 16:43:16 +00002539 // Expand the parameter pack.
2540 Scope.MakeInstantiatedLocalArgPack(PatternParam);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002541 for (unsigned NumFParams = Function->getNumParams();
2542 FParamIdx < NumFParams;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002543 ++FParamIdx) {
2544 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2545 FunctionParam->setDeclName(PatternParam->getDeclName());
2546 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2547 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002548 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002549
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002550 // Enter the scope of this instantiation. We don't use
2551 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002552 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002553
Mike Stump1eb44332009-09-09 15:08:12 +00002554 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002555 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002556
Sean Huntcd10dec2011-05-23 23:14:04 +00002557 if (PatternDecl->isDefaulted()) {
2558 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2559
2560 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002561 } else {
2562 // If this is a constructor, instantiate the member initializers.
2563 if (const CXXConstructorDecl *Ctor =
2564 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2565 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2566 TemplateArgs);
2567 }
2568
2569 // Instantiate the function body.
2570 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2571
2572 if (Body.isInvalid())
2573 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002574
Sean Huntcd10dec2011-05-23 23:14:04 +00002575 ActOnFinishFunctionBody(Function, Body.get(),
2576 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002577 }
2578
John McCall0c01d182010-03-24 05:22:00 +00002579 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2580
John McCalleee1d542011-02-14 07:13:47 +00002581 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002582
2583 DeclGroupRef DG(Function);
2584 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002585
Douglas Gregor60406be2010-01-16 22:29:39 +00002586 // This class may have local implicit instantiations that need to be
2587 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002588 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002589 Scope.Exit();
2590
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002591 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002592 // Define any pending vtables.
2593 DefineUsedVTables();
2594
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002595 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002596 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002597 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002598
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002599 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002600 assert(VTableUses.empty() &&
2601 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002602 VTableUses.swap(SavedVTableUses);
2603
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002604 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002605 assert(PendingInstantiations.empty() &&
2606 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002607 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002608 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002609}
2610
2611/// \brief Instantiate the definition of the given variable from its
2612/// template.
2613///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002614/// \param PointOfInstantiation the point at which the instantiation was
2615/// required. Note that this is not precisely a "point of instantiation"
2616/// for the function, but it's close.
2617///
2618/// \param Var the already-instantiated declaration of a static member
2619/// variable of a class template specialization.
2620///
2621/// \param Recursive if true, recursively instantiates any functions that
2622/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002623///
2624/// \param DefinitionRequired if true, then we are performing an explicit
2625/// instantiation where an out-of-line definition of the member variable
2626/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002627void Sema::InstantiateStaticDataMemberDefinition(
2628 SourceLocation PointOfInstantiation,
2629 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002630 bool Recursive,
2631 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002632 if (Var->isInvalidDecl())
2633 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002634
Douglas Gregor7caa6822009-07-24 20:34:43 +00002635 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002636 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002637 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002638 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002639 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002640
Douglas Gregor0d035142009-10-27 18:42:08 +00002641 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002642 // We did not find an out-of-line definition of this static data member,
2643 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002644 // instantiate this definition (or provide a specialization for it) in
2645 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002646 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002647 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002648 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002649 diag::err_explicit_instantiation_undefined_member)
2650 << 2 << Var->getDeclName() << Var->getDeclContext();
2651 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002652 } else if (Var->getTemplateSpecializationKind()
2653 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002654 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002655 std::make_pair(Var, PointOfInstantiation));
2656 }
2657
Douglas Gregor7caa6822009-07-24 20:34:43 +00002658 return;
2659 }
2660
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002661 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002662 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002663 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002664
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002665 // C++0x [temp.explicit]p9:
2666 // Except for inline functions, other explicit instantiation declarations
2667 // have the effect of suppressing the implicit instantiation of the entity
2668 // to which they refer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002669 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002670 == TSK_ExplicitInstantiationDeclaration)
2671 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002672
Douglas Gregorf15748a2011-06-03 03:35:07 +00002673 // If we already have a definition, we're done.
2674 if (Var->getDefinition())
2675 return;
2676
Douglas Gregor7caa6822009-07-24 20:34:43 +00002677 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2678 if (Inst)
2679 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002680
Douglas Gregor7caa6822009-07-24 20:34:43 +00002681 // If we're performing recursive template instantiation, create our own
2682 // queue of pending implicit instantiations that we will instantiate later,
2683 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002684 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002685 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002686 if (Recursive) {
2687 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002688 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002689 }
Mike Stump1eb44332009-09-09 15:08:12 +00002690
Douglas Gregor7caa6822009-07-24 20:34:43 +00002691 // Enter the scope of this instantiation. We don't use
2692 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002693 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002694
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002695 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002696 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002697 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002698
2699 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002700
2701 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002702 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2703 assert(MSInfo && "Missing member specialization information?");
2704 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2705 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002706 DeclGroupRef DG(Var);
2707 Consumer.HandleTopLevelDecl(DG);
2708 }
Mike Stump1eb44332009-09-09 15:08:12 +00002709
Douglas Gregor7caa6822009-07-24 20:34:43 +00002710 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002711 // Define any newly required vtables.
2712 DefineUsedVTables();
2713
Douglas Gregor7caa6822009-07-24 20:34:43 +00002714 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002715 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002716 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002717
Nick Lewycky81559102011-05-31 07:58:42 +00002718 // Restore the set of pending vtables.
2719 assert(VTableUses.empty() &&
2720 "VTableUses should be empty before it is discarded, "
2721 "while instantiating static data member.");
2722 VTableUses.swap(SavedVTableUses);
2723
Douglas Gregor7caa6822009-07-24 20:34:43 +00002724 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002725 assert(PendingInstantiations.empty() &&
2726 "PendingInstantiations should be empty before it is discarded, "
2727 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002728 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002729 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002730}
Douglas Gregor815215d2009-05-27 05:35:12 +00002731
Benjamin Kramer54dec5f2011-10-08 16:15:07 +00002732static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args,
2733 const CXXCtorInitializer *Init) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002734 // FIXME: This is a hack that will do slightly the wrong thing for an
2735 // initializer of the form foo({...}).
2736 // The right thing to do would be to modify InstantiateInitializer to create
2737 // the MultiInitializer.
2738 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2739 return MultiInitializer(Args[0]);
Sebastian Redlc046f302011-10-17 16:53:50 +00002740 return MultiInitializer(Init->getLParenLoc(), Args.data(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002741 Args.size(), Init->getRParenLoc());
2742}
2743
Anders Carlsson09025312009-08-29 05:16:22 +00002744void
2745Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2746 const CXXConstructorDecl *Tmpl,
2747 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002748
Richard Trieu90ab75b2011-09-09 03:18:59 +00002749 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002750 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002751
Anders Carlsson09025312009-08-29 05:16:22 +00002752 // Instantiate all the initializers.
2753 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002754 InitsEnd = Tmpl->init_end();
2755 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002756 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002757
Chandler Carruth030ef472010-09-03 21:54:20 +00002758 // Only instantiate written initializers, let Sema re-construct implicit
2759 // ones.
2760 if (!Init->isWritten())
2761 continue;
2762
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002763 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002764 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002765
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002766 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002767
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002768 if (Init->isPackExpansion()) {
2769 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00002770 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002771 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002772 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2773 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002774 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002775 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002776 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002777 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002778 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002779 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002780 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002781 NumExpansions)) {
2782 AnyErrors = true;
2783 New->setInvalidDecl();
2784 continue;
2785 }
2786 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002787
2788 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002789 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002790 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2791
2792 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002793 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002794 LParenLoc, NewArgs, RParenLoc)) {
2795 AnyErrors = true;
2796 break;
2797 }
2798
2799 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00002800 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002801 TemplateArgs,
2802 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002803 New->getDeclName());
2804 if (!BaseTInfo) {
2805 AnyErrors = true;
2806 break;
2807 }
2808
2809 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002810 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2811 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2812 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002813 New->getParent(),
2814 SourceLocation());
2815 if (NewInit.isInvalid()) {
2816 AnyErrors = true;
2817 break;
2818 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002819
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002820 NewInits.push_back(NewInit.get());
2821 NewArgs.clear();
2822 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002823
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002824 continue;
2825 }
2826
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002827 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002828 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002829 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002830 AnyErrors = true;
2831 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002832 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002833
Anders Carlsson09025312009-08-29 05:16:22 +00002834 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00002835 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
2836 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
2837 TemplateArgs,
2838 Init->getSourceLocation(),
2839 New->getDeclName());
2840 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002841 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002842 New->setInvalidDecl();
2843 continue;
2844 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002845
2846 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
Douglas Gregor76852c22011-11-01 01:16:03 +00002847
2848 if (Init->isBaseInitializer())
2849 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, MultiInit,
2850 New->getParent(), EllipsisLoc);
2851 else
2852 NewInit = BuildDelegatingInitializer(TInfo, MultiInit,
2853 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00002854 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002855 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002856 Init->getMemberLocation(),
2857 Init->getMember(),
2858 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002859 if (!Member) {
2860 AnyErrors = true;
2861 New->setInvalidDecl();
2862 continue;
2863 }
Mike Stump1eb44332009-09-09 15:08:12 +00002864
Sebastian Redl6df65482011-09-24 17:48:25 +00002865 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2866 NewInit = BuildMemberInitializer(Member, MultiInit,
2867 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002868 } else if (Init->isIndirectMemberInitializer()) {
2869 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002870 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002871 Init->getMemberLocation(),
2872 Init->getIndirectMember(), TemplateArgs));
2873
Douglas Gregorb7107222011-03-04 19:46:35 +00002874 if (!IndirectMember) {
2875 AnyErrors = true;
2876 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002877 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002878 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002879
2880 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2881 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2882 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002883 }
2884
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002885 if (NewInit.isInvalid()) {
2886 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002887 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002888 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002889 // FIXME: It would be nice if ASTOwningVector had a release function.
2890 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002891
Richard Trieu90ab75b2011-09-09 03:18:59 +00002892 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002893 }
2894 }
Mike Stump1eb44332009-09-09 15:08:12 +00002895
Anders Carlsson09025312009-08-29 05:16:22 +00002896 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002897 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002898 /*FIXME: ColonLoc */
2899 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002900 NewInits.data(), NewInits.size(),
2901 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002902}
2903
John McCall52a575a2009-08-29 08:11:13 +00002904// TODO: this could be templated if the various decl types used the
2905// same method name.
2906static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2907 ClassTemplateDecl *Instance) {
2908 Pattern = Pattern->getCanonicalDecl();
2909
2910 do {
2911 Instance = Instance->getCanonicalDecl();
2912 if (Pattern == Instance) return true;
2913 Instance = Instance->getInstantiatedFromMemberTemplate();
2914 } while (Instance);
2915
2916 return false;
2917}
2918
Douglas Gregor0d696532009-09-28 06:34:35 +00002919static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2920 FunctionTemplateDecl *Instance) {
2921 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002922
Douglas Gregor0d696532009-09-28 06:34:35 +00002923 do {
2924 Instance = Instance->getCanonicalDecl();
2925 if (Pattern == Instance) return true;
2926 Instance = Instance->getInstantiatedFromMemberTemplate();
2927 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002928
Douglas Gregor0d696532009-09-28 06:34:35 +00002929 return false;
2930}
2931
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002932static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002933isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2934 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002935 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002936 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2937 do {
2938 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2939 Instance->getCanonicalDecl());
2940 if (Pattern == Instance)
2941 return true;
2942 Instance = Instance->getInstantiatedFromMember();
2943 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002944
Douglas Gregored9c0f92009-10-29 00:04:11 +00002945 return false;
2946}
2947
John McCall52a575a2009-08-29 08:11:13 +00002948static bool isInstantiationOf(CXXRecordDecl *Pattern,
2949 CXXRecordDecl *Instance) {
2950 Pattern = Pattern->getCanonicalDecl();
2951
2952 do {
2953 Instance = Instance->getCanonicalDecl();
2954 if (Pattern == Instance) return true;
2955 Instance = Instance->getInstantiatedFromMemberClass();
2956 } while (Instance);
2957
2958 return false;
2959}
2960
2961static bool isInstantiationOf(FunctionDecl *Pattern,
2962 FunctionDecl *Instance) {
2963 Pattern = Pattern->getCanonicalDecl();
2964
2965 do {
2966 Instance = Instance->getCanonicalDecl();
2967 if (Pattern == Instance) return true;
2968 Instance = Instance->getInstantiatedFromMemberFunction();
2969 } while (Instance);
2970
2971 return false;
2972}
2973
2974static bool isInstantiationOf(EnumDecl *Pattern,
2975 EnumDecl *Instance) {
2976 Pattern = Pattern->getCanonicalDecl();
2977
2978 do {
2979 Instance = Instance->getCanonicalDecl();
2980 if (Pattern == Instance) return true;
2981 Instance = Instance->getInstantiatedFromMemberEnum();
2982 } while (Instance);
2983
2984 return false;
2985}
2986
John McCalled976492009-12-04 22:46:56 +00002987static bool isInstantiationOf(UsingShadowDecl *Pattern,
2988 UsingShadowDecl *Instance,
2989 ASTContext &C) {
2990 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2991}
2992
2993static bool isInstantiationOf(UsingDecl *Pattern,
2994 UsingDecl *Instance,
2995 ASTContext &C) {
2996 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2997}
2998
John McCall7ba107a2009-11-18 02:36:19 +00002999static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3000 UsingDecl *Instance,
3001 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003002 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003003}
3004
3005static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003006 UsingDecl *Instance,
3007 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003008 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003009}
3010
John McCall52a575a2009-08-29 08:11:13 +00003011static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3012 VarDecl *Instance) {
3013 assert(Instance->isStaticDataMember());
3014
3015 Pattern = Pattern->getCanonicalDecl();
3016
3017 do {
3018 Instance = Instance->getCanonicalDecl();
3019 if (Pattern == Instance) return true;
3020 Instance = Instance->getInstantiatedFromStaticDataMember();
3021 } while (Instance);
3022
3023 return false;
3024}
3025
John McCalled976492009-12-04 22:46:56 +00003026// Other is the prospective instantiation
3027// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003028static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003029 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003030 if (UnresolvedUsingTypenameDecl *UUD
3031 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3032 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3033 return isInstantiationOf(UUD, UD, Ctx);
3034 }
3035 }
3036
3037 if (UnresolvedUsingValueDecl *UUD
3038 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003039 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3040 return isInstantiationOf(UUD, UD, Ctx);
3041 }
3042 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003043
Anders Carlsson0d8df782009-08-29 19:37:28 +00003044 return false;
3045 }
Mike Stump1eb44332009-09-09 15:08:12 +00003046
John McCall52a575a2009-08-29 08:11:13 +00003047 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3048 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003049
John McCall52a575a2009-08-29 08:11:13 +00003050 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3051 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003052
John McCall52a575a2009-08-29 08:11:13 +00003053 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3054 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003055
Douglas Gregor7caa6822009-07-24 20:34:43 +00003056 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003057 if (Var->isStaticDataMember())
3058 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3059
3060 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3061 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003062
Douglas Gregor0d696532009-09-28 06:34:35 +00003063 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3064 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3065
Douglas Gregored9c0f92009-10-29 00:04:11 +00003066 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3067 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3068 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3069 PartialSpec);
3070
Anders Carlssond8b285f2009-09-01 04:26:58 +00003071 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3072 if (!Field->getDeclName()) {
3073 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003074 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003075 cast<FieldDecl>(D);
3076 }
3077 }
Mike Stump1eb44332009-09-09 15:08:12 +00003078
John McCalled976492009-12-04 22:46:56 +00003079 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3080 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3081
3082 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3083 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3084
Douglas Gregor815215d2009-05-27 05:35:12 +00003085 return D->getDeclName() && isa<NamedDecl>(Other) &&
3086 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3087}
3088
3089template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003090static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003091 NamedDecl *D,
3092 ForwardIterator first,
3093 ForwardIterator last) {
3094 for (; first != last; ++first)
3095 if (isInstantiationOf(Ctx, D, *first))
3096 return cast<NamedDecl>(*first);
3097
3098 return 0;
3099}
3100
John McCall02cace72009-08-28 07:59:38 +00003101/// \brief Finds the instantiation of the given declaration context
3102/// within the current instantiation.
3103///
3104/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003105DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003106 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003107 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003108 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003109 return cast_or_null<DeclContext>(ID);
3110 } else return DC;
3111}
3112
Douglas Gregored961e72009-05-27 17:54:46 +00003113/// \brief Find the instantiation of the given declaration within the
3114/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003115///
3116/// This routine is intended to be used when \p D is a declaration
3117/// referenced from within a template, that needs to mapped into the
3118/// corresponding declaration within an instantiation. For example,
3119/// given:
3120///
3121/// \code
3122/// template<typename T>
3123/// struct X {
3124/// enum Kind {
3125/// KnownValue = sizeof(T)
3126/// };
3127///
3128/// bool getKind() const { return KnownValue; }
3129/// };
3130///
3131/// template struct X<int>;
3132/// \endcode
3133///
3134/// In the instantiation of X<int>::getKind(), we need to map the
3135/// EnumConstantDecl for KnownValue (which refers to
3136/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003137/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3138/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003139NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003140 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003141 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003142 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003143 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003144 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003145 // D is a local of some kind. Look into the map of local
3146 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003147 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3148 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3149 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003150
Chris Lattner57ad3782011-02-17 20:34:02 +00003151 if (Found) {
3152 if (Decl *FD = Found->dyn_cast<Decl *>())
3153 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003154
Chris Lattner57ad3782011-02-17 20:34:02 +00003155 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3156 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3157 }
3158
3159 // If we didn't find the decl, then we must have a label decl that hasn't
3160 // been found yet. Lazily instantiate it and return it now.
3161 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003162
Chris Lattner57ad3782011-02-17 20:34:02 +00003163 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3164 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003165
Chris Lattner57ad3782011-02-17 20:34:02 +00003166 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3167 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003168 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003169
Douglas Gregore95b4092009-09-16 18:34:49 +00003170 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3171 if (!Record->isDependentContext())
3172 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003173
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003174 // Determine whether this record is the "templated" declaration describing
3175 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003176 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003177 if (ClassTemplate)
3178 ClassTemplate = ClassTemplate->getCanonicalDecl();
3179 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3180 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3181 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3182
3183 // Walk the current context to find either the record or an instantiation of
3184 // it.
3185 DeclContext *DC = CurContext;
3186 while (!DC->isFileContext()) {
3187 // If we're performing substitution while we're inside the template
3188 // definition, we'll find our own context. We're done.
3189 if (DC->Equals(Record))
3190 return Record;
3191
3192 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3193 // Check whether we're in the process of instantiating a class template
3194 // specialization of the template we're mapping.
3195 if (ClassTemplateSpecializationDecl *InstSpec
3196 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3197 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3198 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3199 return InstRecord;
3200 }
3201
3202 // Check whether we're in the process of instantiating a member class.
3203 if (isInstantiationOf(Record, InstRecord))
3204 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003205 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003206
3207
3208 // Move to the outer template scope.
3209 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3210 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3211 DC = FD->getLexicalDeclContext();
3212 continue;
3213 }
John McCall52a575a2009-08-29 08:11:13 +00003214 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003215
3216 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003217 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003218
Douglas Gregore95b4092009-09-16 18:34:49 +00003219 // Fall through to deal with other dependent record types (e.g.,
3220 // anonymous unions in class templates).
3221 }
John McCall52a575a2009-08-29 08:11:13 +00003222
Douglas Gregore95b4092009-09-16 18:34:49 +00003223 if (!ParentDC->isDependentContext())
3224 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003225
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003226 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003227 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003228 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003229
Douglas Gregor815215d2009-05-27 05:35:12 +00003230 if (ParentDC != D->getDeclContext()) {
3231 // We performed some kind of instantiation in the parent context,
3232 // so now we need to look into the instantiated parent context to
3233 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003234
John McCall3cb0ebd2010-03-10 03:28:59 +00003235 // If our context used to be dependent, we may need to instantiate
3236 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003237 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003238 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003239 if (!Spec->isDependentContext()) {
3240 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003241 const RecordType *Tag = T->getAs<RecordType>();
3242 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003243 if (Tag->isBeingDefined())
3244 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003245 if (!Tag->isBeingDefined() &&
3246 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3247 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003248
3249 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003250 }
3251 }
3252
Douglas Gregor815215d2009-05-27 05:35:12 +00003253 NamedDecl *Result = 0;
3254 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003255 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003256 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3257 } else {
3258 // Since we don't have a name for the entity we're looking for,
3259 // our only option is to walk through all of the declarations to
3260 // find that name. This will occur in a few cases:
3261 //
3262 // - anonymous struct/union within a template
3263 // - unnamed class/struct/union/enum within a template
3264 //
3265 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003266 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003267 ParentDC->decls_begin(),
3268 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003269 }
Mike Stump1eb44332009-09-09 15:08:12 +00003270
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003271 if (!Result) {
3272 if (isa<UsingShadowDecl>(D)) {
3273 // UsingShadowDecls can instantiate to nothing because of using hiding.
3274 } else if (Diags.hasErrorOccurred()) {
3275 // We've already complained about something, so most likely this
3276 // declaration failed to instantiate. There's no point in complaining
3277 // further, since this is normal in invalid code.
3278 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003279 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003280 // instantiated, and we haven't gotten around to instantiating this
3281 // member yet. This can happen when the code uses forward declarations
3282 // of member classes, and introduces ordering dependencies via
3283 // template instantiation.
3284 Diag(Loc, diag::err_member_not_yet_instantiated)
3285 << D->getDeclName()
3286 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3287 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3288 } else {
3289 // We should have found something, but didn't.
3290 llvm_unreachable("Unable to find instantiation of declaration!");
3291 }
3292 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003293
Douglas Gregor815215d2009-05-27 05:35:12 +00003294 D = Result;
3295 }
3296
Douglas Gregor815215d2009-05-27 05:35:12 +00003297 return D;
3298}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003299
Mike Stump1eb44332009-09-09 15:08:12 +00003300/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003301/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003302void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003303 // Load pending instantiations from the external source.
3304 if (!LocalOnly && ExternalSource) {
3305 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3306 ExternalSource->ReadPendingInstantiations(Pending);
3307 PendingInstantiations.insert(PendingInstantiations.begin(),
3308 Pending.begin(), Pending.end());
3309 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003310
Douglas Gregor60406be2010-01-16 22:29:39 +00003311 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003312 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003313 PendingImplicitInstantiation Inst;
3314
3315 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003316 Inst = PendingInstantiations.front();
3317 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003318 } else {
3319 Inst = PendingLocalImplicitInstantiations.front();
3320 PendingLocalImplicitInstantiations.pop_front();
3321 }
Mike Stump1eb44332009-09-09 15:08:12 +00003322
Douglas Gregor7caa6822009-07-24 20:34:43 +00003323 // Instantiate function definitions
3324 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003325 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3326 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003327 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3328 TSK_ExplicitInstantiationDefinition;
3329 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3330 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003331 continue;
3332 }
Mike Stump1eb44332009-09-09 15:08:12 +00003333
Douglas Gregor7caa6822009-07-24 20:34:43 +00003334 // Instantiate static data member definitions.
3335 VarDecl *Var = cast<VarDecl>(Inst.first);
3336 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003337
Chandler Carruth291b4412010-02-13 10:17:50 +00003338 // Don't try to instantiate declarations if the most recent redeclaration
3339 // is invalid.
3340 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3341 continue;
3342
3343 // Check if the most recent declaration has changed the specialization kind
3344 // and removed the need for implicit instantiation.
3345 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3346 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003347 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003348 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003349 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003350 continue; // No longer need to instantiate this type.
3351 case TSK_ExplicitInstantiationDefinition:
3352 // We only need an instantiation if the pending instantiation *is* the
3353 // explicit instantiation.
3354 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003355 case TSK_ImplicitInstantiation:
3356 break;
3357 }
3358
John McCallf312b1e2010-08-26 23:41:50 +00003359 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3360 "instantiating static data member "
3361 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003362
Chandler Carruth58e390e2010-08-25 08:27:02 +00003363 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3364 TSK_ExplicitInstantiationDefinition;
3365 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3366 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003367 }
3368}
John McCall0c01d182010-03-24 05:22:00 +00003369
3370void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3371 const MultiLevelTemplateArgumentList &TemplateArgs) {
3372 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3373 E = Pattern->ddiag_end(); I != E; ++I) {
3374 DependentDiagnostic *DD = *I;
3375
3376 switch (DD->getKind()) {
3377 case DependentDiagnostic::Access:
3378 HandleDependentAccessCheck(*DD, TemplateArgs);
3379 break;
3380 }
3381 }
3382}