blob: 218beaa682b5da2c4e4f8014041617ee015da3d1 [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()) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +000069 // The alignment expression is not potentially evaluated.
John McCall1d8d1cc2010-08-01 02:01:53 +000070 EnterExpressionEvaluationContext Unevaluated(*this,
John McCallf312b1e2010-08-26 23:41:50 +000071 Sema::Unevaluated);
Chandler Carruth4ced79f2010-06-25 03:22:07 +000072
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentExpr()) {
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>());
78 }
79 else {
80 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000081 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000082 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000083 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000084 if (Result)
85 AddAlignedAttr(Aligned->getLocation(), New, Result);
86 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000087 continue;
88 }
89 }
90
Anders Carlssond8fe2d52009-11-07 06:07:58 +000091 // FIXME: Is cloning correct for all attributes?
John McCall1d8d1cc2010-08-01 02:01:53 +000092 Attr *NewAttr = TmplAttr->clone(Context);
Anders Carlssond8fe2d52009-11-07 06:07:58 +000093 New->addAttr(NewAttr);
94 }
95}
96
Douglas Gregor4f722be2009-03-25 15:45:12 +000097Decl *
98TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +000099 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000100}
101
102Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000103TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
104 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
105 D->getIdentifier());
106 Owner->addDecl(Inst);
107 return Inst;
108}
109
110Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000111TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000112 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113}
114
John McCall3dbd3d52010-02-16 06:53:13 +0000115Decl *
116TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
117 NamespaceAliasDecl *Inst
118 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
119 D->getNamespaceLoc(),
120 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000121 D->getIdentifier(),
122 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000123 D->getTargetNameLoc(),
124 D->getNamespace());
125 Owner->addDecl(Inst);
126 return Inst;
127}
128
Richard Smith3e4c6c42011-05-05 21:57:07 +0000129Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
130 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000131 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000132 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000133 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000134 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000135 DI = SemaRef.SubstType(DI, TemplateArgs,
136 D->getLocation(), D->getDeclName());
137 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000138 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000139 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000140 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000141 } else {
142 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000143 }
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000145 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000146 TypedefNameDecl *Typedef;
147 if (IsTypeAlias)
148 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
149 D->getLocation(), D->getIdentifier(), DI);
150 else
151 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
152 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000153 if (Invalid)
154 Typedef->setInvalidDecl();
155
John McCallcde5a402011-02-01 08:20:08 +0000156 // If the old typedef was the name for linkage purposes of an anonymous
157 // tag decl, re-establish that relationship for the new typedef.
158 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
159 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000160 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000161 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000162 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
163 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000164 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000165 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000166
Richard Smith162e1c12011-04-15 14:24:37 +0000167 if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000168 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
169 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000170 if (!InstPrev)
171 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000172
Richard Smith162e1c12011-04-15 14:24:37 +0000173 Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
John McCall5126fd02009-12-30 00:31:22 +0000174 }
175
John McCall1d8d1cc2010-08-01 02:01:53 +0000176 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000177
John McCall46460a62010-01-20 21:53:11 +0000178 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000180 return Typedef;
181}
182
Richard Smith162e1c12011-04-15 14:24:37 +0000183Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000184 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
185 Owner->addDecl(Typedef);
186 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000187}
188
189Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000190 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
191 Owner->addDecl(Typedef);
192 return Typedef;
193}
194
195Decl *
196TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
197 // Create a local instantiation scope for this type alias template, which
198 // will contain the instantiations of the template parameters.
199 LocalInstantiationScope Scope(SemaRef);
200
201 TemplateParameterList *TempParams = D->getTemplateParameters();
202 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
203 if (!InstParams)
204 return 0;
205
206 TypeAliasDecl *Pattern = D->getTemplatedDecl();
207
208 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
209 if (Pattern->getPreviousDeclaration()) {
210 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
211 if (Found.first != Found.second) {
212 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
213 }
214 }
215
216 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
217 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
218 if (!AliasInst)
219 return 0;
220
221 TypeAliasTemplateDecl *Inst
222 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
223 D->getDeclName(), InstParams, AliasInst);
224 if (PrevAliasTemplate)
225 Inst->setPreviousDeclaration(PrevAliasTemplate);
226
227 Inst->setAccess(D->getAccess());
228
229 if (!PrevAliasTemplate)
230 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000231
Richard Smith3e4c6c42011-05-05 21:57:07 +0000232 Owner->addDecl(Inst);
233
234 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000235}
236
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000237/// \brief Instantiate an initializer, breaking it into separate
238/// initialization arguments.
239///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000240/// \param Init The initializer to instantiate.
241///
242/// \param TemplateArgs Template arguments to be substituted into the
243/// initializer.
244///
245/// \param NewArgs Will be filled in with the instantiation arguments.
246///
247/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000248bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000249 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000250 SourceLocation &LParenLoc,
251 ASTOwningVector<Expr*> &NewArgs,
252 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000253 NewArgs.clear();
254 LParenLoc = SourceLocation();
255 RParenLoc = SourceLocation();
256
257 if (!Init)
258 return false;
259
John McCall4765fa02010-12-06 08:20:24 +0000260 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000261 Init = ExprTemp->getSubExpr();
262
263 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
264 Init = Binder->getSubExpr();
265
266 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
267 Init = ICE->getSubExprAsWritten();
268
269 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
270 LParenLoc = ParenList->getLParenLoc();
271 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000272 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
273 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000274 }
275
276 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000277 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000278 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
279 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000280 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000281
Douglas Gregor28329e52010-03-24 21:22:47 +0000282 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000283 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000284 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000285 return false;
286 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000287 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000288
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000289 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000290 if (Result.isInvalid())
291 return true;
292
293 NewArgs.push_back(Result.takeAs<Expr>());
294 return false;
295}
296
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000297Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000298 // If this is the variable for an anonymous struct or union,
299 // instantiate the anonymous struct/union type first.
300 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
301 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
302 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
303 return 0;
304
John McCallce3ff2b2009-08-25 22:02:44 +0000305 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000306 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000307 TemplateArgs,
308 D->getTypeSpecStartLoc(),
309 D->getDeclName());
310 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000311 return 0;
312
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000313 if (DI->getType()->isFunctionType()) {
314 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
315 << D->isStaticDataMember() << DI->getType();
316 return 0;
317 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000318
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000319 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000320 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000321 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000322 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000323 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000324 D->getStorageClass(),
325 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 Var->setThreadSpecified(D->isThreadSpecified());
327 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000328 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000329
John McCallb6217662010-03-15 10:12:16 +0000330 // Substitute the nested name specifier, if any.
331 if (SubstQualifier(D, Var))
332 return 0;
333
Mike Stump1eb44332009-09-09 15:08:12 +0000334 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000335 // out-of-line, the instantiation will have the same lexical
336 // context (which will be a namespace scope) as the template.
337 if (D->isOutOfLine())
338 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000339
John McCall46460a62010-01-20 21:53:11 +0000340 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000341
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000342 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000343 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000344 Var->setReferenced(D->isReferenced());
345 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000346
Mike Stump390b4cc2009-05-16 07:39:55 +0000347 // FIXME: In theory, we could have a previous declaration for variables that
348 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000349 // FIXME: having to fake up a LookupResult is dumb.
350 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000351 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000352 if (D->isStaticDataMember())
353 SemaRef.LookupQualifiedName(Previous, Owner, false);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000354 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Douglas Gregor7caa6822009-07-24 20:34:43 +0000356 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000357 if (!D->isStaticDataMember())
358 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000359 Owner->makeDeclVisibleInContext(Var);
360 } else {
361 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000362 if (Owner->isFunctionOrMethod())
363 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000364 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000365 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000366
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000367 // Link instantiations of static data members back to the template from
368 // which they were instantiated.
369 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000370 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000371 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000372
Douglas Gregor60c93c92010-02-09 07:26:29 +0000373 if (Var->getAnyInitializer()) {
374 // We already have an initializer in the class.
375 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000376 if (Var->isStaticDataMember() && !D->isOutOfLine())
377 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
378 else
379 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
380
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000381 // Instantiate the initializer.
382 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000383 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000384 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
385 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000386 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000387 // Attach the initializer to the declaration, if we have one.
388 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000389 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000390 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000391 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000392 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000393 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000394 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000395 RParenLoc,
396 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000397 } else {
398 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000399 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000400 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000401 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000402 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000403 // FIXME: Not too happy about invalidating the declaration
404 // because of a bogus initializer.
405 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000406 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000407
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000408 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000409 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
410 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000411 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000412
Richard Smithe3499ca2011-06-21 23:42:09 +0000413 // Diagnose unused local variables with dependent types, where the diagnostic
414 // will have been deferred.
415 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
416 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000417 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000418
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000419 return Var;
420}
421
Abramo Bagnara6206d532010-06-05 05:09:32 +0000422Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
423 AccessSpecDecl* AD
424 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
425 D->getAccessSpecifierLoc(), D->getColonLoc());
426 Owner->addHiddenDecl(AD);
427 return AD;
428}
429
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000430Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
431 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000432 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000433 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000434 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000435 DI = SemaRef.SubstType(DI, TemplateArgs,
436 D->getLocation(), D->getDeclName());
437 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000438 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000439 Invalid = true;
440 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000441 // C++ [temp.arg.type]p3:
442 // If a declaration acquires a function type through a type
443 // dependent on a template-parameter and this causes a
444 // declaration that does not use the syntactic form of a
445 // function declarator to have function type, the program is
446 // ill-formed.
447 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000448 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000449 Invalid = true;
450 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000451 } else {
452 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000453 }
454
455 Expr *BitWidth = D->getBitWidth();
456 if (Invalid)
457 BitWidth = 0;
458 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000459 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000460 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000461
John McCall60d7b3a2010-08-24 06:29:42 +0000462 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000463 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000464 if (InstantiatedBitWidth.isInvalid()) {
465 Invalid = true;
466 BitWidth = 0;
467 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000468 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000469 }
470
John McCall07fb6be2009-10-22 23:33:21 +0000471 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
472 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000473 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474 D->getLocation(),
475 D->isMutable(),
476 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000477 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000478 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000479 D->getAccess(),
480 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000481 if (!Field) {
482 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000483 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000484 }
Mike Stump1eb44332009-09-09 15:08:12 +0000485
John McCall1d8d1cc2010-08-01 02:01:53 +0000486 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000487
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000488 if (Invalid)
489 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000491 if (!Field->getDeclName()) {
492 // Keep track of where this decl came from.
493 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000494 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000495 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
496 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000497 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000498 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000499 }
Mike Stump1eb44332009-09-09 15:08:12 +0000500
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000501 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000502 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000503 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000504
505 return Field;
506}
507
Francois Pichet87c2e122010-11-21 06:08:52 +0000508Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
509 NamedDecl **NamedChain =
510 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
511
512 int i = 0;
513 for (IndirectFieldDecl::chain_iterator PI =
514 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000515 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000516 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000517 TemplateArgs);
518 if (!Next)
519 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000520
Douglas Gregorb7107222011-03-04 19:46:35 +0000521 NamedChain[i++] = Next;
522 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000523
Francois Pichet40e17752010-12-09 10:07:54 +0000524 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000525 IndirectFieldDecl* IndirectField
526 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000527 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000528 NamedChain, D->getChainingSize());
529
530
531 IndirectField->setImplicit(D->isImplicit());
532 IndirectField->setAccess(D->getAccess());
533 Owner->addDecl(IndirectField);
534 return IndirectField;
535}
536
John McCall02cace72009-08-28 07:59:38 +0000537Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000538 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000539 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000540 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000541 TypeSourceInfo *InstTy;
542 // If this is an unsupported friend, don't bother substituting template
543 // arguments into it. The actual type referred to won't be used by any
544 // parts of Clang, and may not be valid for instantiating. Just use the
545 // same info for the instantiated friend.
546 if (D->isUnsupportedFriend()) {
547 InstTy = Ty;
548 } else {
549 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
550 D->getLocation(), DeclarationName());
551 }
552 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000553 return 0;
John McCall02cace72009-08-28 07:59:38 +0000554
Douglas Gregor06245bf2010-04-07 17:57:12 +0000555 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
556 if (!FD)
557 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000558
Douglas Gregor06245bf2010-04-07 17:57:12 +0000559 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000560 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000561 Owner->addDecl(FD);
562 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000563 }
564
Douglas Gregor06245bf2010-04-07 17:57:12 +0000565 NamedDecl *ND = D->getFriendDecl();
566 assert(ND && "friend decl must be a decl or a type!");
567
John McCallaf2094e2010-04-08 09:05:18 +0000568 // All of the Visit implementations for the various potential friend
569 // declarations have to be carefully written to work for friend
570 // objects, with the most important detail being that the target
571 // decl should almost certainly not be placed in Owner.
572 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000573 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000574
John McCall02cace72009-08-28 07:59:38 +0000575 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000576 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000577 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000578 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000579 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000580 Owner->addDecl(FD);
581 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000582}
583
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000584Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
585 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000586
Douglas Gregorac7610d2009-06-22 20:57:11 +0000587 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000588 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000589
John McCall60d7b3a2010-08-24 06:29:42 +0000590 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000591 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000592 if (InstantiatedAssertExpr.isInvalid())
593 return 0;
594
John McCall60d7b3a2010-08-24 06:29:42 +0000595 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000596 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000597 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000598 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000599 Message.get(),
600 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000601}
602
603Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000604 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000605 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000606 /*PrevDecl=*/0, D->isScoped(),
607 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000608 if (D->isFixed()) {
609 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
610 // If we have type source information for the underlying type, it means it
611 // has been explicitly set by the user. Perform substitution on it before
612 // moving on.
613 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
614 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
615 TemplateArgs,
616 UnderlyingLoc,
617 DeclarationName()));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000618
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000619 if (!Enum->getIntegerTypeSourceInfo())
620 Enum->setIntegerType(SemaRef.Context.IntTy);
621 }
622 else {
623 assert(!D->getIntegerType()->isDependentType()
624 && "Dependent type without type source info");
625 Enum->setIntegerType(D->getIntegerType());
626 }
627 }
628
John McCall5b629aa2010-10-22 23:36:17 +0000629 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
630
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000631 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000632 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000633 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000634 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000635 Enum->startDefinition();
636
Douglas Gregor96084f12010-03-01 19:00:07 +0000637 if (D->getDeclContext()->isFunctionOrMethod())
638 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000639
Chris Lattner5f9e2722011-07-23 10:55:15 +0000640 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000641
642 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000643 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
644 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000645 EC != ECEnd; ++EC) {
646 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000647 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000648 if (Expr *UninstValue = EC->getInitExpr()) {
649 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000650 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000651 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000652
John McCallce3ff2b2009-08-25 22:02:44 +0000653 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000654 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000655
656 // Drop the initial value and continue.
657 bool isInvalid = false;
658 if (Value.isInvalid()) {
659 Value = SemaRef.Owned((Expr *)0);
660 isInvalid = true;
661 }
662
Mike Stump1eb44332009-09-09 15:08:12 +0000663 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000664 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
665 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000666 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667
668 if (isInvalid) {
669 if (EnumConst)
670 EnumConst->setInvalidDecl();
671 Enum->setInvalidDecl();
672 }
673
674 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000675 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
676
John McCall3b85ecf2010-01-23 22:37:59 +0000677 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000678 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000679 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000680 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000681
Douglas Gregor96084f12010-03-01 19:00:07 +0000682 if (D->getDeclContext()->isFunctionOrMethod()) {
683 // If the enumeration is within a function or method, record the enum
684 // constant as a local.
685 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
686 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000687 }
688 }
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000690 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000691 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000692 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000693 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000694 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000695 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000696
697 return Enum;
698}
699
Douglas Gregor6477b692009-03-25 15:04:13 +0000700Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000701 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000702}
703
John McCalle29ba202009-08-20 01:44:21 +0000704Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000705 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
706
Douglas Gregor550d9b22009-10-31 17:21:17 +0000707 // Create a local instantiation scope for this class template, which
708 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000709 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000710 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000711 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000712 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000713 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000714
715 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000716
717 // Instantiate the qualifier. We have to do this first in case
718 // we're a friend declaration, because if we are then we need to put
719 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000720 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
721 if (QualifierLoc) {
722 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
723 TemplateArgs);
724 if (!QualifierLoc)
725 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000726 }
727
728 CXXRecordDecl *PrevDecl = 0;
729 ClassTemplateDecl *PrevClassTemplate = 0;
730
Nick Lewycky37574f52010-11-08 23:29:42 +0000731 if (!isFriend && Pattern->getPreviousDeclaration()) {
732 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
733 if (Found.first != Found.second) {
734 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
735 if (PrevClassTemplate)
736 PrevDecl = PrevClassTemplate->getTemplatedDecl();
737 }
738 }
739
John McCall93ba8572010-03-25 06:39:04 +0000740 // If this isn't a friend, then it's a member template, in which
741 // case we just want to build the instantiation in the
742 // specialization. If it is a friend, we want to build it in
743 // the appropriate context.
744 DeclContext *DC = Owner;
745 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000746 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000747 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000748 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000749 DC = SemaRef.computeDeclContext(SS);
750 if (!DC) return 0;
751 } else {
752 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
753 Pattern->getDeclContext(),
754 TemplateArgs);
755 }
756
757 // Look for a previous declaration of the template in the owning
758 // context.
759 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
760 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
761 SemaRef.LookupQualifiedName(R, DC);
762
763 if (R.isSingleResult()) {
764 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
765 if (PrevClassTemplate)
766 PrevDecl = PrevClassTemplate->getTemplatedDecl();
767 }
768
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000769 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000770 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000771 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000772 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000773 return 0;
774 }
775
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000776 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000777 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000778 bool Complain = true;
779
780 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
781 // template for struct std::tr1::__detail::_Map_base, where the
782 // template parameters of the friend declaration don't match the
783 // template parameters of the original declaration. In this one
784 // case, we don't complain about the ill-formed friend
785 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000786 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000787 Pattern->getIdentifier()->isStr("_Map_base") &&
788 DC->isNamespace() &&
789 cast<NamespaceDecl>(DC)->getIdentifier() &&
790 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
791 DeclContext *DCParent = DC->getParent();
792 if (DCParent->isNamespace() &&
793 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
794 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
795 DeclContext *DCParent2 = DCParent->getParent();
796 if (DCParent2->isNamespace() &&
797 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
798 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
799 DCParent2->getParent()->isTranslationUnit())
800 Complain = false;
801 }
802 }
803
John McCall93ba8572010-03-25 06:39:04 +0000804 TemplateParameterList *PrevParams
805 = PrevClassTemplate->getTemplateParameters();
806
807 // Make sure the parameter lists match.
808 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000809 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000810 Sema::TPL_TemplateMatch)) {
811 if (Complain)
812 return 0;
813
814 AdoptedPreviousTemplateParams = true;
815 InstParams = PrevParams;
816 }
John McCall93ba8572010-03-25 06:39:04 +0000817
818 // Do some additional validation, then merge default arguments
819 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000820 if (!AdoptedPreviousTemplateParams &&
821 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000822 Sema::TPC_ClassTemplate))
823 return 0;
824 }
825 }
826
John McCalle29ba202009-08-20 01:44:21 +0000827 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000828 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000829 Pattern->getLocStart(), Pattern->getLocation(),
830 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000831 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000832
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000833 if (QualifierLoc)
834 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000835
John McCalle29ba202009-08-20 01:44:21 +0000836 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000837 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
838 D->getIdentifier(), InstParams, RecordInst,
839 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000840 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000841
John McCall93ba8572010-03-25 06:39:04 +0000842 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000843 if (PrevClassTemplate)
844 Inst->setAccess(PrevClassTemplate->getAccess());
845 else
846 Inst->setAccess(D->getAccess());
847
John McCall93ba8572010-03-25 06:39:04 +0000848 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
849 // TODO: do we want to track the instantiation progeny of this
850 // friend target decl?
851 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000852 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000853 if (!PrevClassTemplate)
854 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000855 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000856
Douglas Gregorf0510d42009-10-12 23:11:44 +0000857 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000858 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000859 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000860
Douglas Gregor259571e2009-10-30 22:42:42 +0000861 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000862 if (isFriend) {
863 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000864 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000865 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000866
John McCalle29ba202009-08-20 01:44:21 +0000867 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000868
869 if (!PrevClassTemplate) {
870 // Queue up any out-of-line partial specializations of this member
871 // class template; the client will force their instantiation once
872 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000873 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000874 D->getPartialSpecializations(PartialSpecs);
875 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
876 if (PartialSpecs[I]->isOutOfLine())
877 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
878 }
879
John McCalle29ba202009-08-20 01:44:21 +0000880 return Inst;
881}
882
Douglas Gregord60e1052009-08-27 16:57:43 +0000883Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000884TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
885 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000886 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000887
Douglas Gregored9c0f92009-10-29 00:04:11 +0000888 // Lookup the already-instantiated declaration in the instantiation
889 // of the class template and return that.
890 DeclContext::lookup_result Found
891 = Owner->lookup(ClassTemplate->getDeclName());
892 if (Found.first == Found.second)
893 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000894
Douglas Gregored9c0f92009-10-29 00:04:11 +0000895 ClassTemplateDecl *InstClassTemplate
896 = dyn_cast<ClassTemplateDecl>(*Found.first);
897 if (!InstClassTemplate)
898 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000899
Douglas Gregord65587f2010-11-10 19:44:59 +0000900 if (ClassTemplatePartialSpecializationDecl *Result
901 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
902 return Result;
903
904 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000905}
906
907Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000908TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000909 // Create a local instantiation scope for this function template, which
910 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000911 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000912 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000913 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000914
Douglas Gregord60e1052009-08-27 16:57:43 +0000915 TemplateParameterList *TempParams = D->getTemplateParameters();
916 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000917 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000918 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000919
Douglas Gregora735b202009-10-13 14:39:41 +0000920 FunctionDecl *Instantiated = 0;
921 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000922 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000923 InstParams));
924 else
925 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000926 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000927 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000928
Douglas Gregora735b202009-10-13 14:39:41 +0000929 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000930 return 0;
931
John McCall46460a62010-01-20 21:53:11 +0000932 Instantiated->setAccess(D->getAccess());
933
Mike Stump1eb44332009-09-09 15:08:12 +0000934 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000935 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000936 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000937 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000938 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000939 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000940 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000941
John McCallb1a56e72010-03-26 23:10:15 +0000942 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
943
John McCalle976ffe2009-12-14 23:19:40 +0000944 // Link the instantiation back to the pattern *unless* this is a
945 // non-definition friend declaration.
946 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000947 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000948 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000949
John McCallb1a56e72010-03-26 23:10:15 +0000950 // Make declarations visible in the appropriate context.
951 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000952 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000953
Douglas Gregord60e1052009-08-27 16:57:43 +0000954 return InstTemplate;
955}
956
Douglas Gregord475b8d2009-03-25 21:17:03 +0000957Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
958 CXXRecordDecl *PrevDecl = 0;
959 if (D->isInjectedClassName())
960 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000961 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000962 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
963 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000964 TemplateArgs);
965 if (!Prev) return 0;
966 PrevDecl = cast<CXXRecordDecl>(Prev);
967 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000968
969 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000970 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000971 D->getLocStart(), D->getLocation(),
972 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000973
974 // Substitute the nested name specifier, if any.
975 if (SubstQualifier(D, Record))
976 return 0;
977
Douglas Gregord475b8d2009-03-25 21:17:03 +0000978 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000979 // FIXME: Check against AS_none is an ugly hack to work around the issue that
980 // the tag decls introduced by friend class declarations don't have an access
981 // specifier. Remove once this area of the code gets sorted out.
982 if (D->getAccess() != AS_none)
983 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000984 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000985 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000986
John McCall02cace72009-08-28 07:59:38 +0000987 // If the original function was part of a friend declaration,
988 // inherit its namespace state.
989 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
990 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
991
Douglas Gregor9901c572010-05-21 00:31:19 +0000992 // Make sure that anonymous structs and unions are recorded.
993 if (D->isAnonymousStructOrUnion()) {
994 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000995 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000996 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
997 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000998
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000999 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001000 return Record;
1001}
1002
John McCall02cace72009-08-28 07:59:38 +00001003/// Normal class members are of more specific types and therefore
1004/// don't make it here. This function serves two purposes:
1005/// 1) instantiating function templates
1006/// 2) substituting friend declarations
1007/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001008Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001009 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001010 // Check whether there is already a function template specialization for
1011 // this declaration.
1012 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1013 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001014 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001015 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001016 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001017
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001018 FunctionDecl *SpecFunc
1019 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1020 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Douglas Gregor127102b2009-06-29 20:59:39 +00001022 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001023 if (SpecFunc)
1024 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001025 }
Mike Stump1eb44332009-09-09 15:08:12 +00001026
John McCallb0cb0222010-03-27 05:57:59 +00001027 bool isFriend;
1028 if (FunctionTemplate)
1029 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1030 else
1031 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1032
Douglas Gregor79c22782010-01-16 20:21:20 +00001033 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001034 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001035 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001036 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001037 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001038
Chris Lattner5f9e2722011-07-23 10:55:15 +00001039 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001040 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1041 TInfo = SubstFunctionType(D, Params);
1042 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001043 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001044 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001045
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001046 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1047 if (QualifierLoc) {
1048 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1049 TemplateArgs);
1050 if (!QualifierLoc)
1051 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001052 }
1053
John McCall68b6b872010-02-06 01:50:47 +00001054 // If we're instantiating a local function declaration, put the result
1055 // in the owner; otherwise we need to find the instantiated context.
1056 DeclContext *DC;
1057 if (D->getDeclContext()->isFunctionOrMethod())
1058 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001059 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001060 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001061 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001062 DC = SemaRef.computeDeclContext(SS);
1063 if (!DC) return 0;
1064 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001065 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001066 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001067 }
John McCall68b6b872010-02-06 01:50:47 +00001068
John McCall02cace72009-08-28 07:59:38 +00001069 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001070 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1071 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001072 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001073 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001074 /*isConstexpr*/ false);
John McCallb6217662010-03-15 10:12:16 +00001075
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001076 if (QualifierLoc)
1077 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001078
John McCallb1a56e72010-03-26 23:10:15 +00001079 DeclContext *LexicalDC = Owner;
1080 if (!isFriend && D->isOutOfLine()) {
1081 assert(D->getDeclContext()->isFileContext());
1082 LexicalDC = D->getDeclContext();
1083 }
1084
1085 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001086
Douglas Gregore53060f2009-06-25 22:08:12 +00001087 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001088 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001089 // Adopt the already-instantiated parameters into our own context.
1090 for (unsigned P = 0; P < Params.size(); ++P)
1091 if (Params[P])
1092 Params[P]->setOwningFunction(Function);
1093 } else {
1094 // Since we were instantiated via a typedef of a function type, create
1095 // new parameters.
1096 const FunctionProtoType *Proto
1097 = Function->getType()->getAs<FunctionProtoType>();
1098 assert(Proto && "No function prototype in template instantiation?");
1099 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1100 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1101 ParmVarDecl *Param
1102 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1103 *AI);
1104 Param->setScopeInfo(0, Params.size());
1105 Params.push_back(Param);
1106 }
1107 }
David Blaikie4278c652011-09-21 18:16:56 +00001108 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001109
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001110 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001111 if (TemplateParams) {
1112 // Our resulting instantiation is actually a function template, since we
1113 // are substituting only the outer template parameters. For example, given
1114 //
1115 // template<typename T>
1116 // struct X {
1117 // template<typename U> friend void f(T, U);
1118 // };
1119 //
1120 // X<int> x;
1121 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001122 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001123 // which means substituting int for T, but leaving "f" as a friend function
1124 // template.
1125 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001126 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001127 Function->getLocation(),
1128 Function->getDeclName(),
1129 TemplateParams, Function);
1130 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001131
1132 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001133
1134 if (isFriend && D->isThisDeclarationADefinition()) {
1135 // TODO: should we remember this connection regardless of whether
1136 // the friend declaration provided a body?
1137 FunctionTemplate->setInstantiatedFromMemberTemplate(
1138 D->getDescribedFunctionTemplate());
1139 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001140 } else if (FunctionTemplate) {
1141 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001142 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001143 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001144 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001145 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001146 Innermost.first,
1147 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001148 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001149 } else if (isFriend) {
1150 // Note, we need this connection even if the friend doesn't have a body.
1151 // Its body may exist but not have been attached yet due to deferred
1152 // parsing.
1153 // FIXME: It might be cleaner to set this when attaching the body to the
1154 // friend function declaration, however that would require finding all the
1155 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001156 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001157 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001158
Douglas Gregore53060f2009-06-25 22:08:12 +00001159 if (InitFunctionInstantiation(Function, D))
1160 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001161
John McCallaf2094e2010-04-08 09:05:18 +00001162 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001163
John McCall68263142009-11-18 22:49:29 +00001164 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1165 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1166
John McCallaf2094e2010-04-08 09:05:18 +00001167 if (DependentFunctionTemplateSpecializationInfo *Info
1168 = D->getDependentSpecializationInfo()) {
1169 assert(isFriend && "non-friend has dependent specialization info?");
1170
1171 // This needs to be set now for future sanity.
1172 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1173
1174 // Instantiate the explicit template arguments.
1175 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1176 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001177 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1178 ExplicitArgs, TemplateArgs))
1179 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001180
1181 // Map the candidate templates to their instantiations.
1182 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1183 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1184 Info->getTemplate(I),
1185 TemplateArgs);
1186 if (!Temp) return 0;
1187
1188 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1189 }
1190
1191 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1192 &ExplicitArgs,
1193 Previous))
1194 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001195
John McCallaf2094e2010-04-08 09:05:18 +00001196 isExplicitSpecialization = true;
1197
1198 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001199 // Look only into the namespace where the friend would be declared to
1200 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001201 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001202 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001203
Douglas Gregora735b202009-10-13 14:39:41 +00001204 // In C++, the previous declaration we find might be a tag type
1205 // (class or enum). In this case, the new declaration will hide the
1206 // tag type. Note that this does does not apply if we're declaring a
1207 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001208 if (Previous.isSingleTagDecl())
1209 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001210 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001211
John McCall9f54ad42009-12-10 09:41:52 +00001212 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001213 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001214
John McCall76d32642010-04-24 01:30:58 +00001215 NamedDecl *PrincipalDecl = (TemplateParams
1216 ? cast<NamedDecl>(FunctionTemplate)
1217 : Function);
1218
Douglas Gregora735b202009-10-13 14:39:41 +00001219 // If the original function was part of a friend declaration,
1220 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001221 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001222 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001223 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001224 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001225 else
Douglas Gregora735b202009-10-13 14:39:41 +00001226 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001227
1228 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1229 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001230
Gabor Greif77535df2010-08-30 22:25:56 +00001231 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001232
Richard Smith53e53512011-10-19 00:54:10 +00001233 // C++98 [temp.friend]p5: When a function is defined in a friend function
1234 // declaration in a class template, the function is defined at each
1235 // instantiation of the class template. The function is defined even if it
1236 // is never used.
1237 // C++11 [temp.friend]p4: When a function is defined in a friend function
1238 // declaration in a class template, the function is instantiated when the
1239 // function is odr-used.
1240 //
1241 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1242 // redefinition, but don't instantiate the function.
1243 if ((!SemaRef.getLangOptions().CPlusPlus0x ||
1244 SemaRef.Diags.getDiagnosticLevel(
1245 diag::warn_cxx98_compat_friend_redefinition,
1246 Function->getLocation())
1247 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001248 D->isThisDeclarationADefinition()) {
1249 // Check for a function body.
1250 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001251 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001252 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001253 SemaRef.Diag(Function->getLocation(),
1254 SemaRef.getLangOptions().CPlusPlus0x ?
1255 diag::warn_cxx98_compat_friend_redefinition :
1256 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001257 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001258 if (!SemaRef.getLangOptions().CPlusPlus0x)
1259 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001260 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001261 // Check for redefinitions due to other instantiations of this or
1262 // a similar friend function.
1263 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1264 REnd = Function->redecls_end();
1265 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001266 if (*R == Function)
1267 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001268 switch (R->getFriendObjectKind()) {
1269 case Decl::FOK_None:
Richard Smith53e53512011-10-19 00:54:10 +00001270 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1271 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001272 if (MemberSpecializationInfo *MSInfo
1273 = Function->getMemberSpecializationInfo()) {
1274 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1275 SourceLocation Loc = R->getLocation(); // FIXME
1276 MSInfo->setPointOfInstantiation(Loc);
1277 SemaRef.PendingLocalImplicitInstantiations.push_back(
1278 std::make_pair(Function, Loc));
1279 queuedInstantiation = true;
1280 }
1281 }
1282 }
1283 break;
1284 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001285 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001286 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001287 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001288 SemaRef.Diag(Function->getLocation(),
1289 SemaRef.getLangOptions().CPlusPlus0x ?
1290 diag::warn_cxx98_compat_friend_redefinition :
1291 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001292 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001293 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith53e53512011-10-19 00:54:10 +00001294 if (!SemaRef.getLangOptions().CPlusPlus0x)
1295 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001296 break;
1297 }
1298 }
1299 }
1300 }
Douglas Gregora735b202009-10-13 14:39:41 +00001301 }
1302
John McCall76d32642010-04-24 01:30:58 +00001303 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1304 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1305 PrincipalDecl->setNonMemberOperator();
1306
Sean Hunteb88ae52011-05-23 21:07:59 +00001307 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001308 return Function;
1309}
1310
Douglas Gregord60e1052009-08-27 16:57:43 +00001311Decl *
1312TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001313 TemplateParameterList *TemplateParams,
1314 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001315 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1316 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001317 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001318 // We are creating a function template specialization from a function
1319 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001320 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001321 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001322 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001323
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001324 FunctionDecl *SpecFunc
1325 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1326 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001327
Douglas Gregor6b906862009-08-21 00:16:32 +00001328 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001329 if (SpecFunc)
1330 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001331 }
1332
John McCallb0cb0222010-03-27 05:57:59 +00001333 bool isFriend;
1334 if (FunctionTemplate)
1335 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1336 else
1337 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1338
Douglas Gregor79c22782010-01-16 20:21:20 +00001339 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001340 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001341 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001342 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001343
John McCall4eab39f2010-10-19 02:26:41 +00001344 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001345 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001346 unsigned NumTempParamLists = 0;
1347 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1348 TempParamLists.set_size(NumTempParamLists);
1349 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1350 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1351 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1352 if (!InstParams)
1353 return NULL;
1354 TempParamLists[I] = InstParams;
1355 }
1356 }
1357
Chris Lattner5f9e2722011-07-23 10:55:15 +00001358 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001359 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1360 TInfo = SubstFunctionType(D, Params);
1361 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001362 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001363 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001364
Abramo Bagnara723df242010-12-14 22:11:44 +00001365 // \brief If the type of this function, after ignoring parentheses,
1366 // is not *directly* a function type, then we're instantiating a function
1367 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001368 //
1369 // typedef int functype(int, int);
1370 // functype func;
1371 //
1372 // In this case, we'll just go instantiate the ParmVarDecls that we
1373 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001374 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001375 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001376 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001377 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1378 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001379 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001380 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001381 }
1382
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001383 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1384 if (QualifierLoc) {
1385 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001386 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001387 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001388 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001389 }
1390
1391 DeclContext *DC = Owner;
1392 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001393 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001394 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001395 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001396 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001397
1398 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1399 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001400 } else {
1401 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1402 D->getDeclContext(),
1403 TemplateArgs);
1404 }
1405 if (!DC) return 0;
1406 }
1407
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001408 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001409 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001410 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001411
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001412 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001413 DeclarationNameInfo NameInfo
1414 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001415 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001416 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001417 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001418 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001419 Constructor->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001420 false, /*isConstexpr*/ false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001421 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001422 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001423 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001424 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001425 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001426 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001427 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001428 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001429 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001430 Conversion->isExplicit(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001431 /*isConstexpr*/ false,
1432 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001433 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001434 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001435 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001436 D->isStatic(),
1437 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001438 D->isInlineSpecified(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001439 /*isConstexpr*/ false, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001440 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001441
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001442 if (QualifierLoc)
1443 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001444
Douglas Gregord60e1052009-08-27 16:57:43 +00001445 if (TemplateParams) {
1446 // Our resulting instantiation is actually a function template, since we
1447 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001448 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001449 // template<typename T>
1450 // struct X {
1451 // template<typename U> void f(T, U);
1452 // };
1453 //
1454 // X<int> x;
1455 //
1456 // We are instantiating the member template "f" within X<int>, which means
1457 // substituting int for T, but leaving "f" as a member function template.
1458 // Build the function template itself.
1459 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1460 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001461 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001462 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001463 if (isFriend) {
1464 FunctionTemplate->setLexicalDeclContext(Owner);
1465 FunctionTemplate->setObjectOfFriendDecl(true);
1466 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001467 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001468 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001469 } else if (FunctionTemplate) {
1470 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001471 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001472 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001473 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001474 TemplateArgumentList::CreateCopy(SemaRef.Context,
1475 Innermost.first,
1476 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001477 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001478 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001479 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001480 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001481 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001482
Mike Stump1eb44332009-09-09 15:08:12 +00001483 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001484 // out-of-line, the instantiation will have the same lexical
1485 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001486 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001487 if (NumTempParamLists)
1488 Method->setTemplateParameterListsInfo(SemaRef.Context,
1489 NumTempParamLists,
1490 TempParamLists.data());
1491
John McCallb0cb0222010-03-27 05:57:59 +00001492 Method->setLexicalDeclContext(Owner);
1493 Method->setObjectOfFriendDecl(true);
1494 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001495 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Douglas Gregor5545e162009-03-24 00:38:23 +00001497 // Attach the parameters
1498 for (unsigned P = 0; P < Params.size(); ++P)
1499 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001500 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001501
1502 if (InitMethodInstantiation(Method, D))
1503 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001504
Abramo Bagnara25777432010-08-11 22:01:17 +00001505 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1506 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001507
John McCallb0cb0222010-03-27 05:57:59 +00001508 if (!FunctionTemplate || TemplateParams || isFriend) {
1509 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Douglas Gregordec06662009-08-21 18:42:58 +00001511 // In C++, the previous declaration we find might be a tag type
1512 // (class or enum). In this case, the new declaration will hide the
1513 // tag type. Note that this does does not apply if we're declaring a
1514 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001515 if (Previous.isSingleTagDecl())
1516 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001517 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001518
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001519 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001520 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001521
Douglas Gregor4ba31362009-12-01 17:24:26 +00001522 if (D->isPure())
1523 SemaRef.CheckPureMethod(Method, SourceRange());
1524
John McCall46460a62010-01-20 21:53:11 +00001525 Method->setAccess(D->getAccess());
1526
Anders Carlsson9eefa222011-01-20 06:52:44 +00001527 SemaRef.CheckOverrideControl(Method);
1528
John McCallb0cb0222010-03-27 05:57:59 +00001529 if (FunctionTemplate) {
1530 // If there's a function template, let our caller handle it.
1531 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1532 // Don't hide a (potentially) valid declaration with an invalid one.
1533 } else {
1534 NamedDecl *DeclToAdd = (TemplateParams
1535 ? cast<NamedDecl>(FunctionTemplate)
1536 : Method);
1537 if (isFriend)
1538 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001539 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001540 Owner->addDecl(DeclToAdd);
1541 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001542
1543 if (D->isExplicitlyDefaulted()) {
1544 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1545 } else {
1546 assert(!D->isDefaulted() &&
1547 "should not implicitly default uninstantiated function");
1548 }
1549
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001550 return Method;
1551}
1552
Douglas Gregor615c5d42009-03-24 16:43:20 +00001553Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001554 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001555}
1556
Douglas Gregor03b2b072009-03-24 00:15:49 +00001557Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001558 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001559}
1560
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001561Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001562 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001563}
1564
Douglas Gregor6477b692009-03-25 15:04:13 +00001565ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001566 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1567 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001568}
1569
John McCalle29ba202009-08-20 01:44:21 +00001570Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1571 TemplateTypeParmDecl *D) {
1572 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001573 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001574
John McCalle29ba202009-08-20 01:44:21 +00001575 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001576 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1577 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001578 D->getDepth() - TemplateArgs.getNumLevels(),
1579 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001580 D->wasDeclaredWithTypename(),
1581 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001582 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001583
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001584 if (D->hasDefaultArgument())
1585 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1586
1587 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001588 // scope.
1589 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001590
John McCalle29ba202009-08-20 01:44:21 +00001591 return Inst;
1592}
1593
Douglas Gregor33642df2009-10-23 23:25:44 +00001594Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1595 NonTypeTemplateParmDecl *D) {
1596 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001597 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001598 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1599 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001600 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001601 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001602 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001603 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001604
1605 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001606 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001607 // expansion of types. Substitute into each of the expanded types.
1608 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1609 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1610 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1611 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1612 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001613 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001614 D->getDeclName());
1615 if (!NewDI)
1616 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001617
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001618 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1619 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1620 D->getLocation());
1621 if (NewT.isNull())
1622 return 0;
1623 ExpandedParameterPackTypes.push_back(NewT);
1624 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001625
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001626 IsExpandedParameterPack = true;
1627 DI = D->getTypeSourceInfo();
1628 T = DI->getType();
1629 } else if (isa<PackExpansionTypeLoc>(TL)) {
1630 // The non-type template parameter pack's type is a pack expansion of types.
1631 // Determine whether we need to expand this parameter pack into separate
1632 // types.
1633 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1634 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001635 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001636 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001637
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001638 // Determine whether the set of unexpanded parameter packs can and should
1639 // be expanded.
1640 bool Expand = true;
1641 bool RetainExpansion = false;
1642 llvm::Optional<unsigned> OrigNumExpansions
1643 = Expansion.getTypePtr()->getNumExpansions();
1644 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1645 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1646 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001647 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001648 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001649 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001650 NumExpansions))
1651 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001652
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001653 if (Expand) {
1654 for (unsigned I = 0; I != *NumExpansions; ++I) {
1655 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1656 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001657 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001658 D->getDeclName());
1659 if (!NewDI)
1660 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001661
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001662 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1663 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1664 NewDI->getType(),
1665 D->getLocation());
1666 if (NewT.isNull())
1667 return 0;
1668 ExpandedParameterPackTypes.push_back(NewT);
1669 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001670
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001671 // Note that we have an expanded parameter pack. The "type" of this
1672 // expanded parameter pack is the original expansion type, but callers
1673 // will end up using the expanded parameter pack types for type-checking.
1674 IsExpandedParameterPack = true;
1675 DI = D->getTypeSourceInfo();
1676 T = DI->getType();
1677 } else {
1678 // We cannot fully expand the pack expansion now, so substitute into the
1679 // pattern and create a new pack expansion type.
1680 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1681 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001682 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001683 D->getDeclName());
1684 if (!NewPattern)
1685 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001686
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001687 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1688 NumExpansions);
1689 if (!DI)
1690 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001691
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001692 T = DI->getType();
1693 }
1694 } else {
1695 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001696 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001697 D->getLocation(), D->getDeclName());
1698 if (!DI)
1699 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001700
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001701 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001702 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001703 D->getLocation());
1704 if (T.isNull()) {
1705 T = SemaRef.Context.IntTy;
1706 Invalid = true;
1707 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001708 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001709
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001710 NonTypeTemplateParmDecl *Param;
1711 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001712 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001713 D->getInnerLocStart(),
1714 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001715 D->getDepth() - TemplateArgs.getNumLevels(),
1716 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001717 D->getIdentifier(), T,
1718 DI,
1719 ExpandedParameterPackTypes.data(),
1720 ExpandedParameterPackTypes.size(),
1721 ExpandedParameterPackTypesAsWritten.data());
1722 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001723 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001724 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001725 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001726 D->getDepth() - TemplateArgs.getNumLevels(),
1727 D->getPosition(),
1728 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001729 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001730
Douglas Gregor9a299e02011-03-04 17:52:15 +00001731 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001732 if (Invalid)
1733 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001734
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001735 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001736
1737 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001738 // scope.
1739 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001740 return Param;
1741}
1742
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001743Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001744TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1745 TemplateTemplateParmDecl *D) {
1746 // Instantiate the template parameter list of the template template parameter.
1747 TemplateParameterList *TempParams = D->getTemplateParameters();
1748 TemplateParameterList *InstParams;
1749 {
1750 // Perform the actual substitution of template parameters within a new,
1751 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001752 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001753 InstParams = SubstTemplateParams(TempParams);
1754 if (!InstParams)
1755 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001756 }
1757
Douglas Gregor9106ef72009-11-11 16:58:32 +00001758 // Build the template template parameter.
1759 TemplateTemplateParmDecl *Param
1760 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001761 D->getDepth() - TemplateArgs.getNumLevels(),
1762 D->getPosition(), D->isParameterPack(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001763 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001764 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001765 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001766
1767 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001768 // scope.
1769 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001770
Douglas Gregor9106ef72009-11-11 16:58:32 +00001771 return Param;
1772}
1773
Douglas Gregor48c32a72009-11-17 06:07:40 +00001774Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001775 // Using directives are never dependent (and never contain any types or
1776 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001777
Douglas Gregor48c32a72009-11-17 06:07:40 +00001778 UsingDirectiveDecl *Inst
1779 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001780 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001781 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001782 D->getIdentLocation(),
1783 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001784 D->getCommonAncestor());
1785 Owner->addDecl(Inst);
1786 return Inst;
1787}
1788
John McCalled976492009-12-04 22:46:56 +00001789Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001790
1791 // The nested name specifier may be dependent, for example
1792 // template <typename T> struct t {
1793 // struct s1 { T f1(); };
1794 // struct s2 : s1 { using s1::f1; };
1795 // };
1796 // template struct t<int>;
1797 // Here, in using s1::f1, s1 refers to t<T>::s1;
1798 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001799 NestedNameSpecifierLoc QualifierLoc
1800 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1801 TemplateArgs);
1802 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001803 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001804
1805 // The name info is non-dependent, so no transformation
1806 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001807 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001808
John McCall9f54ad42009-12-10 09:41:52 +00001809 // We only need to do redeclaration lookups if we're in a class
1810 // scope (in fact, it's not really even possible in non-class
1811 // scopes).
1812 bool CheckRedeclaration = Owner->isRecord();
1813
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001814 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1815 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001816
John McCalled976492009-12-04 22:46:56 +00001817 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001818 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001819 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001820 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001821 D->isTypeName());
1822
Douglas Gregor5149f372011-02-25 15:54:31 +00001823 CXXScopeSpec SS;
1824 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001825 if (CheckRedeclaration) {
1826 Prev.setHideTags(false);
1827 SemaRef.LookupQualifiedName(Prev, Owner);
1828
1829 // Check for invalid redeclarations.
1830 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1831 D->isTypeName(), SS,
1832 D->getLocation(), Prev))
1833 NewUD->setInvalidDecl();
1834
1835 }
1836
1837 if (!NewUD->isInvalidDecl() &&
1838 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001839 D->getLocation()))
1840 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001841
John McCalled976492009-12-04 22:46:56 +00001842 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1843 NewUD->setAccess(D->getAccess());
1844 Owner->addDecl(NewUD);
1845
John McCall9f54ad42009-12-10 09:41:52 +00001846 // Don't process the shadow decls for an invalid decl.
1847 if (NewUD->isInvalidDecl())
1848 return NewUD;
1849
John McCall323c3102009-12-22 22:26:37 +00001850 bool isFunctionScope = Owner->isFunctionOrMethod();
1851
John McCall9f54ad42009-12-10 09:41:52 +00001852 // Process the shadow decls.
1853 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1854 I != E; ++I) {
1855 UsingShadowDecl *Shadow = *I;
1856 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001857 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1858 Shadow->getLocation(),
1859 Shadow->getTargetDecl(),
1860 TemplateArgs));
1861 if (!InstTarget)
1862 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001863
1864 if (CheckRedeclaration &&
1865 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1866 continue;
1867
1868 UsingShadowDecl *InstShadow
1869 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1870 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001871
1872 if (isFunctionScope)
1873 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001874 }
John McCalled976492009-12-04 22:46:56 +00001875
1876 return NewUD;
1877}
1878
1879Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001880 // Ignore these; we handle them in bulk when processing the UsingDecl.
1881 return 0;
John McCalled976492009-12-04 22:46:56 +00001882}
1883
John McCall7ba107a2009-11-18 02:36:19 +00001884Decl * TemplateDeclInstantiator
1885 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001886 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001887 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001888 TemplateArgs);
1889 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001890 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001891
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001892 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001893 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001895 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1896 // Hence, no tranformation is required for it.
1897 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001898 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001899 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001900 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001901 /*instantiation*/ true,
1902 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001903 if (UD)
John McCalled976492009-12-04 22:46:56 +00001904 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1905
John McCall7ba107a2009-11-18 02:36:19 +00001906 return UD;
1907}
1908
1909Decl * TemplateDeclInstantiator
1910 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001911 NestedNameSpecifierLoc QualifierLoc
1912 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1913 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001914 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001915
John McCall7ba107a2009-11-18 02:36:19 +00001916 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001917 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001918
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001919 DeclarationNameInfo NameInfo
1920 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1921
John McCall7ba107a2009-11-18 02:36:19 +00001922 NamedDecl *UD =
1923 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001924 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001925 /*instantiation*/ true,
1926 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001927 if (UD)
John McCalled976492009-12-04 22:46:56 +00001928 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1929
Anders Carlsson0d8df782009-08-29 19:37:28 +00001930 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001931}
1932
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001933
1934Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1935 ClassScopeFunctionSpecializationDecl *Decl) {
1936 CXXMethodDecl *OldFD = Decl->getSpecialization();
1937 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1938
1939 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1940 Sema::ForRedeclaration);
1941
1942 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1943 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1944 NewFD->setInvalidDecl();
1945 return NewFD;
1946 }
1947
1948 // Associate the specialization with the pattern.
1949 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1950 assert(Specialization && "Class scope Specialization is null");
1951 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1952
1953 return NewFD;
1954}
1955
John McCallce3ff2b2009-08-25 22:02:44 +00001956Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001957 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001958 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001959 if (D->isInvalidDecl())
1960 return 0;
1961
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001962 return Instantiator.Visit(D);
1963}
1964
John McCalle29ba202009-08-20 01:44:21 +00001965/// \brief Instantiates a nested template parameter list in the current
1966/// instantiation context.
1967///
1968/// \param L The parameter list to instantiate
1969///
1970/// \returns NULL if there was an error
1971TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001972TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001973 // Get errors for all the parameters before bailing out.
1974 bool Invalid = false;
1975
1976 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001977 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001978 ParamVector Params;
1979 Params.reserve(N);
1980 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1981 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001982 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001983 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001984 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001985 }
1986
1987 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001988 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001989 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001990
1991 TemplateParameterList *InstL
1992 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1993 L->getLAngleLoc(), &Params.front(), N,
1994 L->getRAngleLoc());
1995 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001996}
John McCalle29ba202009-08-20 01:44:21 +00001997
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001998/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00001999/// specialization.
2000///
2001/// \param ClassTemplate the (instantiated) class template that is partially
2002// specialized by the instantiation of \p PartialSpec.
2003///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002004/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002005/// specialization that we are instantiating.
2006///
Douglas Gregord65587f2010-11-10 19:44:59 +00002007/// \returns The instantiated partial specialization, if successful; otherwise,
2008/// NULL to indicate an error.
2009ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002010TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2011 ClassTemplateDecl *ClassTemplate,
2012 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002013 // Create a local instantiation scope for this class template partial
2014 // specialization, which will contain the instantiations of the template
2015 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002016 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002017
Douglas Gregored9c0f92009-10-29 00:04:11 +00002018 // Substitute into the template parameters of the class template partial
2019 // specialization.
2020 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2021 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2022 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002023 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002024
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025 // Substitute into the template arguments of the class template partial
2026 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002027 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002028 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2029 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002030 InstTemplateArgs, TemplateArgs))
2031 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002032
Douglas Gregored9c0f92009-10-29 00:04:11 +00002033 // Check that the template argument list is well-formed for this
2034 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002035 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002036 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002037 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002038 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002039 false,
2040 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002041 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042
2043 // Figure out where to insert this class template partial specialization
2044 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002045 void *InsertPos = 0;
2046 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002047 = ClassTemplate->findPartialSpecialization(Converted.data(),
2048 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002049
Douglas Gregored9c0f92009-10-29 00:04:11 +00002050 // Build the canonical type that describes the converted template
2051 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002052 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002053 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002054 Converted.data(),
2055 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002056
2057 // Build the fully-sugared type for this class template
2058 // specialization as the user wrote in the specialization
2059 // itself. This means that we'll pretty-print the type retrieved
2060 // from the specialization's declaration the way that the user
2061 // actually wrote the specialization, rather than formatting the
2062 // name based on the "canonical" representation used to store the
2063 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002064 TypeSourceInfo *WrittenTy
2065 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2066 TemplateName(ClassTemplate),
2067 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002068 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002069 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002070
Douglas Gregored9c0f92009-10-29 00:04:11 +00002071 if (PrevDecl) {
2072 // We've already seen a partial specialization with the same template
2073 // parameters and template arguments. This can happen, for example, when
2074 // substituting the outer template arguments ends up causing two
2075 // class template partial specializations of a member class template
2076 // to have identical forms, e.g.,
2077 //
2078 // template<typename T, typename U>
2079 // struct Outer {
2080 // template<typename X, typename Y> struct Inner;
2081 // template<typename Y> struct Inner<T, Y>;
2082 // template<typename Y> struct Inner<U, Y>;
2083 // };
2084 //
2085 // Outer<int, int> outer; // error: the partial specializations of Inner
2086 // // have the same signature.
2087 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002088 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002089 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2090 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002091 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002092 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002093
2094
Douglas Gregored9c0f92009-10-29 00:04:11 +00002095 // Create the class template partial specialization declaration.
2096 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002097 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002098 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002099 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002100 PartialSpec->getLocStart(),
2101 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002102 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002103 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002104 Converted.data(),
2105 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002106 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002107 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002108 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002109 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002110 // Substitute the nested name specifier, if any.
2111 if (SubstQualifier(PartialSpec, InstPartialSpec))
2112 return 0;
2113
Douglas Gregored9c0f92009-10-29 00:04:11 +00002114 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002115 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002116
Douglas Gregored9c0f92009-10-29 00:04:11 +00002117 // Add this partial specialization to the set of class template partial
2118 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002119 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002120 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002121}
2122
John McCall21ef0fa2010-03-11 09:03:00 +00002123TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002124TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002125 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002126 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2127 assert(OldTInfo && "substituting function without type source info");
2128 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002129 TypeSourceInfo *NewTInfo
2130 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2131 D->getTypeSpecStartLoc(),
2132 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002133 if (!NewTInfo)
2134 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002135
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002136 if (NewTInfo != OldTInfo) {
2137 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002138 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002139 if (FunctionProtoTypeLoc *OldProtoLoc
2140 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002141 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002142 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2143 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002144 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2145 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2146 OldIdx != NumOldParams; ++OldIdx) {
2147 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2148 if (!OldParam->isParameterPack() ||
2149 (NewIdx < NumNewParams &&
2150 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002151 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002152 // instantiated to a (still-dependent) parameter pack.
2153 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2154 Params.push_back(NewParam);
2155 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2156 NewParam);
2157 continue;
2158 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002159
Douglas Gregor12c9c002011-01-07 16:43:16 +00002160 // Parameter pack: make the instantiation an argument pack.
2161 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2162 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002163 unsigned NumArgumentsInExpansion
2164 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2165 TemplateArgs);
2166 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002167 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2168 Params.push_back(NewParam);
2169 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2170 NewParam);
2171 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002172 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002173 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002174 } else {
2175 // The function type itself was not dependent and therefore no
2176 // substitution occurred. However, we still need to instantiate
2177 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002178 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002179 if (FunctionProtoTypeLoc *OldProtoLoc
2180 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2181 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2182 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2183 if (!Parm)
2184 return 0;
2185 Params.push_back(Parm);
2186 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002187 }
2188 }
John McCall21ef0fa2010-03-11 09:03:00 +00002189 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002190}
2191
Mike Stump1eb44332009-09-09 15:08:12 +00002192/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002193/// declaration (New) from the corresponding fields of its template (Tmpl).
2194///
2195/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002196bool
2197TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002198 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002199 if (Tmpl->isDeletedAsWritten())
2200 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002201
Douglas Gregorcca9e962009-07-01 22:01:06 +00002202 // If we are performing substituting explicitly-specified template arguments
2203 // or deduced template arguments into a function template and we reach this
2204 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002205 // to keeping the new function template specialization. We therefore
2206 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002207 // into a template instantiation for this specific function template
2208 // specialization, which is not a SFINAE context, so that we diagnose any
2209 // further errors in the declaration itself.
2210 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2211 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2212 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2213 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002214 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002215 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002216 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002217 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002218 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002219 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2220 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002221 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002222 }
2223 }
Mike Stump1eb44332009-09-09 15:08:12 +00002224
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002225 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2226 assert(Proto && "Function template without prototype?");
2227
Sebastian Redl60618fa2011-03-12 11:50:43 +00002228 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002229 // The function has an exception specification or a "noreturn"
2230 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002231 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002232 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2233 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002234 if (const PackExpansionType *PackExpansion
2235 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2236 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002237 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002238 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2239 Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002240 assert(!Unexpanded.empty() &&
Douglas Gregorb99268b2010-12-21 00:52:54 +00002241 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002242
Douglas Gregorb99268b2010-12-21 00:52:54 +00002243 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002244 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002245 llvm::Optional<unsigned> NumExpansions
2246 = PackExpansion->getNumExpansions();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002247 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002248 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002249 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002250 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002251 Expand,
Douglas Gregord3731192011-01-10 07:32:04 +00002252 RetainExpansion,
2253 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002254 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002255
Douglas Gregorb99268b2010-12-21 00:52:54 +00002256 if (!Expand) {
2257 // We can't expand this pack expansion into separate arguments yet;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002258 // just substitute into the pattern and create a new pack expansion
Douglas Gregorcded4f62011-01-14 17:04:44 +00002259 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002260 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002261 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002262 TemplateArgs,
2263 New->getLocation(), New->getDeclName());
2264 if (T.isNull())
2265 break;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002266
Douglas Gregorcded4f62011-01-14 17:04:44 +00002267 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002268 Exceptions.push_back(T);
2269 continue;
2270 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002271
Douglas Gregorb99268b2010-12-21 00:52:54 +00002272 // Substitute into the pack expansion pattern for each template
2273 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002274 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002275 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002276
2277 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
Douglas Gregorb99268b2010-12-21 00:52:54 +00002278 TemplateArgs,
2279 New->getLocation(), New->getDeclName());
2280 if (T.isNull()) {
2281 Invalid = true;
2282 break;
2283 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002284
Douglas Gregorb99268b2010-12-21 00:52:54 +00002285 Exceptions.push_back(T);
2286 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002287
Douglas Gregorb99268b2010-12-21 00:52:54 +00002288 if (Invalid)
2289 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002290
Douglas Gregorb99268b2010-12-21 00:52:54 +00002291 continue;
2292 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002293
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002294 QualType T
2295 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2296 New->getLocation(), New->getDeclName());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002297 if (T.isNull() ||
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002298 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2299 continue;
2300
2301 Exceptions.push_back(T);
2302 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002303 Expr *NoexceptExpr = 0;
2304 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Douglas Gregor3617e192011-06-01 15:55:51 +00002305 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002306 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2307 if (E.isUsable())
Douglas Gregor5c340e82011-10-09 18:31:23 +00002308 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
2309
2310 if (E.isUsable()) {
2311 SourceLocation ErrLoc;
2312 llvm::APSInt NoexceptVal;
Sebastian Redl56fb9262011-03-14 18:51:50 +00002313 NoexceptExpr = E.take();
Douglas Gregor5c340e82011-10-09 18:31:23 +00002314 if (!NoexceptExpr->isTypeDependent() &&
2315 !NoexceptExpr->isValueDependent() &&
2316 !NoexceptExpr->isIntegerConstantExpr(NoexceptVal, SemaRef.Context,
2317 &ErrLoc, /*evaluated=*/false)){
2318 SemaRef.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression)
2319 << NoexceptExpr->getSourceRange();
2320 NoexceptExpr = 0;
2321 }
2322 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002323 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002324
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002325 // Rebuild the function type
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002326
John McCalle23cf432010-12-14 08:05:40 +00002327 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002328 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002329 EPI.NumExceptions = Exceptions.size();
2330 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002331 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002332 EPI.ExtInfo = Proto->getExtInfo();
2333
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002334 const FunctionProtoType *NewProto
2335 = New->getType()->getAs<FunctionProtoType>();
2336 assert(NewProto && "Template instantiation without function prototype?");
2337 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2338 NewProto->arg_type_begin(),
2339 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002340 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002341 }
2342
Richard Smith9f569cc2011-10-01 02:31:28 +00002343 // C++0x [dcl.constexpr]p6: If the instantiated template specialization of
2344 // a constexpr function template satisfies the requirements for a constexpr
2345 // function, then it is a constexpr function.
2346 if (Tmpl->isConstexpr() &&
2347 SemaRef.CheckConstexprFunctionDecl(New, Sema::CCK_Instantiation))
2348 New->setConstexpr(true);
2349
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002350 const FunctionDecl* Definition = Tmpl;
2351
2352 // Get the definition. Leaves the variable unchanged if undefined.
2353 Tmpl->isDefined(Definition);
2354
2355 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002356
Douglas Gregore53060f2009-06-25 22:08:12 +00002357 return false;
2358}
2359
Douglas Gregor5545e162009-03-24 00:38:23 +00002360/// \brief Initializes common fields of an instantiated method
2361/// declaration (New) from the corresponding fields of its template
2362/// (Tmpl).
2363///
2364/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002365bool
2366TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002367 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002368 if (InitFunctionInstantiation(New, Tmpl))
2369 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002370
Douglas Gregor5545e162009-03-24 00:38:23 +00002371 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002372 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002373 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002374
2375 // FIXME: attributes
2376 // FIXME: New needs a pointer to Tmpl
2377 return false;
2378}
Douglas Gregora58861f2009-05-13 20:28:22 +00002379
2380/// \brief Instantiate the definition of the given function from its
2381/// template.
2382///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002383/// \param PointOfInstantiation the point at which the instantiation was
2384/// required. Note that this is not precisely a "point of instantiation"
2385/// for the function, but it's close.
2386///
Douglas Gregora58861f2009-05-13 20:28:22 +00002387/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002388/// function template specialization or member function of a class template
2389/// specialization.
2390///
2391/// \param Recursive if true, recursively instantiates any functions that
2392/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002393///
2394/// \param DefinitionRequired if true, then we are performing an explicit
2395/// instantiation where the body of the function is required. Complain if
2396/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002397void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002398 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002399 bool Recursive,
2400 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002401 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002402 return;
2403
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002404 // Never instantiate an explicit specialization except if it is a class scope
2405 // explicit specialization.
2406 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2407 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002408 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002409
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002410 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002411 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002412 assert(PatternDecl && "instantiating a non-template");
2413
2414 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2415 assert(PatternDecl && "template definition is not a template");
2416 if (!Pattern) {
2417 // Try to find a defaulted definition
2418 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002419 }
Sean Huntf996e052011-05-27 20:00:14 +00002420 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002421
Francois Pichet8387e2a2011-04-22 22:18:13 +00002422 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002423 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002424 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002425 PendingInstantiations.push_back(
2426 std::make_pair(Function, PointOfInstantiation));
2427 return;
2428 }
2429
2430 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002431 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002432 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002433 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002434 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002435 Pattern = PatternDecl->getBody(PatternDecl);
2436 }
2437
Sean Huntf996e052011-05-27 20:00:14 +00002438 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002439 if (DefinitionRequired) {
2440 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002441 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002442 diag::err_explicit_instantiation_undefined_func_template)
2443 << Function->getPrimaryTemplate();
2444 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002445 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002446 diag::err_explicit_instantiation_undefined_member)
2447 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002448
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002449 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002450 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002451 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002452 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002453 } else if (Function->getTemplateSpecializationKind()
2454 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002455 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002456 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002457 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002458
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002459 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002460 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002461
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002462 // C++0x [temp.explicit]p9:
2463 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002464 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002465 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002466 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002467 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002468 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002469 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002470
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002471 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2472 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002473 return;
2474
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002475 // If we're performing recursive template instantiation, create our own
2476 // queue of pending implicit instantiations that we will instantiate later,
2477 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002478 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002479 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002480 if (Recursive) {
2481 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002482 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002483 }
Mike Stump1eb44332009-09-09 15:08:12 +00002484
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002485 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002486 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002487 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002488
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002489 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002490 // recorded, unless we're actually a member function within a local
2491 // class, in which case we need to merge our results with the parent
2492 // scope (of the enclosing function).
2493 bool MergeWithParentScope = false;
2494 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2495 MergeWithParentScope = Rec->isLocalClass();
2496
2497 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002498
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002499 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002500 // instantiation scope, and set the parameter names to those used
2501 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002502 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002503 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2504 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002505 if (!PatternParam->isParameterPack()) {
2506 // Simple case: not a parameter pack.
2507 assert(FParamIdx < Function->getNumParams());
2508 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2509 FunctionParam->setDeclName(PatternParam->getDeclName());
2510 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2511 ++FParamIdx;
2512 continue;
2513 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002514
Douglas Gregor12c9c002011-01-07 16:43:16 +00002515 // Expand the parameter pack.
2516 Scope.MakeInstantiatedLocalArgPack(PatternParam);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002517 for (unsigned NumFParams = Function->getNumParams();
2518 FParamIdx < NumFParams;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002519 ++FParamIdx) {
2520 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2521 FunctionParam->setDeclName(PatternParam->getDeclName());
2522 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2523 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002524 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002525
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002526 // Enter the scope of this instantiation. We don't use
2527 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002528 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002529
Mike Stump1eb44332009-09-09 15:08:12 +00002530 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002531 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002532
Sean Huntcd10dec2011-05-23 23:14:04 +00002533 if (PatternDecl->isDefaulted()) {
2534 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2535
2536 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002537 } else {
2538 // If this is a constructor, instantiate the member initializers.
2539 if (const CXXConstructorDecl *Ctor =
2540 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2541 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2542 TemplateArgs);
2543 }
2544
2545 // Instantiate the function body.
2546 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2547
2548 if (Body.isInvalid())
2549 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002550
Sean Huntcd10dec2011-05-23 23:14:04 +00002551 ActOnFinishFunctionBody(Function, Body.get(),
2552 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002553 }
2554
John McCall0c01d182010-03-24 05:22:00 +00002555 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2556
John McCalleee1d542011-02-14 07:13:47 +00002557 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002558
2559 DeclGroupRef DG(Function);
2560 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002561
Douglas Gregor60406be2010-01-16 22:29:39 +00002562 // This class may have local implicit instantiations that need to be
2563 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002564 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002565 Scope.Exit();
2566
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002567 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002568 // Define any pending vtables.
2569 DefineUsedVTables();
2570
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002571 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002572 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002573 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002574
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002575 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002576 assert(VTableUses.empty() &&
2577 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002578 VTableUses.swap(SavedVTableUses);
2579
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002580 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002581 assert(PendingInstantiations.empty() &&
2582 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002583 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002584 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002585}
2586
2587/// \brief Instantiate the definition of the given variable from its
2588/// template.
2589///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002590/// \param PointOfInstantiation the point at which the instantiation was
2591/// required. Note that this is not precisely a "point of instantiation"
2592/// for the function, but it's close.
2593///
2594/// \param Var the already-instantiated declaration of a static member
2595/// variable of a class template specialization.
2596///
2597/// \param Recursive if true, recursively instantiates any functions that
2598/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002599///
2600/// \param DefinitionRequired if true, then we are performing an explicit
2601/// instantiation where an out-of-line definition of the member variable
2602/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002603void Sema::InstantiateStaticDataMemberDefinition(
2604 SourceLocation PointOfInstantiation,
2605 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002606 bool Recursive,
2607 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002608 if (Var->isInvalidDecl())
2609 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002610
Douglas Gregor7caa6822009-07-24 20:34:43 +00002611 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002612 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002613 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002614 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002615 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002616
Douglas Gregor0d035142009-10-27 18:42:08 +00002617 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002618 // We did not find an out-of-line definition of this static data member,
2619 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002620 // instantiate this definition (or provide a specialization for it) in
2621 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002622 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002623 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002624 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002625 diag::err_explicit_instantiation_undefined_member)
2626 << 2 << Var->getDeclName() << Var->getDeclContext();
2627 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002628 } else if (Var->getTemplateSpecializationKind()
2629 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002630 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002631 std::make_pair(Var, PointOfInstantiation));
2632 }
2633
Douglas Gregor7caa6822009-07-24 20:34:43 +00002634 return;
2635 }
2636
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002637 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002638 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002639 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002640
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002641 // C++0x [temp.explicit]p9:
2642 // Except for inline functions, other explicit instantiation declarations
2643 // have the effect of suppressing the implicit instantiation of the entity
2644 // to which they refer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002645 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002646 == TSK_ExplicitInstantiationDeclaration)
2647 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002648
Douglas Gregorf15748a2011-06-03 03:35:07 +00002649 // If we already have a definition, we're done.
2650 if (Var->getDefinition())
2651 return;
2652
Douglas Gregor7caa6822009-07-24 20:34:43 +00002653 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2654 if (Inst)
2655 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002656
Douglas Gregor7caa6822009-07-24 20:34:43 +00002657 // If we're performing recursive template instantiation, create our own
2658 // queue of pending implicit instantiations that we will instantiate later,
2659 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002660 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002661 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002662 if (Recursive) {
2663 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002664 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002665 }
Mike Stump1eb44332009-09-09 15:08:12 +00002666
Douglas Gregor7caa6822009-07-24 20:34:43 +00002667 // Enter the scope of this instantiation. We don't use
2668 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002669 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002670
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002671 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002672 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002673 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002674
2675 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002676
2677 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002678 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2679 assert(MSInfo && "Missing member specialization information?");
2680 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2681 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002682 DeclGroupRef DG(Var);
2683 Consumer.HandleTopLevelDecl(DG);
2684 }
Mike Stump1eb44332009-09-09 15:08:12 +00002685
Douglas Gregor7caa6822009-07-24 20:34:43 +00002686 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002687 // Define any newly required vtables.
2688 DefineUsedVTables();
2689
Douglas Gregor7caa6822009-07-24 20:34:43 +00002690 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002691 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002692 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002693
Nick Lewycky81559102011-05-31 07:58:42 +00002694 // Restore the set of pending vtables.
2695 assert(VTableUses.empty() &&
2696 "VTableUses should be empty before it is discarded, "
2697 "while instantiating static data member.");
2698 VTableUses.swap(SavedVTableUses);
2699
Douglas Gregor7caa6822009-07-24 20:34:43 +00002700 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002701 assert(PendingInstantiations.empty() &&
2702 "PendingInstantiations should be empty before it is discarded, "
2703 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002704 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002705 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002706}
Douglas Gregor815215d2009-05-27 05:35:12 +00002707
Benjamin Kramer54dec5f2011-10-08 16:15:07 +00002708static MultiInitializer CreateMultiInitializer(SmallVectorImpl<Expr*> &Args,
2709 const CXXCtorInitializer *Init) {
Sebastian Redl6df65482011-09-24 17:48:25 +00002710 // FIXME: This is a hack that will do slightly the wrong thing for an
2711 // initializer of the form foo({...}).
2712 // The right thing to do would be to modify InstantiateInitializer to create
2713 // the MultiInitializer.
2714 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2715 return MultiInitializer(Args[0]);
Sebastian Redlc046f302011-10-17 16:53:50 +00002716 return MultiInitializer(Init->getLParenLoc(), Args.data(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002717 Args.size(), Init->getRParenLoc());
2718}
2719
Anders Carlsson09025312009-08-29 05:16:22 +00002720void
2721Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2722 const CXXConstructorDecl *Tmpl,
2723 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002724
Richard Trieu90ab75b2011-09-09 03:18:59 +00002725 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002726 bool AnyErrors = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002727
Anders Carlsson09025312009-08-29 05:16:22 +00002728 // Instantiate all the initializers.
2729 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002730 InitsEnd = Tmpl->init_end();
2731 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002732 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002733
Chandler Carruth030ef472010-09-03 21:54:20 +00002734 // Only instantiate written initializers, let Sema re-construct implicit
2735 // ones.
2736 if (!Init->isWritten())
2737 continue;
2738
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002739 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002740 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002741
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002742 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002743
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002744 if (Init->isPackExpansion()) {
2745 // This is a pack expansion. We should expand it now.
2746 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002747 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002748 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2749 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002750 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002751 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002752 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002753 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002754 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002755 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002756 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002757 NumExpansions)) {
2758 AnyErrors = true;
2759 New->setInvalidDecl();
2760 continue;
2761 }
2762 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002763
2764 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002765 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002766 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2767
2768 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002769 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002770 LParenLoc, NewArgs, RParenLoc)) {
2771 AnyErrors = true;
2772 break;
2773 }
2774
2775 // Instantiate the base type.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002776 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2777 TemplateArgs,
2778 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002779 New->getDeclName());
2780 if (!BaseTInfo) {
2781 AnyErrors = true;
2782 break;
2783 }
2784
2785 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002786 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2787 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2788 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002789 New->getParent(),
2790 SourceLocation());
2791 if (NewInit.isInvalid()) {
2792 AnyErrors = true;
2793 break;
2794 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002795
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002796 NewInits.push_back(NewInit.get());
2797 NewArgs.clear();
2798 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002799
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002800 continue;
2801 }
2802
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002803 // Instantiate the initializer.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002804 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002805 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002806 AnyErrors = true;
2807 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002808 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002809
Anders Carlsson09025312009-08-29 05:16:22 +00002810 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002811 if (Init->isBaseInitializer()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002812 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2813 TemplateArgs,
2814 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002815 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002816 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002817 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002818 New->setInvalidDecl();
2819 continue;
2820 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002821
2822 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2823 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo, MultiInit,
2824 New->getParent(), EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002825 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002826 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002827 Init->getMemberLocation(),
2828 Init->getMember(),
2829 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002830 if (!Member) {
2831 AnyErrors = true;
2832 New->setInvalidDecl();
2833 continue;
2834 }
Mike Stump1eb44332009-09-09 15:08:12 +00002835
Sebastian Redl6df65482011-09-24 17:48:25 +00002836 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2837 NewInit = BuildMemberInitializer(Member, MultiInit,
2838 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002839 } else if (Init->isIndirectMemberInitializer()) {
2840 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002841 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002842 Init->getMemberLocation(),
2843 Init->getIndirectMember(), TemplateArgs));
2844
Douglas Gregorb7107222011-03-04 19:46:35 +00002845 if (!IndirectMember) {
2846 AnyErrors = true;
2847 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002848 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002849 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002850
2851 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2852 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2853 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002854 }
2855
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002856 if (NewInit.isInvalid()) {
2857 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002858 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002859 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002860 // FIXME: It would be nice if ASTOwningVector had a release function.
2861 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002862
Richard Trieu90ab75b2011-09-09 03:18:59 +00002863 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002864 }
2865 }
Mike Stump1eb44332009-09-09 15:08:12 +00002866
Anders Carlsson09025312009-08-29 05:16:22 +00002867 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002868 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002869 /*FIXME: ColonLoc */
2870 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002871 NewInits.data(), NewInits.size(),
2872 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002873}
2874
John McCall52a575a2009-08-29 08:11:13 +00002875// TODO: this could be templated if the various decl types used the
2876// same method name.
2877static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2878 ClassTemplateDecl *Instance) {
2879 Pattern = Pattern->getCanonicalDecl();
2880
2881 do {
2882 Instance = Instance->getCanonicalDecl();
2883 if (Pattern == Instance) return true;
2884 Instance = Instance->getInstantiatedFromMemberTemplate();
2885 } while (Instance);
2886
2887 return false;
2888}
2889
Douglas Gregor0d696532009-09-28 06:34:35 +00002890static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2891 FunctionTemplateDecl *Instance) {
2892 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002893
Douglas Gregor0d696532009-09-28 06:34:35 +00002894 do {
2895 Instance = Instance->getCanonicalDecl();
2896 if (Pattern == Instance) return true;
2897 Instance = Instance->getInstantiatedFromMemberTemplate();
2898 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002899
Douglas Gregor0d696532009-09-28 06:34:35 +00002900 return false;
2901}
2902
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002903static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00002904isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2905 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002906 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00002907 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2908 do {
2909 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2910 Instance->getCanonicalDecl());
2911 if (Pattern == Instance)
2912 return true;
2913 Instance = Instance->getInstantiatedFromMember();
2914 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002915
Douglas Gregored9c0f92009-10-29 00:04:11 +00002916 return false;
2917}
2918
John McCall52a575a2009-08-29 08:11:13 +00002919static bool isInstantiationOf(CXXRecordDecl *Pattern,
2920 CXXRecordDecl *Instance) {
2921 Pattern = Pattern->getCanonicalDecl();
2922
2923 do {
2924 Instance = Instance->getCanonicalDecl();
2925 if (Pattern == Instance) return true;
2926 Instance = Instance->getInstantiatedFromMemberClass();
2927 } while (Instance);
2928
2929 return false;
2930}
2931
2932static bool isInstantiationOf(FunctionDecl *Pattern,
2933 FunctionDecl *Instance) {
2934 Pattern = Pattern->getCanonicalDecl();
2935
2936 do {
2937 Instance = Instance->getCanonicalDecl();
2938 if (Pattern == Instance) return true;
2939 Instance = Instance->getInstantiatedFromMemberFunction();
2940 } while (Instance);
2941
2942 return false;
2943}
2944
2945static bool isInstantiationOf(EnumDecl *Pattern,
2946 EnumDecl *Instance) {
2947 Pattern = Pattern->getCanonicalDecl();
2948
2949 do {
2950 Instance = Instance->getCanonicalDecl();
2951 if (Pattern == Instance) return true;
2952 Instance = Instance->getInstantiatedFromMemberEnum();
2953 } while (Instance);
2954
2955 return false;
2956}
2957
John McCalled976492009-12-04 22:46:56 +00002958static bool isInstantiationOf(UsingShadowDecl *Pattern,
2959 UsingShadowDecl *Instance,
2960 ASTContext &C) {
2961 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2962}
2963
2964static bool isInstantiationOf(UsingDecl *Pattern,
2965 UsingDecl *Instance,
2966 ASTContext &C) {
2967 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2968}
2969
John McCall7ba107a2009-11-18 02:36:19 +00002970static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2971 UsingDecl *Instance,
2972 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002973 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002974}
2975
2976static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002977 UsingDecl *Instance,
2978 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002979 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002980}
2981
John McCall52a575a2009-08-29 08:11:13 +00002982static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2983 VarDecl *Instance) {
2984 assert(Instance->isStaticDataMember());
2985
2986 Pattern = Pattern->getCanonicalDecl();
2987
2988 do {
2989 Instance = Instance->getCanonicalDecl();
2990 if (Pattern == Instance) return true;
2991 Instance = Instance->getInstantiatedFromStaticDataMember();
2992 } while (Instance);
2993
2994 return false;
2995}
2996
John McCalled976492009-12-04 22:46:56 +00002997// Other is the prospective instantiation
2998// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002999static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003000 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003001 if (UnresolvedUsingTypenameDecl *UUD
3002 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3003 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3004 return isInstantiationOf(UUD, UD, Ctx);
3005 }
3006 }
3007
3008 if (UnresolvedUsingValueDecl *UUD
3009 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003010 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3011 return isInstantiationOf(UUD, UD, Ctx);
3012 }
3013 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003014
Anders Carlsson0d8df782009-08-29 19:37:28 +00003015 return false;
3016 }
Mike Stump1eb44332009-09-09 15:08:12 +00003017
John McCall52a575a2009-08-29 08:11:13 +00003018 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3019 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003020
John McCall52a575a2009-08-29 08:11:13 +00003021 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3022 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003023
John McCall52a575a2009-08-29 08:11:13 +00003024 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3025 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003026
Douglas Gregor7caa6822009-07-24 20:34:43 +00003027 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003028 if (Var->isStaticDataMember())
3029 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3030
3031 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3032 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003033
Douglas Gregor0d696532009-09-28 06:34:35 +00003034 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3035 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3036
Douglas Gregored9c0f92009-10-29 00:04:11 +00003037 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3038 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3039 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3040 PartialSpec);
3041
Anders Carlssond8b285f2009-09-01 04:26:58 +00003042 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3043 if (!Field->getDeclName()) {
3044 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003045 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003046 cast<FieldDecl>(D);
3047 }
3048 }
Mike Stump1eb44332009-09-09 15:08:12 +00003049
John McCalled976492009-12-04 22:46:56 +00003050 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3051 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3052
3053 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3054 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3055
Douglas Gregor815215d2009-05-27 05:35:12 +00003056 return D->getDeclName() && isa<NamedDecl>(Other) &&
3057 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3058}
3059
3060template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003061static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003062 NamedDecl *D,
3063 ForwardIterator first,
3064 ForwardIterator last) {
3065 for (; first != last; ++first)
3066 if (isInstantiationOf(Ctx, D, *first))
3067 return cast<NamedDecl>(*first);
3068
3069 return 0;
3070}
3071
John McCall02cace72009-08-28 07:59:38 +00003072/// \brief Finds the instantiation of the given declaration context
3073/// within the current instantiation.
3074///
3075/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003076DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003077 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003078 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003079 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003080 return cast_or_null<DeclContext>(ID);
3081 } else return DC;
3082}
3083
Douglas Gregored961e72009-05-27 17:54:46 +00003084/// \brief Find the instantiation of the given declaration within the
3085/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003086///
3087/// This routine is intended to be used when \p D is a declaration
3088/// referenced from within a template, that needs to mapped into the
3089/// corresponding declaration within an instantiation. For example,
3090/// given:
3091///
3092/// \code
3093/// template<typename T>
3094/// struct X {
3095/// enum Kind {
3096/// KnownValue = sizeof(T)
3097/// };
3098///
3099/// bool getKind() const { return KnownValue; }
3100/// };
3101///
3102/// template struct X<int>;
3103/// \endcode
3104///
3105/// In the instantiation of X<int>::getKind(), we need to map the
3106/// EnumConstantDecl for KnownValue (which refers to
3107/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003108/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3109/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003110NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003111 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003112 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003113 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003114 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003115 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003116 // D is a local of some kind. Look into the map of local
3117 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003118 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3119 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3120 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003121
Chris Lattner57ad3782011-02-17 20:34:02 +00003122 if (Found) {
3123 if (Decl *FD = Found->dyn_cast<Decl *>())
3124 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003125
Chris Lattner57ad3782011-02-17 20:34:02 +00003126 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3127 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3128 }
3129
3130 // If we didn't find the decl, then we must have a label decl that hasn't
3131 // been found yet. Lazily instantiate it and return it now.
3132 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003133
Chris Lattner57ad3782011-02-17 20:34:02 +00003134 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3135 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003136
Chris Lattner57ad3782011-02-17 20:34:02 +00003137 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3138 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003139 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003140
Douglas Gregore95b4092009-09-16 18:34:49 +00003141 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3142 if (!Record->isDependentContext())
3143 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003144
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003145 // If the RecordDecl is actually the injected-class-name or a
3146 // "templated" declaration for a class template, class template
3147 // partial specialization, or a member class of a class template,
3148 // substitute into the injected-class-name of the class template
3149 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00003150 QualType T;
3151 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003152
Douglas Gregore95b4092009-09-16 18:34:49 +00003153 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00003154 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00003155 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3156 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00003157 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00003158
3159 // If we call SubstType with an InjectedClassNameType here we
3160 // can end up in an infinite loop.
3161 T = Context.getTypeDeclType(Record);
3162 assert(isa<InjectedClassNameType>(T) &&
3163 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00003164 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003165 }
3166
Douglas Gregore95b4092009-09-16 18:34:49 +00003167 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003168 // Substitute into the injected-class-name to get the type
3169 // corresponding to the instantiation we want, which may also be
3170 // the current instantiation (if we're in a template
3171 // definition). This substitution should never fail, since we
3172 // know we can instantiate the injected-class-name or we
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003173 // wouldn't have gotten to the injected-class-name!
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003174
3175 // FIXME: Can we use the CurrentInstantiationScope to avoid this
3176 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00003177 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00003178 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003179
Douglas Gregore95b4092009-09-16 18:34:49 +00003180 if (!T->isDependentType()) {
3181 assert(T->isRecordType() && "Instantiation must produce a record type");
3182 return T->getAs<RecordType>()->getDecl();
3183 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003184
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003185 // We are performing "partial" template instantiation to create
3186 // the member declarations for the members of a class template
3187 // specialization. Therefore, D is actually referring to something
3188 // in the current instantiation. Look through the current
3189 // context, which contains actual instantiations, to find the
3190 // instantiation of the "current instantiation" that D refers
3191 // to.
3192 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003193 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00003194 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003195 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003196 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003197 if (isInstantiationOf(ClassTemplate,
Douglas Gregore95b4092009-09-16 18:34:49 +00003198 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00003199 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003200
3201 if (!DC->isDependentContext())
3202 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00003203 }
3204
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003205 // We're performing "instantiation" of a member of the current
3206 // instantiation while we are type-checking the
3207 // definition. Compute the declaration context and return that.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003208 assert(!SawNonDependentContext &&
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003209 "No dependent context while instantiating record");
3210 DeclContext *DC = computeDeclContext(T);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003211 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00003212 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003213 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00003214 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003215
Douglas Gregore95b4092009-09-16 18:34:49 +00003216 // Fall through to deal with other dependent record types (e.g.,
3217 // anonymous unions in class templates).
3218 }
John McCall52a575a2009-08-29 08:11:13 +00003219
Douglas Gregore95b4092009-09-16 18:34:49 +00003220 if (!ParentDC->isDependentContext())
3221 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003222
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003223 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003224 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003225 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003226
Douglas Gregor815215d2009-05-27 05:35:12 +00003227 if (ParentDC != D->getDeclContext()) {
3228 // We performed some kind of instantiation in the parent context,
3229 // so now we need to look into the instantiated parent context to
3230 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003231
John McCall3cb0ebd2010-03-10 03:28:59 +00003232 // If our context used to be dependent, we may need to instantiate
3233 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003234 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003235 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003236 if (!Spec->isDependentContext()) {
3237 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003238 const RecordType *Tag = T->getAs<RecordType>();
3239 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003240 if (Tag->isBeingDefined())
3241 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003242 if (!Tag->isBeingDefined() &&
3243 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3244 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003245
3246 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003247 }
3248 }
3249
Douglas Gregor815215d2009-05-27 05:35:12 +00003250 NamedDecl *Result = 0;
3251 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003252 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003253 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3254 } else {
3255 // Since we don't have a name for the entity we're looking for,
3256 // our only option is to walk through all of the declarations to
3257 // find that name. This will occur in a few cases:
3258 //
3259 // - anonymous struct/union within a template
3260 // - unnamed class/struct/union/enum within a template
3261 //
3262 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003263 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003264 ParentDC->decls_begin(),
3265 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003266 }
Mike Stump1eb44332009-09-09 15:08:12 +00003267
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003268 if (!Result) {
3269 if (isa<UsingShadowDecl>(D)) {
3270 // UsingShadowDecls can instantiate to nothing because of using hiding.
3271 } else if (Diags.hasErrorOccurred()) {
3272 // We've already complained about something, so most likely this
3273 // declaration failed to instantiate. There's no point in complaining
3274 // further, since this is normal in invalid code.
3275 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003276 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003277 // instantiated, and we haven't gotten around to instantiating this
3278 // member yet. This can happen when the code uses forward declarations
3279 // of member classes, and introduces ordering dependencies via
3280 // template instantiation.
3281 Diag(Loc, diag::err_member_not_yet_instantiated)
3282 << D->getDeclName()
3283 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3284 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3285 } else {
3286 // We should have found something, but didn't.
3287 llvm_unreachable("Unable to find instantiation of declaration!");
3288 }
3289 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003290
Douglas Gregor815215d2009-05-27 05:35:12 +00003291 D = Result;
3292 }
3293
Douglas Gregor815215d2009-05-27 05:35:12 +00003294 return D;
3295}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003296
Mike Stump1eb44332009-09-09 15:08:12 +00003297/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003298/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003299void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003300 // Load pending instantiations from the external source.
3301 if (!LocalOnly && ExternalSource) {
3302 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3303 ExternalSource->ReadPendingInstantiations(Pending);
3304 PendingInstantiations.insert(PendingInstantiations.begin(),
3305 Pending.begin(), Pending.end());
3306 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003307
Douglas Gregor60406be2010-01-16 22:29:39 +00003308 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003309 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003310 PendingImplicitInstantiation Inst;
3311
3312 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003313 Inst = PendingInstantiations.front();
3314 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003315 } else {
3316 Inst = PendingLocalImplicitInstantiations.front();
3317 PendingLocalImplicitInstantiations.pop_front();
3318 }
Mike Stump1eb44332009-09-09 15:08:12 +00003319
Douglas Gregor7caa6822009-07-24 20:34:43 +00003320 // Instantiate function definitions
3321 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003322 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3323 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003324 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3325 TSK_ExplicitInstantiationDefinition;
3326 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3327 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003328 continue;
3329 }
Mike Stump1eb44332009-09-09 15:08:12 +00003330
Douglas Gregor7caa6822009-07-24 20:34:43 +00003331 // Instantiate static data member definitions.
3332 VarDecl *Var = cast<VarDecl>(Inst.first);
3333 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003334
Chandler Carruth291b4412010-02-13 10:17:50 +00003335 // Don't try to instantiate declarations if the most recent redeclaration
3336 // is invalid.
3337 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3338 continue;
3339
3340 // Check if the most recent declaration has changed the specialization kind
3341 // and removed the need for implicit instantiation.
3342 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3343 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003344 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003345 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003346 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003347 continue; // No longer need to instantiate this type.
3348 case TSK_ExplicitInstantiationDefinition:
3349 // We only need an instantiation if the pending instantiation *is* the
3350 // explicit instantiation.
3351 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003352 case TSK_ImplicitInstantiation:
3353 break;
3354 }
3355
John McCallf312b1e2010-08-26 23:41:50 +00003356 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3357 "instantiating static data member "
3358 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003359
Chandler Carruth58e390e2010-08-25 08:27:02 +00003360 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3361 TSK_ExplicitInstantiationDefinition;
3362 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3363 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003364 }
3365}
John McCall0c01d182010-03-24 05:22:00 +00003366
3367void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3368 const MultiLevelTemplateArgumentList &TemplateArgs) {
3369 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3370 E = Pattern->ddiag_end(); I != E; ++I) {
3371 DependentDiagnostic *DD = *I;
3372
3373 switch (DD->getKind()) {
3374 case DependentDiagnostic::Access:
3375 HandleDependentAccessCheck(*DD, TemplateArgs);
3376 break;
3377 }
3378 }
3379}