blob: e29b75a2c27fad3bc702ef0a759d75aaeedf3aa3 [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}
101
102Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000103TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
104 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
105 D->getIdentifier());
106 Owner->addDecl(Inst);
107 return Inst;
108}
109
110Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000111TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000112 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000113}
114
John McCall3dbd3d52010-02-16 06:53:13 +0000115Decl *
116TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
117 NamespaceAliasDecl *Inst
118 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
119 D->getNamespaceLoc(),
120 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000121 D->getIdentifier(),
122 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000123 D->getTargetNameLoc(),
124 D->getNamespace());
125 Owner->addDecl(Inst);
126 return Inst;
127}
128
Richard Smith3e4c6c42011-05-05 21:57:07 +0000129Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
130 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000131 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000132 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000133 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000134 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000135 DI = SemaRef.SubstType(DI, TemplateArgs,
136 D->getLocation(), D->getDeclName());
137 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000138 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000139 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000140 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000141 } else {
142 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000143 }
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000145 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000146 TypedefNameDecl *Typedef;
147 if (IsTypeAlias)
148 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
149 D->getLocation(), D->getIdentifier(), DI);
150 else
151 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
152 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000153 if (Invalid)
154 Typedef->setInvalidDecl();
155
John McCallcde5a402011-02-01 08:20:08 +0000156 // If the old typedef was the name for linkage purposes of an anonymous
157 // tag decl, re-establish that relationship for the new typedef.
158 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
159 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000160 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000161 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000162 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
163 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000164 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000165 }
166
Richard Smith162e1c12011-04-15 14:24:37 +0000167 if (TypedefNameDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000168 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
169 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000170 if (!InstPrev)
171 return 0;
172
Richard Smith162e1c12011-04-15 14:24:37 +0000173 Typedef->setPreviousDeclaration(cast<TypedefNameDecl>(InstPrev));
John McCall5126fd02009-12-30 00:31:22 +0000174 }
175
John McCall1d8d1cc2010-08-01 02:01:53 +0000176 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000177
John McCall46460a62010-01-20 21:53:11 +0000178 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000180 return Typedef;
181}
182
Richard Smith162e1c12011-04-15 14:24:37 +0000183Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000184 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
185 Owner->addDecl(Typedef);
186 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000187}
188
189Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000190 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
191 Owner->addDecl(Typedef);
192 return Typedef;
193}
194
195Decl *
196TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
197 // Create a local instantiation scope for this type alias template, which
198 // will contain the instantiations of the template parameters.
199 LocalInstantiationScope Scope(SemaRef);
200
201 TemplateParameterList *TempParams = D->getTemplateParameters();
202 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
203 if (!InstParams)
204 return 0;
205
206 TypeAliasDecl *Pattern = D->getTemplatedDecl();
207
208 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
209 if (Pattern->getPreviousDeclaration()) {
210 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
211 if (Found.first != Found.second) {
212 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
213 }
214 }
215
216 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
217 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
218 if (!AliasInst)
219 return 0;
220
221 TypeAliasTemplateDecl *Inst
222 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
223 D->getDeclName(), InstParams, AliasInst);
224 if (PrevAliasTemplate)
225 Inst->setPreviousDeclaration(PrevAliasTemplate);
226
227 Inst->setAccess(D->getAccess());
228
229 if (!PrevAliasTemplate)
230 Inst->setInstantiatedFromMemberTemplate(D);
231
232 Owner->addDecl(Inst);
233
234 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000235}
236
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000237/// \brief Instantiate an initializer, breaking it into separate
238/// initialization arguments.
239///
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000240/// \param Init The initializer to instantiate.
241///
242/// \param TemplateArgs Template arguments to be substituted into the
243/// initializer.
244///
245/// \param NewArgs Will be filled in with the instantiation arguments.
246///
247/// \returns true if an error occurred, false otherwise
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000248bool Sema::InstantiateInitializer(Expr *Init,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000249 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000250 SourceLocation &LParenLoc,
251 ASTOwningVector<Expr*> &NewArgs,
252 SourceLocation &RParenLoc) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000253 NewArgs.clear();
254 LParenLoc = SourceLocation();
255 RParenLoc = SourceLocation();
256
257 if (!Init)
258 return false;
259
John McCall4765fa02010-12-06 08:20:24 +0000260 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000261 Init = ExprTemp->getSubExpr();
262
263 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
264 Init = Binder->getSubExpr();
265
266 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
267 Init = ICE->getSubExprAsWritten();
268
269 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
270 LParenLoc = ParenList->getLParenLoc();
271 RParenLoc = ParenList->getRParenLoc();
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000272 return SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
273 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000274 }
275
276 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000277 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000278 if (SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
279 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000280 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000281
Douglas Gregor28329e52010-03-24 21:22:47 +0000282 // FIXME: Fake locations!
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000283 LParenLoc = PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000284 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000285 return false;
286 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000287 }
288
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000289 ExprResult Result = SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000290 if (Result.isInvalid())
291 return true;
292
293 NewArgs.push_back(Result.takeAs<Expr>());
294 return false;
295}
296
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000297Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000298 // If this is the variable for an anonymous struct or union,
299 // instantiate the anonymous struct/union type first.
300 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
301 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
302 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
303 return 0;
304
John McCallce3ff2b2009-08-25 22:02:44 +0000305 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000306 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000307 TemplateArgs,
308 D->getTypeSpecStartLoc(),
309 D->getDeclName());
310 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000311 return 0;
312
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000313 if (DI->getType()->isFunctionType()) {
314 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
315 << D->isStaticDataMember() << DI->getType();
316 return 0;
317 }
318
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000319 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000320 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000321 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000322 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000323 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000324 D->getStorageClass(),
325 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 Var->setThreadSpecified(D->isThreadSpecified());
327 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Richard Smithad762fc2011-04-14 22:09:26 +0000328 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000329
John McCallb6217662010-03-15 10:12:16 +0000330 // Substitute the nested name specifier, if any.
331 if (SubstQualifier(D, Var))
332 return 0;
333
Mike Stump1eb44332009-09-09 15:08:12 +0000334 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000335 // out-of-line, the instantiation will have the same lexical
336 // context (which will be a namespace scope) as the template.
337 if (D->isOutOfLine())
338 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000339
John McCall46460a62010-01-20 21:53:11 +0000340 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000341
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000342 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000343 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000344 Var->setReferenced(D->isReferenced());
345 }
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000346
Mike Stump390b4cc2009-05-16 07:39:55 +0000347 // FIXME: In theory, we could have a previous declaration for variables that
348 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000349 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000350 // FIXME: having to fake up a LookupResult is dumb.
351 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000352 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000353 if (D->isStaticDataMember())
354 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000355 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Douglas Gregor7caa6822009-07-24 20:34:43 +0000357 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000358 if (!D->isStaticDataMember())
359 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000360 Owner->makeDeclVisibleInContext(Var);
361 } else {
362 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000363 if (Owner->isFunctionOrMethod())
364 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000365 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000366 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000367
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000368 // Link instantiations of static data members back to the template from
369 // which they were instantiated.
370 if (Var->isStaticDataMember())
371 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000372 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000373
Douglas Gregor60c93c92010-02-09 07:26:29 +0000374 if (Var->getAnyInitializer()) {
375 // We already have an initializer in the class.
376 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000377 if (Var->isStaticDataMember() && !D->isOutOfLine())
378 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
379 else
380 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
381
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000382 // Instantiate the initializer.
383 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000384 ASTOwningVector<Expr*> InitArgs(SemaRef);
Richard Smith0ff6f8f2011-07-20 00:12:52 +0000385 if (!SemaRef.InstantiateInitializer(D->getInit(), TemplateArgs, LParenLoc,
386 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000387 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000388 // Attach the initializer to the declaration, if we have one.
389 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000390 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000391 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000392 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000393 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000394 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000395 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000396 RParenLoc,
397 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000398 } else {
399 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000400 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000401 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000402 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000403 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000404 // FIXME: Not too happy about invalidating the declaration
405 // because of a bogus initializer.
406 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000407 }
408
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000409 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000410 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
411 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000412 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000413
Richard Smithe3499ca2011-06-21 23:42:09 +0000414 // Diagnose unused local variables with dependent types, where the diagnostic
415 // will have been deferred.
416 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
417 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000418 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000419
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000420 return Var;
421}
422
Abramo Bagnara6206d532010-06-05 05:09:32 +0000423Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
424 AccessSpecDecl* AD
425 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
426 D->getAccessSpecifierLoc(), D->getColonLoc());
427 Owner->addHiddenDecl(AD);
428 return AD;
429}
430
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000431Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
432 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000433 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000434 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000435 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000436 DI = SemaRef.SubstType(DI, TemplateArgs,
437 D->getLocation(), D->getDeclName());
438 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000439 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000440 Invalid = true;
441 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000442 // C++ [temp.arg.type]p3:
443 // If a declaration acquires a function type through a type
444 // dependent on a template-parameter and this causes a
445 // declaration that does not use the syntactic form of a
446 // function declarator to have function type, the program is
447 // ill-formed.
448 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000449 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000450 Invalid = true;
451 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000452 } else {
453 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 }
455
456 Expr *BitWidth = D->getBitWidth();
457 if (Invalid)
458 BitWidth = 0;
459 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000460 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000461 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000462
John McCall60d7b3a2010-08-24 06:29:42 +0000463 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000464 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000465 if (InstantiatedBitWidth.isInvalid()) {
466 Invalid = true;
467 BitWidth = 0;
468 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000469 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000470 }
471
John McCall07fb6be2009-10-22 23:33:21 +0000472 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
473 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000474 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000475 D->getLocation(),
476 D->isMutable(),
477 BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +0000478 D->hasInClassInitializer(),
Steve Naroffea218b82009-07-14 14:58:18 +0000479 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000480 D->getAccess(),
481 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000482 if (!Field) {
483 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000484 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000485 }
Mike Stump1eb44332009-09-09 15:08:12 +0000486
John McCall1d8d1cc2010-08-01 02:01:53 +0000487 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000488
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000489 if (Invalid)
490 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000492 if (!Field->getDeclName()) {
493 // Keep track of where this decl came from.
494 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000495 }
496 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
497 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000498 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000499 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000500 }
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000502 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000503 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000504 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000505
506 return Field;
507}
508
Francois Pichet87c2e122010-11-21 06:08:52 +0000509Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
510 NamedDecl **NamedChain =
511 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
512
513 int i = 0;
514 for (IndirectFieldDecl::chain_iterator PI =
515 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000516 PI != PE; ++PI) {
517 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
518 TemplateArgs);
519 if (!Next)
520 return 0;
521
522 NamedChain[i++] = Next;
523 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000524
Francois Pichet40e17752010-12-09 10:07:54 +0000525 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000526 IndirectFieldDecl* IndirectField
527 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000528 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000529 NamedChain, D->getChainingSize());
530
531
532 IndirectField->setImplicit(D->isImplicit());
533 IndirectField->setAccess(D->getAccess());
534 Owner->addDecl(IndirectField);
535 return IndirectField;
536}
537
John McCall02cace72009-08-28 07:59:38 +0000538Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000539 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000540 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000541 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000542 TypeSourceInfo *InstTy;
543 // If this is an unsupported friend, don't bother substituting template
544 // arguments into it. The actual type referred to won't be used by any
545 // parts of Clang, and may not be valid for instantiating. Just use the
546 // same info for the instantiated friend.
547 if (D->isUnsupportedFriend()) {
548 InstTy = Ty;
549 } else {
550 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
551 D->getLocation(), DeclarationName());
552 }
553 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000554 return 0;
John McCall02cace72009-08-28 07:59:38 +0000555
Douglas Gregor06245bf2010-04-07 17:57:12 +0000556 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
557 if (!FD)
558 return 0;
559
560 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000561 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000562 Owner->addDecl(FD);
563 return FD;
564 }
565
566 NamedDecl *ND = D->getFriendDecl();
567 assert(ND && "friend decl must be a decl or a type!");
568
John McCallaf2094e2010-04-08 09:05:18 +0000569 // All of the Visit implementations for the various potential friend
570 // declarations have to be carefully written to work for friend
571 // objects, with the most important detail being that the target
572 // decl should almost certainly not be placed in Owner.
573 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000574 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000575
John McCall02cace72009-08-28 07:59:38 +0000576 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000577 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
578 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000579 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000580 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000581 Owner->addDecl(FD);
582 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000583}
584
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000585Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
586 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Douglas Gregorac7610d2009-06-22 20:57:11 +0000588 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000589 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000590
John McCall60d7b3a2010-08-24 06:29:42 +0000591 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000592 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000593 if (InstantiatedAssertExpr.isInvalid())
594 return 0;
595
John McCall60d7b3a2010-08-24 06:29:42 +0000596 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000597 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000598 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000599 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000600 Message.get(),
601 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000602}
603
604Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000605 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000606 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000607 /*PrevDecl=*/0, D->isScoped(),
608 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000609 if (D->isFixed()) {
610 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
611 // If we have type source information for the underlying type, it means it
612 // has been explicitly set by the user. Perform substitution on it before
613 // moving on.
614 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
615 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
616 TemplateArgs,
617 UnderlyingLoc,
618 DeclarationName()));
619
620 if (!Enum->getIntegerTypeSourceInfo())
621 Enum->setIntegerType(SemaRef.Context.IntTy);
622 }
623 else {
624 assert(!D->getIntegerType()->isDependentType()
625 && "Dependent type without type source info");
626 Enum->setIntegerType(D->getIntegerType());
627 }
628 }
629
John McCall5b629aa2010-10-22 23:36:17 +0000630 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
631
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000632 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000633 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000634 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000635 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000636 Enum->startDefinition();
637
Douglas Gregor96084f12010-03-01 19:00:07 +0000638 if (D->getDeclContext()->isFunctionOrMethod())
639 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
640
Chris Lattner5f9e2722011-07-23 10:55:15 +0000641 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000642
643 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000644 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
645 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000646 EC != ECEnd; ++EC) {
647 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000648 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000649 if (Expr *UninstValue = EC->getInitExpr()) {
650 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000651 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000652 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000653
John McCallce3ff2b2009-08-25 22:02:44 +0000654 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000655 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000656
657 // Drop the initial value and continue.
658 bool isInvalid = false;
659 if (Value.isInvalid()) {
660 Value = SemaRef.Owned((Expr *)0);
661 isInvalid = true;
662 }
663
Mike Stump1eb44332009-09-09 15:08:12 +0000664 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000665 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
666 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000667 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000668
669 if (isInvalid) {
670 if (EnumConst)
671 EnumConst->setInvalidDecl();
672 Enum->setInvalidDecl();
673 }
674
675 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000676 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
677
John McCall3b85ecf2010-01-23 22:37:59 +0000678 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000679 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000680 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000681 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000682
683 if (D->getDeclContext()->isFunctionOrMethod()) {
684 // If the enumeration is within a function or method, record the enum
685 // constant as a local.
686 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
687 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000688 }
689 }
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000691 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000692 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000693 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000694 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000695 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000696 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000697
698 return Enum;
699}
700
Douglas Gregor6477b692009-03-25 15:04:13 +0000701Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000702 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000703}
704
John McCalle29ba202009-08-20 01:44:21 +0000705Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000706 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
707
Douglas Gregor550d9b22009-10-31 17:21:17 +0000708 // Create a local instantiation scope for this class template, which
709 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000710 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000711 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000712 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000713 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000714 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000715
716 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000717
718 // Instantiate the qualifier. We have to do this first in case
719 // we're a friend declaration, because if we are then we need to put
720 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000721 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
722 if (QualifierLoc) {
723 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
724 TemplateArgs);
725 if (!QualifierLoc)
726 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000727 }
728
729 CXXRecordDecl *PrevDecl = 0;
730 ClassTemplateDecl *PrevClassTemplate = 0;
731
Nick Lewycky37574f52010-11-08 23:29:42 +0000732 if (!isFriend && Pattern->getPreviousDeclaration()) {
733 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
734 if (Found.first != Found.second) {
735 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
736 if (PrevClassTemplate)
737 PrevDecl = PrevClassTemplate->getTemplatedDecl();
738 }
739 }
740
John McCall93ba8572010-03-25 06:39:04 +0000741 // If this isn't a friend, then it's a member template, in which
742 // case we just want to build the instantiation in the
743 // specialization. If it is a friend, we want to build it in
744 // the appropriate context.
745 DeclContext *DC = Owner;
746 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000747 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000748 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000749 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000750 DC = SemaRef.computeDeclContext(SS);
751 if (!DC) return 0;
752 } else {
753 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
754 Pattern->getDeclContext(),
755 TemplateArgs);
756 }
757
758 // Look for a previous declaration of the template in the owning
759 // context.
760 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
761 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
762 SemaRef.LookupQualifiedName(R, DC);
763
764 if (R.isSingleResult()) {
765 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
766 if (PrevClassTemplate)
767 PrevDecl = PrevClassTemplate->getTemplatedDecl();
768 }
769
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000770 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000771 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000772 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000773 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000774 return 0;
775 }
776
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000777 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000778 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000779 bool Complain = true;
780
781 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
782 // template for struct std::tr1::__detail::_Map_base, where the
783 // template parameters of the friend declaration don't match the
784 // template parameters of the original declaration. In this one
785 // case, we don't complain about the ill-formed friend
786 // declaration.
787 if (isFriend && Pattern->getIdentifier() &&
788 Pattern->getIdentifier()->isStr("_Map_base") &&
789 DC->isNamespace() &&
790 cast<NamespaceDecl>(DC)->getIdentifier() &&
791 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
792 DeclContext *DCParent = DC->getParent();
793 if (DCParent->isNamespace() &&
794 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
795 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
796 DeclContext *DCParent2 = DCParent->getParent();
797 if (DCParent2->isNamespace() &&
798 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
799 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
800 DCParent2->getParent()->isTranslationUnit())
801 Complain = false;
802 }
803 }
804
John McCall93ba8572010-03-25 06:39:04 +0000805 TemplateParameterList *PrevParams
806 = PrevClassTemplate->getTemplateParameters();
807
808 // Make sure the parameter lists match.
809 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000810 Complain,
811 Sema::TPL_TemplateMatch)) {
812 if (Complain)
813 return 0;
814
815 AdoptedPreviousTemplateParams = true;
816 InstParams = PrevParams;
817 }
John McCall93ba8572010-03-25 06:39:04 +0000818
819 // Do some additional validation, then merge default arguments
820 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000821 if (!AdoptedPreviousTemplateParams &&
822 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000823 Sema::TPC_ClassTemplate))
824 return 0;
825 }
826 }
827
John McCalle29ba202009-08-20 01:44:21 +0000828 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000829 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000830 Pattern->getLocStart(), Pattern->getLocation(),
831 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000832 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000833
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000834 if (QualifierLoc)
835 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000836
John McCalle29ba202009-08-20 01:44:21 +0000837 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000838 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
839 D->getIdentifier(), InstParams, RecordInst,
840 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000841 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000842
John McCall93ba8572010-03-25 06:39:04 +0000843 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000844 if (PrevClassTemplate)
845 Inst->setAccess(PrevClassTemplate->getAccess());
846 else
847 Inst->setAccess(D->getAccess());
848
John McCall93ba8572010-03-25 06:39:04 +0000849 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
850 // TODO: do we want to track the instantiation progeny of this
851 // friend target decl?
852 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000853 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000854 if (!PrevClassTemplate)
855 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000856 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000857
858 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000859 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000860 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000861
Douglas Gregor259571e2009-10-30 22:42:42 +0000862 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000863 if (isFriend) {
864 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000865 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000866 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000867
John McCalle29ba202009-08-20 01:44:21 +0000868 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000869
870 if (!PrevClassTemplate) {
871 // Queue up any out-of-line partial specializations of this member
872 // class template; the client will force their instantiation once
873 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000874 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000875 D->getPartialSpecializations(PartialSpecs);
876 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
877 if (PartialSpecs[I]->isOutOfLine())
878 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
879 }
880
John McCalle29ba202009-08-20 01:44:21 +0000881 return Inst;
882}
883
Douglas Gregord60e1052009-08-27 16:57:43 +0000884Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000885TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
886 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000887 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
888
889 // Lookup the already-instantiated declaration in the instantiation
890 // of the class template and return that.
891 DeclContext::lookup_result Found
892 = Owner->lookup(ClassTemplate->getDeclName());
893 if (Found.first == Found.second)
894 return 0;
895
896 ClassTemplateDecl *InstClassTemplate
897 = dyn_cast<ClassTemplateDecl>(*Found.first);
898 if (!InstClassTemplate)
899 return 0;
900
Douglas Gregord65587f2010-11-10 19:44:59 +0000901 if (ClassTemplatePartialSpecializationDecl *Result
902 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
903 return Result;
904
905 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000906}
907
908Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000909TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000910 // Create a local instantiation scope for this function template, which
911 // will contain the instantiations of the template parameters and then get
912 // merged with the local instantiation scope for the function template
913 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000914 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000915
Douglas Gregord60e1052009-08-27 16:57:43 +0000916 TemplateParameterList *TempParams = D->getTemplateParameters();
917 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000918 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000919 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000920
Douglas Gregora735b202009-10-13 14:39:41 +0000921 FunctionDecl *Instantiated = 0;
922 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
923 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
924 InstParams));
925 else
926 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
927 D->getTemplatedDecl(),
928 InstParams));
929
930 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000931 return 0;
932
John McCall46460a62010-01-20 21:53:11 +0000933 Instantiated->setAccess(D->getAccess());
934
Mike Stump1eb44332009-09-09 15:08:12 +0000935 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000936 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000937 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000938 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000939 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000940 assert(InstTemplate &&
941 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000942
John McCallb1a56e72010-03-26 23:10:15 +0000943 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
944
John McCalle976ffe2009-12-14 23:19:40 +0000945 // Link the instantiation back to the pattern *unless* this is a
946 // non-definition friend declaration.
947 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000948 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000949 InstTemplate->setInstantiatedFromMemberTemplate(D);
950
John McCallb1a56e72010-03-26 23:10:15 +0000951 // Make declarations visible in the appropriate context.
952 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000953 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000954
Douglas Gregord60e1052009-08-27 16:57:43 +0000955 return InstTemplate;
956}
957
Douglas Gregord475b8d2009-03-25 21:17:03 +0000958Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
959 CXXRecordDecl *PrevDecl = 0;
960 if (D->isInjectedClassName())
961 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000962 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000963 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
964 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000965 TemplateArgs);
966 if (!Prev) return 0;
967 PrevDecl = cast<CXXRecordDecl>(Prev);
968 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000969
970 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000971 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000972 D->getLocStart(), D->getLocation(),
973 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000974
975 // Substitute the nested name specifier, if any.
976 if (SubstQualifier(D, Record))
977 return 0;
978
Douglas Gregord475b8d2009-03-25 21:17:03 +0000979 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000980 // FIXME: Check against AS_none is an ugly hack to work around the issue that
981 // the tag decls introduced by friend class declarations don't have an access
982 // specifier. Remove once this area of the code gets sorted out.
983 if (D->getAccess() != AS_none)
984 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000985 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000986 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000987
John McCall02cace72009-08-28 07:59:38 +0000988 // If the original function was part of a friend declaration,
989 // inherit its namespace state.
990 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
991 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
992
Douglas Gregor9901c572010-05-21 00:31:19 +0000993 // Make sure that anonymous structs and unions are recorded.
994 if (D->isAnonymousStructOrUnion()) {
995 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000996 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000997 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
998 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000999
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001000 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001001 return Record;
1002}
1003
John McCall02cace72009-08-28 07:59:38 +00001004/// Normal class members are of more specific types and therefore
1005/// don't make it here. This function serves two purposes:
1006/// 1) instantiating function templates
1007/// 2) substituting friend declarations
1008/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001009Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001010 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001011 // Check whether there is already a function template specialization for
1012 // this declaration.
1013 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1014 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +00001015 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +00001016 std::pair<const TemplateArgument *, unsigned> Innermost
1017 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001018
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001019 FunctionDecl *SpecFunc
1020 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1021 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001022
Douglas Gregor127102b2009-06-29 20:59:39 +00001023 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001024 if (SpecFunc)
1025 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001026 }
Mike Stump1eb44332009-09-09 15:08:12 +00001027
John McCallb0cb0222010-03-27 05:57:59 +00001028 bool isFriend;
1029 if (FunctionTemplate)
1030 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1031 else
1032 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1033
Douglas Gregor79c22782010-01-16 20:21:20 +00001034 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001035 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +00001036 !(isa<Decl>(Owner) &&
1037 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001038 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Chris Lattner5f9e2722011-07-23 10:55:15 +00001040 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001041 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1042 TInfo = SubstFunctionType(D, Params);
1043 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001044 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001045 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +00001046
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001047 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1048 if (QualifierLoc) {
1049 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1050 TemplateArgs);
1051 if (!QualifierLoc)
1052 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001053 }
1054
John McCall68b6b872010-02-06 01:50:47 +00001055 // If we're instantiating a local function declaration, put the result
1056 // in the owner; otherwise we need to find the instantiated context.
1057 DeclContext *DC;
1058 if (D->getDeclContext()->isFunctionOrMethod())
1059 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001060 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001061 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001062 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001063 DC = SemaRef.computeDeclContext(SS);
1064 if (!DC) return 0;
1065 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001066 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1067 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001068 }
John McCall68b6b872010-02-06 01:50:47 +00001069
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001070 bool isConstexpr = D->isConstexpr();
1071 // FIXME: check whether the instantiation produces a constexpr function.
1072
John McCall02cace72009-08-28 07:59:38 +00001073 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001074 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1075 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001076 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001077 D->isInlineSpecified(), D->hasWrittenPrototype(),
1078 isConstexpr);
John McCallb6217662010-03-15 10:12:16 +00001079
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001080 if (QualifierLoc)
1081 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001082
John McCallb1a56e72010-03-26 23:10:15 +00001083 DeclContext *LexicalDC = Owner;
1084 if (!isFriend && D->isOutOfLine()) {
1085 assert(D->getDeclContext()->isFileContext());
1086 LexicalDC = D->getDeclContext();
1087 }
1088
1089 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001090
Douglas Gregore53060f2009-06-25 22:08:12 +00001091 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001092 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001093 // Adopt the already-instantiated parameters into our own context.
1094 for (unsigned P = 0; P < Params.size(); ++P)
1095 if (Params[P])
1096 Params[P]->setOwningFunction(Function);
1097 } else {
1098 // Since we were instantiated via a typedef of a function type, create
1099 // new parameters.
1100 const FunctionProtoType *Proto
1101 = Function->getType()->getAs<FunctionProtoType>();
1102 assert(Proto && "No function prototype in template instantiation?");
1103 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1104 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1105 ParmVarDecl *Param
1106 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1107 *AI);
1108 Param->setScopeInfo(0, Params.size());
1109 Params.push_back(Param);
1110 }
1111 }
David Blaikie4278c652011-09-21 18:16:56 +00001112 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001113
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001114 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001115 if (TemplateParams) {
1116 // Our resulting instantiation is actually a function template, since we
1117 // are substituting only the outer template parameters. For example, given
1118 //
1119 // template<typename T>
1120 // struct X {
1121 // template<typename U> friend void f(T, U);
1122 // };
1123 //
1124 // X<int> x;
1125 //
1126 // We are instantiating the friend function template "f" within X<int>,
1127 // which means substituting int for T, but leaving "f" as a friend function
1128 // template.
1129 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001130 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001131 Function->getLocation(),
1132 Function->getDeclName(),
1133 TemplateParams, Function);
1134 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001135
1136 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001137
1138 if (isFriend && D->isThisDeclarationADefinition()) {
1139 // TODO: should we remember this connection regardless of whether
1140 // the friend declaration provided a body?
1141 FunctionTemplate->setInstantiatedFromMemberTemplate(
1142 D->getDescribedFunctionTemplate());
1143 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001144 } else if (FunctionTemplate) {
1145 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001146 std::pair<const TemplateArgument *, unsigned> Innermost
1147 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001148 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001149 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001150 Innermost.first,
1151 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001152 InsertPos);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001153 } else if (isFriend) {
1154 // Note, we need this connection even if the friend doesn't have a body.
1155 // Its body may exist but not have been attached yet due to deferred
1156 // parsing.
1157 // FIXME: It might be cleaner to set this when attaching the body to the
1158 // friend function declaration, however that would require finding all the
1159 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001160 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001161 }
Douglas Gregora735b202009-10-13 14:39:41 +00001162
Douglas Gregore53060f2009-06-25 22:08:12 +00001163 if (InitFunctionInstantiation(Function, D))
1164 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Douglas Gregore53060f2009-06-25 22:08:12 +00001166 bool Redeclaration = false;
John McCallaf2094e2010-04-08 09:05:18 +00001167 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001168
John McCall68263142009-11-18 22:49:29 +00001169 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1170 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1171
John McCallaf2094e2010-04-08 09:05:18 +00001172 if (DependentFunctionTemplateSpecializationInfo *Info
1173 = D->getDependentSpecializationInfo()) {
1174 assert(isFriend && "non-friend has dependent specialization info?");
1175
1176 // This needs to be set now for future sanity.
1177 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1178
1179 // Instantiate the explicit template arguments.
1180 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1181 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001182 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1183 ExplicitArgs, TemplateArgs))
1184 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001185
1186 // Map the candidate templates to their instantiations.
1187 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1188 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1189 Info->getTemplate(I),
1190 TemplateArgs);
1191 if (!Temp) return 0;
1192
1193 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1194 }
1195
1196 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1197 &ExplicitArgs,
1198 Previous))
1199 Function->setInvalidDecl();
1200
1201 isExplicitSpecialization = true;
1202
1203 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001204 // Look only into the namespace where the friend would be declared to
1205 // find a previous declaration. This is the innermost enclosing namespace,
1206 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001207 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001208
Douglas Gregora735b202009-10-13 14:39:41 +00001209 // In C++, the previous declaration we find might be a tag type
1210 // (class or enum). In this case, the new declaration will hide the
1211 // tag type. Note that this does does not apply if we're declaring a
1212 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001213 if (Previous.isSingleTagDecl())
1214 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001215 }
1216
John McCall9f54ad42009-12-10 09:41:52 +00001217 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Peter Collingbournec80e8112011-01-21 02:08:54 +00001218 isExplicitSpecialization, Redeclaration);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001219
John McCall76d32642010-04-24 01:30:58 +00001220 NamedDecl *PrincipalDecl = (TemplateParams
1221 ? cast<NamedDecl>(FunctionTemplate)
1222 : Function);
1223
Douglas Gregora735b202009-10-13 14:39:41 +00001224 // If the original function was part of a friend declaration,
1225 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001226 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001227 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001228 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001229 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001230 else
Douglas Gregora735b202009-10-13 14:39:41 +00001231 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001232
1233 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1234 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001235
Gabor Greif77535df2010-08-30 22:25:56 +00001236 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001237
Douglas Gregor238058c2010-05-18 05:45:02 +00001238 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1239 D->isThisDeclarationADefinition()) {
1240 // Check for a function body.
1241 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001242 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001243 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1244 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1245 << Function->getDeclName();
1246 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1247 Function->setInvalidDecl();
1248 }
1249 // Check for redefinitions due to other instantiations of this or
1250 // a similar friend function.
1251 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1252 REnd = Function->redecls_end();
1253 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001254 if (*R == Function)
1255 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001256 switch (R->getFriendObjectKind()) {
1257 case Decl::FOK_None:
1258 if (!queuedInstantiation && R->isUsed(false)) {
1259 if (MemberSpecializationInfo *MSInfo
1260 = Function->getMemberSpecializationInfo()) {
1261 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1262 SourceLocation Loc = R->getLocation(); // FIXME
1263 MSInfo->setPointOfInstantiation(Loc);
1264 SemaRef.PendingLocalImplicitInstantiations.push_back(
1265 std::make_pair(Function, Loc));
1266 queuedInstantiation = true;
1267 }
1268 }
1269 }
1270 break;
1271 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001272 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001273 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001274 if (RPattern->isDefined(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001275 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1276 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001277 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001278 Function->setInvalidDecl();
1279 break;
1280 }
1281 }
1282 }
1283 }
Douglas Gregora735b202009-10-13 14:39:41 +00001284 }
1285
John McCall76d32642010-04-24 01:30:58 +00001286 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1287 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1288 PrincipalDecl->setNonMemberOperator();
1289
Sean Hunteb88ae52011-05-23 21:07:59 +00001290 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001291 return Function;
1292}
1293
Douglas Gregord60e1052009-08-27 16:57:43 +00001294Decl *
1295TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001296 TemplateParameterList *TemplateParams,
1297 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001298 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1299 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001300 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001301 // We are creating a function template specialization from a function
1302 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001303 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001304 std::pair<const TemplateArgument *, unsigned> Innermost
1305 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001307 FunctionDecl *SpecFunc
1308 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1309 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Douglas Gregor6b906862009-08-21 00:16:32 +00001311 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001312 if (SpecFunc)
1313 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001314 }
1315
John McCallb0cb0222010-03-27 05:57:59 +00001316 bool isFriend;
1317 if (FunctionTemplate)
1318 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1319 else
1320 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1321
Douglas Gregor79c22782010-01-16 20:21:20 +00001322 bool MergeWithParentScope = (TemplateParams != 0) ||
1323 !(isa<Decl>(Owner) &&
1324 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001325 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001326
John McCall4eab39f2010-10-19 02:26:41 +00001327 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001328 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001329 unsigned NumTempParamLists = 0;
1330 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1331 TempParamLists.set_size(NumTempParamLists);
1332 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1333 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1334 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1335 if (!InstParams)
1336 return NULL;
1337 TempParamLists[I] = InstParams;
1338 }
1339 }
1340
Chris Lattner5f9e2722011-07-23 10:55:15 +00001341 SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001342 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1343 TInfo = SubstFunctionType(D, Params);
1344 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001345 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001346 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001347
Abramo Bagnara723df242010-12-14 22:11:44 +00001348 // \brief If the type of this function, after ignoring parentheses,
1349 // is not *directly* a function type, then we're instantiating a function
1350 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001351 //
1352 // typedef int functype(int, int);
1353 // functype func;
1354 //
1355 // In this case, we'll just go instantiate the ParmVarDecls that we
1356 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001357 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001358 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001359 SmallVector<QualType, 4> ParamTypes;
Douglas Gregor12c9c002011-01-07 16:43:16 +00001360 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1361 D->getNumParams(), TemplateArgs, ParamTypes,
1362 &Params))
1363 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001364 }
1365
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001366 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1367 if (QualifierLoc) {
1368 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001369 TemplateArgs);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001370 if (!QualifierLoc)
1371 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001372 }
1373
1374 DeclContext *DC = Owner;
1375 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001376 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001377 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001378 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001379 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001380
1381 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1382 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001383 } else {
1384 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1385 D->getDeclContext(),
1386 TemplateArgs);
1387 }
1388 if (!DC) return 0;
1389 }
1390
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001391 bool isConstexpr = D->isConstexpr();
1392 // FIXME: check whether the instantiation produces a constexpr function.
1393
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001394 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001395 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001396 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001397
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001398 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001399 DeclarationNameInfo NameInfo
1400 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001401 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001402 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001403 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001404 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001405 Constructor->isInlineSpecified(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001406 false, isConstexpr);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001407 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001408 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001409 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001410 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001411 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001412 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001413 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001414 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001415 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001416 Conversion->isExplicit(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001417 isConstexpr, Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001418 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001419 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001420 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001421 D->isStatic(),
1422 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001423 D->isInlineSpecified(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001424 isConstexpr, D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001425 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001426
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001427 if (QualifierLoc)
1428 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001429
Douglas Gregord60e1052009-08-27 16:57:43 +00001430 if (TemplateParams) {
1431 // Our resulting instantiation is actually a function template, since we
1432 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001433 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001434 // template<typename T>
1435 // struct X {
1436 // template<typename U> void f(T, U);
1437 // };
1438 //
1439 // X<int> x;
1440 //
1441 // We are instantiating the member template "f" within X<int>, which means
1442 // substituting int for T, but leaving "f" as a member function template.
1443 // Build the function template itself.
1444 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1445 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001446 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001447 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001448 if (isFriend) {
1449 FunctionTemplate->setLexicalDeclContext(Owner);
1450 FunctionTemplate->setObjectOfFriendDecl(true);
1451 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001452 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001453 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001454 } else if (FunctionTemplate) {
1455 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001456 std::pair<const TemplateArgument *, unsigned> Innermost
1457 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001458 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001459 TemplateArgumentList::CreateCopy(SemaRef.Context,
1460 Innermost.first,
1461 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001462 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001463 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001464 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001465 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001466 }
1467
Mike Stump1eb44332009-09-09 15:08:12 +00001468 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001469 // out-of-line, the instantiation will have the same lexical
1470 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001471 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001472 if (NumTempParamLists)
1473 Method->setTemplateParameterListsInfo(SemaRef.Context,
1474 NumTempParamLists,
1475 TempParamLists.data());
1476
John McCallb0cb0222010-03-27 05:57:59 +00001477 Method->setLexicalDeclContext(Owner);
1478 Method->setObjectOfFriendDecl(true);
1479 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001480 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001481
Douglas Gregor5545e162009-03-24 00:38:23 +00001482 // Attach the parameters
1483 for (unsigned P = 0; P < Params.size(); ++P)
1484 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001485 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001486
1487 if (InitMethodInstantiation(Method, D))
1488 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001489
Abramo Bagnara25777432010-08-11 22:01:17 +00001490 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1491 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001492
John McCallb0cb0222010-03-27 05:57:59 +00001493 if (!FunctionTemplate || TemplateParams || isFriend) {
1494 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001495
Douglas Gregordec06662009-08-21 18:42:58 +00001496 // In C++, the previous declaration we find might be a tag type
1497 // (class or enum). In this case, the new declaration will hide the
1498 // tag type. Note that this does does not apply if we're declaring a
1499 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001500 if (Previous.isSingleTagDecl())
1501 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001502 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001503
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001504 bool Redeclaration = false;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001505 if (!IsClassScopeSpecialization)
1506 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001507
Douglas Gregor4ba31362009-12-01 17:24:26 +00001508 if (D->isPure())
1509 SemaRef.CheckPureMethod(Method, SourceRange());
1510
John McCall46460a62010-01-20 21:53:11 +00001511 Method->setAccess(D->getAccess());
1512
Anders Carlsson9eefa222011-01-20 06:52:44 +00001513 SemaRef.CheckOverrideControl(Method);
1514
John McCallb0cb0222010-03-27 05:57:59 +00001515 if (FunctionTemplate) {
1516 // If there's a function template, let our caller handle it.
1517 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1518 // Don't hide a (potentially) valid declaration with an invalid one.
1519 } else {
1520 NamedDecl *DeclToAdd = (TemplateParams
1521 ? cast<NamedDecl>(FunctionTemplate)
1522 : Method);
1523 if (isFriend)
1524 Record->makeDeclVisibleInContext(DeclToAdd);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001525 else if (!IsClassScopeSpecialization)
John McCallb0cb0222010-03-27 05:57:59 +00001526 Owner->addDecl(DeclToAdd);
1527 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001528
1529 if (D->isExplicitlyDefaulted()) {
1530 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
1531 } else {
1532 assert(!D->isDefaulted() &&
1533 "should not implicitly default uninstantiated function");
1534 }
1535
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001536 return Method;
1537}
1538
Douglas Gregor615c5d42009-03-24 16:43:20 +00001539Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001540 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001541}
1542
Douglas Gregor03b2b072009-03-24 00:15:49 +00001543Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001544 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001545}
1546
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001547Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001548 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001549}
1550
Douglas Gregor6477b692009-03-25 15:04:13 +00001551ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001552 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
1553 llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001554}
1555
John McCalle29ba202009-08-20 01:44:21 +00001556Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1557 TemplateTypeParmDecl *D) {
1558 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001559 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001560
John McCalle29ba202009-08-20 01:44:21 +00001561 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001562 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1563 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001564 D->getDepth() - TemplateArgs.getNumLevels(),
1565 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001566 D->wasDeclaredWithTypename(),
1567 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001568 Inst->setAccess(AS_public);
1569
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001570 if (D->hasDefaultArgument())
1571 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001572
Douglas Gregor550d9b22009-10-31 17:21:17 +00001573 // Introduce this template parameter's instantiation into the instantiation
1574 // scope.
1575 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1576
John McCalle29ba202009-08-20 01:44:21 +00001577 return Inst;
1578}
1579
Douglas Gregor33642df2009-10-23 23:25:44 +00001580Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1581 NonTypeTemplateParmDecl *D) {
1582 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001583 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001584 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1585 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001586 bool IsExpandedParameterPack = false;
1587 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001588 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001589 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001590
1591 if (D->isExpandedParameterPack()) {
1592 // The non-type template parameter pack is an already-expanded pack
1593 // expansion of types. Substitute into each of the expanded types.
1594 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1595 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1596 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1597 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1598 TemplateArgs,
1599 D->getLocation(),
1600 D->getDeclName());
1601 if (!NewDI)
1602 return 0;
1603
1604 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1605 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1606 D->getLocation());
1607 if (NewT.isNull())
1608 return 0;
1609 ExpandedParameterPackTypes.push_back(NewT);
1610 }
1611
1612 IsExpandedParameterPack = true;
1613 DI = D->getTypeSourceInfo();
1614 T = DI->getType();
1615 } else if (isa<PackExpansionTypeLoc>(TL)) {
1616 // The non-type template parameter pack's type is a pack expansion of types.
1617 // Determine whether we need to expand this parameter pack into separate
1618 // types.
1619 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1620 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001621 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001622 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1623
1624 // Determine whether the set of unexpanded parameter packs can and should
1625 // be expanded.
1626 bool Expand = true;
1627 bool RetainExpansion = false;
1628 llvm::Optional<unsigned> OrigNumExpansions
1629 = Expansion.getTypePtr()->getNumExpansions();
1630 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1631 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1632 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001633 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001634 TemplateArgs,
1635 Expand, RetainExpansion,
1636 NumExpansions))
1637 return 0;
1638
1639 if (Expand) {
1640 for (unsigned I = 0; I != *NumExpansions; ++I) {
1641 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1642 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1643 D->getLocation(),
1644 D->getDeclName());
1645 if (!NewDI)
1646 return 0;
1647
1648 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1649 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1650 NewDI->getType(),
1651 D->getLocation());
1652 if (NewT.isNull())
1653 return 0;
1654 ExpandedParameterPackTypes.push_back(NewT);
1655 }
1656
1657 // Note that we have an expanded parameter pack. The "type" of this
1658 // expanded parameter pack is the original expansion type, but callers
1659 // will end up using the expanded parameter pack types for type-checking.
1660 IsExpandedParameterPack = true;
1661 DI = D->getTypeSourceInfo();
1662 T = DI->getType();
1663 } else {
1664 // We cannot fully expand the pack expansion now, so substitute into the
1665 // pattern and create a new pack expansion type.
1666 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1667 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1668 D->getLocation(),
1669 D->getDeclName());
1670 if (!NewPattern)
1671 return 0;
1672
1673 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1674 NumExpansions);
1675 if (!DI)
1676 return 0;
1677
1678 T = DI->getType();
1679 }
1680 } else {
1681 // Simple case: substitution into a parameter that is not a parameter pack.
1682 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1683 D->getLocation(), D->getDeclName());
1684 if (!DI)
1685 return 0;
1686
1687 // Check that this type is acceptable for a non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001688 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1689 D->getLocation());
1690 if (T.isNull()) {
1691 T = SemaRef.Context.IntTy;
1692 Invalid = true;
1693 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001694 }
1695
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001696 NonTypeTemplateParmDecl *Param;
1697 if (IsExpandedParameterPack)
1698 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001699 D->getInnerLocStart(),
1700 D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001701 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001702 D->getPosition(),
1703 D->getIdentifier(), T,
1704 DI,
1705 ExpandedParameterPackTypes.data(),
1706 ExpandedParameterPackTypes.size(),
1707 ExpandedParameterPackTypesAsWritten.data());
1708 else
1709 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001710 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001711 D->getLocation(),
1712 D->getDepth() - TemplateArgs.getNumLevels(),
1713 D->getPosition(),
1714 D->getIdentifier(), T,
1715 D->isParameterPack(), DI);
1716
Douglas Gregor9a299e02011-03-04 17:52:15 +00001717 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001718 if (Invalid)
1719 Param->setInvalidDecl();
1720
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001721 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001722
1723 // Introduce this template parameter's instantiation into the instantiation
1724 // scope.
1725 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001726 return Param;
1727}
1728
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001729Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001730TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1731 TemplateTemplateParmDecl *D) {
1732 // Instantiate the template parameter list of the template template parameter.
1733 TemplateParameterList *TempParams = D->getTemplateParameters();
1734 TemplateParameterList *InstParams;
1735 {
1736 // Perform the actual substitution of template parameters within a new,
1737 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001738 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001739 InstParams = SubstTemplateParams(TempParams);
1740 if (!InstParams)
1741 return NULL;
1742 }
1743
1744 // Build the template template parameter.
1745 TemplateTemplateParmDecl *Param
1746 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001747 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001748 D->getPosition(), D->isParameterPack(),
1749 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001750 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001751 Param->setAccess(AS_public);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001752
Douglas Gregor9106ef72009-11-11 16:58:32 +00001753 // Introduce this template parameter's instantiation into the instantiation
1754 // scope.
1755 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1756
1757 return Param;
1758}
1759
Douglas Gregor48c32a72009-11-17 06:07:40 +00001760Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001761 // Using directives are never dependent (and never contain any types or
1762 // expressions), so they require no explicit instantiation work.
Douglas Gregor48c32a72009-11-17 06:07:40 +00001763
1764 UsingDirectiveDecl *Inst
1765 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1766 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001767 D->getQualifierLoc(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001768 D->getIdentLocation(),
1769 D->getNominatedNamespace(),
1770 D->getCommonAncestor());
1771 Owner->addDecl(Inst);
1772 return Inst;
1773}
1774
John McCalled976492009-12-04 22:46:56 +00001775Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001776
1777 // The nested name specifier may be dependent, for example
1778 // template <typename T> struct t {
1779 // struct s1 { T f1(); };
1780 // struct s2 : s1 { using s1::f1; };
1781 // };
1782 // template struct t<int>;
1783 // Here, in using s1::f1, s1 refers to t<T>::s1;
1784 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001785 NestedNameSpecifierLoc QualifierLoc
1786 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1787 TemplateArgs);
1788 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001789 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001790
1791 // The name info is non-dependent, so no transformation
1792 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001793 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001794
John McCall9f54ad42009-12-10 09:41:52 +00001795 // We only need to do redeclaration lookups if we're in a class
1796 // scope (in fact, it's not really even possible in non-class
1797 // scopes).
1798 bool CheckRedeclaration = Owner->isRecord();
1799
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001800 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1801 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001802
John McCalled976492009-12-04 22:46:56 +00001803 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001804 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001805 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001806 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001807 D->isTypeName());
1808
Douglas Gregor5149f372011-02-25 15:54:31 +00001809 CXXScopeSpec SS;
1810 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001811 if (CheckRedeclaration) {
1812 Prev.setHideTags(false);
1813 SemaRef.LookupQualifiedName(Prev, Owner);
1814
1815 // Check for invalid redeclarations.
1816 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1817 D->isTypeName(), SS,
1818 D->getLocation(), Prev))
1819 NewUD->setInvalidDecl();
1820
1821 }
1822
1823 if (!NewUD->isInvalidDecl() &&
1824 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001825 D->getLocation()))
1826 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001827
John McCalled976492009-12-04 22:46:56 +00001828 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1829 NewUD->setAccess(D->getAccess());
1830 Owner->addDecl(NewUD);
1831
John McCall9f54ad42009-12-10 09:41:52 +00001832 // Don't process the shadow decls for an invalid decl.
1833 if (NewUD->isInvalidDecl())
1834 return NewUD;
1835
John McCall323c3102009-12-22 22:26:37 +00001836 bool isFunctionScope = Owner->isFunctionOrMethod();
1837
John McCall9f54ad42009-12-10 09:41:52 +00001838 // Process the shadow decls.
1839 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1840 I != E; ++I) {
1841 UsingShadowDecl *Shadow = *I;
1842 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001843 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1844 Shadow->getLocation(),
1845 Shadow->getTargetDecl(),
1846 TemplateArgs));
1847 if (!InstTarget)
1848 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001849
1850 if (CheckRedeclaration &&
1851 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1852 continue;
1853
1854 UsingShadowDecl *InstShadow
1855 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1856 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001857
1858 if (isFunctionScope)
1859 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001860 }
John McCalled976492009-12-04 22:46:56 +00001861
1862 return NewUD;
1863}
1864
1865Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001866 // Ignore these; we handle them in bulk when processing the UsingDecl.
1867 return 0;
John McCalled976492009-12-04 22:46:56 +00001868}
1869
John McCall7ba107a2009-11-18 02:36:19 +00001870Decl * TemplateDeclInstantiator
1871 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001872 NestedNameSpecifierLoc QualifierLoc
1873 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1874 TemplateArgs);
1875 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001876 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001878 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001879 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001880
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001881 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1882 // Hence, no tranformation is required for it.
1883 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001884 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001885 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001886 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001887 /*instantiation*/ true,
1888 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001889 if (UD)
John McCalled976492009-12-04 22:46:56 +00001890 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1891
John McCall7ba107a2009-11-18 02:36:19 +00001892 return UD;
1893}
1894
1895Decl * TemplateDeclInstantiator
1896 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001897 NestedNameSpecifierLoc QualifierLoc
1898 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1899 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001900 return 0;
Douglas Gregor5149f372011-02-25 15:54:31 +00001901
John McCall7ba107a2009-11-18 02:36:19 +00001902 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001903 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001904
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001905 DeclarationNameInfo NameInfo
1906 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1907
John McCall7ba107a2009-11-18 02:36:19 +00001908 NamedDecl *UD =
1909 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001910 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001911 /*instantiation*/ true,
1912 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001913 if (UD)
John McCalled976492009-12-04 22:46:56 +00001914 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1915
Anders Carlsson0d8df782009-08-29 19:37:28 +00001916 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001917}
1918
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001919
1920Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
1921 ClassScopeFunctionSpecializationDecl *Decl) {
1922 CXXMethodDecl *OldFD = Decl->getSpecialization();
1923 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, 0, true));
1924
1925 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
1926 Sema::ForRedeclaration);
1927
1928 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
1929 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, 0, Previous)) {
1930 NewFD->setInvalidDecl();
1931 return NewFD;
1932 }
1933
1934 // Associate the specialization with the pattern.
1935 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
1936 assert(Specialization && "Class scope Specialization is null");
1937 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
1938
1939 return NewFD;
1940}
1941
John McCallce3ff2b2009-08-25 22:02:44 +00001942Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001943 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001944 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001945 if (D->isInvalidDecl())
1946 return 0;
1947
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001948 return Instantiator.Visit(D);
1949}
1950
John McCalle29ba202009-08-20 01:44:21 +00001951/// \brief Instantiates a nested template parameter list in the current
1952/// instantiation context.
1953///
1954/// \param L The parameter list to instantiate
1955///
1956/// \returns NULL if there was an error
1957TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001958TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001959 // Get errors for all the parameters before bailing out.
1960 bool Invalid = false;
1961
1962 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001963 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001964 ParamVector Params;
1965 Params.reserve(N);
1966 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1967 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001968 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001969 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001970 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001971 }
1972
1973 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001974 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001975 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001976
1977 TemplateParameterList *InstL
1978 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1979 L->getLAngleLoc(), &Params.front(), N,
1980 L->getRAngleLoc());
1981 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001982}
John McCalle29ba202009-08-20 01:44:21 +00001983
Douglas Gregored9c0f92009-10-29 00:04:11 +00001984/// \brief Instantiate the declaration of a class template partial
1985/// specialization.
1986///
1987/// \param ClassTemplate the (instantiated) class template that is partially
1988// specialized by the instantiation of \p PartialSpec.
1989///
1990/// \param PartialSpec the (uninstantiated) class template partial
1991/// specialization that we are instantiating.
1992///
Douglas Gregord65587f2010-11-10 19:44:59 +00001993/// \returns The instantiated partial specialization, if successful; otherwise,
1994/// NULL to indicate an error.
1995ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001996TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1997 ClassTemplateDecl *ClassTemplate,
1998 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001999 // Create a local instantiation scope for this class template partial
2000 // specialization, which will contain the instantiations of the template
2001 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002002 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00002003
Douglas Gregored9c0f92009-10-29 00:04:11 +00002004 // Substitute into the template parameters of the class template partial
2005 // specialization.
2006 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2007 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2008 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002009 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002010
2011 // Substitute into the template arguments of the class template partial
2012 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002013 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
Douglas Gregore02e2622010-12-22 21:19:48 +00002014 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2015 PartialSpec->getNumTemplateArgsAsWritten(),
2016 InstTemplateArgs, TemplateArgs))
2017 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002018
Douglas Gregored9c0f92009-10-29 00:04:11 +00002019 // Check that the template argument list is well-formed for this
2020 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002021 SmallVector<TemplateArgument, 4> Converted;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002022 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
2023 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002024 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002025 false,
2026 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002027 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002028
2029 // Figure out where to insert this class template partial specialization
2030 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002031 void *InsertPos = 0;
2032 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002033 = ClassTemplate->findPartialSpecialization(Converted.data(),
2034 Converted.size(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00002035
2036 // Build the canonical type that describes the converted template
2037 // arguments of the class template partial specialization.
2038 QualType CanonType
2039 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002040 Converted.data(),
2041 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042
2043 // Build the fully-sugared type for this class template
2044 // specialization as the user wrote in the specialization
2045 // itself. This means that we'll pretty-print the type retrieved
2046 // from the specialization's declaration the way that the user
2047 // actually wrote the specialization, rather than formatting the
2048 // name based on the "canonical" representation used to store the
2049 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002050 TypeSourceInfo *WrittenTy
2051 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2052 TemplateName(ClassTemplate),
2053 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002054 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002055 CanonType);
2056
2057 if (PrevDecl) {
2058 // We've already seen a partial specialization with the same template
2059 // parameters and template arguments. This can happen, for example, when
2060 // substituting the outer template arguments ends up causing two
2061 // class template partial specializations of a member class template
2062 // to have identical forms, e.g.,
2063 //
2064 // template<typename T, typename U>
2065 // struct Outer {
2066 // template<typename X, typename Y> struct Inner;
2067 // template<typename Y> struct Inner<T, Y>;
2068 // template<typename Y> struct Inner<U, Y>;
2069 // };
2070 //
2071 // Outer<int, int> outer; // error: the partial specializations of Inner
2072 // // have the same signature.
2073 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002074 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002075 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2076 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002077 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002078 }
2079
2080
2081 // Create the class template partial specialization declaration.
2082 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00002083 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
2084 PartialSpec->getTagKind(),
2085 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002086 PartialSpec->getLocStart(),
2087 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002088 InstParams,
2089 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002090 Converted.data(),
2091 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002092 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002093 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002094 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002095 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002096 // Substitute the nested name specifier, if any.
2097 if (SubstQualifier(PartialSpec, InstPartialSpec))
2098 return 0;
2099
Douglas Gregored9c0f92009-10-29 00:04:11 +00002100 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002101 InstPartialSpec->setTypeAsWritten(WrittenTy);
2102
Douglas Gregored9c0f92009-10-29 00:04:11 +00002103 // Add this partial specialization to the set of class template partial
2104 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002105 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00002106 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002107}
2108
John McCall21ef0fa2010-03-11 09:03:00 +00002109TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002110TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002111 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002112 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2113 assert(OldTInfo && "substituting function without type source info");
2114 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00002115 TypeSourceInfo *NewTInfo
2116 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2117 D->getTypeSpecStartLoc(),
2118 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00002119 if (!NewTInfo)
2120 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002121
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002122 if (NewTInfo != OldTInfo) {
2123 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002124 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002125 if (FunctionProtoTypeLoc *OldProtoLoc
2126 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002127 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002128 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2129 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002130 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2131 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2132 OldIdx != NumOldParams; ++OldIdx) {
2133 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2134 if (!OldParam->isParameterPack() ||
2135 (NewIdx < NumNewParams &&
2136 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2137 // Simple case: normal parameter, or a parameter pack that's
2138 // instantiated to a (still-dependent) parameter pack.
2139 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2140 Params.push_back(NewParam);
2141 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2142 NewParam);
2143 continue;
2144 }
2145
2146 // Parameter pack: make the instantiation an argument pack.
2147 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2148 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002149 unsigned NumArgumentsInExpansion
2150 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2151 TemplateArgs);
2152 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002153 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2154 Params.push_back(NewParam);
2155 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2156 NewParam);
2157 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002158 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002159 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002160 } else {
2161 // The function type itself was not dependent and therefore no
2162 // substitution occurred. However, we still need to instantiate
2163 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002164 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002165 if (FunctionProtoTypeLoc *OldProtoLoc
2166 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2167 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2168 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2169 if (!Parm)
2170 return 0;
2171 Params.push_back(Parm);
2172 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002173 }
2174 }
John McCall21ef0fa2010-03-11 09:03:00 +00002175 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002176}
2177
Mike Stump1eb44332009-09-09 15:08:12 +00002178/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002179/// declaration (New) from the corresponding fields of its template (Tmpl).
2180///
2181/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002182bool
2183TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002184 FunctionDecl *Tmpl) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002185 if (Tmpl->isDeletedAsWritten())
2186 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002187
Douglas Gregorcca9e962009-07-01 22:01:06 +00002188 // If we are performing substituting explicitly-specified template arguments
2189 // or deduced template arguments into a function template and we reach this
2190 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002191 // to keeping the new function template specialization. We therefore
2192 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002193 // into a template instantiation for this specific function template
2194 // specialization, which is not a SFINAE context, so that we diagnose any
2195 // further errors in the declaration itself.
2196 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2197 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2198 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2199 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002200 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002201 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002202 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002203 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002204 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002205 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2206 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002207 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002208 }
2209 }
Mike Stump1eb44332009-09-09 15:08:12 +00002210
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002211 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2212 assert(Proto && "Function template without prototype?");
2213
Sebastian Redl60618fa2011-03-12 11:50:43 +00002214 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002215 // The function has an exception specification or a "noreturn"
2216 // attribute. Substitute into each of the exception types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002217 SmallVector<QualType, 4> Exceptions;
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002218 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2219 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002220 if (const PackExpansionType *PackExpansion
2221 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2222 // We have a pack expansion. Instantiate it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002223 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorb99268b2010-12-21 00:52:54 +00002224 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2225 Unexpanded);
2226 assert(!Unexpanded.empty() &&
2227 "Pack expansion without parameter packs?");
Sebastian Redl60618fa2011-03-12 11:50:43 +00002228
Douglas Gregorb99268b2010-12-21 00:52:54 +00002229 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002230 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002231 llvm::Optional<unsigned> NumExpansions
2232 = PackExpansion->getNumExpansions();
Douglas Gregorb99268b2010-12-21 00:52:54 +00002233 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2234 SourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002235 Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +00002236 TemplateArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002237 Expand,
2238 RetainExpansion,
2239 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002240 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002241
Douglas Gregorb99268b2010-12-21 00:52:54 +00002242 if (!Expand) {
2243 // We can't expand this pack expansion into separate arguments yet;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002244 // just substitute into the pattern and create a new pack expansion
2245 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002246 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2247 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2248 TemplateArgs,
2249 New->getLocation(), New->getDeclName());
2250 if (T.isNull())
2251 break;
2252
Douglas Gregorcded4f62011-01-14 17:04:44 +00002253 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002254 Exceptions.push_back(T);
2255 continue;
2256 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002257
Douglas Gregorb99268b2010-12-21 00:52:54 +00002258 // Substitute into the pack expansion pattern for each template
2259 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002260 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002261 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2262
2263 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2264 TemplateArgs,
2265 New->getLocation(), New->getDeclName());
2266 if (T.isNull()) {
2267 Invalid = true;
2268 break;
2269 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002270
Douglas Gregorb99268b2010-12-21 00:52:54 +00002271 Exceptions.push_back(T);
2272 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00002273
Douglas Gregorb99268b2010-12-21 00:52:54 +00002274 if (Invalid)
2275 break;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002276
Douglas Gregorb99268b2010-12-21 00:52:54 +00002277 continue;
2278 }
2279
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002280 QualType T
2281 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2282 New->getLocation(), New->getDeclName());
2283 if (T.isNull() ||
2284 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2285 continue;
2286
2287 Exceptions.push_back(T);
2288 }
Sebastian Redl56fb9262011-03-14 18:51:50 +00002289 Expr *NoexceptExpr = 0;
2290 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
Douglas Gregor3617e192011-06-01 15:55:51 +00002291 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Sebastian Redl56fb9262011-03-14 18:51:50 +00002292 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2293 if (E.isUsable())
2294 NoexceptExpr = E.take();
2295 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002296
2297 // Rebuild the function type
2298
John McCalle23cf432010-12-14 08:05:40 +00002299 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl60618fa2011-03-12 11:50:43 +00002300 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00002301 EPI.NumExceptions = Exceptions.size();
2302 EPI.Exceptions = Exceptions.data();
Sebastian Redl56fb9262011-03-14 18:51:50 +00002303 EPI.NoexceptExpr = NoexceptExpr;
John McCalle23cf432010-12-14 08:05:40 +00002304 EPI.ExtInfo = Proto->getExtInfo();
2305
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002306 const FunctionProtoType *NewProto
2307 = New->getType()->getAs<FunctionProtoType>();
2308 assert(NewProto && "Template instantiation without function prototype?");
2309 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2310 NewProto->arg_type_begin(),
2311 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002312 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002313 }
2314
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002315 const FunctionDecl* Definition = Tmpl;
2316
2317 // Get the definition. Leaves the variable unchanged if undefined.
2318 Tmpl->isDefined(Definition);
2319
2320 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002321
Douglas Gregore53060f2009-06-25 22:08:12 +00002322 return false;
2323}
2324
Douglas Gregor5545e162009-03-24 00:38:23 +00002325/// \brief Initializes common fields of an instantiated method
2326/// declaration (New) from the corresponding fields of its template
2327/// (Tmpl).
2328///
2329/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002330bool
2331TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002332 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002333 if (InitFunctionInstantiation(New, Tmpl))
2334 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002335
Douglas Gregor5545e162009-03-24 00:38:23 +00002336 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002337 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002338 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002339
2340 // FIXME: attributes
2341 // FIXME: New needs a pointer to Tmpl
2342 return false;
2343}
Douglas Gregora58861f2009-05-13 20:28:22 +00002344
2345/// \brief Instantiate the definition of the given function from its
2346/// template.
2347///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002348/// \param PointOfInstantiation the point at which the instantiation was
2349/// required. Note that this is not precisely a "point of instantiation"
2350/// for the function, but it's close.
2351///
Douglas Gregora58861f2009-05-13 20:28:22 +00002352/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002353/// function template specialization or member function of a class template
2354/// specialization.
2355///
2356/// \param Recursive if true, recursively instantiates any functions that
2357/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002358///
2359/// \param DefinitionRequired if true, then we are performing an explicit
2360/// instantiation where the body of the function is required. Complain if
2361/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002362void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002363 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002364 bool Recursive,
2365 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002366 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002367 return;
2368
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002369 // Never instantiate an explicit specialization except if it is a class scope
2370 // explicit specialization.
2371 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2372 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002373 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002374
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002375 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002376 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002377 assert(PatternDecl && "instantiating a non-template");
2378
2379 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2380 assert(PatternDecl && "template definition is not a template");
2381 if (!Pattern) {
2382 // Try to find a defaulted definition
2383 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002384 }
Sean Huntf996e052011-05-27 20:00:14 +00002385 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002386
Francois Pichet8387e2a2011-04-22 22:18:13 +00002387 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002388 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002389 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002390 PendingInstantiations.push_back(
2391 std::make_pair(Function, PointOfInstantiation));
2392 return;
2393 }
2394
2395 // Call the LateTemplateParser callback if there a need to late parse
2396 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002397 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002398 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002399 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002400 Pattern = PatternDecl->getBody(PatternDecl);
2401 }
2402
Sean Huntf996e052011-05-27 20:00:14 +00002403 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002404 if (DefinitionRequired) {
2405 if (Function->getPrimaryTemplate())
2406 Diag(PointOfInstantiation,
2407 diag::err_explicit_instantiation_undefined_func_template)
2408 << Function->getPrimaryTemplate();
2409 else
2410 Diag(PointOfInstantiation,
2411 diag::err_explicit_instantiation_undefined_member)
2412 << 1 << Function->getDeclName() << Function->getDeclContext();
2413
2414 if (PatternDecl)
2415 Diag(PatternDecl->getLocation(),
2416 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002417 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002418 } else if (Function->getTemplateSpecializationKind()
2419 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002420 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002421 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002422 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002423
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002424 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002425 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002426
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002427 // C++0x [temp.explicit]p9:
2428 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002429 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002430 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002431 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002432 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002433 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002434 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002435
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002436 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2437 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002438 return;
2439
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002440 // If we're performing recursive template instantiation, create our own
2441 // queue of pending implicit instantiations that we will instantiate later,
2442 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002443 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002444 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002445 if (Recursive) {
2446 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002447 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002448 }
Mike Stump1eb44332009-09-09 15:08:12 +00002449
Douglas Gregor9679caf2010-05-12 17:27:19 +00002450 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002451 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002452 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002453
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002454 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002455 // recorded, unless we're actually a member function within a local
2456 // class, in which case we need to merge our results with the parent
2457 // scope (of the enclosing function).
2458 bool MergeWithParentScope = false;
2459 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2460 MergeWithParentScope = Rec->isLocalClass();
2461
2462 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002463
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002464 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002465 // instantiation scope, and set the parameter names to those used
2466 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002467 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002468 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2469 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002470 if (!PatternParam->isParameterPack()) {
2471 // Simple case: not a parameter pack.
2472 assert(FParamIdx < Function->getNumParams());
2473 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2474 FunctionParam->setDeclName(PatternParam->getDeclName());
2475 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2476 ++FParamIdx;
2477 continue;
2478 }
2479
2480 // Expand the parameter pack.
2481 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2482 for (unsigned NumFParams = Function->getNumParams();
2483 FParamIdx < NumFParams;
2484 ++FParamIdx) {
2485 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2486 FunctionParam->setDeclName(PatternParam->getDeclName());
2487 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2488 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002489 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002490
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002491 // Enter the scope of this instantiation. We don't use
2492 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002493 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002494
Mike Stump1eb44332009-09-09 15:08:12 +00002495 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002496 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002497
Sean Huntcd10dec2011-05-23 23:14:04 +00002498 if (PatternDecl->isDefaulted()) {
2499 ActOnFinishFunctionBody(Function, 0, /*IsInstantiation=*/true);
2500
2501 SetDeclDefaulted(Function, PatternDecl->getLocation());
Sean Huntcd10dec2011-05-23 23:14:04 +00002502 } else {
2503 // If this is a constructor, instantiate the member initializers.
2504 if (const CXXConstructorDecl *Ctor =
2505 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2506 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2507 TemplateArgs);
2508 }
2509
2510 // Instantiate the function body.
2511 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2512
2513 if (Body.isInvalid())
2514 Function->setInvalidDecl();
2515
2516 ActOnFinishFunctionBody(Function, Body.get(),
2517 /*IsInstantiation=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00002518 }
2519
John McCall0c01d182010-03-24 05:22:00 +00002520 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2521
John McCalleee1d542011-02-14 07:13:47 +00002522 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002523
2524 DeclGroupRef DG(Function);
2525 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002526
Douglas Gregor60406be2010-01-16 22:29:39 +00002527 // This class may have local implicit instantiations that need to be
2528 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002529 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002530 Scope.Exit();
2531
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002532 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002533 // Define any pending vtables.
2534 DefineUsedVTables();
2535
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002536 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002537 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002538 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002539
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002540 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002541 assert(VTableUses.empty() &&
2542 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002543 VTableUses.swap(SavedVTableUses);
2544
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002545 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002546 assert(PendingInstantiations.empty() &&
2547 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002548 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002549 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002550}
2551
2552/// \brief Instantiate the definition of the given variable from its
2553/// template.
2554///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002555/// \param PointOfInstantiation the point at which the instantiation was
2556/// required. Note that this is not precisely a "point of instantiation"
2557/// for the function, but it's close.
2558///
2559/// \param Var the already-instantiated declaration of a static member
2560/// variable of a class template specialization.
2561///
2562/// \param Recursive if true, recursively instantiates any functions that
2563/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002564///
2565/// \param DefinitionRequired if true, then we are performing an explicit
2566/// instantiation where an out-of-line definition of the member variable
2567/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002568void Sema::InstantiateStaticDataMemberDefinition(
2569 SourceLocation PointOfInstantiation,
2570 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002571 bool Recursive,
2572 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002573 if (Var->isInvalidDecl())
2574 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002575
Douglas Gregor7caa6822009-07-24 20:34:43 +00002576 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002577 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002578 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002579 assert(Def->isStaticDataMember() && "Not a static data member?");
2580 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002581
Douglas Gregor0d035142009-10-27 18:42:08 +00002582 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002583 // We did not find an out-of-line definition of this static data member,
2584 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002585 // instantiate this definition (or provide a specialization for it) in
2586 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002587 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002588 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002589 Diag(PointOfInstantiation,
2590 diag::err_explicit_instantiation_undefined_member)
2591 << 2 << Var->getDeclName() << Var->getDeclContext();
2592 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002593 } else if (Var->getTemplateSpecializationKind()
2594 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002595 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002596 std::make_pair(Var, PointOfInstantiation));
2597 }
2598
Douglas Gregor7caa6822009-07-24 20:34:43 +00002599 return;
2600 }
2601
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002602 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002603 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002604 return;
2605
2606 // C++0x [temp.explicit]p9:
2607 // Except for inline functions, other explicit instantiation declarations
2608 // have the effect of suppressing the implicit instantiation of the entity
2609 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002610 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002611 == TSK_ExplicitInstantiationDeclaration)
2612 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002613
Douglas Gregorf15748a2011-06-03 03:35:07 +00002614 // If we already have a definition, we're done.
2615 if (Var->getDefinition())
2616 return;
2617
Douglas Gregor7caa6822009-07-24 20:34:43 +00002618 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2619 if (Inst)
2620 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002621
Douglas Gregor7caa6822009-07-24 20:34:43 +00002622 // If we're performing recursive template instantiation, create our own
2623 // queue of pending implicit instantiations that we will instantiate later,
2624 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002625 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002626 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002627 if (Recursive) {
2628 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002629 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002630 }
Mike Stump1eb44332009-09-09 15:08:12 +00002631
Douglas Gregor7caa6822009-07-24 20:34:43 +00002632 // Enter the scope of this instantiation. We don't use
2633 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002634 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002635
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002636 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002637 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002638 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002639
2640 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002641
2642 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002643 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2644 assert(MSInfo && "Missing member specialization information?");
2645 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2646 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002647 DeclGroupRef DG(Var);
2648 Consumer.HandleTopLevelDecl(DG);
2649 }
Mike Stump1eb44332009-09-09 15:08:12 +00002650
Douglas Gregor7caa6822009-07-24 20:34:43 +00002651 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002652 // Define any newly required vtables.
2653 DefineUsedVTables();
2654
Douglas Gregor7caa6822009-07-24 20:34:43 +00002655 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002656 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002657 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002658
Nick Lewycky81559102011-05-31 07:58:42 +00002659 // Restore the set of pending vtables.
2660 assert(VTableUses.empty() &&
2661 "VTableUses should be empty before it is discarded, "
2662 "while instantiating static data member.");
2663 VTableUses.swap(SavedVTableUses);
2664
Douglas Gregor7caa6822009-07-24 20:34:43 +00002665 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002666 assert(PendingInstantiations.empty() &&
2667 "PendingInstantiations should be empty before it is discarded, "
2668 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002669 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002670 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002671}
Douglas Gregor815215d2009-05-27 05:35:12 +00002672
Sebastian Redl6df65482011-09-24 17:48:25 +00002673static MultiInitializer CreateMultiInitializer(
2674 const SmallVectorImpl<Expr*> &Args,
2675 const CXXCtorInitializer *Init) {
2676 // FIXME: This is a hack that will do slightly the wrong thing for an
2677 // initializer of the form foo({...}).
2678 // The right thing to do would be to modify InstantiateInitializer to create
2679 // the MultiInitializer.
2680 if (Args.size() == 1 && isa<InitListExpr>(Args[0]))
2681 return MultiInitializer(Args[0]);
2682 return MultiInitializer(Init->getLParenLoc(), (Expr **)Args.data(),
2683 Args.size(), Init->getRParenLoc());
2684}
2685
Anders Carlsson09025312009-08-29 05:16:22 +00002686void
2687Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2688 const CXXConstructorDecl *Tmpl,
2689 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002690
Richard Trieu90ab75b2011-09-09 03:18:59 +00002691 SmallVector<CXXCtorInitializer*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002692 bool AnyErrors = false;
2693
Anders Carlsson09025312009-08-29 05:16:22 +00002694 // Instantiate all the initializers.
2695 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002696 InitsEnd = Tmpl->init_end();
2697 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002698 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002699
Chandler Carruth030ef472010-09-03 21:54:20 +00002700 // Only instantiate written initializers, let Sema re-construct implicit
2701 // ones.
2702 if (!Init->isWritten())
2703 continue;
2704
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002705 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002706 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002707
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002708 SourceLocation EllipsisLoc;
2709
2710 if (Init->isPackExpansion()) {
2711 // This is a pack expansion. We should expand it now.
2712 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002713 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002714 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2715 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002716 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002717 llvm::Optional<unsigned> NumExpansions;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002718 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2719 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00002720 Unexpanded,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002721 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002722 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002723 NumExpansions)) {
2724 AnyErrors = true;
2725 New->setInvalidDecl();
2726 continue;
2727 }
2728 assert(ShouldExpand && "Partial instantiation of base initializer?");
2729
2730 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002731 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002732 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2733
2734 // Instantiate the initializer.
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002735 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002736 LParenLoc, NewArgs, RParenLoc)) {
2737 AnyErrors = true;
2738 break;
2739 }
2740
2741 // Instantiate the base type.
2742 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2743 TemplateArgs,
2744 Init->getSourceLocation(),
2745 New->getDeclName());
2746 if (!BaseTInfo) {
2747 AnyErrors = true;
2748 break;
2749 }
2750
2751 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00002752 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2753 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2754 BaseTInfo, MultiInit,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002755 New->getParent(),
2756 SourceLocation());
2757 if (NewInit.isInvalid()) {
2758 AnyErrors = true;
2759 break;
2760 }
2761
2762 NewInits.push_back(NewInit.get());
2763 NewArgs.clear();
2764 }
2765
2766 continue;
2767 }
2768
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002769 // Instantiate the initializer.
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002770 if (InstantiateInitializer(Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002771 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002772 AnyErrors = true;
2773 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002774 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002775
Anders Carlsson09025312009-08-29 05:16:22 +00002776 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002777 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002778 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002779 TemplateArgs,
2780 Init->getSourceLocation(),
2781 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002782 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002783 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002784 New->setInvalidDecl();
2785 continue;
2786 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002787
2788 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2789 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo, MultiInit,
2790 New->getParent(), EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002791 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002792 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002793 Init->getMemberLocation(),
2794 Init->getMember(),
2795 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002796 if (!Member) {
2797 AnyErrors = true;
2798 New->setInvalidDecl();
2799 continue;
2800 }
Mike Stump1eb44332009-09-09 15:08:12 +00002801
Sebastian Redl6df65482011-09-24 17:48:25 +00002802 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2803 NewInit = BuildMemberInitializer(Member, MultiInit,
2804 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002805 } else if (Init->isIndirectMemberInitializer()) {
2806 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002807 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002808 Init->getMemberLocation(),
2809 Init->getIndirectMember(), TemplateArgs));
2810
Douglas Gregorb7107222011-03-04 19:46:35 +00002811 if (!IndirectMember) {
2812 AnyErrors = true;
2813 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00002814 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00002815 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002816
2817 MultiInitializer MultiInit(CreateMultiInitializer(NewArgs, Init));
2818 NewInit = BuildMemberInitializer(IndirectMember, MultiInit,
2819 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00002820 }
2821
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002822 if (NewInit.isInvalid()) {
2823 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002824 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002825 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002826 // FIXME: It would be nice if ASTOwningVector had a release function.
2827 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002828
Richard Trieu90ab75b2011-09-09 03:18:59 +00002829 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00002830 }
2831 }
Mike Stump1eb44332009-09-09 15:08:12 +00002832
Anders Carlsson09025312009-08-29 05:16:22 +00002833 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002834 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002835 /*FIXME: ColonLoc */
2836 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002837 NewInits.data(), NewInits.size(),
2838 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002839}
2840
John McCall52a575a2009-08-29 08:11:13 +00002841// TODO: this could be templated if the various decl types used the
2842// same method name.
2843static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2844 ClassTemplateDecl *Instance) {
2845 Pattern = Pattern->getCanonicalDecl();
2846
2847 do {
2848 Instance = Instance->getCanonicalDecl();
2849 if (Pattern == Instance) return true;
2850 Instance = Instance->getInstantiatedFromMemberTemplate();
2851 } while (Instance);
2852
2853 return false;
2854}
2855
Douglas Gregor0d696532009-09-28 06:34:35 +00002856static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2857 FunctionTemplateDecl *Instance) {
2858 Pattern = Pattern->getCanonicalDecl();
2859
2860 do {
2861 Instance = Instance->getCanonicalDecl();
2862 if (Pattern == Instance) return true;
2863 Instance = Instance->getInstantiatedFromMemberTemplate();
2864 } while (Instance);
2865
2866 return false;
2867}
2868
Douglas Gregored9c0f92009-10-29 00:04:11 +00002869static bool
2870isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2871 ClassTemplatePartialSpecializationDecl *Instance) {
2872 Pattern
2873 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2874 do {
2875 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2876 Instance->getCanonicalDecl());
2877 if (Pattern == Instance)
2878 return true;
2879 Instance = Instance->getInstantiatedFromMember();
2880 } while (Instance);
2881
2882 return false;
2883}
2884
John McCall52a575a2009-08-29 08:11:13 +00002885static bool isInstantiationOf(CXXRecordDecl *Pattern,
2886 CXXRecordDecl *Instance) {
2887 Pattern = Pattern->getCanonicalDecl();
2888
2889 do {
2890 Instance = Instance->getCanonicalDecl();
2891 if (Pattern == Instance) return true;
2892 Instance = Instance->getInstantiatedFromMemberClass();
2893 } while (Instance);
2894
2895 return false;
2896}
2897
2898static bool isInstantiationOf(FunctionDecl *Pattern,
2899 FunctionDecl *Instance) {
2900 Pattern = Pattern->getCanonicalDecl();
2901
2902 do {
2903 Instance = Instance->getCanonicalDecl();
2904 if (Pattern == Instance) return true;
2905 Instance = Instance->getInstantiatedFromMemberFunction();
2906 } while (Instance);
2907
2908 return false;
2909}
2910
2911static bool isInstantiationOf(EnumDecl *Pattern,
2912 EnumDecl *Instance) {
2913 Pattern = Pattern->getCanonicalDecl();
2914
2915 do {
2916 Instance = Instance->getCanonicalDecl();
2917 if (Pattern == Instance) return true;
2918 Instance = Instance->getInstantiatedFromMemberEnum();
2919 } while (Instance);
2920
2921 return false;
2922}
2923
John McCalled976492009-12-04 22:46:56 +00002924static bool isInstantiationOf(UsingShadowDecl *Pattern,
2925 UsingShadowDecl *Instance,
2926 ASTContext &C) {
2927 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2928}
2929
2930static bool isInstantiationOf(UsingDecl *Pattern,
2931 UsingDecl *Instance,
2932 ASTContext &C) {
2933 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2934}
2935
John McCall7ba107a2009-11-18 02:36:19 +00002936static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2937 UsingDecl *Instance,
2938 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002939 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002940}
2941
2942static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002943 UsingDecl *Instance,
2944 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002945 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002946}
2947
John McCall52a575a2009-08-29 08:11:13 +00002948static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2949 VarDecl *Instance) {
2950 assert(Instance->isStaticDataMember());
2951
2952 Pattern = Pattern->getCanonicalDecl();
2953
2954 do {
2955 Instance = Instance->getCanonicalDecl();
2956 if (Pattern == Instance) return true;
2957 Instance = Instance->getInstantiatedFromStaticDataMember();
2958 } while (Instance);
2959
2960 return false;
2961}
2962
John McCalled976492009-12-04 22:46:56 +00002963// Other is the prospective instantiation
2964// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002965static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002966 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002967 if (UnresolvedUsingTypenameDecl *UUD
2968 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2969 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2970 return isInstantiationOf(UUD, UD, Ctx);
2971 }
2972 }
2973
2974 if (UnresolvedUsingValueDecl *UUD
2975 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002976 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2977 return isInstantiationOf(UUD, UD, Ctx);
2978 }
2979 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002980
Anders Carlsson0d8df782009-08-29 19:37:28 +00002981 return false;
2982 }
Mike Stump1eb44332009-09-09 15:08:12 +00002983
John McCall52a575a2009-08-29 08:11:13 +00002984 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2985 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002986
John McCall52a575a2009-08-29 08:11:13 +00002987 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2988 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002989
John McCall52a575a2009-08-29 08:11:13 +00002990 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2991 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002992
Douglas Gregor7caa6822009-07-24 20:34:43 +00002993 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002994 if (Var->isStaticDataMember())
2995 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2996
2997 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2998 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002999
Douglas Gregor0d696532009-09-28 06:34:35 +00003000 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3001 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3002
Douglas Gregored9c0f92009-10-29 00:04:11 +00003003 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3004 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3005 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3006 PartialSpec);
3007
Anders Carlssond8b285f2009-09-01 04:26:58 +00003008 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3009 if (!Field->getDeclName()) {
3010 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003011 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003012 cast<FieldDecl>(D);
3013 }
3014 }
Mike Stump1eb44332009-09-09 15:08:12 +00003015
John McCalled976492009-12-04 22:46:56 +00003016 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3017 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3018
3019 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3020 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3021
Douglas Gregor815215d2009-05-27 05:35:12 +00003022 return D->getDeclName() && isa<NamedDecl>(Other) &&
3023 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3024}
3025
3026template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003027static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003028 NamedDecl *D,
3029 ForwardIterator first,
3030 ForwardIterator last) {
3031 for (; first != last; ++first)
3032 if (isInstantiationOf(Ctx, D, *first))
3033 return cast<NamedDecl>(*first);
3034
3035 return 0;
3036}
3037
John McCall02cace72009-08-28 07:59:38 +00003038/// \brief Finds the instantiation of the given declaration context
3039/// within the current instantiation.
3040///
3041/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003042DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003043 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003044 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003045 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003046 return cast_or_null<DeclContext>(ID);
3047 } else return DC;
3048}
3049
Douglas Gregored961e72009-05-27 17:54:46 +00003050/// \brief Find the instantiation of the given declaration within the
3051/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003052///
3053/// This routine is intended to be used when \p D is a declaration
3054/// referenced from within a template, that needs to mapped into the
3055/// corresponding declaration within an instantiation. For example,
3056/// given:
3057///
3058/// \code
3059/// template<typename T>
3060/// struct X {
3061/// enum Kind {
3062/// KnownValue = sizeof(T)
3063/// };
3064///
3065/// bool getKind() const { return KnownValue; }
3066/// };
3067///
3068/// template struct X<int>;
3069/// \endcode
3070///
3071/// In the instantiation of X<int>::getKind(), we need to map the
3072/// EnumConstantDecl for KnownValue (which refers to
3073/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00003074/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
3075/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003076NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003077 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003078 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003079 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003080 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00003081 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003082 // D is a local of some kind. Look into the map of local
3083 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003084 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3085 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3086 = CurrentInstantiationScope->findInstantiationOf(D);
Chris Lattnerd8e54992011-02-17 19:47:42 +00003087
Chris Lattner57ad3782011-02-17 20:34:02 +00003088 if (Found) {
3089 if (Decl *FD = Found->dyn_cast<Decl *>())
3090 return cast<NamedDecl>(FD);
3091
3092 unsigned PackIdx = ArgumentPackSubstitutionIndex;
3093 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3094 }
3095
3096 // If we didn't find the decl, then we must have a label decl that hasn't
3097 // been found yet. Lazily instantiate it and return it now.
3098 assert(isa<LabelDecl>(D));
Chris Lattnerd8e54992011-02-17 19:47:42 +00003099
Chris Lattner57ad3782011-02-17 20:34:02 +00003100 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3101 assert(Inst && "Failed to instantiate label??");
3102
3103 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3104 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003105 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003106
Douglas Gregore95b4092009-09-16 18:34:49 +00003107 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3108 if (!Record->isDependentContext())
3109 return D;
3110
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003111 // If the RecordDecl is actually the injected-class-name or a
3112 // "templated" declaration for a class template, class template
3113 // partial specialization, or a member class of a class template,
3114 // substitute into the injected-class-name of the class template
3115 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00003116 QualType T;
3117 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
3118
3119 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00003120 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00003121 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3122 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00003123 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00003124
3125 // If we call SubstType with an InjectedClassNameType here we
3126 // can end up in an infinite loop.
3127 T = Context.getTypeDeclType(Record);
3128 assert(isa<InjectedClassNameType>(T) &&
3129 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00003130 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00003131 }
Douglas Gregore95b4092009-09-16 18:34:49 +00003132
3133 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003134 // Substitute into the injected-class-name to get the type
3135 // corresponding to the instantiation we want, which may also be
3136 // the current instantiation (if we're in a template
3137 // definition). This substitution should never fail, since we
3138 // know we can instantiate the injected-class-name or we
3139 // wouldn't have gotten to the injected-class-name!
3140
3141 // FIXME: Can we use the CurrentInstantiationScope to avoid this
3142 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00003143 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00003144 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
3145
3146 if (!T->isDependentType()) {
3147 assert(T->isRecordType() && "Instantiation must produce a record type");
3148 return T->getAs<RecordType>()->getDecl();
3149 }
3150
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003151 // We are performing "partial" template instantiation to create
3152 // the member declarations for the members of a class template
3153 // specialization. Therefore, D is actually referring to something
3154 // in the current instantiation. Look through the current
3155 // context, which contains actual instantiations, to find the
3156 // instantiation of the "current instantiation" that D refers
3157 // to.
3158 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003159 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00003160 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003161 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003162 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00003163 if (isInstantiationOf(ClassTemplate,
3164 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00003165 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003166
3167 if (!DC->isDependentContext())
3168 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00003169 }
3170
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003171 // We're performing "instantiation" of a member of the current
3172 // instantiation while we are type-checking the
3173 // definition. Compute the declaration context and return that.
3174 assert(!SawNonDependentContext &&
3175 "No dependent context while instantiating record");
3176 DeclContext *DC = computeDeclContext(T);
3177 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00003178 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003179 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00003180 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003181
Douglas Gregore95b4092009-09-16 18:34:49 +00003182 // Fall through to deal with other dependent record types (e.g.,
3183 // anonymous unions in class templates).
3184 }
John McCall52a575a2009-08-29 08:11:13 +00003185
Douglas Gregore95b4092009-09-16 18:34:49 +00003186 if (!ParentDC->isDependentContext())
3187 return D;
3188
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003189 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003190 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003191 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003192
Douglas Gregor815215d2009-05-27 05:35:12 +00003193 if (ParentDC != D->getDeclContext()) {
3194 // We performed some kind of instantiation in the parent context,
3195 // so now we need to look into the instantiated parent context to
3196 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003197
John McCall3cb0ebd2010-03-10 03:28:59 +00003198 // If our context used to be dependent, we may need to instantiate
3199 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003200 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003201 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003202 if (!Spec->isDependentContext()) {
3203 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003204 const RecordType *Tag = T->getAs<RecordType>();
3205 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003206 if (Tag->isBeingDefined())
3207 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003208 if (!Tag->isBeingDefined() &&
3209 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3210 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003211
3212 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003213 }
3214 }
3215
Douglas Gregor815215d2009-05-27 05:35:12 +00003216 NamedDecl *Result = 0;
3217 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003218 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003219 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3220 } else {
3221 // Since we don't have a name for the entity we're looking for,
3222 // our only option is to walk through all of the declarations to
3223 // find that name. This will occur in a few cases:
3224 //
3225 // - anonymous struct/union within a template
3226 // - unnamed class/struct/union/enum within a template
3227 //
3228 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003229 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003230 ParentDC->decls_begin(),
3231 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003232 }
Mike Stump1eb44332009-09-09 15:08:12 +00003233
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003234 if (!Result) {
3235 if (isa<UsingShadowDecl>(D)) {
3236 // UsingShadowDecls can instantiate to nothing because of using hiding.
3237 } else if (Diags.hasErrorOccurred()) {
3238 // We've already complained about something, so most likely this
3239 // declaration failed to instantiate. There's no point in complaining
3240 // further, since this is normal in invalid code.
3241 } else if (IsBeingInstantiated) {
3242 // The class in which this member exists is currently being
3243 // instantiated, and we haven't gotten around to instantiating this
3244 // member yet. This can happen when the code uses forward declarations
3245 // of member classes, and introduces ordering dependencies via
3246 // template instantiation.
3247 Diag(Loc, diag::err_member_not_yet_instantiated)
3248 << D->getDeclName()
3249 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3250 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3251 } else {
3252 // We should have found something, but didn't.
3253 llvm_unreachable("Unable to find instantiation of declaration!");
3254 }
3255 }
3256
Douglas Gregor815215d2009-05-27 05:35:12 +00003257 D = Result;
3258 }
3259
Douglas Gregor815215d2009-05-27 05:35:12 +00003260 return D;
3261}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003262
Mike Stump1eb44332009-09-09 15:08:12 +00003263/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003264/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003265void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003266 // Load pending instantiations from the external source.
3267 if (!LocalOnly && ExternalSource) {
3268 SmallVector<std::pair<ValueDecl *, SourceLocation>, 4> Pending;
3269 ExternalSource->ReadPendingInstantiations(Pending);
3270 PendingInstantiations.insert(PendingInstantiations.begin(),
3271 Pending.begin(), Pending.end());
3272 }
3273
Douglas Gregor60406be2010-01-16 22:29:39 +00003274 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003275 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003276 PendingImplicitInstantiation Inst;
3277
3278 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003279 Inst = PendingInstantiations.front();
3280 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003281 } else {
3282 Inst = PendingLocalImplicitInstantiations.front();
3283 PendingLocalImplicitInstantiations.pop_front();
3284 }
Mike Stump1eb44332009-09-09 15:08:12 +00003285
Douglas Gregor7caa6822009-07-24 20:34:43 +00003286 // Instantiate function definitions
3287 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003288 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3289 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003290 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3291 TSK_ExplicitInstantiationDefinition;
3292 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3293 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003294 continue;
3295 }
Mike Stump1eb44332009-09-09 15:08:12 +00003296
Douglas Gregor7caa6822009-07-24 20:34:43 +00003297 // Instantiate static data member definitions.
3298 VarDecl *Var = cast<VarDecl>(Inst.first);
3299 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003300
Chandler Carruth291b4412010-02-13 10:17:50 +00003301 // Don't try to instantiate declarations if the most recent redeclaration
3302 // is invalid.
3303 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3304 continue;
3305
3306 // Check if the most recent declaration has changed the specialization kind
3307 // and removed the need for implicit instantiation.
3308 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3309 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003310 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003311 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003312 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003313 continue; // No longer need to instantiate this type.
3314 case TSK_ExplicitInstantiationDefinition:
3315 // We only need an instantiation if the pending instantiation *is* the
3316 // explicit instantiation.
3317 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003318 case TSK_ImplicitInstantiation:
3319 break;
3320 }
3321
John McCallf312b1e2010-08-26 23:41:50 +00003322 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3323 "instantiating static data member "
3324 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003325
Chandler Carruth58e390e2010-08-25 08:27:02 +00003326 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3327 TSK_ExplicitInstantiationDefinition;
3328 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3329 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003330 }
3331}
John McCall0c01d182010-03-24 05:22:00 +00003332
3333void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3334 const MultiLevelTemplateArgumentList &TemplateArgs) {
3335 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3336 E = Pattern->ddiag_end(); I != E; ++I) {
3337 DependentDiagnostic *DD = *I;
3338
3339 switch (DD->getKind()) {
3340 case DependentDiagnostic::Access:
3341 HandleDependentAccessCheck(*DD, TemplateArgs);
3342 break;
3343 }
3344 }
3345}