blob: d4406240d0e259041eb5ab1063f84d2097d9efd0 [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;
32
33 NestedNameSpecifierLoc NewQualifierLoc
34 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
35 TemplateArgs);
36
37 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000039
40 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;
48
49 NestedNameSpecifierLoc NewQualifierLoc
50 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
51 TemplateArgs);
52
53 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000055
56 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,
82 Aligned->getLocation(),
83 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 return D;
101}
102
103Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000104TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
105 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
106 D->getIdentifier());
107 Owner->addDecl(Inst);
108 return Inst;
109}
110
111Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000112TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000113 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000114 return D;
115}
116
John McCall3dbd3d52010-02-16 06:53:13 +0000117Decl *
118TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
119 NamespaceAliasDecl *Inst
120 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
121 D->getNamespaceLoc(),
122 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000123 D->getIdentifier(),
124 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000125 D->getTargetNameLoc(),
126 D->getNamespace());
127 Owner->addDecl(Inst);
128 return Inst;
129}
130
Richard Smith3e4c6c42011-05-05 21:57:07 +0000131Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
132 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000133 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000134 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000135 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000136 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000137 DI = SemaRef.SubstType(DI, TemplateArgs,
138 D->getLocation(), D->getDeclName());
139 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000140 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000141 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000142 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000143 } else {
144 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000145 }
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000147 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000148 TypedefNameDecl *Typedef;
149 if (IsTypeAlias)
150 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
151 D->getLocation(), D->getIdentifier(), DI);
152 else
153 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
154 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000155 if (Invalid)
156 Typedef->setInvalidDecl();
157
John McCallcde5a402011-02-01 08:20:08 +0000158 // If the old typedef was the name for linkage purposes of an anonymous
159 // tag decl, re-establish that relationship for the new typedef.
160 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
161 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000162 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000163 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000164 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
165 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000166 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000167 }
168
Richard Smith162e1c12011-04-15 14:24:37 +0000169 if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000170 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
171 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000172 if (!InstPrev)
173 return 0;
174
Richard Smith162e1c12011-04-15 14:24:37 +0000175 Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
John McCall5126fd02009-12-30 00:31:22 +0000176 }
177
John McCall1d8d1cc2010-08-01 02:01:53 +0000178 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000179
John McCall46460a62010-01-20 21:53:11 +0000180 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000182 return Typedef;
183}
184
Richard Smith162e1c12011-04-15 14:24:37 +0000185Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000186 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
187 Owner->addDecl(Typedef);
188 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000189}
190
191Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000192 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
193 Owner->addDecl(Typedef);
194 return Typedef;
195}
196
197Decl *
198TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
199 // Create a local instantiation scope for this type alias template, which
200 // will contain the instantiations of the template parameters.
201 LocalInstantiationScope Scope(SemaRef);
202
203 TemplateParameterList *TempParams = D->getTemplateParameters();
204 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
205 if (!InstParams)
206 return 0;
207
208 TypeAliasDecl *Pattern = D->getTemplatedDecl();
209
210 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
211 if (Pattern->getPreviousDeclaration()) {
212 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
213 if (Found.first != Found.second) {
214 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
215 }
216 }
217
218 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
219 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
220 if (!AliasInst)
221 return 0;
222
223 TypeAliasTemplateDecl *Inst
224 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
225 D->getDeclName(), InstParams, AliasInst);
226 if (PrevAliasTemplate)
227 Inst->setPreviousDeclaration(PrevAliasTemplate);
228
229 Inst->setAccess(D->getAccess());
230
231 if (!PrevAliasTemplate)
232 Inst->setInstantiatedFromMemberTemplate(D);
233
234 Owner->addDecl(Inst);
235
236 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000237}
238
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000239/// \brief Instantiate an initializer, breaking it into separate
240/// initialization arguments.
241///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000242/// \param Init The initializer to instantiate.
243///
244/// \param TemplateArgs Template arguments to be substituted into the
245/// initializer.
246///
247/// \param NewArgs Will be filled in with the instantiation arguments.
248///
249/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000250bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000251 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000252 SourceLocation &LParenLoc,
253 ASTOwningVector<Expr*> &NewArgs,
254 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000255 NewArgs.clear();
256 LParenLoc = SourceLocation();
257 RParenLoc = SourceLocation();
258
259 if (!Init)
260 return false;
261
John McCall4765fa02010-12-06 08:20:24 +0000262 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000263 Init = ExprTemp->getSubExpr();
264
265 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
266 Init = Binder->getSubExpr();
267
268 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
269 Init = ICE->getSubExprAsWritten();
270
271 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
272 LParenLoc = ParenList->getLParenLoc();
273 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000274 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
275 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000276 }
277
278 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000279 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000280 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
281 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000282 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000283
Douglas Gregor28329e52010-03-24 21:22:47 +0000284 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000285 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000286 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000287 return false;
288 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000289 }
290
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000291 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000292 if (Result.isInvalid())
293 return true;
294
295 NewArgs.push_back(Result.takeAs<Expr>());
296 return false;
297}
298
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000299Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000300 // If this is the variable for an anonymous struct or union,
301 // instantiate the anonymous struct/union type first.
302 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
303 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
304 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
305 return 0;
306
John McCallce3ff2b2009-08-25 22:02:44 +0000307 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000308 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000309 TemplateArgs,
310 D->getTypeSpecStartLoc(),
311 D->getDeclName());
312 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000313 return 0;
314
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000315 if (DI->getType()->isFunctionType()) {
316 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
317 << D->isStaticDataMember() << DI->getType();
318 return 0;
319 }
320
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000321 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000322 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000323 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000324 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000325 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000326 D->getStorageClass(),
327 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000328 Var->setThreadSpecified(D->isThreadSpecified());
329 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000330 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000331
John McCallb6217662010-03-15 10:12:16 +0000332 // Substitute the nested name specifier, if any.
333 if (SubstQualifier(D, Var))
334 return 0;
335
Mike Stump1eb44332009-09-09 15:08:12 +0000336 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000337 // out-of-line, the instantiation will have the same lexical
338 // context (which will be a namespace scope) as the template.
339 if (D->isOutOfLine())
340 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000341
John McCall46460a62010-01-20 21:53:11 +0000342 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000343
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000344 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000345 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000346 Var->setReferenced(D->isReferenced());
347 }
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000348
Mike Stump390b4cc2009-05-16 07:39:55 +0000349 // FIXME: In theory, we could have a previous declaration for variables that
350 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000351 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000352 // FIXME: having to fake up a LookupResult is dumb.
353 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000354 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000355 if (D->isStaticDataMember())
356 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000357 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Douglas Gregor7caa6822009-07-24 20:34:43 +0000359 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000360 if (!D->isStaticDataMember())
361 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000362 Owner->makeDeclVisibleInContext(Var);
363 } else {
364 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000365 if (Owner->isFunctionOrMethod())
366 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000367 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000368 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000369
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000370 // Link instantiations of static data members back to the template from
371 // which they were instantiated.
372 if (Var->isStaticDataMember())
373 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000374 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000375
Douglas Gregor60c93c92010-02-09 07:26:29 +0000376 if (Var->getAnyInitializer()) {
377 // We already have an initializer in the class.
378 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000379 if (Var->isStaticDataMember() && !D->isOutOfLine())
380 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
381 else
382 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
383
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000384 // Instantiate the initializer.
385 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000386 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000387 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
388 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000389 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000390 // Attach the initializer to the declaration, if we have one.
391 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000392 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000393 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000394 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000395 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000396 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000397 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000398 RParenLoc,
399 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000400 } else {
401 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000402 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000403 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000404 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000405 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000406 // FIXME: Not too happy about invalidating the declaration
407 // because of a bogus initializer.
408 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000409 }
410
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000411 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000412 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
413 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000414 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000415
Richard Smithe3499ca2011-06-21 23:42:09 +0000416 // Diagnose unused local variables with dependent types, where the diagnostic
417 // will have been deferred.
418 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
419 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000420 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000421
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000422 return Var;
423}
424
Abramo Bagnara6206d532010-06-05 05:09:32 +0000425Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
426 AccessSpecDecl* AD
427 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
428 D->getAccessSpecifierLoc(), D->getColonLoc());
429 Owner->addHiddenDecl(AD);
430 return AD;
431}
432
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000433Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
434 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000435 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000436 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000437 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000438 DI = SemaRef.SubstType(DI, TemplateArgs,
439 D->getLocation(), D->getDeclName());
440 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000441 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000442 Invalid = true;
443 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000444 // C++ [temp.arg.type]p3:
445 // If a declaration acquires a function type through a type
446 // dependent on a template-parameter and this causes a
447 // declaration that does not use the syntactic form of a
448 // function declarator to have function type, the program is
449 // ill-formed.
450 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000451 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000452 Invalid = true;
453 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000454 } else {
455 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000456 }
457
458 Expr *BitWidth = D->getBitWidth();
459 if (Invalid)
460 BitWidth = 0;
461 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000462 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000463 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000464
John McCall60d7b3a2010-08-24 06:29:42 +0000465 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000466 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000467 if (InstantiatedBitWidth.isInvalid()) {
468 Invalid = true;
469 BitWidth = 0;
470 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000471 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000472 }
473
John McCall07fb6be2009-10-22 23:33:21 +0000474 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
475 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000476 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000477 D->getLocation(),
478 D->isMutable(),
479 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000480 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000481 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000482 D->getAccess(),
483 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000484 if (!Field) {
485 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000486 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000487 }
Mike Stump1eb44332009-09-09 15:08:12 +0000488
John McCall1d8d1cc2010-08-01 02:01:53 +0000489 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000490
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000491 if (Invalid)
492 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000494 if (!Field->getDeclName()) {
495 // Keep track of where this decl came from.
496 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000497 }
498 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
499 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000500 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000501 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000502 }
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000504 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000505 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000506 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000507
508 return Field;
509}
510
Francois Pichet87c2e122010-11-21 06:08:52 +0000511Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
512 NamedDecl **NamedChain =
513 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
514
515 int i = 0;
516 for (IndirectFieldDecl::chain_iterator PI =
517 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000518 PI != PE; ++PI) {
519 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
520 TemplateArgs);
521 if (!Next)
522 return 0;
523
524 NamedChain[i++] = Next;
525 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000526
Francois Pichet40e17752010-12-09 10:07:54 +0000527 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000528 IndirectFieldDecl* IndirectField
529 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000530 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000531 NamedChain, D->getChainingSize());
532
533
534 IndirectField->setImplicit(D->isImplicit());
535 IndirectField->setAccess(D->getAccess());
536 Owner->addDecl(IndirectField);
537 return IndirectField;
538}
539
John McCall02cace72009-08-28 07:59:38 +0000540Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000541 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000542 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000543 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000544 TypeSourceInfo *InstTy;
545 // If this is an unsupported friend, don't bother substituting template
546 // arguments into it. The actual type referred to won't be used by any
547 // parts of Clang, and may not be valid for instantiating. Just use the
548 // same info for the instantiated friend.
549 if (D->isUnsupportedFriend()) {
550 InstTy = Ty;
551 } else {
552 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
553 D->getLocation(), DeclarationName());
554 }
555 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000556 return 0;
John McCall02cace72009-08-28 07:59:38 +0000557
Douglas Gregor06245bf2010-04-07 17:57:12 +0000558 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
559 if (!FD)
560 return 0;
561
562 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000563 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000564 Owner->addDecl(FD);
565 return FD;
566 }
567
568 NamedDecl *ND = D->getFriendDecl();
569 assert(ND && "friend decl must be a decl or a type!");
570
John McCallaf2094e2010-04-08 09:05:18 +0000571 // All of the Visit implementations for the various potential friend
572 // declarations have to be carefully written to work for friend
573 // objects, with the most important detail being that the target
574 // decl should almost certainly not be placed in Owner.
575 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000576 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000577
John McCall02cace72009-08-28 07:59:38 +0000578 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000579 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
580 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000581 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000582 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000583 Owner->addDecl(FD);
584 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000585}
586
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000587Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
588 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000589
Douglas Gregorac7610d2009-06-22 20:57:11 +0000590 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000591 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000592
John McCall60d7b3a2010-08-24 06:29:42 +0000593 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000594 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000595 if (InstantiatedAssertExpr.isInvalid())
596 return 0;
597
John McCall60d7b3a2010-08-24 06:29:42 +0000598 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000599 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000600 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000601 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000602 Message.get(),
603 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000604}
605
606Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000607 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000608 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000609 /*PrevDecl=*/0, D->isScoped(),
610 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000611 if (D->isFixed()) {
612 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
613 // If we have type source information for the underlying type, it means it
614 // has been explicitly set by the user. Perform substitution on it before
615 // moving on.
616 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
617 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
618 TemplateArgs,
619 UnderlyingLoc,
620 DeclarationName()));
621
622 if (!Enum->getIntegerTypeSourceInfo())
623 Enum->setIntegerType(SemaRef.Context.IntTy);
624 }
625 else {
626 assert(!D->getIntegerType()->isDependentType()
627 && "Dependent type without type source info");
628 Enum->setIntegerType(D->getIntegerType());
629 }
630 }
631
John McCall5b629aa2010-10-22 23:36:17 +0000632 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
633
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000634 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000635 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000636 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000637 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000638 Enum->startDefinition();
639
Douglas Gregor96084f12010-03-01 19:00:07 +0000640 if (D->getDeclContext()->isFunctionOrMethod())
641 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
642
Chris Lattner5f9e2722011-07-23 10:55:15 +0000643 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000644
645 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000646 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
647 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000648 EC != ECEnd; ++EC) {
649 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000650 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000651 if (Expr *UninstValue = EC->getInitExpr()) {
652 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000653 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000654 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000655
John McCallce3ff2b2009-08-25 22:02:44 +0000656 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000657 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000658
659 // Drop the initial value and continue.
660 bool isInvalid = false;
661 if (Value.isInvalid()) {
662 Value = SemaRef.Owned((Expr *)0);
663 isInvalid = true;
664 }
665
Mike Stump1eb44332009-09-09 15:08:12 +0000666 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000667 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
668 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000669 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000670
671 if (isInvalid) {
672 if (EnumConst)
673 EnumConst->setInvalidDecl();
674 Enum->setInvalidDecl();
675 }
676
677 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000678 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
679
John McCall3b85ecf2010-01-23 22:37:59 +0000680 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000681 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000682 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000683 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000684
685 if (D->getDeclContext()->isFunctionOrMethod()) {
686 // If the enumeration is within a function or method, record the enum
687 // constant as a local.
688 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
689 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000690 }
691 }
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000693 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000694 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000695 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000696 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000697 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000698 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000699
700 return Enum;
701}
702
Douglas Gregor6477b692009-03-25 15:04:13 +0000703Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000704 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000705 return 0;
706}
707
John McCalle29ba202009-08-20 01:44:21 +0000708Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000709 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
710
Douglas Gregor550d9b22009-10-31 17:21:17 +0000711 // Create a local instantiation scope for this class template, which
712 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000713 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000714 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000715 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000716 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000717 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000718
719 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000720
721 // Instantiate the qualifier. We have to do this first in case
722 // we're a friend declaration, because if we are then we need to put
723 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000724 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
725 if (QualifierLoc) {
726 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
727 TemplateArgs);
728 if (!QualifierLoc)
729 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000730 }
731
732 CXXRecordDecl *PrevDecl = 0;
733 ClassTemplateDecl *PrevClassTemplate = 0;
734
Nick Lewycky37574f52010-11-08 23:29:42 +0000735 if (!isFriend && Pattern->getPreviousDeclaration()) {
736 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
737 if (Found.first != Found.second) {
738 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
739 if (PrevClassTemplate)
740 PrevDecl = PrevClassTemplate->getTemplatedDecl();
741 }
742 }
743
John McCall93ba8572010-03-25 06:39:04 +0000744 // If this isn't a friend, then it's a member template, in which
745 // case we just want to build the instantiation in the
746 // specialization. If it is a friend, we want to build it in
747 // the appropriate context.
748 DeclContext *DC = Owner;
749 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000750 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000751 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000752 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000753 DC = SemaRef.computeDeclContext(SS);
754 if (!DC) return 0;
755 } else {
756 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
757 Pattern->getDeclContext(),
758 TemplateArgs);
759 }
760
761 // Look for a previous declaration of the template in the owning
762 // context.
763 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
764 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
765 SemaRef.LookupQualifiedName(R, DC);
766
767 if (R.isSingleResult()) {
768 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
769 if (PrevClassTemplate)
770 PrevDecl = PrevClassTemplate->getTemplatedDecl();
771 }
772
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000773 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000774 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000775 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000776 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000777 return 0;
778 }
779
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000780 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000781 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000782 bool Complain = true;
783
784 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
785 // template for struct std::tr1::__detail::_Map_base, where the
786 // template parameters of the friend declaration don't match the
787 // template parameters of the original declaration. In this one
788 // case, we don't complain about the ill-formed friend
789 // declaration.
790 if (isFriend && Pattern->getIdentifier() &&
791 Pattern->getIdentifier()->isStr("_Map_base") &&
792 DC->isNamespace() &&
793 cast<NamespaceDecl>(DC)->getIdentifier() &&
794 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
795 DeclContext *DCParent = DC->getParent();
796 if (DCParent->isNamespace() &&
797 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
798 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
799 DeclContext *DCParent2 = DCParent->getParent();
800 if (DCParent2->isNamespace() &&
801 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
802 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
803 DCParent2->getParent()->isTranslationUnit())
804 Complain = false;
805 }
806 }
807
John McCall93ba8572010-03-25 06:39:04 +0000808 TemplateParameterList *PrevParams
809 = PrevClassTemplate->getTemplateParameters();
810
811 // Make sure the parameter lists match.
812 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000813 Complain,
814 Sema::TPL_TemplateMatch)) {
815 if (Complain)
816 return 0;
817
818 AdoptedPreviousTemplateParams = true;
819 InstParams = PrevParams;
820 }
John McCall93ba8572010-03-25 06:39:04 +0000821
822 // Do some additional validation, then merge default arguments
823 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000824 if (!AdoptedPreviousTemplateParams &&
825 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000826 Sema::TPC_ClassTemplate))
827 return 0;
828 }
829 }
830
John McCalle29ba202009-08-20 01:44:21 +0000831 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000832 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000833 Pattern->getLocStart(), Pattern->getLocation(),
834 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000835 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000836
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000837 if (QualifierLoc)
838 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000839
John McCalle29ba202009-08-20 01:44:21 +0000840 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000841 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
842 D->getIdentifier(), InstParams, RecordInst,
843 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000844 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000845
John McCall93ba8572010-03-25 06:39:04 +0000846 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000847 if (PrevClassTemplate)
848 Inst->setAccess(PrevClassTemplate->getAccess());
849 else
850 Inst->setAccess(D->getAccess());
851
John McCall93ba8572010-03-25 06:39:04 +0000852 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
853 // TODO: do we want to track the instantiation progeny of this
854 // friend target decl?
855 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000856 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000857 if (!PrevClassTemplate)
858 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000859 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000860
861 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000862 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000863 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000864
Douglas Gregor259571e2009-10-30 22:42:42 +0000865 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000866 if (isFriend) {
867 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000868 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000869 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000870
John McCalle29ba202009-08-20 01:44:21 +0000871 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000872
873 if (!PrevClassTemplate) {
874 // Queue up any out-of-line partial specializations of this member
875 // class template; the client will force their instantiation once
876 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000877 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000878 D->getPartialSpecializations(PartialSpecs);
879 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
880 if (PartialSpecs[I]->isOutOfLine())
881 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
882 }
883
John McCalle29ba202009-08-20 01:44:21 +0000884 return Inst;
885}
886
Douglas Gregord60e1052009-08-27 16:57:43 +0000887Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000888TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
889 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000890 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
891
892 // Lookup the already-instantiated declaration in the instantiation
893 // of the class template and return that.
894 DeclContext::lookup_result Found
895 = Owner->lookup(ClassTemplate->getDeclName());
896 if (Found.first == Found.second)
897 return 0;
898
899 ClassTemplateDecl *InstClassTemplate
900 = dyn_cast<ClassTemplateDecl>(*Found.first);
901 if (!InstClassTemplate)
902 return 0;
903
Douglas Gregord65587f2010-11-10 19:44:59 +0000904 if (ClassTemplatePartialSpecializationDecl *Result
905 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
906 return Result;
907
908 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000909}
910
911Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000912TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000913 // Create a local instantiation scope for this function template, which
914 // will contain the instantiations of the template parameters and then get
915 // merged with the local instantiation scope for the function template
916 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000917 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000918
Douglas Gregord60e1052009-08-27 16:57:43 +0000919 TemplateParameterList *TempParams = D->getTemplateParameters();
920 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000921 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000922 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000923
Douglas Gregora735b202009-10-13 14:39:41 +0000924 FunctionDecl *Instantiated = 0;
925 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
926 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
927 InstParams));
928 else
929 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
930 D->getTemplatedDecl(),
931 InstParams));
932
933 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000934 return 0;
935
John McCall46460a62010-01-20 21:53:11 +0000936 Instantiated->setAccess(D->getAccess());
937
Mike Stump1eb44332009-09-09 15:08:12 +0000938 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000939 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000940 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000941 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000942 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000943 assert(InstTemplate &&
944 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000945
John McCallb1a56e72010-03-26 23:10:15 +0000946 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
947
John McCalle976ffe2009-12-14 23:19:40 +0000948 // Link the instantiation back to the pattern *unless* this is a
949 // non-definition friend declaration.
950 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000951 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000952 InstTemplate->setInstantiatedFromMemberTemplate(D);
953
John McCallb1a56e72010-03-26 23:10:15 +0000954 // Make declarations visible in the appropriate context.
955 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000956 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000957
Douglas Gregord60e1052009-08-27 16:57:43 +0000958 return InstTemplate;
959}
960
Douglas Gregord475b8d2009-03-25 21:17:03 +0000961Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
962 CXXRecordDecl *PrevDecl = 0;
963 if (D->isInjectedClassName())
964 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000965 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000966 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
967 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000968 TemplateArgs);
969 if (!Prev) return 0;
970 PrevDecl = cast<CXXRecordDecl>(Prev);
971 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000972
973 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000974 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000975 D->getLocStart(), D->getLocation(),
976 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000977
978 // Substitute the nested name specifier, if any.
979 if (SubstQualifier(D, Record))
980 return 0;
981
Douglas Gregord475b8d2009-03-25 21:17:03 +0000982 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000983 // FIXME: Check against AS_none is an ugly hack to work around the issue that
984 // the tag decls introduced by friend class declarations don't have an access
985 // specifier. Remove once this area of the code gets sorted out.
986 if (D->getAccess() != AS_none)
987 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000988 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000989 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000990
John McCall02cace72009-08-28 07:59:38 +0000991 // If the original function was part of a friend declaration,
992 // inherit its namespace state.
993 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
994 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
995
Douglas Gregor9901c572010-05-21 00:31:19 +0000996 // Make sure that anonymous structs and unions are recorded.
997 if (D->isAnonymousStructOrUnion()) {
998 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000999 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001000 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1001 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001002
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001003 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001004 return Record;
1005}
1006
John McCall02cace72009-08-28 07:59:38 +00001007/// Normal class members are of more specific types and therefore
1008/// don't make it here. This function serves two purposes:
1009/// 1) instantiating function templates
1010/// 2) substituting friend declarations
1011/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001012Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001013 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001014 // Check whether there is already a function template specialization for
1015 // this declaration.
1016 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1017 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001018 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +00001019 std::pair<const TemplateArgument *, unsigned> Innermost
1020 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001022 FunctionDecl *SpecFunc
1023 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1024 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Douglas Gregor127102b2009-06-29 20:59:39 +00001026 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001027 if (SpecFunc)
1028 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001029 }
Mike Stump1eb44332009-09-09 15:08:12 +00001030
John McCallb0cb0222010-03-27 05:57:59 +00001031 bool isFriend;
1032 if (FunctionTemplate)
1033 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1034 else
1035 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1036
Douglas Gregor79c22782010-01-16 20:21:20 +00001037 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001038 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +00001039 !(isa<Decl>(Owner) &&
1040 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001041 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Chris Lattner5f9e2722011-07-23 10:55:15 +00001043 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001044 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1045 TInfo = SubstFunctionType(D, Params);
1046 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001047 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001048 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001049
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001050 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1051 if (QualifierLoc) {
1052 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1053 TemplateArgs);
1054 if (!QualifierLoc)
1055 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001056 }
1057
John McCall68b6b872010-02-06 01:50:47 +00001058 // If we're instantiating a local function declaration, put the result
1059 // in the owner; otherwise we need to find the instantiated context.
1060 DeclContext *DC;
1061 if (D->getDeclContext()->isFunctionOrMethod())
1062 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001063 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001064 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001065 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001066 DC = SemaRef.computeDeclContext(SS);
1067 if (!DC) return 0;
1068 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001069 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1070 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001071 }
John McCall68b6b872010-02-06 01:50:47 +00001072
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001073 bool isConstexpr = D->isConstexpr();
1074 // FIXME: check whether the instantiation produces a constexpr function.
1075
John McCall02cace72009-08-28 07:59:38 +00001076 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001077 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1078 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001079 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001080 D->isInlineSpecified(), D->hasWrittenPrototype(),
1081 isConstexpr);
John McCallb6217662010-03-15 10:12:16 +00001082
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001083 if (QualifierLoc)
1084 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001085
John McCallb1a56e72010-03-26 23:10:15 +00001086 DeclContext *LexicalDC = Owner;
1087 if (!isFriend && D->isOutOfLine()) {
1088 assert(D->getDeclContext()->isFileContext());
1089 LexicalDC = D->getDeclContext();
1090 }
1091
1092 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001093
Douglas Gregore53060f2009-06-25 22:08:12 +00001094 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001095 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001096 // Adopt the already-instantiated parameters into our own context.
1097 for (unsigned P = 0; P < Params.size(); ++P)
1098 if (Params[P])
1099 Params[P]->setOwningFunction(Function);
1100 } else {
1101 // Since we were instantiated via a typedef of a function type, create
1102 // new parameters.
1103 const FunctionProtoType *Proto
1104 = Function->getType()->getAs<FunctionProtoType>();
1105 assert(Proto && "No function prototype in template instantiation?");
1106 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1107 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1108 ParmVarDecl *Param
1109 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1110 *AI);
1111 Param->setScopeInfo(0, Params.size());
1112 Params.push_back(Param);
1113 }
1114 }
David Blaikie4278c652011-09-21 18:16:56 +00001115 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001116
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001117 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001118 if (TemplateParams) {
1119 // Our resulting instantiation is actually a function template, since we
1120 // are substituting only the outer template parameters. For example, given
1121 //
1122 // template<typename T>
1123 // struct X {
1124 // template<typename U> friend void f(T, U);
1125 // };
1126 //
1127 // X<int> x;
1128 //
1129 // We are instantiating the friend function template "f" within X<int>,
1130 // which means substituting int for T, but leaving "f" as a friend function
1131 // template.
1132 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001133 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001134 Function->getLocation(),
1135 Function->getDeclName(),
1136 TemplateParams, Function);
1137 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001138
1139 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001140
1141 if (isFriend && D->isThisDeclarationADefinition()) {
1142 // TODO: should we remember this connection regardless of whether
1143 // the friend declaration provided a body?
1144 FunctionTemplate->setInstantiatedFromMemberTemplate(
1145 D->getDescribedFunctionTemplate());
1146 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001147 } else if (FunctionTemplate) {
1148 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001149 std::pair<const TemplateArgument *, unsigned> Innermost
1150 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001151 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001152 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001153 Innermost.first,
1154 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001155 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001156 } else if (isFriend) {
1157 // Note, we need this connection even if the friend doesn't have a body.
1158 // Its body may exist but not have been attached yet due to deferred
1159 // parsing.
1160 // FIXME: It might be cleaner to set this when attaching the body to the
1161 // friend function declaration, however that would require finding all the
1162 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001163 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001164 }
Douglas Gregora735b202009-10-13 14:39:41 +00001165
Douglas Gregore53060f2009-06-25 22:08:12 +00001166 if (InitFunctionInstantiation(Function, D))
1167 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Douglas Gregore53060f2009-06-25 22:08:12 +00001169 bool Redeclaration = false;
John McCallaf2094e2010-04-08 09:05:18 +00001170 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001171
John McCall68263142009-11-18 22:49:29 +00001172 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1173 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1174
John McCallaf2094e2010-04-08 09:05:18 +00001175 if (DependentFunctionTemplateSpecializationInfo *Info
1176 = D->getDependentSpecializationInfo()) {
1177 assert(isFriend && "non-friend has dependent specialization info?");
1178
1179 // This needs to be set now for future sanity.
1180 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1181
1182 // Instantiate the explicit template arguments.
1183 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1184 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001185 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1186 ExplicitArgs, TemplateArgs))
1187 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001188
1189 // Map the candidate templates to their instantiations.
1190 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1191 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1192 Info->getTemplate(I),
1193 TemplateArgs);
1194 if (!Temp) return 0;
1195
1196 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1197 }
1198
1199 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1200 &ExplicitArgs,
1201 Previous))
1202 Function->setInvalidDecl();
1203
1204 isExplicitSpecialization = true;
1205
1206 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001207 // Look only into the namespace where the friend would be declared to
1208 // find a previous declaration. This is the innermost enclosing namespace,
1209 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001210 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001211
Douglas Gregora735b202009-10-13 14:39:41 +00001212 // In C++, the previous declaration we find might be a tag type
1213 // (class or enum). In this case, the new declaration will hide the
1214 // tag type. Note that this does does not apply if we're declaring a
1215 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001216 if (Previous.isSingleTagDecl())
1217 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001218 }
1219
John McCall9f54ad42009-12-10 09:41:52 +00001220 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Peter Collingbournec80e8112011-01-21 02:08:54 +00001221 isExplicitSpecialization, Redeclaration);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001222
John McCall76d32642010-04-24 01:30:58 +00001223 NamedDecl *PrincipalDecl = (TemplateParams
1224 ? cast<NamedDecl>(FunctionTemplate)
1225 : Function);
1226
Douglas Gregora735b202009-10-13 14:39:41 +00001227 // If the original function was part of a friend declaration,
1228 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001229 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001230 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001231 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001232 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001233 else
Douglas Gregora735b202009-10-13 14:39:41 +00001234 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001235
1236 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1237 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001238
Gabor Greif77535df2010-08-30 22:25:56 +00001239 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001240
Douglas Gregor238058c2010-05-18 05:45:02 +00001241 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1242 D->isThisDeclarationADefinition()) {
1243 // Check for a function body.
1244 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001245 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001246 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1247 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1248 << Function->getDeclName();
1249 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1250 Function->setInvalidDecl();
1251 }
1252 // Check for redefinitions due to other instantiations of this or
1253 // a similar friend function.
1254 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1255 REnd = Function->redecls_end();
1256 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001257 if (*R == Function)
1258 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001259 switch (R->getFriendObjectKind()) {
1260 case Decl::FOK_None:
1261 if (!queuedInstantiation && R->isUsed(false)) {
1262 if (MemberSpecializationInfo *MSInfo
1263 = Function->getMemberSpecializationInfo()) {
1264 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1265 SourceLocation Loc = R->getLocation(); // FIXME
1266 MSInfo->setPointOfInstantiation(Loc);
1267 SemaRef.PendingLocalImplicitInstantiations.push_back(
1268 std::make_pair(Function, Loc));
1269 queuedInstantiation = true;
1270 }
1271 }
1272 }
1273 break;
1274 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001275 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001276 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001277 if (RPattern->isDefined(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001278 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1279 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001280 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001281 Function->setInvalidDecl();
1282 break;
1283 }
1284 }
1285 }
1286 }
Douglas Gregora735b202009-10-13 14:39:41 +00001287 }
1288
John McCall76d32642010-04-24 01:30:58 +00001289 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1290 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1291 PrincipalDecl->setNonMemberOperator();
1292
Sean Hunteb88ae52011-05-23 21:07:59 +00001293 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001294 return Function;
1295}
1296
Douglas Gregord60e1052009-08-27 16:57:43 +00001297Decl *
1298TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001299 TemplateParameterList *TemplateParams,
1300 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001301 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1302 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001303 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001304 // We are creating a function template specialization from a function
1305 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001306 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001307 std::pair<const TemplateArgument *, unsigned> Innermost
1308 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001309
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001310 FunctionDecl *SpecFunc
1311 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1312 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001313
Douglas Gregor6b906862009-08-21 00:16:32 +00001314 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001315 if (SpecFunc)
1316 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001317 }
1318
John McCallb0cb0222010-03-27 05:57:59 +00001319 bool isFriend;
1320 if (FunctionTemplate)
1321 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1322 else
1323 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1324
Douglas Gregor79c22782010-01-16 20:21:20 +00001325 bool MergeWithParentScope = (TemplateParams != 0) ||
1326 !(isa<Decl>(Owner) &&
1327 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001328 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001329
John McCall4eab39f2010-10-19 02:26:41 +00001330 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001331 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001332 unsigned NumTempParamLists = 0;
1333 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1334 TempParamLists.set_size(NumTempParamLists);
1335 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1336 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1337 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1338 if (!InstParams)
1339 return NULL;
1340 TempParamLists[I] = InstParams;
1341 }
1342 }
1343
Chris Lattner5f9e2722011-07-23 10:55:15 +00001344 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001345 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1346 TInfo = SubstFunctionType(D, Params);
1347 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001348 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001349 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001350
Abramo Bagnara723df242010-12-14 22:11:44 +00001351 // \brief If the type of this function, after ignoring parentheses,
1352 // is not *directly* a function type, then we're instantiating a function
1353 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001354 //
1355 // typedef int functype(int, int);
1356 // functype func;
1357 //
1358 // In this case, we'll just go instantiate the ParmVarDecls that we
1359 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001360 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001361 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001362 SmallVector<QualType, 4> ParamTypes;
Douglas Gregor12c9c002011-01-07 16:43:16 +00001363 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1364 D->getNumParams(), TemplateArgs, ParamTypes,
1365 &Params))
1366 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001367 }
1368
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001369 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1370 if (QualifierLoc) {
1371 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001372 TemplateArgs);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001373 if (!QualifierLoc)
1374 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001375 }
1376
1377 DeclContext *DC = Owner;
1378 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001379 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001380 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001381 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001382 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001383
1384 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1385 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001386 } else {
1387 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1388 D->getDeclContext(),
1389 TemplateArgs);
1390 }
1391 if (!DC) return 0;
1392 }
1393
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001394 bool isConstexpr = D->isConstexpr();
1395 // FIXME: check whether the instantiation produces a constexpr function.
1396
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001397 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001398 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001399 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001400
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001401 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001402 DeclarationNameInfo NameInfo
1403 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001404 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001405 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001406 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001407 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001408 Constructor->isInlineSpecified(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001409 false, isConstexpr);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001410 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001411 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001412 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001413 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001414 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001415 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001416 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001417 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001418 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001419 Conversion->isExplicit(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001420 isConstexpr, Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001421 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001422 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001423 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001424 D->isStatic(),
1425 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001426 D->isInlineSpecified(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001427 isConstexpr, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001428 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001429
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001430 if (QualifierLoc)
1431 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001432
Douglas Gregord60e1052009-08-27 16:57:43 +00001433 if (TemplateParams) {
1434 // Our resulting instantiation is actually a function template, since we
1435 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001436 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001437 // template<typename T>
1438 // struct X {
1439 // template<typename U> void f(T, U);
1440 // };
1441 //
1442 // X<int> x;
1443 //
1444 // We are instantiating the member template "f" within X<int>, which means
1445 // substituting int for T, but leaving "f" as a member function template.
1446 // Build the function template itself.
1447 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1448 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001449 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001450 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001451 if (isFriend) {
1452 FunctionTemplate->setLexicalDeclContext(Owner);
1453 FunctionTemplate->setObjectOfFriendDecl(true);
1454 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001455 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001456 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001457 } else if (FunctionTemplate) {
1458 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001459 std::pair<const TemplateArgument *, unsigned> Innermost
1460 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001461 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001462 TemplateArgumentList::CreateCopy(SemaRef.Context,
1463 Innermost.first,
1464 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001465 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001466 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001467 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001468 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001469 }
1470
Mike Stump1eb44332009-09-09 15:08:12 +00001471 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001472 // out-of-line, the instantiation will have the same lexical
1473 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001474 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001475 if (NumTempParamLists)
1476 Method->setTemplateParameterListsInfo(SemaRef.Context,
1477 NumTempParamLists,
1478 TempParamLists.data());
1479
John McCallb0cb0222010-03-27 05:57:59 +00001480 Method->setLexicalDeclContext(Owner);
1481 Method->setObjectOfFriendDecl(true);
1482 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001483 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001484
Douglas Gregor5545e162009-03-24 00:38:23 +00001485 // Attach the parameters
1486 for (unsigned P = 0; P < Params.size(); ++P)
1487 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001488 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001489
1490 if (InitMethodInstantiation(Method, D))
1491 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001492
Abramo Bagnara25777432010-08-11 22:01:17 +00001493 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1494 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001495
John McCallb0cb0222010-03-27 05:57:59 +00001496 if (!FunctionTemplate || TemplateParams || isFriend) {
1497 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Douglas Gregordec06662009-08-21 18:42:58 +00001499 // In C++, the previous declaration we find might be a tag type
1500 // (class or enum). In this case, the new declaration will hide the
1501 // tag type. Note that this does does not apply if we're declaring a
1502 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001503 if (Previous.isSingleTagDecl())
1504 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001505 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001506
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001507 bool Redeclaration = false;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001508 if (!IsClassScopeSpecialization)
1509 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001510
Douglas Gregor4ba31362009-12-01 17:24:26 +00001511 if (D->isPure())
1512 SemaRef.CheckPureMethod(Method, SourceRange());
1513
John McCall46460a62010-01-20 21:53:11 +00001514 Method->setAccess(D->getAccess());
1515
Anders Carlsson9eefa222011-01-20 06:52:44 +00001516 SemaRef.CheckOverrideControl(Method);
1517
John McCallb0cb0222010-03-27 05:57:59 +00001518 if (FunctionTemplate) {
1519 // If there's a function template, let our caller handle it.
1520 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1521 // Don't hide a (potentially) valid declaration with an invalid one.
1522 } else {
1523 NamedDecl *DeclToAdd = (TemplateParams
1524 ? cast<NamedDecl>(FunctionTemplate)
1525 : Method);
1526 if (isFriend)
1527 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001528 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001529 Owner->addDecl(DeclToAdd);
1530 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001531
1532 if (D->isExplicitlyDefaulted()) {
1533 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1534 } else {
1535 assert(!D->isDefaulted() &&
1536 "should not implicitly default uninstantiated function");
1537 }
1538
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001539 return Method;
1540}
1541
Douglas Gregor615c5d42009-03-24 16:43:20 +00001542Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001543 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001544}
1545
Douglas Gregor03b2b072009-03-24 00:15:49 +00001546Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001547 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001548}
1549
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001550Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001551 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001552}
1553
Douglas Gregor6477b692009-03-25 15:04:13 +00001554ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001555 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1556 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001557}
1558
John McCalle29ba202009-08-20 01:44:21 +00001559Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1560 TemplateTypeParmDecl *D) {
1561 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001562 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001563
John McCalle29ba202009-08-20 01:44:21 +00001564 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001565 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1566 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001567 D->getDepth() - TemplateArgs.getNumLevels(),
1568 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001569 D->wasDeclaredWithTypename(),
1570 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001571 Inst->setAccess(AS_public);
1572
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001573 if (D->hasDefaultArgument())
1574 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001575
Douglas Gregor550d9b22009-10-31 17:21:17 +00001576 // Introduce this template parameter's instantiation into the instantiation
1577 // scope.
1578 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1579
John McCalle29ba202009-08-20 01:44:21 +00001580 return Inst;
1581}
1582
Douglas Gregor33642df2009-10-23 23:25:44 +00001583Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1584 NonTypeTemplateParmDecl *D) {
1585 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001586 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001587 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1588 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001589 bool IsExpandedParameterPack = false;
1590 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001591 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001592 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001593
1594 if (D->isExpandedParameterPack()) {
1595 // The non-type template parameter pack is an already-expanded pack
1596 // expansion of types. Substitute into each of the expanded types.
1597 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1598 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1599 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1600 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1601 TemplateArgs,
1602 D->getLocation(),
1603 D->getDeclName());
1604 if (!NewDI)
1605 return 0;
1606
1607 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1608 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1609 D->getLocation());
1610 if (NewT.isNull())
1611 return 0;
1612 ExpandedParameterPackTypes.push_back(NewT);
1613 }
1614
1615 IsExpandedParameterPack = true;
1616 DI = D->getTypeSourceInfo();
1617 T = DI->getType();
1618 } else if (isa<PackExpansionTypeLoc>(TL)) {
1619 // The non-type template parameter pack's type is a pack expansion of types.
1620 // Determine whether we need to expand this parameter pack into separate
1621 // types.
1622 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1623 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001624 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001625 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1626
1627 // Determine whether the set of unexpanded parameter packs can and should
1628 // be expanded.
1629 bool Expand = true;
1630 bool RetainExpansion = false;
1631 llvm::Optional<unsigned> OrigNumExpansions
1632 = Expansion.getTypePtr()->getNumExpansions();
1633 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1634 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1635 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001636 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001637 TemplateArgs,
1638 Expand, RetainExpansion,
1639 NumExpansions))
1640 return 0;
1641
1642 if (Expand) {
1643 for (unsigned I = 0; I != *NumExpansions; ++I) {
1644 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1645 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1646 D->getLocation(),
1647 D->getDeclName());
1648 if (!NewDI)
1649 return 0;
1650
1651 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1652 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1653 NewDI->getType(),
1654 D->getLocation());
1655 if (NewT.isNull())
1656 return 0;
1657 ExpandedParameterPackTypes.push_back(NewT);
1658 }
1659
1660 // Note that we have an expanded parameter pack. The "type" of this
1661 // expanded parameter pack is the original expansion type, but callers
1662 // will end up using the expanded parameter pack types for type-checking.
1663 IsExpandedParameterPack = true;
1664 DI = D->getTypeSourceInfo();
1665 T = DI->getType();
1666 } else {
1667 // We cannot fully expand the pack expansion now, so substitute into the
1668 // pattern and create a new pack expansion type.
1669 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1670 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1671 D->getLocation(),
1672 D->getDeclName());
1673 if (!NewPattern)
1674 return 0;
1675
1676 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1677 NumExpansions);
1678 if (!DI)
1679 return 0;
1680
1681 T = DI->getType();
1682 }
1683 } else {
1684 // Simple case: substitution into a parameter that is not a parameter pack.
1685 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1686 D->getLocation(), D->getDeclName());
1687 if (!DI)
1688 return 0;
1689
1690 // Check that this type is acceptable for a non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001691 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1692 D->getLocation());
1693 if (T.isNull()) {
1694 T = SemaRef.Context.IntTy;
1695 Invalid = true;
1696 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001697 }
1698
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001699 NonTypeTemplateParmDecl *Param;
1700 if (IsExpandedParameterPack)
1701 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001702 D->getInnerLocStart(),
1703 D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001704 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001705 D->getPosition(),
1706 D->getIdentifier(), T,
1707 DI,
1708 ExpandedParameterPackTypes.data(),
1709 ExpandedParameterPackTypes.size(),
1710 ExpandedParameterPackTypesAsWritten.data());
1711 else
1712 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001713 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001714 D->getLocation(),
1715 D->getDepth() - TemplateArgs.getNumLevels(),
1716 D->getPosition(),
1717 D->getIdentifier(), T,
1718 D->isParameterPack(), DI);
1719
Douglas Gregor9a299e02011-03-04 17:52:15 +00001720 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001721 if (Invalid)
1722 Param->setInvalidDecl();
1723
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001724 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001725
1726 // Introduce this template parameter's instantiation into the instantiation
1727 // scope.
1728 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001729 return Param;
1730}
1731
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001732Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001733TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1734 TemplateTemplateParmDecl *D) {
1735 // Instantiate the template parameter list of the template template parameter.
1736 TemplateParameterList *TempParams = D->getTemplateParameters();
1737 TemplateParameterList *InstParams;
1738 {
1739 // Perform the actual substitution of template parameters within a new,
1740 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001741 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001742 InstParams = SubstTemplateParams(TempParams);
1743 if (!InstParams)
1744 return NULL;
1745 }
1746
1747 // Build the template template parameter.
1748 TemplateTemplateParmDecl *Param
1749 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001750 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001751 D->getPosition(), D->isParameterPack(),
1752 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001753 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001754 Param->setAccess(AS_public);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001755
Douglas Gregor9106ef72009-11-11 16:58:32 +00001756 // Introduce this template parameter's instantiation into the instantiation
1757 // scope.
1758 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1759
1760 return Param;
1761}
1762
Douglas Gregor48c32a72009-11-17 06:07:40 +00001763Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001764 // Using directives are never dependent (and never contain any types or
1765 // expressions), so they require no explicit instantiation work.
Douglas Gregor48c32a72009-11-17 06:07:40 +00001766
1767 UsingDirectiveDecl *Inst
1768 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1769 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001770 D->getQualifierLoc(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001771 D->getIdentLocation(),
1772 D->getNominatedNamespace(),
1773 D->getCommonAncestor());
1774 Owner->addDecl(Inst);
1775 return Inst;
1776}
1777
John McCalled976492009-12-04 22:46:56 +00001778Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001779
1780 // The nested name specifier may be dependent, for example
1781 // template <typename T> struct t {
1782 // struct s1 { T f1(); };
1783 // struct s2 : s1 { using s1::f1; };
1784 // };
1785 // template struct t<int>;
1786 // Here, in using s1::f1, s1 refers to t<T>::s1;
1787 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001788 NestedNameSpecifierLoc QualifierLoc
1789 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1790 TemplateArgs);
1791 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001792 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001793
1794 // The name info is non-dependent, so no transformation
1795 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001796 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001797
John McCall9f54ad42009-12-10 09:41:52 +00001798 // We only need to do redeclaration lookups if we're in a class
1799 // scope (in fact, it's not really even possible in non-class
1800 // scopes).
1801 bool CheckRedeclaration = Owner->isRecord();
1802
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001803 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1804 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001805
John McCalled976492009-12-04 22:46:56 +00001806 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001807 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001808 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001809 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001810 D->isTypeName());
1811
Douglas Gregor5149f372011-02-25 15:54:31 +00001812 CXXScopeSpec SS;
1813 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001814 if (CheckRedeclaration) {
1815 Prev.setHideTags(false);
1816 SemaRef.LookupQualifiedName(Prev, Owner);
1817
1818 // Check for invalid redeclarations.
1819 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1820 D->isTypeName(), SS,
1821 D->getLocation(), Prev))
1822 NewUD->setInvalidDecl();
1823
1824 }
1825
1826 if (!NewUD->isInvalidDecl() &&
1827 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001828 D->getLocation()))
1829 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001830
John McCalled976492009-12-04 22:46:56 +00001831 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1832 NewUD->setAccess(D->getAccess());
1833 Owner->addDecl(NewUD);
1834
John McCall9f54ad42009-12-10 09:41:52 +00001835 // Don't process the shadow decls for an invalid decl.
1836 if (NewUD->isInvalidDecl())
1837 return NewUD;
1838
John McCall323c3102009-12-22 22:26:37 +00001839 bool isFunctionScope = Owner->isFunctionOrMethod();
1840
John McCall9f54ad42009-12-10 09:41:52 +00001841 // Process the shadow decls.
1842 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1843 I != E; ++I) {
1844 UsingShadowDecl *Shadow = *I;
1845 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001846 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1847 Shadow->getLocation(),
1848 Shadow->getTargetDecl(),
1849 TemplateArgs));
1850 if (!InstTarget)
1851 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001852
1853 if (CheckRedeclaration &&
1854 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1855 continue;
1856
1857 UsingShadowDecl *InstShadow
1858 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1859 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001860
1861 if (isFunctionScope)
1862 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001863 }
John McCalled976492009-12-04 22:46:56 +00001864
1865 return NewUD;
1866}
1867
1868Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001869 // Ignore these; we handle them in bulk when processing the UsingDecl.
1870 return 0;
John McCalled976492009-12-04 22:46:56 +00001871}
1872
John McCall7ba107a2009-11-18 02:36:19 +00001873Decl * TemplateDeclInstantiator
1874 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001875 NestedNameSpecifierLoc QualifierLoc
1876 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1877 TemplateArgs);
1878 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001879 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001880
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001881 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001882 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001883
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001884 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1885 // Hence, no tranformation is required for it.
1886 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001887 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001888 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001889 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001890 /*instantiation*/ true,
1891 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001892 if (UD)
John McCalled976492009-12-04 22:46:56 +00001893 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1894
John McCall7ba107a2009-11-18 02:36:19 +00001895 return UD;
1896}
1897
1898Decl * TemplateDeclInstantiator
1899 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001900 NestedNameSpecifierLoc QualifierLoc
1901 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1902 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001903 return 0;
Douglas Gregor5149f372011-02-25 15:54:31 +00001904
John McCall7ba107a2009-11-18 02:36:19 +00001905 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001906 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001907
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001908 DeclarationNameInfo NameInfo
1909 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1910
John McCall7ba107a2009-11-18 02:36:19 +00001911 NamedDecl *UD =
1912 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001913 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001914 /*instantiation*/ true,
1915 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001916 if (UD)
John McCalled976492009-12-04 22:46:56 +00001917 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1918
Anders Carlsson0d8df782009-08-29 19:37:28 +00001919 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001920}
1921
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001922
1923Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1924 ClassScopeFunctionSpecializationDecl *Decl) {
1925 CXXMethodDecl *OldFD = Decl->getSpecialization();
1926 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1927
1928 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1929 Sema::ForRedeclaration);
1930
1931 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1932 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1933 NewFD->setInvalidDecl();
1934 return NewFD;
1935 }
1936
1937 // Associate the specialization with the pattern.
1938 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1939 assert(Specialization && "Class scope Specialization is null");
1940 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1941
1942 return NewFD;
1943}
1944
John McCallce3ff2b2009-08-25 22:02:44 +00001945Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001946 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001947 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001948 if (D->isInvalidDecl())
1949 return 0;
1950
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001951 return Instantiator.Visit(D);
1952}
1953
John McCalle29ba202009-08-20 01:44:21 +00001954/// \brief Instantiates a nested template parameter list in the current
1955/// instantiation context.
1956///
1957/// \param L The parameter list to instantiate
1958///
1959/// \returns NULL if there was an error
1960TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001961TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001962 // Get errors for all the parameters before bailing out.
1963 bool Invalid = false;
1964
1965 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001966 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001967 ParamVector Params;
1968 Params.reserve(N);
1969 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1970 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001971 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001972 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001973 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001974 }
1975
1976 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001977 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001978 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001979
1980 TemplateParameterList *InstL
1981 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1982 L->getLAngleLoc(), &Params.front(), N,
1983 L->getRAngleLoc());
1984 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001985}
John McCalle29ba202009-08-20 01:44:21 +00001986
Douglas Gregored9c0f92009-10-29 00:04:11 +00001987/// \brief Instantiate the declaration of a class template partial
1988/// specialization.
1989///
1990/// \param ClassTemplate the (instantiated) class template that is partially
1991// specialized by the instantiation of \p PartialSpec.
1992///
1993/// \param PartialSpec the (uninstantiated) class template partial
1994/// specialization that we are instantiating.
1995///
Douglas Gregord65587f2010-11-10 19:44:59 +00001996/// \returns The instantiated partial specialization, if successful; otherwise,
1997/// NULL to indicate an error.
1998ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001999TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2000 ClassTemplateDecl *ClassTemplate,
2001 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002002 // Create a local instantiation scope for this class template partial
2003 // specialization, which will contain the instantiations of the template
2004 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002005 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00002006
Douglas Gregored9c0f92009-10-29 00:04:11 +00002007 // Substitute into the template parameters of the class template partial
2008 // specialization.
2009 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2010 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2011 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002012 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002013
2014 // Substitute into the template arguments of the class template partial
2015 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002016 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
Douglas Gregore02e2622010-12-22 21:19:48 +00002017 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2018 PartialSpec->getNumTemplateArgsAsWritten(),
2019 InstTemplateArgs, TemplateArgs))
2020 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002021
Douglas Gregored9c0f92009-10-29 00:04:11 +00002022 // Check that the template argument list is well-formed for this
2023 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002024 SmallVector<TemplateArgument, 4> Converted;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
2026 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002027 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002028 false,
2029 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002030 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002031
2032 // Figure out where to insert this class template partial specialization
2033 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002034 void *InsertPos = 0;
2035 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002036 = ClassTemplate->findPartialSpecialization(Converted.data(),
2037 Converted.size(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00002038
2039 // Build the canonical type that describes the converted template
2040 // arguments of the class template partial specialization.
2041 QualType CanonType
2042 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002043 Converted.data(),
2044 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002045
2046 // Build the fully-sugared type for this class template
2047 // specialization as the user wrote in the specialization
2048 // itself. This means that we'll pretty-print the type retrieved
2049 // from the specialization's declaration the way that the user
2050 // actually wrote the specialization, rather than formatting the
2051 // name based on the "canonical" representation used to store the
2052 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002053 TypeSourceInfo *WrittenTy
2054 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2055 TemplateName(ClassTemplate),
2056 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002057 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002058 CanonType);
2059
2060 if (PrevDecl) {
2061 // We've already seen a partial specialization with the same template
2062 // parameters and template arguments. This can happen, for example, when
2063 // substituting the outer template arguments ends up causing two
2064 // class template partial specializations of a member class template
2065 // to have identical forms, e.g.,
2066 //
2067 // template<typename T, typename U>
2068 // struct Outer {
2069 // template<typename X, typename Y> struct Inner;
2070 // template<typename Y> struct Inner<T, Y>;
2071 // template<typename Y> struct Inner<U, Y>;
2072 // };
2073 //
2074 // Outer<int, int> outer; // error: the partial specializations of Inner
2075 // // have the same signature.
2076 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002077 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002078 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2079 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002080 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002081 }
2082
2083
2084 // Create the class template partial specialization declaration.
2085 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00002086 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
2087 PartialSpec->getTagKind(),
2088 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002089 PartialSpec->getLocStart(),
2090 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002091 InstParams,
2092 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002093 Converted.data(),
2094 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002095 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002096 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002097 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002098 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002099 // Substitute the nested name specifier, if any.
2100 if (SubstQualifier(PartialSpec, InstPartialSpec))
2101 return 0;
2102
Douglas Gregored9c0f92009-10-29 00:04:11 +00002103 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002104 InstPartialSpec->setTypeAsWritten(WrittenTy);
2105
Douglas Gregored9c0f92009-10-29 00:04:11 +00002106 // Add this partial specialization to the set of class template partial
2107 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002108 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002109 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002110}
2111
John McCall21ef0fa2010-03-11 09:03:00 +00002112TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002113TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002114 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002115 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2116 assert(OldTInfo && "substituting function without type source info");
2117 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002118 TypeSourceInfo *NewTInfo
2119 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2120 D->getTypeSpecStartLoc(),
2121 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002122 if (!NewTInfo)
2123 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002124
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002125 if (NewTInfo != OldTInfo) {
2126 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002127 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002128 if (FunctionProtoTypeLoc *OldProtoLoc
2129 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002130 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002131 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2132 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002133 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2134 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2135 OldIdx != NumOldParams; ++OldIdx) {
2136 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2137 if (!OldParam->isParameterPack() ||
2138 (NewIdx < NumNewParams &&
2139 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2140 // Simple case: normal parameter, or a parameter pack that's
2141 // instantiated to a (still-dependent) parameter pack.
2142 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2143 Params.push_back(NewParam);
2144 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2145 NewParam);
2146 continue;
2147 }
2148
2149 // Parameter pack: make the instantiation an argument pack.
2150 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2151 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002152 unsigned NumArgumentsInExpansion
2153 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2154 TemplateArgs);
2155 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002156 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2157 Params.push_back(NewParam);
2158 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2159 NewParam);
2160 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002161 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002162 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002163 } else {
2164 // The function type itself was not dependent and therefore no
2165 // substitution occurred. However, we still need to instantiate
2166 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002167 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002168 if (FunctionProtoTypeLoc *OldProtoLoc
2169 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2170 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2171 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2172 if (!Parm)
2173 return 0;
2174 Params.push_back(Parm);
2175 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002176 }
2177 }
John McCall21ef0fa2010-03-11 09:03:00 +00002178 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002179}
2180
Mike Stump1eb44332009-09-09 15:08:12 +00002181/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002182/// declaration (New) from the corresponding fields of its template (Tmpl).
2183///
2184/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002185bool
2186TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002187 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002188 if (Tmpl->isDeletedAsWritten())
2189 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002190
Douglas Gregorcca9e962009-07-01 22:01:06 +00002191 // If we are performing substituting explicitly-specified template arguments
2192 // or deduced template arguments into a function template and we reach this
2193 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002194 // to keeping the new function template specialization. We therefore
2195 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002196 // into a template instantiation for this specific function template
2197 // specialization, which is not a SFINAE context, so that we diagnose any
2198 // further errors in the declaration itself.
2199 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2200 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2201 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2202 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002203 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002204 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002205 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002206 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002207 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002208 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2209 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002210 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002211 }
2212 }
Mike Stump1eb44332009-09-09 15:08:12 +00002213
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002214 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2215 assert(Proto && "Function template without prototype?");
2216
Sebastian Redl60618fa2011-03-12 11:50:43 +00002217 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002218 // The function has an exception specification or a "noreturn"
2219 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002220 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002221 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2222 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002223 if (const PackExpansionType *PackExpansion
2224 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2225 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002226 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002227 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2228 Unexpanded);
2229 assert(!Unexpanded.empty() &&
2230 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002231
Douglas Gregorb99268b2010-12-21 00:52:54 +00002232 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002233 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002234 llvm::Optional<unsigned> NumExpansions
2235 = PackExpansion->getNumExpansions();
Douglas Gregorb99268b2010-12-21 00:52:54 +00002236 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2237 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002238 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002239 TemplateArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002240 Expand,
2241 RetainExpansion,
2242 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002243 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002244
Douglas Gregorb99268b2010-12-21 00:52:54 +00002245 if (!Expand) {
2246 // We can't expand this pack expansion into separate arguments yet;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002247 // just substitute into the pattern and create a new pack expansion
2248 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002249 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2250 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2251 TemplateArgs,
2252 New->getLocation(), New->getDeclName());
2253 if (T.isNull())
2254 break;
2255
Douglas Gregorcded4f62011-01-14 17:04:44 +00002256 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002257 Exceptions.push_back(T);
2258 continue;
2259 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002260
Douglas Gregorb99268b2010-12-21 00:52:54 +00002261 // Substitute into the pack expansion pattern for each template
2262 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002263 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002264 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2265
2266 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2267 TemplateArgs,
2268 New->getLocation(), New->getDeclName());
2269 if (T.isNull()) {
2270 Invalid = true;
2271 break;
2272 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002273
Douglas Gregorb99268b2010-12-21 00:52:54 +00002274 Exceptions.push_back(T);
2275 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002276
Douglas Gregorb99268b2010-12-21 00:52:54 +00002277 if (Invalid)
2278 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002279
Douglas Gregorb99268b2010-12-21 00:52:54 +00002280 continue;
2281 }
2282
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002283 QualType T
2284 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2285 New->getLocation(), New->getDeclName());
2286 if (T.isNull() ||
2287 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2288 continue;
2289
2290 Exceptions.push_back(T);
2291 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002292 Expr *NoexceptExpr = 0;
2293 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Douglas Gregor3617e192011-06-01 15:55:51 +00002294 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002295 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2296 if (E.isUsable())
2297 NoexceptExpr = E.take();
2298 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002299
2300 // Rebuild the function type
2301
John McCalle23cf432010-12-14 08:05:40 +00002302 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002303 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002304 EPI.NumExceptions = Exceptions.size();
2305 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002306 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002307 EPI.ExtInfo = Proto->getExtInfo();
2308
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002309 const FunctionProtoType *NewProto
2310 = New->getType()->getAs<FunctionProtoType>();
2311 assert(NewProto && "Template instantiation without function prototype?");
2312 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2313 NewProto->arg_type_begin(),
2314 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002315 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002316 }
2317
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002318 const FunctionDecl* Definition = Tmpl;
2319
2320 // Get the definition. Leaves the variable unchanged if undefined.
2321 Tmpl->isDefined(Definition);
2322
2323 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002324
Douglas Gregore53060f2009-06-25 22:08:12 +00002325 return false;
2326}
2327
Douglas Gregor5545e162009-03-24 00:38:23 +00002328/// \brief Initializes common fields of an instantiated method
2329/// declaration (New) from the corresponding fields of its template
2330/// (Tmpl).
2331///
2332/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002333bool
2334TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002335 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002336 if (InitFunctionInstantiation(New, Tmpl))
2337 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002338
Douglas Gregor5545e162009-03-24 00:38:23 +00002339 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002340 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002341 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002342
2343 // FIXME: attributes
2344 // FIXME: New needs a pointer to Tmpl
2345 return false;
2346}
Douglas Gregora58861f2009-05-13 20:28:22 +00002347
2348/// \brief Instantiate the definition of the given function from its
2349/// template.
2350///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002351/// \param PointOfInstantiation the point at which the instantiation was
2352/// required. Note that this is not precisely a "point of instantiation"
2353/// for the function, but it's close.
2354///
Douglas Gregora58861f2009-05-13 20:28:22 +00002355/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002356/// function template specialization or member function of a class template
2357/// specialization.
2358///
2359/// \param Recursive if true, recursively instantiates any functions that
2360/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002361///
2362/// \param DefinitionRequired if true, then we are performing an explicit
2363/// instantiation where the body of the function is required. Complain if
2364/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002365void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002366 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002367 bool Recursive,
2368 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002369 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002370 return;
2371
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002372 // Never instantiate an explicit specialization except if it is a class scope
2373 // explicit specialization.
2374 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2375 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002376 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002377
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002378 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002379 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002380 assert(PatternDecl && "instantiating a non-template");
2381
2382 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2383 assert(PatternDecl && "template definition is not a template");
2384 if (!Pattern) {
2385 // Try to find a defaulted definition
2386 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002387 }
Sean Huntf996e052011-05-27 20:00:14 +00002388 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002389
Francois Pichet8387e2a2011-04-22 22:18:13 +00002390 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002391 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002392 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002393 PendingInstantiations.push_back(
2394 std::make_pair(Function, PointOfInstantiation));
2395 return;
2396 }
2397
2398 // Call the LateTemplateParser callback if there a need to late parse
2399 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002400 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002401 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002402 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002403 Pattern = PatternDecl->getBody(PatternDecl);
2404 }
2405
Sean Huntf996e052011-05-27 20:00:14 +00002406 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002407 if (DefinitionRequired) {
2408 if (Function->getPrimaryTemplate())
2409 Diag(PointOfInstantiation,
2410 diag::err_explicit_instantiation_undefined_func_template)
2411 << Function->getPrimaryTemplate();
2412 else
2413 Diag(PointOfInstantiation,
2414 diag::err_explicit_instantiation_undefined_member)
2415 << 1 << Function->getDeclName() << Function->getDeclContext();
2416
2417 if (PatternDecl)
2418 Diag(PatternDecl->getLocation(),
2419 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002420 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002421 } else if (Function->getTemplateSpecializationKind()
2422 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002423 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002424 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002425 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002426
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002427 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002428 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002429
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002430 // C++0x [temp.explicit]p9:
2431 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002432 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002433 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002434 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002435 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002436 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002437 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002438
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002439 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2440 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002441 return;
2442
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002443 // If we're performing recursive template instantiation, create our own
2444 // queue of pending implicit instantiations that we will instantiate later,
2445 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002446 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002447 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002448 if (Recursive) {
2449 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002450 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002451 }
Mike Stump1eb44332009-09-09 15:08:12 +00002452
Douglas Gregor9679caf2010-05-12 17:27:19 +00002453 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002454 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002455 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002456
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002457 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002458 // recorded, unless we're actually a member function within a local
2459 // class, in which case we need to merge our results with the parent
2460 // scope (of the enclosing function).
2461 bool MergeWithParentScope = false;
2462 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2463 MergeWithParentScope = Rec->isLocalClass();
2464
2465 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002466
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002467 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002468 // instantiation scope, and set the parameter names to those used
2469 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002470 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002471 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2472 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002473 if (!PatternParam->isParameterPack()) {
2474 // Simple case: not a parameter pack.
2475 assert(FParamIdx < Function->getNumParams());
2476 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2477 FunctionParam->setDeclName(PatternParam->getDeclName());
2478 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2479 ++FParamIdx;
2480 continue;
2481 }
2482
2483 // Expand the parameter pack.
2484 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2485 for (unsigned NumFParams = Function->getNumParams();
2486 FParamIdx < NumFParams;
2487 ++FParamIdx) {
2488 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2489 FunctionParam->setDeclName(PatternParam->getDeclName());
2490 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2491 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002492 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002493
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002494 // Enter the scope of this instantiation. We don't use
2495 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002496 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002497
Mike Stump1eb44332009-09-09 15:08:12 +00002498 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002499 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002500
Sean Huntcd10dec2011-05-23 23:14:04 +00002501 if (PatternDecl->isDefaulted()) {
2502 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2503
2504 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002505 } else {
2506 // If this is a constructor, instantiate the member initializers.
2507 if (const CXXConstructorDecl *Ctor =
2508 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2509 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2510 TemplateArgs);
2511 }
2512
2513 // Instantiate the function body.
2514 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2515
2516 if (Body.isInvalid())
2517 Function->setInvalidDecl();
2518
2519 ActOnFinishFunctionBody(Function, Body.get(),
2520 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002521 }
2522
John McCall0c01d182010-03-24 05:22:00 +00002523 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2524
John McCalleee1d542011-02-14 07:13:47 +00002525 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002526
2527 DeclGroupRef DG(Function);
2528 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002529
Douglas Gregor60406be2010-01-16 22:29:39 +00002530 // This class may have local implicit instantiations that need to be
2531 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002532 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002533 Scope.Exit();
2534
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002535 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002536 // Define any pending vtables.
2537 DefineUsedVTables();
2538
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002539 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002540 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002541 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002542
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002543 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002544 assert(VTableUses.empty() &&
2545 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002546 VTableUses.swap(SavedVTableUses);
2547
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002548 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002549 assert(PendingInstantiations.empty() &&
2550 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002551 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002552 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002553}
2554
2555/// \brief Instantiate the definition of the given variable from its
2556/// template.
2557///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002558/// \param PointOfInstantiation the point at which the instantiation was
2559/// required. Note that this is not precisely a "point of instantiation"
2560/// for the function, but it's close.
2561///
2562/// \param Var the already-instantiated declaration of a static member
2563/// variable of a class template specialization.
2564///
2565/// \param Recursive if true, recursively instantiates any functions that
2566/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002567///
2568/// \param DefinitionRequired if true, then we are performing an explicit
2569/// instantiation where an out-of-line definition of the member variable
2570/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002571void Sema::InstantiateStaticDataMemberDefinition(
2572 SourceLocation PointOfInstantiation,
2573 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002574 bool Recursive,
2575 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002576 if (Var->isInvalidDecl())
2577 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Douglas Gregor7caa6822009-07-24 20:34:43 +00002579 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002580 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002581 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002582 assert(Def->isStaticDataMember() && "Not a static data member?");
2583 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002584
Douglas Gregor0d035142009-10-27 18:42:08 +00002585 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002586 // We did not find an out-of-line definition of this static data member,
2587 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002588 // instantiate this definition (or provide a specialization for it) in
2589 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002590 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002591 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002592 Diag(PointOfInstantiation,
2593 diag::err_explicit_instantiation_undefined_member)
2594 << 2 << Var->getDeclName() << Var->getDeclContext();
2595 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002596 } else if (Var->getTemplateSpecializationKind()
2597 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002598 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002599 std::make_pair(Var, PointOfInstantiation));
2600 }
2601
Douglas Gregor7caa6822009-07-24 20:34:43 +00002602 return;
2603 }
2604
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002605 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002606 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002607 return;
2608
2609 // C++0x [temp.explicit]p9:
2610 // Except for inline functions, other explicit instantiation declarations
2611 // have the effect of suppressing the implicit instantiation of the entity
2612 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002613 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002614 == TSK_ExplicitInstantiationDeclaration)
2615 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002616
Douglas Gregorf15748a2011-06-03 03:35:07 +00002617 // If we already have a definition, we're done.
2618 if (Var->getDefinition())
2619 return;
2620
Douglas Gregor7caa6822009-07-24 20:34:43 +00002621 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2622 if (Inst)
2623 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002624
Douglas Gregor7caa6822009-07-24 20:34:43 +00002625 // If we're performing recursive template instantiation, create our own
2626 // queue of pending implicit instantiations that we will instantiate later,
2627 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002628 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002629 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002630 if (Recursive) {
2631 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002632 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002633 }
Mike Stump1eb44332009-09-09 15:08:12 +00002634
Douglas Gregor7caa6822009-07-24 20:34:43 +00002635 // Enter the scope of this instantiation. We don't use
2636 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002637 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002638
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002639 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002640 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002641 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002642
2643 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002644
2645 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002646 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2647 assert(MSInfo && "Missing member specialization information?");
2648 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2649 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002650 DeclGroupRef DG(Var);
2651 Consumer.HandleTopLevelDecl(DG);
2652 }
Mike Stump1eb44332009-09-09 15:08:12 +00002653
Douglas Gregor7caa6822009-07-24 20:34:43 +00002654 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002655 // Define any newly required vtables.
2656 DefineUsedVTables();
2657
Douglas Gregor7caa6822009-07-24 20:34:43 +00002658 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002659 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002660 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002661
Nick Lewycky81559102011-05-31 07:58:42 +00002662 // Restore the set of pending vtables.
2663 assert(VTableUses.empty() &&
2664 "VTableUses should be empty before it is discarded, "
2665 "while instantiating static data member.");
2666 VTableUses.swap(SavedVTableUses);
2667
Douglas Gregor7caa6822009-07-24 20:34:43 +00002668 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002669 assert(PendingInstantiations.empty() &&
2670 "PendingInstantiations should be empty before it is discarded, "
2671 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002672 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002673 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002674}
Douglas Gregor815215d2009-05-27 05:35:12 +00002675
Anders Carlsson09025312009-08-29 05:16:22 +00002676void
2677Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2678 const CXXConstructorDecl *Tmpl,
2679 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002680
Richard Trieu90ab75b2011-09-09 03:18:59 +00002681 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002682 bool AnyErrors = false;
2683
Anders Carlsson09025312009-08-29 05:16:22 +00002684 // Instantiate all the initializers.
2685 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002686 InitsEnd = Tmpl->init_end();
2687 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002688 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002689
Chandler Carruth030ef472010-09-03 21:54:20 +00002690 // Only instantiate written initializers, let Sema re-construct implicit
2691 // ones.
2692 if (!Init->isWritten())
2693 continue;
2694
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002695 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002696 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002697
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002698 SourceLocation EllipsisLoc;
2699
2700 if (Init->isPackExpansion()) {
2701 // This is a pack expansion. We should expand it now.
2702 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002703 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002704 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2705 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002706 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002707 llvm::Optional<unsigned> NumExpansions;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002708 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2709 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002710 Unexpanded,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002711 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002712 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002713 NumExpansions)) {
2714 AnyErrors = true;
2715 New->setInvalidDecl();
2716 continue;
2717 }
2718 assert(ShouldExpand && "Partial instantiation of base initializer?");
2719
2720 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002721 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002722 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2723
2724 // Instantiate the initializer.
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002725 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002726 LParenLoc, NewArgs, RParenLoc)) {
2727 AnyErrors = true;
2728 break;
2729 }
2730
2731 // Instantiate the base type.
2732 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2733 TemplateArgs,
2734 Init->getSourceLocation(),
2735 New->getDeclName());
2736 if (!BaseTInfo) {
2737 AnyErrors = true;
2738 break;
2739 }
2740
2741 // Build the initializer.
2742 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2743 BaseTInfo,
2744 (Expr **)NewArgs.data(),
2745 NewArgs.size(),
2746 Init->getLParenLoc(),
2747 Init->getRParenLoc(),
2748 New->getParent(),
2749 SourceLocation());
2750 if (NewInit.isInvalid()) {
2751 AnyErrors = true;
2752 break;
2753 }
2754
2755 NewInits.push_back(NewInit.get());
2756 NewArgs.clear();
2757 }
2758
2759 continue;
2760 }
2761
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002762 // Instantiate the initializer.
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002763 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002764 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002765 AnyErrors = true;
2766 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002767 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002768
Anders Carlsson09025312009-08-29 05:16:22 +00002769 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002770 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002771 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002772 TemplateArgs,
2773 Init->getSourceLocation(),
2774 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002775 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002776 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002777 New->setInvalidDecl();
2778 continue;
2779 }
2780
John McCalla93c9342009-12-07 02:54:59 +00002781 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002782 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002783 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002784 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002785 Init->getRParenLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002786 New->getParent(),
2787 EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002788 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002789 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002790 Init->getMemberLocation(),
2791 Init->getMember(),
2792 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002793 if (!Member) {
2794 AnyErrors = true;
2795 New->setInvalidDecl();
2796 continue;
2797 }
Mike Stump1eb44332009-09-09 15:08:12 +00002798
2799 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002800 NewArgs.size(),
2801 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002802 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002803 Init->getRParenLoc());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002804 } else if (Init->isIndirectMemberInitializer()) {
2805 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002806 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002807 Init->getMemberLocation(),
2808 Init->getIndirectMember(), TemplateArgs));
2809
Douglas Gregorb7107222011-03-04 19:46:35 +00002810 if (!IndirectMember) {
2811 AnyErrors = true;
2812 New->setInvalidDecl();
2813 continue;
2814 }
2815
Francois Pichet00eb3f92010-12-04 09:14:42 +00002816 NewInit = BuildMemberInitializer(IndirectMember, (Expr **)NewArgs.data(),
2817 NewArgs.size(),
2818 Init->getSourceLocation(),
2819 Init->getLParenLoc(),
2820 Init->getRParenLoc());
Anders Carlsson09025312009-08-29 05:16:22 +00002821 }
2822
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002823 if (NewInit.isInvalid()) {
2824 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002825 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002826 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002827 // FIXME: It would be nice if ASTOwningVector had a release function.
2828 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002829
Richard Trieu90ab75b2011-09-09 03:18:59 +00002830 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002831 }
2832 }
Mike Stump1eb44332009-09-09 15:08:12 +00002833
Anders Carlsson09025312009-08-29 05:16:22 +00002834 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002835 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002836 /*FIXME: ColonLoc */
2837 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002838 NewInits.data(), NewInits.size(),
2839 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002840}
2841
John McCall52a575a2009-08-29 08:11:13 +00002842// TODO: this could be templated if the various decl types used the
2843// same method name.
2844static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2845 ClassTemplateDecl *Instance) {
2846 Pattern = Pattern->getCanonicalDecl();
2847
2848 do {
2849 Instance = Instance->getCanonicalDecl();
2850 if (Pattern == Instance) return true;
2851 Instance = Instance->getInstantiatedFromMemberTemplate();
2852 } while (Instance);
2853
2854 return false;
2855}
2856
Douglas Gregor0d696532009-09-28 06:34:35 +00002857static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2858 FunctionTemplateDecl *Instance) {
2859 Pattern = Pattern->getCanonicalDecl();
2860
2861 do {
2862 Instance = Instance->getCanonicalDecl();
2863 if (Pattern == Instance) return true;
2864 Instance = Instance->getInstantiatedFromMemberTemplate();
2865 } while (Instance);
2866
2867 return false;
2868}
2869
Douglas Gregored9c0f92009-10-29 00:04:11 +00002870static bool
2871isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2872 ClassTemplatePartialSpecializationDecl *Instance) {
2873 Pattern
2874 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2875 do {
2876 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2877 Instance->getCanonicalDecl());
2878 if (Pattern == Instance)
2879 return true;
2880 Instance = Instance->getInstantiatedFromMember();
2881 } while (Instance);
2882
2883 return false;
2884}
2885
John McCall52a575a2009-08-29 08:11:13 +00002886static bool isInstantiationOf(CXXRecordDecl *Pattern,
2887 CXXRecordDecl *Instance) {
2888 Pattern = Pattern->getCanonicalDecl();
2889
2890 do {
2891 Instance = Instance->getCanonicalDecl();
2892 if (Pattern == Instance) return true;
2893 Instance = Instance->getInstantiatedFromMemberClass();
2894 } while (Instance);
2895
2896 return false;
2897}
2898
2899static bool isInstantiationOf(FunctionDecl *Pattern,
2900 FunctionDecl *Instance) {
2901 Pattern = Pattern->getCanonicalDecl();
2902
2903 do {
2904 Instance = Instance->getCanonicalDecl();
2905 if (Pattern == Instance) return true;
2906 Instance = Instance->getInstantiatedFromMemberFunction();
2907 } while (Instance);
2908
2909 return false;
2910}
2911
2912static bool isInstantiationOf(EnumDecl *Pattern,
2913 EnumDecl *Instance) {
2914 Pattern = Pattern->getCanonicalDecl();
2915
2916 do {
2917 Instance = Instance->getCanonicalDecl();
2918 if (Pattern == Instance) return true;
2919 Instance = Instance->getInstantiatedFromMemberEnum();
2920 } while (Instance);
2921
2922 return false;
2923}
2924
John McCalled976492009-12-04 22:46:56 +00002925static bool isInstantiationOf(UsingShadowDecl *Pattern,
2926 UsingShadowDecl *Instance,
2927 ASTContext &C) {
2928 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2929}
2930
2931static bool isInstantiationOf(UsingDecl *Pattern,
2932 UsingDecl *Instance,
2933 ASTContext &C) {
2934 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2935}
2936
John McCall7ba107a2009-11-18 02:36:19 +00002937static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2938 UsingDecl *Instance,
2939 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002940 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002941}
2942
2943static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002944 UsingDecl *Instance,
2945 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002946 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002947}
2948
John McCall52a575a2009-08-29 08:11:13 +00002949static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2950 VarDecl *Instance) {
2951 assert(Instance->isStaticDataMember());
2952
2953 Pattern = Pattern->getCanonicalDecl();
2954
2955 do {
2956 Instance = Instance->getCanonicalDecl();
2957 if (Pattern == Instance) return true;
2958 Instance = Instance->getInstantiatedFromStaticDataMember();
2959 } while (Instance);
2960
2961 return false;
2962}
2963
John McCalled976492009-12-04 22:46:56 +00002964// Other is the prospective instantiation
2965// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002966static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002967 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002968 if (UnresolvedUsingTypenameDecl *UUD
2969 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2970 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2971 return isInstantiationOf(UUD, UD, Ctx);
2972 }
2973 }
2974
2975 if (UnresolvedUsingValueDecl *UUD
2976 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002977 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2978 return isInstantiationOf(UUD, UD, Ctx);
2979 }
2980 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002981
Anders Carlsson0d8df782009-08-29 19:37:28 +00002982 return false;
2983 }
Mike Stump1eb44332009-09-09 15:08:12 +00002984
John McCall52a575a2009-08-29 08:11:13 +00002985 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2986 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002987
John McCall52a575a2009-08-29 08:11:13 +00002988 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2989 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002990
John McCall52a575a2009-08-29 08:11:13 +00002991 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2992 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002993
Douglas Gregor7caa6822009-07-24 20:34:43 +00002994 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002995 if (Var->isStaticDataMember())
2996 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2997
2998 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2999 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003000
Douglas Gregor0d696532009-09-28 06:34:35 +00003001 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3002 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3003
Douglas Gregored9c0f92009-10-29 00:04:11 +00003004 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3005 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3006 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3007 PartialSpec);
3008
Anders Carlssond8b285f2009-09-01 04:26:58 +00003009 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3010 if (!Field->getDeclName()) {
3011 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003012 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003013 cast<FieldDecl>(D);
3014 }
3015 }
Mike Stump1eb44332009-09-09 15:08:12 +00003016
John McCalled976492009-12-04 22:46:56 +00003017 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3018 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3019
3020 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3021 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3022
Douglas Gregor815215d2009-05-27 05:35:12 +00003023 return D->getDeclName() && isa<NamedDecl>(Other) &&
3024 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3025}
3026
3027template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003028static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003029 NamedDecl *D,
3030 ForwardIterator first,
3031 ForwardIterator last) {
3032 for (; first != last; ++first)
3033 if (isInstantiationOf(Ctx, D, *first))
3034 return cast<NamedDecl>(*first);
3035
3036 return 0;
3037}
3038
John McCall02cace72009-08-28 07:59:38 +00003039/// \brief Finds the instantiation of the given declaration context
3040/// within the current instantiation.
3041///
3042/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003043DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003044 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003045 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003046 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003047 return cast_or_null<DeclContext>(ID);
3048 } else return DC;
3049}
3050
Douglas Gregored961e72009-05-27 17:54:46 +00003051/// \brief Find the instantiation of the given declaration within the
3052/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003053///
3054/// This routine is intended to be used when \p D is a declaration
3055/// referenced from within a template, that needs to mapped into the
3056/// corresponding declaration within an instantiation. For example,
3057/// given:
3058///
3059/// \code
3060/// template<typename T>
3061/// struct X {
3062/// enum Kind {
3063/// KnownValue = sizeof(T)
3064/// };
3065///
3066/// bool getKind() const { return KnownValue; }
3067/// };
3068///
3069/// template struct X<int>;
3070/// \endcode
3071///
3072/// In the instantiation of X<int>::getKind(), we need to map the
3073/// EnumConstantDecl for KnownValue (which refers to
3074/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003075/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3076/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003077NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003078 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003079 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003080 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003081 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003082 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003083 // D is a local of some kind. Look into the map of local
3084 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003085 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3086 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3087 = CurrentInstantiationScope->findInstantiationOf(D);
Chris Lattnerd8e54992011-02-17 19:47:42 +00003088
Chris Lattner57ad3782011-02-17 20:34:02 +00003089 if (Found) {
3090 if (Decl *FD = Found->dyn_cast<Decl *>())
3091 return cast<NamedDecl>(FD);
3092
3093 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3094 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3095 }
3096
3097 // If we didn't find the decl, then we must have a label decl that hasn't
3098 // been found yet. Lazily instantiate it and return it now.
3099 assert(isa<LabelDecl>(D));
Chris Lattnerd8e54992011-02-17 19:47:42 +00003100
Chris Lattner57ad3782011-02-17 20:34:02 +00003101 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3102 assert(Inst && "Failed to instantiate label??");
3103
3104 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3105 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003106 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003107
Douglas Gregore95b4092009-09-16 18:34:49 +00003108 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3109 if (!Record->isDependentContext())
3110 return D;
3111
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003112 // If the RecordDecl is actually the injected-class-name or a
3113 // "templated" declaration for a class template, class template
3114 // partial specialization, or a member class of a class template,
3115 // substitute into the injected-class-name of the class template
3116 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00003117 QualType T;
3118 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
3119
3120 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00003121 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00003122 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3123 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00003124 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00003125
3126 // If we call SubstType with an InjectedClassNameType here we
3127 // can end up in an infinite loop.
3128 T = Context.getTypeDeclType(Record);
3129 assert(isa<InjectedClassNameType>(T) &&
3130 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00003131 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00003132 }
Douglas Gregore95b4092009-09-16 18:34:49 +00003133
3134 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003135 // Substitute into the injected-class-name to get the type
3136 // corresponding to the instantiation we want, which may also be
3137 // the current instantiation (if we're in a template
3138 // definition). This substitution should never fail, since we
3139 // know we can instantiate the injected-class-name or we
3140 // wouldn't have gotten to the injected-class-name!
3141
3142 // FIXME: Can we use the CurrentInstantiationScope to avoid this
3143 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00003144 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00003145 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
3146
3147 if (!T->isDependentType()) {
3148 assert(T->isRecordType() && "Instantiation must produce a record type");
3149 return T->getAs<RecordType>()->getDecl();
3150 }
3151
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003152 // We are performing "partial" template instantiation to create
3153 // the member declarations for the members of a class template
3154 // specialization. Therefore, D is actually referring to something
3155 // in the current instantiation. Look through the current
3156 // context, which contains actual instantiations, to find the
3157 // instantiation of the "current instantiation" that D refers
3158 // to.
3159 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003160 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00003161 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003162 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003163 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00003164 if (isInstantiationOf(ClassTemplate,
3165 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00003166 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003167
3168 if (!DC->isDependentContext())
3169 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00003170 }
3171
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003172 // We're performing "instantiation" of a member of the current
3173 // instantiation while we are type-checking the
3174 // definition. Compute the declaration context and return that.
3175 assert(!SawNonDependentContext &&
3176 "No dependent context while instantiating record");
3177 DeclContext *DC = computeDeclContext(T);
3178 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00003179 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003180 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00003181 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003182
Douglas Gregore95b4092009-09-16 18:34:49 +00003183 // Fall through to deal with other dependent record types (e.g.,
3184 // anonymous unions in class templates).
3185 }
John McCall52a575a2009-08-29 08:11:13 +00003186
Douglas Gregore95b4092009-09-16 18:34:49 +00003187 if (!ParentDC->isDependentContext())
3188 return D;
3189
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003190 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003191 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003192 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003193
Douglas Gregor815215d2009-05-27 05:35:12 +00003194 if (ParentDC != D->getDeclContext()) {
3195 // We performed some kind of instantiation in the parent context,
3196 // so now we need to look into the instantiated parent context to
3197 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003198
John McCall3cb0ebd2010-03-10 03:28:59 +00003199 // If our context used to be dependent, we may need to instantiate
3200 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003201 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003202 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003203 if (!Spec->isDependentContext()) {
3204 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003205 const RecordType *Tag = T->getAs<RecordType>();
3206 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003207 if (Tag->isBeingDefined())
3208 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003209 if (!Tag->isBeingDefined() &&
3210 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3211 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003212
3213 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003214 }
3215 }
3216
Douglas Gregor815215d2009-05-27 05:35:12 +00003217 NamedDecl *Result = 0;
3218 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003219 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003220 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3221 } else {
3222 // Since we don't have a name for the entity we're looking for,
3223 // our only option is to walk through all of the declarations to
3224 // find that name. This will occur in a few cases:
3225 //
3226 // - anonymous struct/union within a template
3227 // - unnamed class/struct/union/enum within a template
3228 //
3229 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003230 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003231 ParentDC->decls_begin(),
3232 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003233 }
Mike Stump1eb44332009-09-09 15:08:12 +00003234
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003235 if (!Result) {
3236 if (isa<UsingShadowDecl>(D)) {
3237 // UsingShadowDecls can instantiate to nothing because of using hiding.
3238 } else if (Diags.hasErrorOccurred()) {
3239 // We've already complained about something, so most likely this
3240 // declaration failed to instantiate. There's no point in complaining
3241 // further, since this is normal in invalid code.
3242 } else if (IsBeingInstantiated) {
3243 // The class in which this member exists is currently being
3244 // instantiated, and we haven't gotten around to instantiating this
3245 // member yet. This can happen when the code uses forward declarations
3246 // of member classes, and introduces ordering dependencies via
3247 // template instantiation.
3248 Diag(Loc, diag::err_member_not_yet_instantiated)
3249 << D->getDeclName()
3250 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3251 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3252 } else {
3253 // We should have found something, but didn't.
3254 llvm_unreachable("Unable to find instantiation of declaration!");
3255 }
3256 }
3257
Douglas Gregor815215d2009-05-27 05:35:12 +00003258 D = Result;
3259 }
3260
Douglas Gregor815215d2009-05-27 05:35:12 +00003261 return D;
3262}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003263
Mike Stump1eb44332009-09-09 15:08:12 +00003264/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003265/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003266void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003267 // Load pending instantiations from the external source.
3268 if (!LocalOnly && ExternalSource) {
3269 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3270 ExternalSource->ReadPendingInstantiations(Pending);
3271 PendingInstantiations.insert(PendingInstantiations.begin(),
3272 Pending.begin(), Pending.end());
3273 }
3274
Douglas Gregor60406be2010-01-16 22:29:39 +00003275 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003276 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003277 PendingImplicitInstantiation Inst;
3278
3279 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003280 Inst = PendingInstantiations.front();
3281 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003282 } else {
3283 Inst = PendingLocalImplicitInstantiations.front();
3284 PendingLocalImplicitInstantiations.pop_front();
3285 }
Mike Stump1eb44332009-09-09 15:08:12 +00003286
Douglas Gregor7caa6822009-07-24 20:34:43 +00003287 // Instantiate function definitions
3288 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003289 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3290 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003291 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3292 TSK_ExplicitInstantiationDefinition;
3293 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3294 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003295 continue;
3296 }
Mike Stump1eb44332009-09-09 15:08:12 +00003297
Douglas Gregor7caa6822009-07-24 20:34:43 +00003298 // Instantiate static data member definitions.
3299 VarDecl *Var = cast<VarDecl>(Inst.first);
3300 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003301
Chandler Carruth291b4412010-02-13 10:17:50 +00003302 // Don't try to instantiate declarations if the most recent redeclaration
3303 // is invalid.
3304 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3305 continue;
3306
3307 // Check if the most recent declaration has changed the specialization kind
3308 // and removed the need for implicit instantiation.
3309 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3310 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003311 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003312 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003313 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003314 continue; // No longer need to instantiate this type.
3315 case TSK_ExplicitInstantiationDefinition:
3316 // We only need an instantiation if the pending instantiation *is* the
3317 // explicit instantiation.
3318 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003319 case TSK_ImplicitInstantiation:
3320 break;
3321 }
3322
John McCallf312b1e2010-08-26 23:41:50 +00003323 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3324 "instantiating static data member "
3325 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003326
Chandler Carruth58e390e2010-08-25 08:27:02 +00003327 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3328 TSK_ExplicitInstantiationDefinition;
3329 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3330 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003331 }
3332}
John McCall0c01d182010-03-24 05:22:00 +00003333
3334void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3335 const MultiLevelTemplateArgumentList &TemplateArgs) {
3336 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3337 E = Pattern->ddiag_end(); I != E; ++I) {
3338 DependentDiagnostic *DD = *I;
3339
3340 switch (DD->getKind()) {
3341 case DependentDiagnostic::Access:
3342 HandleDependentAccessCheck(*DD, TemplateArgs);
3343 break;
3344 }
3345 }
3346}