blob: 1d4f3359ed0c857959ac40c48bd64ee6895a400c [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,
62 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) {
99 assert(false && "Translation units cannot be instantiated");
100 return D;
101}
102
103Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000104TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
105 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
106 D->getIdentifier());
107 Owner->addDecl(Inst);
108 return Inst;
109}
110
111Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000112TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
113 assert(false && "Namespaces cannot be instantiated");
114 return D;
115}
116
John McCall3dbd3d52010-02-16 06:53:13 +0000117Decl *
118TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
119 NamespaceAliasDecl *Inst
120 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
121 D->getNamespaceLoc(),
122 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000123 D->getIdentifier(),
124 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000125 D->getTargetNameLoc(),
126 D->getNamespace());
127 Owner->addDecl(Inst);
128 return Inst;
129}
130
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000131Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
132 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000133 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor836adf62010-05-24 17:22:01 +0000134 if (DI->getType()->isDependentType() ||
135 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000136 DI = SemaRef.SubstType(DI, TemplateArgs,
137 D->getLocation(), D->getDeclName());
138 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000139 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000140 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000141 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000142 } else {
143 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000144 }
Mike Stump1eb44332009-09-09 15:08:12 +0000145
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000146 // Create the new typedef
147 TypedefDecl *Typedef
Abramo Bagnara344577e2011-03-06 15:48:19 +0000148 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
149 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000150 if (Invalid)
151 Typedef->setInvalidDecl();
152
John McCallcde5a402011-02-01 08:20:08 +0000153 // If the old typedef was the name for linkage purposes of an anonymous
154 // tag decl, re-establish that relationship for the new typedef.
155 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
156 TagDecl *oldTag = oldTagType->getDecl();
157 if (oldTag->getTypedefForAnonDecl() == D) {
158 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
159 assert(!newTag->getIdentifier() && !newTag->getTypedefForAnonDecl());
160 newTag->setTypedefForAnonDecl(Typedef);
161 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000162 }
163
John McCall5126fd02009-12-30 00:31:22 +0000164 if (TypedefDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000165 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
166 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000167 if (!InstPrev)
168 return 0;
169
John McCall5126fd02009-12-30 00:31:22 +0000170 Typedef->setPreviousDeclaration(cast<TypedefDecl>(InstPrev));
171 }
172
John McCall1d8d1cc2010-08-01 02:01:53 +0000173 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000174
John McCall46460a62010-01-20 21:53:11 +0000175 Typedef->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000176 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000178 return Typedef;
179}
180
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000181/// \brief Instantiate an initializer, breaking it into separate
182/// initialization arguments.
183///
184/// \param S The semantic analysis object.
185///
186/// \param Init The initializer to instantiate.
187///
188/// \param TemplateArgs Template arguments to be substituted into the
189/// initializer.
190///
191/// \param NewArgs Will be filled in with the instantiation arguments.
192///
193/// \returns true if an error occurred, false otherwise
194static bool InstantiateInitializer(Sema &S, Expr *Init,
195 const MultiLevelTemplateArgumentList &TemplateArgs,
196 SourceLocation &LParenLoc,
Nick Lewycky7663f392010-11-20 01:29:55 +0000197 ASTOwningVector<Expr*> &NewArgs,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000198 SourceLocation &RParenLoc) {
199 NewArgs.clear();
200 LParenLoc = SourceLocation();
201 RParenLoc = SourceLocation();
202
203 if (!Init)
204 return false;
205
John McCall4765fa02010-12-06 08:20:24 +0000206 if (ExprWithCleanups *ExprTemp = dyn_cast<ExprWithCleanups>(Init))
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000207 Init = ExprTemp->getSubExpr();
208
209 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
210 Init = Binder->getSubExpr();
211
212 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
213 Init = ICE->getSubExprAsWritten();
214
215 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
216 LParenLoc = ParenList->getLParenLoc();
217 RParenLoc = ParenList->getRParenLoc();
Douglas Gregor91fc73e2011-01-07 19:35:17 +0000218 return S.SubstExprs(ParenList->getExprs(), ParenList->getNumExprs(),
219 true, TemplateArgs, NewArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000220 }
221
222 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000223 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
Douglas Gregor91fc73e2011-01-07 19:35:17 +0000224 if (S.SubstExprs(Construct->getArgs(), Construct->getNumArgs(), true,
225 TemplateArgs, NewArgs))
Douglas Gregor28329e52010-03-24 21:22:47 +0000226 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000227
Douglas Gregor28329e52010-03-24 21:22:47 +0000228 // FIXME: Fake locations!
229 LParenLoc = S.PP.getLocForEndOfToken(Init->getLocStart());
Douglas Gregora1a04782010-09-09 16:33:13 +0000230 RParenLoc = LParenLoc;
Douglas Gregor28329e52010-03-24 21:22:47 +0000231 return false;
232 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000233 }
234
John McCall60d7b3a2010-08-24 06:29:42 +0000235 ExprResult Result = S.SubstExpr(Init, TemplateArgs);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000236 if (Result.isInvalid())
237 return true;
238
239 NewArgs.push_back(Result.takeAs<Expr>());
240 return false;
241}
242
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000243Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000244 // If this is the variable for an anonymous struct or union,
245 // instantiate the anonymous struct/union type first.
246 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
247 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
248 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
249 return 0;
250
John McCallce3ff2b2009-08-25 22:02:44 +0000251 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000252 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000253 TemplateArgs,
254 D->getTypeSpecStartLoc(),
255 D->getDeclName());
256 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000257 return 0;
258
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000259 if (DI->getType()->isFunctionType()) {
260 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
261 << D->isStaticDataMember() << DI->getType();
262 return 0;
263 }
264
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000265 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000266 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000267 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000268 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000269 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000270 D->getStorageClass(),
271 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000272 Var->setThreadSpecified(D->isThreadSpecified());
273 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
Mike Stump1eb44332009-09-09 15:08:12 +0000274
John McCallb6217662010-03-15 10:12:16 +0000275 // Substitute the nested name specifier, if any.
276 if (SubstQualifier(D, Var))
277 return 0;
278
Mike Stump1eb44332009-09-09 15:08:12 +0000279 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000280 // out-of-line, the instantiation will have the same lexical
281 // context (which will be a namespace scope) as the template.
282 if (D->isOutOfLine())
283 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000284
John McCall46460a62010-01-20 21:53:11 +0000285 Var->setAccess(D->getAccess());
Douglas Gregorc070cc62010-06-17 23:14:26 +0000286
287 if (!D->isStaticDataMember())
288 Var->setUsed(D->isUsed(false));
Douglas Gregor4469e8a2010-05-19 17:02:24 +0000289
Mike Stump390b4cc2009-05-16 07:39:55 +0000290 // FIXME: In theory, we could have a previous declaration for variables that
291 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000292 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000293 // FIXME: having to fake up a LookupResult is dumb.
294 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000295 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000296 if (D->isStaticDataMember())
297 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000298 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Douglas Gregor7caa6822009-07-24 20:34:43 +0000300 if (D->isOutOfLine()) {
Abramo Bagnaraea7b4882010-06-04 09:35:39 +0000301 if (!D->isStaticDataMember())
302 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000303 Owner->makeDeclVisibleInContext(Var);
304 } else {
305 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000306 if (Owner->isFunctionOrMethod())
307 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000308 }
John McCall1d8d1cc2010-08-01 02:01:53 +0000309 SemaRef.InstantiateAttrs(TemplateArgs, D, Var);
Fariborz Jahanian8dd0c562010-07-13 00:16:40 +0000310
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000311 // Link instantiations of static data members back to the template from
312 // which they were instantiated.
313 if (Var->isStaticDataMember())
314 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000315 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000316
Douglas Gregor60c93c92010-02-09 07:26:29 +0000317 if (Var->getAnyInitializer()) {
318 // We already have an initializer in the class.
319 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000320 if (Var->isStaticDataMember() && !D->isOutOfLine())
321 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
322 else
323 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
324
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000325 // Instantiate the initializer.
326 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +0000327 ASTOwningVector<Expr*> InitArgs(SemaRef);
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000328 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
Douglas Gregora1a04782010-09-09 16:33:13 +0000329 InitArgs, RParenLoc)) {
Richard Smith34b41d92011-02-20 03:19:35 +0000330 bool TypeMayContainAuto = true;
Douglas Gregor07a77b42011-01-14 17:12:22 +0000331 // Attach the initializer to the declaration, if we have one.
332 if (InitArgs.size() == 0)
Richard Smith34b41d92011-02-20 03:19:35 +0000333 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000334 else if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000335 // Add the direct initializer to the declaration.
John McCalld226f652010-08-21 09:40:31 +0000336 SemaRef.AddCXXDirectInitializerToDecl(Var,
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000337 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000338 move_arg(InitArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000339 RParenLoc,
340 TypeMayContainAuto);
Douglas Gregor07a77b42011-01-14 17:12:22 +0000341 } else {
342 assert(InitArgs.size() == 1);
John McCall9ae2f072010-08-23 23:25:46 +0000343 Expr *Init = InitArgs.take()[0];
Richard Smith34b41d92011-02-20 03:19:35 +0000344 SemaRef.AddInitializerToDecl(Var, Init, false, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000345 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000346 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000347 // FIXME: Not too happy about invalidating the declaration
348 // because of a bogus initializer.
349 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000350 }
351
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000352 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000353 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
John McCalld226f652010-08-21 09:40:31 +0000354 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000355
Douglas Gregor5764f612010-05-08 23:05:03 +0000356 // Diagnose unused local variables.
357 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed())
358 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000359
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000360 return Var;
361}
362
Abramo Bagnara6206d532010-06-05 05:09:32 +0000363Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
364 AccessSpecDecl* AD
365 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
366 D->getAccessSpecifierLoc(), D->getColonLoc());
367 Owner->addHiddenDecl(AD);
368 return AD;
369}
370
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000371Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
372 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000373 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor836adf62010-05-24 17:22:01 +0000374 if (DI->getType()->isDependentType() ||
375 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000376 DI = SemaRef.SubstType(DI, TemplateArgs,
377 D->getLocation(), D->getDeclName());
378 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000379 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000380 Invalid = true;
381 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000382 // C++ [temp.arg.type]p3:
383 // If a declaration acquires a function type through a type
384 // dependent on a template-parameter and this causes a
385 // declaration that does not use the syntactic form of a
386 // function declarator to have function type, the program is
387 // ill-formed.
388 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000389 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000390 Invalid = true;
391 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000392 } else {
393 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000394 }
395
396 Expr *BitWidth = D->getBitWidth();
397 if (Invalid)
398 BitWidth = 0;
399 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000400 // The bit-width expression is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000401 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000402
John McCall60d7b3a2010-08-24 06:29:42 +0000403 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000404 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000405 if (InstantiatedBitWidth.isInvalid()) {
406 Invalid = true;
407 BitWidth = 0;
408 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000409 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000410 }
411
John McCall07fb6be2009-10-22 23:33:21 +0000412 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
413 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000414 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000415 D->getLocation(),
416 D->isMutable(),
417 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000418 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000419 D->getAccess(),
420 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000421 if (!Field) {
422 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000423 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000424 }
Mike Stump1eb44332009-09-09 15:08:12 +0000425
John McCall1d8d1cc2010-08-01 02:01:53 +0000426 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000427
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000428 if (Invalid)
429 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000430
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000431 if (!Field->getDeclName()) {
432 // Keep track of where this decl came from.
433 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor9901c572010-05-21 00:31:19 +0000434 }
435 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
436 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000437 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000438 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000439 }
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000441 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000442 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000443 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000444
445 return Field;
446}
447
Francois Pichet87c2e122010-11-21 06:08:52 +0000448Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
449 NamedDecl **NamedChain =
450 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
451
452 int i = 0;
453 for (IndirectFieldDecl::chain_iterator PI =
454 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000455 PI != PE; ++PI) {
456 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
457 TemplateArgs);
458 if (!Next)
459 return 0;
460
461 NamedChain[i++] = Next;
462 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000463
Francois Pichet40e17752010-12-09 10:07:54 +0000464 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000465 IndirectFieldDecl* IndirectField
466 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000467 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000468 NamedChain, D->getChainingSize());
469
470
471 IndirectField->setImplicit(D->isImplicit());
472 IndirectField->setAccess(D->getAccess());
473 Owner->addDecl(IndirectField);
474 return IndirectField;
475}
476
John McCall02cace72009-08-28 07:59:38 +0000477Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000478 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000479 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000480 if (TypeSourceInfo *Ty = D->getFriendType()) {
481 TypeSourceInfo *InstTy =
482 SemaRef.SubstType(Ty, TemplateArgs,
483 D->getLocation(), DeclarationName());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000484 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000485 return 0;
John McCall02cace72009-08-28 07:59:38 +0000486
Douglas Gregor06245bf2010-04-07 17:57:12 +0000487 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
488 if (!FD)
489 return 0;
490
491 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000492 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000493 Owner->addDecl(FD);
494 return FD;
495 }
496
497 NamedDecl *ND = D->getFriendDecl();
498 assert(ND && "friend decl must be a decl or a type!");
499
John McCallaf2094e2010-04-08 09:05:18 +0000500 // All of the Visit implementations for the various potential friend
501 // declarations have to be carefully written to work for friend
502 // objects, with the most important detail being that the target
503 // decl should almost certainly not be placed in Owner.
504 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000505 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000506
John McCall02cace72009-08-28 07:59:38 +0000507 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000508 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
509 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000510 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000511 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000512 Owner->addDecl(FD);
513 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000514}
515
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000516Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
517 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000518
Douglas Gregorac7610d2009-06-22 20:57:11 +0000519 // The expression in a static assertion is not potentially evaluated.
John McCallf312b1e2010-08-26 23:41:50 +0000520 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000521
John McCall60d7b3a2010-08-24 06:29:42 +0000522 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000523 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000524 if (InstantiatedAssertExpr.isInvalid())
525 return 0;
526
John McCall60d7b3a2010-08-24 06:29:42 +0000527 ExprResult Message(D->getMessage());
John McCall3fa5cae2010-10-26 07:05:15 +0000528 D->getMessage();
John McCalld226f652010-08-21 09:40:31 +0000529 return SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000530 InstantiatedAssertExpr.get(),
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000531 Message.get(),
532 D->getRParenLoc());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000533}
534
535Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000536 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000537 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa868c372011-03-06 16:09:14 +0000538 D->getLocStart(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000539 /*PrevDecl=*/0, D->isScoped(),
540 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000541 if (D->isFixed()) {
542 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
543 // If we have type source information for the underlying type, it means it
544 // has been explicitly set by the user. Perform substitution on it before
545 // moving on.
546 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
547 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
548 TemplateArgs,
549 UnderlyingLoc,
550 DeclarationName()));
551
552 if (!Enum->getIntegerTypeSourceInfo())
553 Enum->setIntegerType(SemaRef.Context.IntTy);
554 }
555 else {
556 assert(!D->getIntegerType()->isDependentType()
557 && "Dependent type without type source info");
558 Enum->setIntegerType(D->getIntegerType());
559 }
560 }
561
John McCall5b629aa2010-10-22 23:36:17 +0000562 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
563
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000564 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000565 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000566 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000567 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000568 Enum->startDefinition();
569
Douglas Gregor96084f12010-03-01 19:00:07 +0000570 if (D->getDeclContext()->isFunctionOrMethod())
571 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
572
John McCalld226f652010-08-21 09:40:31 +0000573 llvm::SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000574
575 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000576 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
577 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000578 EC != ECEnd; ++EC) {
579 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000580 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000581 if (Expr *UninstValue = EC->getInitExpr()) {
582 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000583 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000584 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000585
John McCallce3ff2b2009-08-25 22:02:44 +0000586 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000587 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000588
589 // Drop the initial value and continue.
590 bool isInvalid = false;
591 if (Value.isInvalid()) {
592 Value = SemaRef.Owned((Expr *)0);
593 isInvalid = true;
594 }
595
Mike Stump1eb44332009-09-09 15:08:12 +0000596 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000597 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
598 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000599 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000600
601 if (isInvalid) {
602 if (EnumConst)
603 EnumConst->setInvalidDecl();
604 Enum->setInvalidDecl();
605 }
606
607 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000608 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
609
John McCall3b85ecf2010-01-23 22:37:59 +0000610 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000611 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000612 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000613 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000614
615 if (D->getDeclContext()->isFunctionOrMethod()) {
616 // If the enumeration is within a function or method, record the enum
617 // constant as a local.
618 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
619 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000620 }
621 }
Mike Stump1eb44332009-09-09 15:08:12 +0000622
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000623 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000624 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000625 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000626 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000627 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000628 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000629
630 return Enum;
631}
632
Douglas Gregor6477b692009-03-25 15:04:13 +0000633Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
634 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
635 return 0;
636}
637
John McCalle29ba202009-08-20 01:44:21 +0000638Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000639 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
640
Douglas Gregor550d9b22009-10-31 17:21:17 +0000641 // Create a local instantiation scope for this class template, which
642 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000643 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000644 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000645 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000646 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000647 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000648
649 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000650
651 // Instantiate the qualifier. We have to do this first in case
652 // we're a friend declaration, because if we are then we need to put
653 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000654 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
655 if (QualifierLoc) {
656 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
657 TemplateArgs);
658 if (!QualifierLoc)
659 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000660 }
661
662 CXXRecordDecl *PrevDecl = 0;
663 ClassTemplateDecl *PrevClassTemplate = 0;
664
Nick Lewycky37574f52010-11-08 23:29:42 +0000665 if (!isFriend && Pattern->getPreviousDeclaration()) {
666 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
667 if (Found.first != Found.second) {
668 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
669 if (PrevClassTemplate)
670 PrevDecl = PrevClassTemplate->getTemplatedDecl();
671 }
672 }
673
John McCall93ba8572010-03-25 06:39:04 +0000674 // If this isn't a friend, then it's a member template, in which
675 // case we just want to build the instantiation in the
676 // specialization. If it is a friend, we want to build it in
677 // the appropriate context.
678 DeclContext *DC = Owner;
679 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000680 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000681 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000682 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000683 DC = SemaRef.computeDeclContext(SS);
684 if (!DC) return 0;
685 } else {
686 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
687 Pattern->getDeclContext(),
688 TemplateArgs);
689 }
690
691 // Look for a previous declaration of the template in the owning
692 // context.
693 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
694 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
695 SemaRef.LookupQualifiedName(R, DC);
696
697 if (R.isSingleResult()) {
698 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
699 if (PrevClassTemplate)
700 PrevDecl = PrevClassTemplate->getTemplatedDecl();
701 }
702
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000703 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000704 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000705 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000706 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000707 return 0;
708 }
709
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000710 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000711 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000712 bool Complain = true;
713
714 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
715 // template for struct std::tr1::__detail::_Map_base, where the
716 // template parameters of the friend declaration don't match the
717 // template parameters of the original declaration. In this one
718 // case, we don't complain about the ill-formed friend
719 // declaration.
720 if (isFriend && Pattern->getIdentifier() &&
721 Pattern->getIdentifier()->isStr("_Map_base") &&
722 DC->isNamespace() &&
723 cast<NamespaceDecl>(DC)->getIdentifier() &&
724 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
725 DeclContext *DCParent = DC->getParent();
726 if (DCParent->isNamespace() &&
727 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
728 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
729 DeclContext *DCParent2 = DCParent->getParent();
730 if (DCParent2->isNamespace() &&
731 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
732 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
733 DCParent2->getParent()->isTranslationUnit())
734 Complain = false;
735 }
736 }
737
John McCall93ba8572010-03-25 06:39:04 +0000738 TemplateParameterList *PrevParams
739 = PrevClassTemplate->getTemplateParameters();
740
741 // Make sure the parameter lists match.
742 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000743 Complain,
744 Sema::TPL_TemplateMatch)) {
745 if (Complain)
746 return 0;
747
748 AdoptedPreviousTemplateParams = true;
749 InstParams = PrevParams;
750 }
John McCall93ba8572010-03-25 06:39:04 +0000751
752 // Do some additional validation, then merge default arguments
753 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000754 if (!AdoptedPreviousTemplateParams &&
755 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000756 Sema::TPC_ClassTemplate))
757 return 0;
758 }
759 }
760
John McCalle29ba202009-08-20 01:44:21 +0000761 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000762 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000763 Pattern->getLocation(), Pattern->getIdentifier(),
Abramo Bagnaraa868c372011-03-06 16:09:14 +0000764 Pattern->getLocStart(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000765 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000766
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000767 if (QualifierLoc)
768 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000769
John McCalle29ba202009-08-20 01:44:21 +0000770 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000771 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
772 D->getIdentifier(), InstParams, RecordInst,
773 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000774 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000775
John McCall93ba8572010-03-25 06:39:04 +0000776 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000777 if (PrevClassTemplate)
778 Inst->setAccess(PrevClassTemplate->getAccess());
779 else
780 Inst->setAccess(D->getAccess());
781
John McCall93ba8572010-03-25 06:39:04 +0000782 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
783 // TODO: do we want to track the instantiation progeny of this
784 // friend target decl?
785 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000786 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000787 if (!PrevClassTemplate)
788 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000789 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000790
791 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000792 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000793 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000794
Douglas Gregor259571e2009-10-30 22:42:42 +0000795 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000796 if (isFriend) {
797 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000798 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000799 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000800
John McCalle29ba202009-08-20 01:44:21 +0000801 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000802
803 if (!PrevClassTemplate) {
804 // Queue up any out-of-line partial specializations of this member
805 // class template; the client will force their instantiation once
806 // the enclosing class has been instantiated.
807 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
808 D->getPartialSpecializations(PartialSpecs);
809 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
810 if (PartialSpecs[I]->isOutOfLine())
811 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
812 }
813
John McCalle29ba202009-08-20 01:44:21 +0000814 return Inst;
815}
816
Douglas Gregord60e1052009-08-27 16:57:43 +0000817Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000818TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
819 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000820 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
821
822 // Lookup the already-instantiated declaration in the instantiation
823 // of the class template and return that.
824 DeclContext::lookup_result Found
825 = Owner->lookup(ClassTemplate->getDeclName());
826 if (Found.first == Found.second)
827 return 0;
828
829 ClassTemplateDecl *InstClassTemplate
830 = dyn_cast<ClassTemplateDecl>(*Found.first);
831 if (!InstClassTemplate)
832 return 0;
833
Douglas Gregord65587f2010-11-10 19:44:59 +0000834 if (ClassTemplatePartialSpecializationDecl *Result
835 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
836 return Result;
837
838 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000839}
840
841Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000842TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000843 // Create a local instantiation scope for this function template, which
844 // will contain the instantiations of the template parameters and then get
845 // merged with the local instantiation scope for the function template
846 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000847 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000848
Douglas Gregord60e1052009-08-27 16:57:43 +0000849 TemplateParameterList *TempParams = D->getTemplateParameters();
850 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000851 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000852 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000853
Douglas Gregora735b202009-10-13 14:39:41 +0000854 FunctionDecl *Instantiated = 0;
855 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
856 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
857 InstParams));
858 else
859 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
860 D->getTemplatedDecl(),
861 InstParams));
862
863 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000864 return 0;
865
John McCall46460a62010-01-20 21:53:11 +0000866 Instantiated->setAccess(D->getAccess());
867
Mike Stump1eb44332009-09-09 15:08:12 +0000868 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000869 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000870 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000871 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000872 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000873 assert(InstTemplate &&
874 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000875
John McCallb1a56e72010-03-26 23:10:15 +0000876 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
877
John McCalle976ffe2009-12-14 23:19:40 +0000878 // Link the instantiation back to the pattern *unless* this is a
879 // non-definition friend declaration.
880 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000881 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000882 InstTemplate->setInstantiatedFromMemberTemplate(D);
883
John McCallb1a56e72010-03-26 23:10:15 +0000884 // Make declarations visible in the appropriate context.
885 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000886 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000887
Douglas Gregord60e1052009-08-27 16:57:43 +0000888 return InstTemplate;
889}
890
Douglas Gregord475b8d2009-03-25 21:17:03 +0000891Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
892 CXXRecordDecl *PrevDecl = 0;
893 if (D->isInjectedClassName())
894 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000895 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000896 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
897 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000898 TemplateArgs);
899 if (!Prev) return 0;
900 PrevDecl = cast<CXXRecordDecl>(Prev);
901 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000902
903 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000904 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000905 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa868c372011-03-06 16:09:14 +0000906 D->getLocStart(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000907
908 // Substitute the nested name specifier, if any.
909 if (SubstQualifier(D, Record))
910 return 0;
911
Douglas Gregord475b8d2009-03-25 21:17:03 +0000912 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000913 // FIXME: Check against AS_none is an ugly hack to work around the issue that
914 // the tag decls introduced by friend class declarations don't have an access
915 // specifier. Remove once this area of the code gets sorted out.
916 if (D->getAccess() != AS_none)
917 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000918 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000919 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000920
John McCall02cace72009-08-28 07:59:38 +0000921 // If the original function was part of a friend declaration,
922 // inherit its namespace state.
923 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
924 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
925
Douglas Gregor9901c572010-05-21 00:31:19 +0000926 // Make sure that anonymous structs and unions are recorded.
927 if (D->isAnonymousStructOrUnion()) {
928 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000929 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000930 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
931 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000932
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000933 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000934 return Record;
935}
936
John McCall02cace72009-08-28 07:59:38 +0000937/// Normal class members are of more specific types and therefore
938/// don't make it here. This function serves two purposes:
939/// 1) instantiating function templates
940/// 2) substituting friend declarations
941/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000942Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000943 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000944 // Check whether there is already a function template specialization for
945 // this declaration.
946 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
947 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000948 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +0000949 std::pair<const TemplateArgument *, unsigned> Innermost
950 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +0000951
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000952 FunctionDecl *SpecFunc
953 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
954 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000955
Douglas Gregor127102b2009-06-29 20:59:39 +0000956 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000957 if (SpecFunc)
958 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +0000959 }
Mike Stump1eb44332009-09-09 15:08:12 +0000960
John McCallb0cb0222010-03-27 05:57:59 +0000961 bool isFriend;
962 if (FunctionTemplate)
963 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
964 else
965 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
966
Douglas Gregor79c22782010-01-16 20:21:20 +0000967 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +0000968 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +0000969 !(isa<Decl>(Owner) &&
970 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +0000971 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Douglas Gregore53060f2009-06-25 22:08:12 +0000973 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000974 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
975 TInfo = SubstFunctionType(D, Params);
976 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000977 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000978 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000979
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000980 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
981 if (QualifierLoc) {
982 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
983 TemplateArgs);
984 if (!QualifierLoc)
985 return 0;
John McCalld325daa2010-03-26 04:53:08 +0000986 }
987
John McCall68b6b872010-02-06 01:50:47 +0000988 // If we're instantiating a local function declaration, put the result
989 // in the owner; otherwise we need to find the instantiated context.
990 DeclContext *DC;
991 if (D->getDeclContext()->isFunctionOrMethod())
992 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000993 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +0000994 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000995 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +0000996 DC = SemaRef.computeDeclContext(SS);
997 if (!DC) return 0;
998 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000999 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
1000 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001001 }
John McCall68b6b872010-02-06 01:50:47 +00001002
John McCall02cace72009-08-28 07:59:38 +00001003 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001004 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1005 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001006 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001007 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +00001008
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001009 if (QualifierLoc)
1010 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001011
John McCallb1a56e72010-03-26 23:10:15 +00001012 DeclContext *LexicalDC = Owner;
1013 if (!isFriend && D->isOutOfLine()) {
1014 assert(D->getDeclContext()->isFileContext());
1015 LexicalDC = D->getDeclContext();
1016 }
1017
1018 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Douglas Gregore53060f2009-06-25 22:08:12 +00001020 // Attach the parameters
1021 for (unsigned P = 0; P < Params.size(); ++P)
John McCall3019c442010-09-17 00:50:28 +00001022 if (Params[P])
1023 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +00001024 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +00001025
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001026 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001027 if (TemplateParams) {
1028 // Our resulting instantiation is actually a function template, since we
1029 // are substituting only the outer template parameters. For example, given
1030 //
1031 // template<typename T>
1032 // struct X {
1033 // template<typename U> friend void f(T, U);
1034 // };
1035 //
1036 // X<int> x;
1037 //
1038 // We are instantiating the friend function template "f" within X<int>,
1039 // which means substituting int for T, but leaving "f" as a friend function
1040 // template.
1041 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001042 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001043 Function->getLocation(),
1044 Function->getDeclName(),
1045 TemplateParams, Function);
1046 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001047
1048 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001049
1050 if (isFriend && D->isThisDeclarationADefinition()) {
1051 // TODO: should we remember this connection regardless of whether
1052 // the friend declaration provided a body?
1053 FunctionTemplate->setInstantiatedFromMemberTemplate(
1054 D->getDescribedFunctionTemplate());
1055 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001056 } else if (FunctionTemplate) {
1057 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001058 std::pair<const TemplateArgument *, unsigned> Innermost
1059 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001060 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001061 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001062 Innermost.first,
1063 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001064 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001065 } else if (isFriend && D->isThisDeclarationADefinition()) {
1066 // TODO: should we remember this connection regardless of whether
1067 // the friend declaration provided a body?
1068 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001069 }
Douglas Gregora735b202009-10-13 14:39:41 +00001070
Douglas Gregore53060f2009-06-25 22:08:12 +00001071 if (InitFunctionInstantiation(Function, D))
1072 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Douglas Gregore53060f2009-06-25 22:08:12 +00001074 bool Redeclaration = false;
John McCallaf2094e2010-04-08 09:05:18 +00001075 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001076
John McCall68263142009-11-18 22:49:29 +00001077 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1078 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1079
John McCallaf2094e2010-04-08 09:05:18 +00001080 if (DependentFunctionTemplateSpecializationInfo *Info
1081 = D->getDependentSpecializationInfo()) {
1082 assert(isFriend && "non-friend has dependent specialization info?");
1083
1084 // This needs to be set now for future sanity.
1085 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1086
1087 // Instantiate the explicit template arguments.
1088 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1089 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001090 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1091 ExplicitArgs, TemplateArgs))
1092 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001093
1094 // Map the candidate templates to their instantiations.
1095 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1096 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1097 Info->getTemplate(I),
1098 TemplateArgs);
1099 if (!Temp) return 0;
1100
1101 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1102 }
1103
1104 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1105 &ExplicitArgs,
1106 Previous))
1107 Function->setInvalidDecl();
1108
1109 isExplicitSpecialization = true;
1110
1111 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001112 // Look only into the namespace where the friend would be declared to
1113 // find a previous declaration. This is the innermost enclosing namespace,
1114 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001115 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001116
Douglas Gregora735b202009-10-13 14:39:41 +00001117 // In C++, the previous declaration we find might be a tag type
1118 // (class or enum). In this case, the new declaration will hide the
1119 // tag type. Note that this does does not apply if we're declaring a
1120 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001121 if (Previous.isSingleTagDecl())
1122 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001123 }
1124
John McCall9f54ad42009-12-10 09:41:52 +00001125 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Peter Collingbournec80e8112011-01-21 02:08:54 +00001126 isExplicitSpecialization, Redeclaration);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001127
John McCall76d32642010-04-24 01:30:58 +00001128 NamedDecl *PrincipalDecl = (TemplateParams
1129 ? cast<NamedDecl>(FunctionTemplate)
1130 : Function);
1131
Douglas Gregora735b202009-10-13 14:39:41 +00001132 // If the original function was part of a friend declaration,
1133 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001134 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001135 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001136 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001137 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001138 else
Douglas Gregora735b202009-10-13 14:39:41 +00001139 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001140
1141 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1142 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001143
Gabor Greif77535df2010-08-30 22:25:56 +00001144 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001145
Douglas Gregor238058c2010-05-18 05:45:02 +00001146 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1147 D->isThisDeclarationADefinition()) {
1148 // Check for a function body.
1149 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001150 if (Function->hasBody(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001151 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1152 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1153 << Function->getDeclName();
1154 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1155 Function->setInvalidDecl();
1156 }
1157 // Check for redefinitions due to other instantiations of this or
1158 // a similar friend function.
1159 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1160 REnd = Function->redecls_end();
1161 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001162 if (*R == Function)
1163 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001164 switch (R->getFriendObjectKind()) {
1165 case Decl::FOK_None:
1166 if (!queuedInstantiation && R->isUsed(false)) {
1167 if (MemberSpecializationInfo *MSInfo
1168 = Function->getMemberSpecializationInfo()) {
1169 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1170 SourceLocation Loc = R->getLocation(); // FIXME
1171 MSInfo->setPointOfInstantiation(Loc);
1172 SemaRef.PendingLocalImplicitInstantiations.push_back(
1173 std::make_pair(Function, Loc));
1174 queuedInstantiation = true;
1175 }
1176 }
1177 }
1178 break;
1179 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001180 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001181 = R->getTemplateInstantiationPattern())
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001182 if (RPattern->hasBody(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001183 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1184 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001185 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001186 Function->setInvalidDecl();
1187 break;
1188 }
1189 }
1190 }
1191 }
Douglas Gregora735b202009-10-13 14:39:41 +00001192 }
1193
John McCall76d32642010-04-24 01:30:58 +00001194 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1195 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1196 PrincipalDecl->setNonMemberOperator();
1197
Douglas Gregore53060f2009-06-25 22:08:12 +00001198 return Function;
1199}
1200
Douglas Gregord60e1052009-08-27 16:57:43 +00001201Decl *
1202TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1203 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001204 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1205 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001206 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001207 // We are creating a function template specialization from a function
1208 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001209 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001210 std::pair<const TemplateArgument *, unsigned> Innermost
1211 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001213 FunctionDecl *SpecFunc
1214 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1215 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001216
Douglas Gregor6b906862009-08-21 00:16:32 +00001217 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001218 if (SpecFunc)
1219 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001220 }
1221
John McCallb0cb0222010-03-27 05:57:59 +00001222 bool isFriend;
1223 if (FunctionTemplate)
1224 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1225 else
1226 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1227
Douglas Gregor79c22782010-01-16 20:21:20 +00001228 bool MergeWithParentScope = (TemplateParams != 0) ||
1229 !(isa<Decl>(Owner) &&
1230 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001231 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001232
John McCall4eab39f2010-10-19 02:26:41 +00001233 // Instantiate enclosing template arguments for friends.
1234 llvm::SmallVector<TemplateParameterList *, 4> TempParamLists;
1235 unsigned NumTempParamLists = 0;
1236 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1237 TempParamLists.set_size(NumTempParamLists);
1238 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1239 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1240 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1241 if (!InstParams)
1242 return NULL;
1243 TempParamLists[I] = InstParams;
1244 }
1245 }
1246
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001247 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001248 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1249 TInfo = SubstFunctionType(D, Params);
1250 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001251 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001252 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001253
Abramo Bagnara723df242010-12-14 22:11:44 +00001254 // \brief If the type of this function, after ignoring parentheses,
1255 // is not *directly* a function type, then we're instantiating a function
1256 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001257 //
1258 // typedef int functype(int, int);
1259 // functype func;
1260 //
1261 // In this case, we'll just go instantiate the ParmVarDecls that we
1262 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001263 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001264 assert(!Params.size() && "Instantiating type could not yield parameters");
Douglas Gregor12c9c002011-01-07 16:43:16 +00001265 llvm::SmallVector<QualType, 4> ParamTypes;
1266 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1267 D->getNumParams(), TemplateArgs, ParamTypes,
1268 &Params))
1269 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001270 }
1271
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001272 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1273 if (QualifierLoc) {
1274 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001275 TemplateArgs);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001276 if (!QualifierLoc)
1277 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001278 }
1279
1280 DeclContext *DC = Owner;
1281 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001282 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001283 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001284 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001285 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001286
1287 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1288 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001289 } else {
1290 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1291 D->getDeclContext(),
1292 TemplateArgs);
1293 }
1294 if (!DC) return 0;
1295 }
1296
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001297 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001298 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001299 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001300
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001301 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001302 DeclarationNameInfo NameInfo
1303 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001304 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001305 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001306 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001307 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001308 Constructor->isInlineSpecified(),
1309 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001310 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001311 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001312 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001313 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001314 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001315 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001316 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001317 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001318 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001319 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001320 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001321 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001322 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001323 D->isStatic(),
1324 D->getStorageClassAsWritten(),
1325 D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001326 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001327
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001328 if (QualifierLoc)
1329 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001330
Douglas Gregord60e1052009-08-27 16:57:43 +00001331 if (TemplateParams) {
1332 // Our resulting instantiation is actually a function template, since we
1333 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001334 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001335 // template<typename T>
1336 // struct X {
1337 // template<typename U> void f(T, U);
1338 // };
1339 //
1340 // X<int> x;
1341 //
1342 // We are instantiating the member template "f" within X<int>, which means
1343 // substituting int for T, but leaving "f" as a member function template.
1344 // Build the function template itself.
1345 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1346 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001347 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001348 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001349 if (isFriend) {
1350 FunctionTemplate->setLexicalDeclContext(Owner);
1351 FunctionTemplate->setObjectOfFriendDecl(true);
1352 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001353 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001354 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001355 } else if (FunctionTemplate) {
1356 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001357 std::pair<const TemplateArgument *, unsigned> Innermost
1358 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001359 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001360 TemplateArgumentList::CreateCopy(SemaRef.Context,
1361 Innermost.first,
1362 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001363 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001364 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001365 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001366 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001367 }
1368
Mike Stump1eb44332009-09-09 15:08:12 +00001369 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001370 // out-of-line, the instantiation will have the same lexical
1371 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001372 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001373 if (NumTempParamLists)
1374 Method->setTemplateParameterListsInfo(SemaRef.Context,
1375 NumTempParamLists,
1376 TempParamLists.data());
1377
John McCallb0cb0222010-03-27 05:57:59 +00001378 Method->setLexicalDeclContext(Owner);
1379 Method->setObjectOfFriendDecl(true);
1380 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001381 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001382
Douglas Gregor5545e162009-03-24 00:38:23 +00001383 // Attach the parameters
1384 for (unsigned P = 0; P < Params.size(); ++P)
1385 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001386 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001387
1388 if (InitMethodInstantiation(Method, D))
1389 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001390
Abramo Bagnara25777432010-08-11 22:01:17 +00001391 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1392 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001393
John McCallb0cb0222010-03-27 05:57:59 +00001394 if (!FunctionTemplate || TemplateParams || isFriend) {
1395 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001396
Douglas Gregordec06662009-08-21 18:42:58 +00001397 // In C++, the previous declaration we find might be a tag type
1398 // (class or enum). In this case, the new declaration will hide the
1399 // tag type. Note that this does does not apply if we're declaring a
1400 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001401 if (Previous.isSingleTagDecl())
1402 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001403 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001404
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001405 bool Redeclaration = false;
Peter Collingbournec80e8112011-01-21 02:08:54 +00001406 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001407
Douglas Gregor4ba31362009-12-01 17:24:26 +00001408 if (D->isPure())
1409 SemaRef.CheckPureMethod(Method, SourceRange());
1410
John McCall46460a62010-01-20 21:53:11 +00001411 Method->setAccess(D->getAccess());
1412
Anders Carlsson9eefa222011-01-20 06:52:44 +00001413 SemaRef.CheckOverrideControl(Method);
1414
John McCallb0cb0222010-03-27 05:57:59 +00001415 if (FunctionTemplate) {
1416 // If there's a function template, let our caller handle it.
1417 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1418 // Don't hide a (potentially) valid declaration with an invalid one.
1419 } else {
1420 NamedDecl *DeclToAdd = (TemplateParams
1421 ? cast<NamedDecl>(FunctionTemplate)
1422 : Method);
1423 if (isFriend)
1424 Record->makeDeclVisibleInContext(DeclToAdd);
1425 else
1426 Owner->addDecl(DeclToAdd);
1427 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001428
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001429 return Method;
1430}
1431
Douglas Gregor615c5d42009-03-24 16:43:20 +00001432Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001433 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001434}
1435
Douglas Gregor03b2b072009-03-24 00:15:49 +00001436Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001437 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001438}
1439
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001440Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001441 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001442}
1443
Douglas Gregor6477b692009-03-25 15:04:13 +00001444ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001445 return SemaRef.SubstParmVarDecl(D, TemplateArgs, llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001446}
1447
John McCalle29ba202009-08-20 01:44:21 +00001448Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1449 TemplateTypeParmDecl *D) {
1450 // TODO: don't always clone when decls are refcounted.
Douglas Gregorefed5c82010-06-16 15:23:05 +00001451 const Type* T = D->getTypeForDecl();
1452 assert(T->isTemplateTypeParmType());
1453 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001454
John McCalle29ba202009-08-20 01:44:21 +00001455 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001456 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1457 D->getLocStart(), D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001458 TTPT->getDepth() - TemplateArgs.getNumLevels(),
Nick Lewycky61139c52010-10-30 06:48:20 +00001459 TTPT->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001460 D->wasDeclaredWithTypename(),
1461 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001462 Inst->setAccess(AS_public);
1463
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001464 if (D->hasDefaultArgument())
1465 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001466
Douglas Gregor550d9b22009-10-31 17:21:17 +00001467 // Introduce this template parameter's instantiation into the instantiation
1468 // scope.
1469 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1470
John McCalle29ba202009-08-20 01:44:21 +00001471 return Inst;
1472}
1473
Douglas Gregor33642df2009-10-23 23:25:44 +00001474Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1475 NonTypeTemplateParmDecl *D) {
1476 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001477 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
1478 llvm::SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1479 llvm::SmallVector<QualType, 4> ExpandedParameterPackTypes;
1480 bool IsExpandedParameterPack = false;
1481 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001482 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001483 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001484
1485 if (D->isExpandedParameterPack()) {
1486 // The non-type template parameter pack is an already-expanded pack
1487 // expansion of types. Substitute into each of the expanded types.
1488 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1489 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1490 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1491 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1492 TemplateArgs,
1493 D->getLocation(),
1494 D->getDeclName());
1495 if (!NewDI)
1496 return 0;
1497
1498 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1499 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1500 D->getLocation());
1501 if (NewT.isNull())
1502 return 0;
1503 ExpandedParameterPackTypes.push_back(NewT);
1504 }
1505
1506 IsExpandedParameterPack = true;
1507 DI = D->getTypeSourceInfo();
1508 T = DI->getType();
1509 } else if (isa<PackExpansionTypeLoc>(TL)) {
1510 // The non-type template parameter pack's type is a pack expansion of types.
1511 // Determine whether we need to expand this parameter pack into separate
1512 // types.
1513 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1514 TypeLoc Pattern = Expansion.getPatternLoc();
1515 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1516 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1517
1518 // Determine whether the set of unexpanded parameter packs can and should
1519 // be expanded.
1520 bool Expand = true;
1521 bool RetainExpansion = false;
1522 llvm::Optional<unsigned> OrigNumExpansions
1523 = Expansion.getTypePtr()->getNumExpansions();
1524 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1525 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1526 Pattern.getSourceRange(),
1527 Unexpanded.data(),
1528 Unexpanded.size(),
1529 TemplateArgs,
1530 Expand, RetainExpansion,
1531 NumExpansions))
1532 return 0;
1533
1534 if (Expand) {
1535 for (unsigned I = 0; I != *NumExpansions; ++I) {
1536 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1537 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1538 D->getLocation(),
1539 D->getDeclName());
1540 if (!NewDI)
1541 return 0;
1542
1543 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1544 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1545 NewDI->getType(),
1546 D->getLocation());
1547 if (NewT.isNull())
1548 return 0;
1549 ExpandedParameterPackTypes.push_back(NewT);
1550 }
1551
1552 // Note that we have an expanded parameter pack. The "type" of this
1553 // expanded parameter pack is the original expansion type, but callers
1554 // will end up using the expanded parameter pack types for type-checking.
1555 IsExpandedParameterPack = true;
1556 DI = D->getTypeSourceInfo();
1557 T = DI->getType();
1558 } else {
1559 // We cannot fully expand the pack expansion now, so substitute into the
1560 // pattern and create a new pack expansion type.
1561 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1562 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1563 D->getLocation(),
1564 D->getDeclName());
1565 if (!NewPattern)
1566 return 0;
1567
1568 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1569 NumExpansions);
1570 if (!DI)
1571 return 0;
1572
1573 T = DI->getType();
1574 }
1575 } else {
1576 // Simple case: substitution into a parameter that is not a parameter pack.
1577 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1578 D->getLocation(), D->getDeclName());
1579 if (!DI)
1580 return 0;
1581
1582 // Check that this type is acceptable for a non-type template parameter.
1583 bool Invalid = false;
1584 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1585 D->getLocation());
1586 if (T.isNull()) {
1587 T = SemaRef.Context.IntTy;
1588 Invalid = true;
1589 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001590 }
1591
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001592 NonTypeTemplateParmDecl *Param;
1593 if (IsExpandedParameterPack)
1594 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001595 D->getInnerLocStart(),
1596 D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001597 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001598 D->getPosition(),
1599 D->getIdentifier(), T,
1600 DI,
1601 ExpandedParameterPackTypes.data(),
1602 ExpandedParameterPackTypes.size(),
1603 ExpandedParameterPackTypesAsWritten.data());
1604 else
1605 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001606 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001607 D->getLocation(),
1608 D->getDepth() - TemplateArgs.getNumLevels(),
1609 D->getPosition(),
1610 D->getIdentifier(), T,
1611 D->isParameterPack(), DI);
1612
Douglas Gregor9a299e02011-03-04 17:52:15 +00001613 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001614 if (Invalid)
1615 Param->setInvalidDecl();
1616
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001617 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001618
1619 // Introduce this template parameter's instantiation into the instantiation
1620 // scope.
1621 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001622 return Param;
1623}
1624
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001625Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001626TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1627 TemplateTemplateParmDecl *D) {
1628 // Instantiate the template parameter list of the template template parameter.
1629 TemplateParameterList *TempParams = D->getTemplateParameters();
1630 TemplateParameterList *InstParams;
1631 {
1632 // Perform the actual substitution of template parameters within a new,
1633 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001634 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001635 InstParams = SubstTemplateParams(TempParams);
1636 if (!InstParams)
1637 return NULL;
1638 }
1639
1640 // Build the template template parameter.
1641 TemplateTemplateParmDecl *Param
1642 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001643 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001644 D->getPosition(), D->isParameterPack(),
1645 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001646 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001647 Param->setAccess(AS_public);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001648
Douglas Gregor9106ef72009-11-11 16:58:32 +00001649 // Introduce this template parameter's instantiation into the instantiation
1650 // scope.
1651 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1652
1653 return Param;
1654}
1655
Douglas Gregor48c32a72009-11-17 06:07:40 +00001656Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001657 // Using directives are never dependent (and never contain any types or
1658 // expressions), so they require no explicit instantiation work.
Douglas Gregor48c32a72009-11-17 06:07:40 +00001659
1660 UsingDirectiveDecl *Inst
1661 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1662 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001663 D->getQualifierLoc(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001664 D->getIdentLocation(),
1665 D->getNominatedNamespace(),
1666 D->getCommonAncestor());
1667 Owner->addDecl(Inst);
1668 return Inst;
1669}
1670
John McCalled976492009-12-04 22:46:56 +00001671Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001672
1673 // The nested name specifier may be dependent, for example
1674 // template <typename T> struct t {
1675 // struct s1 { T f1(); };
1676 // struct s2 : s1 { using s1::f1; };
1677 // };
1678 // template struct t<int>;
1679 // Here, in using s1::f1, s1 refers to t<T>::s1;
1680 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001681 NestedNameSpecifierLoc QualifierLoc
1682 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1683 TemplateArgs);
1684 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001685 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001686
1687 // The name info is non-dependent, so no transformation
1688 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001689 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001690
John McCall9f54ad42009-12-10 09:41:52 +00001691 // We only need to do redeclaration lookups if we're in a class
1692 // scope (in fact, it's not really even possible in non-class
1693 // scopes).
1694 bool CheckRedeclaration = Owner->isRecord();
1695
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001696 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1697 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001698
John McCalled976492009-12-04 22:46:56 +00001699 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001700 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001701 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001702 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001703 D->isTypeName());
1704
Douglas Gregor5149f372011-02-25 15:54:31 +00001705 CXXScopeSpec SS;
1706 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001707 if (CheckRedeclaration) {
1708 Prev.setHideTags(false);
1709 SemaRef.LookupQualifiedName(Prev, Owner);
1710
1711 // Check for invalid redeclarations.
1712 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1713 D->isTypeName(), SS,
1714 D->getLocation(), Prev))
1715 NewUD->setInvalidDecl();
1716
1717 }
1718
1719 if (!NewUD->isInvalidDecl() &&
1720 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001721 D->getLocation()))
1722 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001723
John McCalled976492009-12-04 22:46:56 +00001724 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1725 NewUD->setAccess(D->getAccess());
1726 Owner->addDecl(NewUD);
1727
John McCall9f54ad42009-12-10 09:41:52 +00001728 // Don't process the shadow decls for an invalid decl.
1729 if (NewUD->isInvalidDecl())
1730 return NewUD;
1731
John McCall323c3102009-12-22 22:26:37 +00001732 bool isFunctionScope = Owner->isFunctionOrMethod();
1733
John McCall9f54ad42009-12-10 09:41:52 +00001734 // Process the shadow decls.
1735 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1736 I != E; ++I) {
1737 UsingShadowDecl *Shadow = *I;
1738 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001739 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1740 Shadow->getLocation(),
1741 Shadow->getTargetDecl(),
1742 TemplateArgs));
1743 if (!InstTarget)
1744 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001745
1746 if (CheckRedeclaration &&
1747 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1748 continue;
1749
1750 UsingShadowDecl *InstShadow
1751 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1752 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001753
1754 if (isFunctionScope)
1755 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001756 }
John McCalled976492009-12-04 22:46:56 +00001757
1758 return NewUD;
1759}
1760
1761Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001762 // Ignore these; we handle them in bulk when processing the UsingDecl.
1763 return 0;
John McCalled976492009-12-04 22:46:56 +00001764}
1765
John McCall7ba107a2009-11-18 02:36:19 +00001766Decl * TemplateDeclInstantiator
1767 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001768 NestedNameSpecifierLoc QualifierLoc
1769 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1770 TemplateArgs);
1771 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001772 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001773
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001774 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001775 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001776
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001777 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1778 // Hence, no tranformation is required for it.
1779 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001780 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001781 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001782 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001783 /*instantiation*/ true,
1784 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001785 if (UD)
John McCalled976492009-12-04 22:46:56 +00001786 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1787
John McCall7ba107a2009-11-18 02:36:19 +00001788 return UD;
1789}
1790
1791Decl * TemplateDeclInstantiator
1792 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001793 NestedNameSpecifierLoc QualifierLoc
1794 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1795 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001796 return 0;
Douglas Gregor5149f372011-02-25 15:54:31 +00001797
John McCall7ba107a2009-11-18 02:36:19 +00001798 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001799 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001800
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001801 DeclarationNameInfo NameInfo
1802 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1803
John McCall7ba107a2009-11-18 02:36:19 +00001804 NamedDecl *UD =
1805 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001806 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001807 /*instantiation*/ true,
1808 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001809 if (UD)
John McCalled976492009-12-04 22:46:56 +00001810 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1811
Anders Carlsson0d8df782009-08-29 19:37:28 +00001812 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001813}
1814
John McCallce3ff2b2009-08-25 22:02:44 +00001815Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001816 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001817 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001818 if (D->isInvalidDecl())
1819 return 0;
1820
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001821 return Instantiator.Visit(D);
1822}
1823
John McCalle29ba202009-08-20 01:44:21 +00001824/// \brief Instantiates a nested template parameter list in the current
1825/// instantiation context.
1826///
1827/// \param L The parameter list to instantiate
1828///
1829/// \returns NULL if there was an error
1830TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001831TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001832 // Get errors for all the parameters before bailing out.
1833 bool Invalid = false;
1834
1835 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001836 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001837 ParamVector Params;
1838 Params.reserve(N);
1839 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1840 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001841 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001842 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001843 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001844 }
1845
1846 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001847 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001848 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001849
1850 TemplateParameterList *InstL
1851 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1852 L->getLAngleLoc(), &Params.front(), N,
1853 L->getRAngleLoc());
1854 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001855}
John McCalle29ba202009-08-20 01:44:21 +00001856
Douglas Gregored9c0f92009-10-29 00:04:11 +00001857/// \brief Instantiate the declaration of a class template partial
1858/// specialization.
1859///
1860/// \param ClassTemplate the (instantiated) class template that is partially
1861// specialized by the instantiation of \p PartialSpec.
1862///
1863/// \param PartialSpec the (uninstantiated) class template partial
1864/// specialization that we are instantiating.
1865///
Douglas Gregord65587f2010-11-10 19:44:59 +00001866/// \returns The instantiated partial specialization, if successful; otherwise,
1867/// NULL to indicate an error.
1868ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001869TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1870 ClassTemplateDecl *ClassTemplate,
1871 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001872 // Create a local instantiation scope for this class template partial
1873 // specialization, which will contain the instantiations of the template
1874 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00001875 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001876
Douglas Gregored9c0f92009-10-29 00:04:11 +00001877 // Substitute into the template parameters of the class template partial
1878 // specialization.
1879 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1880 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1881 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00001882 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001883
1884 // Substitute into the template arguments of the class template partial
1885 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00001886 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
Douglas Gregore02e2622010-12-22 21:19:48 +00001887 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
1888 PartialSpec->getNumTemplateArgsAsWritten(),
1889 InstTemplateArgs, TemplateArgs))
1890 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001891
Douglas Gregored9c0f92009-10-29 00:04:11 +00001892 // Check that the template argument list is well-formed for this
1893 // class template.
Douglas Gregor910f8002010-11-07 23:05:16 +00001894 llvm::SmallVector<TemplateArgument, 4> Converted;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001895 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1896 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001897 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001898 false,
1899 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00001900 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001901
1902 // Figure out where to insert this class template partial specialization
1903 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00001904 void *InsertPos = 0;
1905 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00001906 = ClassTemplate->findPartialSpecialization(Converted.data(),
1907 Converted.size(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001908
1909 // Build the canonical type that describes the converted template
1910 // arguments of the class template partial specialization.
1911 QualType CanonType
1912 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00001913 Converted.data(),
1914 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00001915
1916 // Build the fully-sugared type for this class template
1917 // specialization as the user wrote in the specialization
1918 // itself. This means that we'll pretty-print the type retrieved
1919 // from the specialization's declaration the way that the user
1920 // actually wrote the specialization, rather than formatting the
1921 // name based on the "canonical" representation used to store the
1922 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001923 TypeSourceInfo *WrittenTy
1924 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1925 TemplateName(ClassTemplate),
1926 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001927 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001928 CanonType);
1929
1930 if (PrevDecl) {
1931 // We've already seen a partial specialization with the same template
1932 // parameters and template arguments. This can happen, for example, when
1933 // substituting the outer template arguments ends up causing two
1934 // class template partial specializations of a member class template
1935 // to have identical forms, e.g.,
1936 //
1937 // template<typename T, typename U>
1938 // struct Outer {
1939 // template<typename X, typename Y> struct Inner;
1940 // template<typename Y> struct Inner<T, Y>;
1941 // template<typename Y> struct Inner<U, Y>;
1942 // };
1943 //
1944 // Outer<int, int> outer; // error: the partial specializations of Inner
1945 // // have the same signature.
1946 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00001947 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00001948 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1949 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00001950 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001951 }
1952
1953
1954 // Create the class template partial specialization declaration.
1955 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00001956 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
1957 PartialSpec->getTagKind(),
1958 Owner,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001959 PartialSpec->getLocation(),
1960 InstParams,
1961 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001962 Converted.data(),
1963 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00001964 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001965 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001966 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001967 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00001968 // Substitute the nested name specifier, if any.
1969 if (SubstQualifier(PartialSpec, InstPartialSpec))
1970 return 0;
1971
Douglas Gregored9c0f92009-10-29 00:04:11 +00001972 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001973 InstPartialSpec->setTypeAsWritten(WrittenTy);
1974
Douglas Gregored9c0f92009-10-29 00:04:11 +00001975 // Add this partial specialization to the set of class template partial
1976 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001977 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00001978 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001979}
1980
John McCall21ef0fa2010-03-11 09:03:00 +00001981TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001982TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001983 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001984 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1985 assert(OldTInfo && "substituting function without type source info");
1986 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00001987 TypeSourceInfo *NewTInfo
1988 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
1989 D->getTypeSpecStartLoc(),
1990 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00001991 if (!NewTInfo)
1992 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001993
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001994 if (NewTInfo != OldTInfo) {
1995 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00001996 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001997 if (FunctionProtoTypeLoc *OldProtoLoc
1998 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00001999 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002000 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2001 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002002 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2003 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2004 OldIdx != NumOldParams; ++OldIdx) {
2005 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2006 if (!OldParam->isParameterPack() ||
2007 (NewIdx < NumNewParams &&
2008 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2009 // Simple case: normal parameter, or a parameter pack that's
2010 // instantiated to a (still-dependent) parameter pack.
2011 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2012 Params.push_back(NewParam);
2013 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2014 NewParam);
2015 continue;
2016 }
2017
2018 // Parameter pack: make the instantiation an argument pack.
2019 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2020 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002021 unsigned NumArgumentsInExpansion
2022 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2023 TemplateArgs);
2024 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002025 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2026 Params.push_back(NewParam);
2027 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2028 NewParam);
2029 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002030 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002031 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002032 } else {
2033 // The function type itself was not dependent and therefore no
2034 // substitution occurred. However, we still need to instantiate
2035 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002036 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002037 if (FunctionProtoTypeLoc *OldProtoLoc
2038 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2039 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2040 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2041 if (!Parm)
2042 return 0;
2043 Params.push_back(Parm);
2044 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002045 }
2046 }
John McCall21ef0fa2010-03-11 09:03:00 +00002047 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002048}
2049
Mike Stump1eb44332009-09-09 15:08:12 +00002050/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002051/// declaration (New) from the corresponding fields of its template (Tmpl).
2052///
2053/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002054bool
2055TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002056 FunctionDecl *Tmpl) {
2057 if (Tmpl->isDeleted())
2058 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00002059
Douglas Gregorcca9e962009-07-01 22:01:06 +00002060 // If we are performing substituting explicitly-specified template arguments
2061 // or deduced template arguments into a function template and we reach this
2062 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002063 // to keeping the new function template specialization. We therefore
2064 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002065 // into a template instantiation for this specific function template
2066 // specialization, which is not a SFINAE context, so that we diagnose any
2067 // further errors in the declaration itself.
2068 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2069 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2070 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2071 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002072 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002073 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002074 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002075 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002076 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002077 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2078 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002079 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002080 }
2081 }
Mike Stump1eb44332009-09-09 15:08:12 +00002082
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002083 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2084 assert(Proto && "Function template without prototype?");
2085
2086 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
2087 Proto->getNoReturnAttr()) {
2088 // The function has an exception specification or a "noreturn"
2089 // attribute. Substitute into each of the exception types.
2090 llvm::SmallVector<QualType, 4> Exceptions;
2091 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2092 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002093 if (const PackExpansionType *PackExpansion
2094 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2095 // We have a pack expansion. Instantiate it.
2096 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2097 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2098 Unexpanded);
2099 assert(!Unexpanded.empty() &&
2100 "Pack expansion without parameter packs?");
2101
2102 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002103 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002104 llvm::Optional<unsigned> NumExpansions
2105 = PackExpansion->getNumExpansions();
Douglas Gregorb99268b2010-12-21 00:52:54 +00002106 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2107 SourceRange(),
2108 Unexpanded.data(),
2109 Unexpanded.size(),
2110 TemplateArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002111 Expand,
2112 RetainExpansion,
2113 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002114 break;
2115
2116 if (!Expand) {
2117 // We can't expand this pack expansion into separate arguments yet;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002118 // just substitute into the pattern and create a new pack expansion
2119 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002120 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2121 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2122 TemplateArgs,
2123 New->getLocation(), New->getDeclName());
2124 if (T.isNull())
2125 break;
2126
Douglas Gregorcded4f62011-01-14 17:04:44 +00002127 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002128 Exceptions.push_back(T);
2129 continue;
2130 }
2131
2132 // Substitute into the pack expansion pattern for each template
2133 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002134 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002135 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2136
2137 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2138 TemplateArgs,
2139 New->getLocation(), New->getDeclName());
2140 if (T.isNull()) {
2141 Invalid = true;
2142 break;
2143 }
2144
2145 Exceptions.push_back(T);
2146 }
2147
2148 if (Invalid)
2149 break;
2150
2151 continue;
2152 }
2153
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002154 QualType T
2155 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2156 New->getLocation(), New->getDeclName());
2157 if (T.isNull() ||
2158 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2159 continue;
2160
2161 Exceptions.push_back(T);
2162 }
2163
2164 // Rebuild the function type
2165
John McCalle23cf432010-12-14 08:05:40 +00002166 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00002167 EPI.ExceptionSpecType = Proto->hasExceptionSpec() ?
2168 (Proto->hasAnyExceptionSpec() ? EST_DynamicAny : EST_Dynamic) :
2169 EST_None;
John McCalle23cf432010-12-14 08:05:40 +00002170 EPI.NumExceptions = Exceptions.size();
2171 EPI.Exceptions = Exceptions.data();
2172 EPI.ExtInfo = Proto->getExtInfo();
2173
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002174 const FunctionProtoType *NewProto
2175 = New->getType()->getAs<FunctionProtoType>();
2176 assert(NewProto && "Template instantiation without function prototype?");
2177 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2178 NewProto->arg_type_begin(),
2179 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002180 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002181 }
2182
John McCall1d8d1cc2010-08-01 02:01:53 +00002183 SemaRef.InstantiateAttrs(TemplateArgs, Tmpl, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002184
Douglas Gregore53060f2009-06-25 22:08:12 +00002185 return false;
2186}
2187
Douglas Gregor5545e162009-03-24 00:38:23 +00002188/// \brief Initializes common fields of an instantiated method
2189/// declaration (New) from the corresponding fields of its template
2190/// (Tmpl).
2191///
2192/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002193bool
2194TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002195 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002196 if (InitFunctionInstantiation(New, Tmpl))
2197 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002198
Douglas Gregor5545e162009-03-24 00:38:23 +00002199 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002200 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002201 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002202
2203 // FIXME: attributes
2204 // FIXME: New needs a pointer to Tmpl
2205 return false;
2206}
Douglas Gregora58861f2009-05-13 20:28:22 +00002207
2208/// \brief Instantiate the definition of the given function from its
2209/// template.
2210///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002211/// \param PointOfInstantiation the point at which the instantiation was
2212/// required. Note that this is not precisely a "point of instantiation"
2213/// for the function, but it's close.
2214///
Douglas Gregora58861f2009-05-13 20:28:22 +00002215/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002216/// function template specialization or member function of a class template
2217/// specialization.
2218///
2219/// \param Recursive if true, recursively instantiates any functions that
2220/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002221///
2222/// \param DefinitionRequired if true, then we are performing an explicit
2223/// instantiation where the body of the function is required. Complain if
2224/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002225void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002226 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002227 bool Recursive,
2228 bool DefinitionRequired) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002229 if (Function->isInvalidDecl() || Function->hasBody())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002230 return;
2231
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002232 // Never instantiate an explicit specialization.
2233 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2234 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002235
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002236 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002237 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002238 Stmt *Pattern = 0;
2239 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002240 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002241
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002242 if (!Pattern) {
2243 if (DefinitionRequired) {
2244 if (Function->getPrimaryTemplate())
2245 Diag(PointOfInstantiation,
2246 diag::err_explicit_instantiation_undefined_func_template)
2247 << Function->getPrimaryTemplate();
2248 else
2249 Diag(PointOfInstantiation,
2250 diag::err_explicit_instantiation_undefined_member)
2251 << 1 << Function->getDeclName() << Function->getDeclContext();
2252
2253 if (PatternDecl)
2254 Diag(PatternDecl->getLocation(),
2255 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002256 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002257 } else if (Function->getTemplateSpecializationKind()
2258 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002259 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002260 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002261 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002262
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002263 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002264 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002265
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002266 // C++0x [temp.explicit]p9:
2267 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002268 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002269 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002270 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002271 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002272 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002273 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002274
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002275 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2276 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002277 return;
2278
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002279 // If we're performing recursive template instantiation, create our own
2280 // queue of pending implicit instantiations that we will instantiate later,
2281 // while we're still within our own instantiation context.
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002282 llvm::SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002283 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002284 if (Recursive) {
2285 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002286 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002287 }
Mike Stump1eb44332009-09-09 15:08:12 +00002288
Douglas Gregor9679caf2010-05-12 17:27:19 +00002289 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002290 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002291 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002292
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002293 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002294 // recorded, unless we're actually a member function within a local
2295 // class, in which case we need to merge our results with the parent
2296 // scope (of the enclosing function).
2297 bool MergeWithParentScope = false;
2298 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2299 MergeWithParentScope = Rec->isLocalClass();
2300
2301 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002302
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002303 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002304 // instantiation scope, and set the parameter names to those used
2305 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002306 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002307 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2308 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002309 if (!PatternParam->isParameterPack()) {
2310 // Simple case: not a parameter pack.
2311 assert(FParamIdx < Function->getNumParams());
2312 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2313 FunctionParam->setDeclName(PatternParam->getDeclName());
2314 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2315 ++FParamIdx;
2316 continue;
2317 }
2318
2319 // Expand the parameter pack.
2320 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2321 for (unsigned NumFParams = Function->getNumParams();
2322 FParamIdx < NumFParams;
2323 ++FParamIdx) {
2324 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2325 FunctionParam->setDeclName(PatternParam->getDeclName());
2326 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2327 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002328 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002329
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002330 // Enter the scope of this instantiation. We don't use
2331 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002332 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002333
Mike Stump1eb44332009-09-09 15:08:12 +00002334 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002335 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002336
2337 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002338 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00002339 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2340 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2341 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002342 }
2343
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002344 // Instantiate the function body.
John McCall60d7b3a2010-08-24 06:29:42 +00002345 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002346
Douglas Gregor52604ab2009-09-11 21:19:12 +00002347 if (Body.isInvalid())
2348 Function->setInvalidDecl();
2349
John McCall9ae2f072010-08-23 23:25:46 +00002350 ActOnFinishFunctionBody(Function, Body.get(),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002351 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002352
John McCall0c01d182010-03-24 05:22:00 +00002353 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2354
John McCalleee1d542011-02-14 07:13:47 +00002355 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002356
2357 DeclGroupRef DG(Function);
2358 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002359
Douglas Gregor60406be2010-01-16 22:29:39 +00002360 // This class may have local implicit instantiations that need to be
2361 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002362 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002363 Scope.Exit();
2364
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002365 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002366 // Define any pending vtables.
2367 DefineUsedVTables();
2368
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002369 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002370 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002371 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002372
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002373 // Restore the set of pending vtables.
2374 VTableUses.swap(SavedVTableUses);
2375
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002376 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002377 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002378 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002379}
2380
2381/// \brief Instantiate the definition of the given variable from its
2382/// template.
2383///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002384/// \param PointOfInstantiation the point at which the instantiation was
2385/// required. Note that this is not precisely a "point of instantiation"
2386/// for the function, but it's close.
2387///
2388/// \param Var the already-instantiated declaration of a static member
2389/// variable of a class template specialization.
2390///
2391/// \param Recursive if true, recursively instantiates any functions that
2392/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002393///
2394/// \param DefinitionRequired if true, then we are performing an explicit
2395/// instantiation where an out-of-line definition of the member variable
2396/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002397void Sema::InstantiateStaticDataMemberDefinition(
2398 SourceLocation PointOfInstantiation,
2399 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002400 bool Recursive,
2401 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002402 if (Var->isInvalidDecl())
2403 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002404
Douglas Gregor7caa6822009-07-24 20:34:43 +00002405 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002406 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002407 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002408 assert(Def->isStaticDataMember() && "Not a static data member?");
2409 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002410
Douglas Gregor0d035142009-10-27 18:42:08 +00002411 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002412 // We did not find an out-of-line definition of this static data member,
2413 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002414 // instantiate this definition (or provide a specialization for it) in
2415 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002416 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002417 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002418 Diag(PointOfInstantiation,
2419 diag::err_explicit_instantiation_undefined_member)
2420 << 2 << Var->getDeclName() << Var->getDeclContext();
2421 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002422 } else if (Var->getTemplateSpecializationKind()
2423 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002424 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002425 std::make_pair(Var, PointOfInstantiation));
2426 }
2427
Douglas Gregor7caa6822009-07-24 20:34:43 +00002428 return;
2429 }
2430
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002431 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002432 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002433 return;
2434
2435 // C++0x [temp.explicit]p9:
2436 // Except for inline functions, other explicit instantiation declarations
2437 // have the effect of suppressing the implicit instantiation of the entity
2438 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002439 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002440 == TSK_ExplicitInstantiationDeclaration)
2441 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002442
Douglas Gregor7caa6822009-07-24 20:34:43 +00002443 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2444 if (Inst)
2445 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002446
Douglas Gregor7caa6822009-07-24 20:34:43 +00002447 // If we're performing recursive template instantiation, create our own
2448 // queue of pending implicit instantiations that we will instantiate later,
2449 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002450 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregor7caa6822009-07-24 20:34:43 +00002451 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002452 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002453
Douglas Gregor7caa6822009-07-24 20:34:43 +00002454 // Enter the scope of this instantiation. We don't use
2455 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002456 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002457
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002458 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002459 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002460 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002461
2462 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002463
2464 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002465 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2466 assert(MSInfo && "Missing member specialization information?");
2467 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2468 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002469 DeclGroupRef DG(Var);
2470 Consumer.HandleTopLevelDecl(DG);
2471 }
Mike Stump1eb44332009-09-09 15:08:12 +00002472
Douglas Gregor7caa6822009-07-24 20:34:43 +00002473 if (Recursive) {
2474 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002475 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002476 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002477
Douglas Gregor7caa6822009-07-24 20:34:43 +00002478 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002479 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002480 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002481}
Douglas Gregor815215d2009-05-27 05:35:12 +00002482
Anders Carlsson09025312009-08-29 05:16:22 +00002483void
2484Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2485 const CXXConstructorDecl *Tmpl,
2486 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002487
Anders Carlsson09025312009-08-29 05:16:22 +00002488 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002489 bool AnyErrors = false;
2490
Anders Carlsson09025312009-08-29 05:16:22 +00002491 // Instantiate all the initializers.
2492 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002493 InitsEnd = Tmpl->init_end();
2494 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002495 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002496
Chandler Carruth030ef472010-09-03 21:54:20 +00002497 // Only instantiate written initializers, let Sema re-construct implicit
2498 // ones.
2499 if (!Init->isWritten())
2500 continue;
2501
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002502 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002503 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002504
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002505 SourceLocation EllipsisLoc;
2506
2507 if (Init->isPackExpansion()) {
2508 // This is a pack expansion. We should expand it now.
2509 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
2510 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2511 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2512 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002513 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002514 llvm::Optional<unsigned> NumExpansions;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002515 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2516 BaseTL.getSourceRange(),
2517 Unexpanded.data(),
2518 Unexpanded.size(),
2519 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002520 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002521 NumExpansions)) {
2522 AnyErrors = true;
2523 New->setInvalidDecl();
2524 continue;
2525 }
2526 assert(ShouldExpand && "Partial instantiation of base initializer?");
2527
2528 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002529 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002530 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2531
2532 // Instantiate the initializer.
2533 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2534 LParenLoc, NewArgs, RParenLoc)) {
2535 AnyErrors = true;
2536 break;
2537 }
2538
2539 // Instantiate the base type.
2540 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2541 TemplateArgs,
2542 Init->getSourceLocation(),
2543 New->getDeclName());
2544 if (!BaseTInfo) {
2545 AnyErrors = true;
2546 break;
2547 }
2548
2549 // Build the initializer.
2550 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2551 BaseTInfo,
2552 (Expr **)NewArgs.data(),
2553 NewArgs.size(),
2554 Init->getLParenLoc(),
2555 Init->getRParenLoc(),
2556 New->getParent(),
2557 SourceLocation());
2558 if (NewInit.isInvalid()) {
2559 AnyErrors = true;
2560 break;
2561 }
2562
2563 NewInits.push_back(NewInit.get());
2564 NewArgs.clear();
2565 }
2566
2567 continue;
2568 }
2569
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002570 // Instantiate the initializer.
2571 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002572 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002573 AnyErrors = true;
2574 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002575 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002576
Anders Carlsson09025312009-08-29 05:16:22 +00002577 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002578 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002579 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002580 TemplateArgs,
2581 Init->getSourceLocation(),
2582 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002583 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002584 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002585 New->setInvalidDecl();
2586 continue;
2587 }
2588
John McCalla93c9342009-12-07 02:54:59 +00002589 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002590 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002591 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002592 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002593 Init->getRParenLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002594 New->getParent(),
2595 EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002596 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002597 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002598 Init->getMemberLocation(),
2599 Init->getMember(),
2600 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002601 if (!Member) {
2602 AnyErrors = true;
2603 New->setInvalidDecl();
2604 continue;
2605 }
Mike Stump1eb44332009-09-09 15:08:12 +00002606
2607 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002608 NewArgs.size(),
2609 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002610 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002611 Init->getRParenLoc());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002612 } else if (Init->isIndirectMemberInitializer()) {
2613 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002614 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002615 Init->getMemberLocation(),
2616 Init->getIndirectMember(), TemplateArgs));
2617
Douglas Gregorb7107222011-03-04 19:46:35 +00002618 if (!IndirectMember) {
2619 AnyErrors = true;
2620 New->setInvalidDecl();
2621 continue;
2622 }
2623
Francois Pichet00eb3f92010-12-04 09:14:42 +00002624 NewInit = BuildMemberInitializer(IndirectMember, (Expr **)NewArgs.data(),
2625 NewArgs.size(),
2626 Init->getSourceLocation(),
2627 Init->getLParenLoc(),
2628 Init->getRParenLoc());
Anders Carlsson09025312009-08-29 05:16:22 +00002629 }
2630
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002631 if (NewInit.isInvalid()) {
2632 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002633 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002634 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002635 // FIXME: It would be nice if ASTOwningVector had a release function.
2636 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002637
Anders Carlsson09025312009-08-29 05:16:22 +00002638 NewInits.push_back((MemInitTy *)NewInit.get());
2639 }
2640 }
Mike Stump1eb44332009-09-09 15:08:12 +00002641
Anders Carlsson09025312009-08-29 05:16:22 +00002642 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002643 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002644 /*FIXME: ColonLoc */
2645 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002646 NewInits.data(), NewInits.size(),
2647 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002648}
2649
John McCall52a575a2009-08-29 08:11:13 +00002650// TODO: this could be templated if the various decl types used the
2651// same method name.
2652static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2653 ClassTemplateDecl *Instance) {
2654 Pattern = Pattern->getCanonicalDecl();
2655
2656 do {
2657 Instance = Instance->getCanonicalDecl();
2658 if (Pattern == Instance) return true;
2659 Instance = Instance->getInstantiatedFromMemberTemplate();
2660 } while (Instance);
2661
2662 return false;
2663}
2664
Douglas Gregor0d696532009-09-28 06:34:35 +00002665static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2666 FunctionTemplateDecl *Instance) {
2667 Pattern = Pattern->getCanonicalDecl();
2668
2669 do {
2670 Instance = Instance->getCanonicalDecl();
2671 if (Pattern == Instance) return true;
2672 Instance = Instance->getInstantiatedFromMemberTemplate();
2673 } while (Instance);
2674
2675 return false;
2676}
2677
Douglas Gregored9c0f92009-10-29 00:04:11 +00002678static bool
2679isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2680 ClassTemplatePartialSpecializationDecl *Instance) {
2681 Pattern
2682 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2683 do {
2684 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2685 Instance->getCanonicalDecl());
2686 if (Pattern == Instance)
2687 return true;
2688 Instance = Instance->getInstantiatedFromMember();
2689 } while (Instance);
2690
2691 return false;
2692}
2693
John McCall52a575a2009-08-29 08:11:13 +00002694static bool isInstantiationOf(CXXRecordDecl *Pattern,
2695 CXXRecordDecl *Instance) {
2696 Pattern = Pattern->getCanonicalDecl();
2697
2698 do {
2699 Instance = Instance->getCanonicalDecl();
2700 if (Pattern == Instance) return true;
2701 Instance = Instance->getInstantiatedFromMemberClass();
2702 } while (Instance);
2703
2704 return false;
2705}
2706
2707static bool isInstantiationOf(FunctionDecl *Pattern,
2708 FunctionDecl *Instance) {
2709 Pattern = Pattern->getCanonicalDecl();
2710
2711 do {
2712 Instance = Instance->getCanonicalDecl();
2713 if (Pattern == Instance) return true;
2714 Instance = Instance->getInstantiatedFromMemberFunction();
2715 } while (Instance);
2716
2717 return false;
2718}
2719
2720static bool isInstantiationOf(EnumDecl *Pattern,
2721 EnumDecl *Instance) {
2722 Pattern = Pattern->getCanonicalDecl();
2723
2724 do {
2725 Instance = Instance->getCanonicalDecl();
2726 if (Pattern == Instance) return true;
2727 Instance = Instance->getInstantiatedFromMemberEnum();
2728 } while (Instance);
2729
2730 return false;
2731}
2732
John McCalled976492009-12-04 22:46:56 +00002733static bool isInstantiationOf(UsingShadowDecl *Pattern,
2734 UsingShadowDecl *Instance,
2735 ASTContext &C) {
2736 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2737}
2738
2739static bool isInstantiationOf(UsingDecl *Pattern,
2740 UsingDecl *Instance,
2741 ASTContext &C) {
2742 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2743}
2744
John McCall7ba107a2009-11-18 02:36:19 +00002745static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2746 UsingDecl *Instance,
2747 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002748 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002749}
2750
2751static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002752 UsingDecl *Instance,
2753 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002754 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002755}
2756
John McCall52a575a2009-08-29 08:11:13 +00002757static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2758 VarDecl *Instance) {
2759 assert(Instance->isStaticDataMember());
2760
2761 Pattern = Pattern->getCanonicalDecl();
2762
2763 do {
2764 Instance = Instance->getCanonicalDecl();
2765 if (Pattern == Instance) return true;
2766 Instance = Instance->getInstantiatedFromStaticDataMember();
2767 } while (Instance);
2768
2769 return false;
2770}
2771
John McCalled976492009-12-04 22:46:56 +00002772// Other is the prospective instantiation
2773// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002774static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002775 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002776 if (UnresolvedUsingTypenameDecl *UUD
2777 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2778 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2779 return isInstantiationOf(UUD, UD, Ctx);
2780 }
2781 }
2782
2783 if (UnresolvedUsingValueDecl *UUD
2784 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002785 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2786 return isInstantiationOf(UUD, UD, Ctx);
2787 }
2788 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002789
Anders Carlsson0d8df782009-08-29 19:37:28 +00002790 return false;
2791 }
Mike Stump1eb44332009-09-09 15:08:12 +00002792
John McCall52a575a2009-08-29 08:11:13 +00002793 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2794 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002795
John McCall52a575a2009-08-29 08:11:13 +00002796 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2797 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002798
John McCall52a575a2009-08-29 08:11:13 +00002799 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2800 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002801
Douglas Gregor7caa6822009-07-24 20:34:43 +00002802 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002803 if (Var->isStaticDataMember())
2804 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2805
2806 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2807 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002808
Douglas Gregor0d696532009-09-28 06:34:35 +00002809 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2810 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2811
Douglas Gregored9c0f92009-10-29 00:04:11 +00002812 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2813 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2814 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2815 PartialSpec);
2816
Anders Carlssond8b285f2009-09-01 04:26:58 +00002817 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2818 if (!Field->getDeclName()) {
2819 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002820 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002821 cast<FieldDecl>(D);
2822 }
2823 }
Mike Stump1eb44332009-09-09 15:08:12 +00002824
John McCalled976492009-12-04 22:46:56 +00002825 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2826 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2827
2828 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2829 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2830
Douglas Gregor815215d2009-05-27 05:35:12 +00002831 return D->getDeclName() && isa<NamedDecl>(Other) &&
2832 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2833}
2834
2835template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002836static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002837 NamedDecl *D,
2838 ForwardIterator first,
2839 ForwardIterator last) {
2840 for (; first != last; ++first)
2841 if (isInstantiationOf(Ctx, D, *first))
2842 return cast<NamedDecl>(*first);
2843
2844 return 0;
2845}
2846
John McCall02cace72009-08-28 07:59:38 +00002847/// \brief Finds the instantiation of the given declaration context
2848/// within the current instantiation.
2849///
2850/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002851DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002852 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002853 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002854 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002855 return cast_or_null<DeclContext>(ID);
2856 } else return DC;
2857}
2858
Douglas Gregored961e72009-05-27 17:54:46 +00002859/// \brief Find the instantiation of the given declaration within the
2860/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002861///
2862/// This routine is intended to be used when \p D is a declaration
2863/// referenced from within a template, that needs to mapped into the
2864/// corresponding declaration within an instantiation. For example,
2865/// given:
2866///
2867/// \code
2868/// template<typename T>
2869/// struct X {
2870/// enum Kind {
2871/// KnownValue = sizeof(T)
2872/// };
2873///
2874/// bool getKind() const { return KnownValue; }
2875/// };
2876///
2877/// template struct X<int>;
2878/// \endcode
2879///
2880/// In the instantiation of X<int>::getKind(), we need to map the
2881/// EnumConstantDecl for KnownValue (which refers to
2882/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002883/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2884/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002885NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002886 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002887 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002888 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002889 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00002890 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002891 // D is a local of some kind. Look into the map of local
2892 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00002893 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
2894 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
2895 = CurrentInstantiationScope->findInstantiationOf(D);
Chris Lattnerd8e54992011-02-17 19:47:42 +00002896
Chris Lattner57ad3782011-02-17 20:34:02 +00002897 if (Found) {
2898 if (Decl *FD = Found->dyn_cast<Decl *>())
2899 return cast<NamedDecl>(FD);
2900
2901 unsigned PackIdx = ArgumentPackSubstitutionIndex;
2902 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
2903 }
2904
2905 // If we didn't find the decl, then we must have a label decl that hasn't
2906 // been found yet. Lazily instantiate it and return it now.
2907 assert(isa<LabelDecl>(D));
Chris Lattnerd8e54992011-02-17 19:47:42 +00002908
Chris Lattner57ad3782011-02-17 20:34:02 +00002909 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
2910 assert(Inst && "Failed to instantiate label??");
2911
2912 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
2913 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002914 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002915
Douglas Gregore95b4092009-09-16 18:34:49 +00002916 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2917 if (!Record->isDependentContext())
2918 return D;
2919
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002920 // If the RecordDecl is actually the injected-class-name or a
2921 // "templated" declaration for a class template, class template
2922 // partial specialization, or a member class of a class template,
2923 // substitute into the injected-class-name of the class template
2924 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002925 QualType T;
2926 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2927
2928 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00002929 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00002930 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2931 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002932 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002933
2934 // If we call SubstType with an InjectedClassNameType here we
2935 // can end up in an infinite loop.
2936 T = Context.getTypeDeclType(Record);
2937 assert(isa<InjectedClassNameType>(T) &&
2938 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00002939 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00002940 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002941
2942 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002943 // Substitute into the injected-class-name to get the type
2944 // corresponding to the instantiation we want, which may also be
2945 // the current instantiation (if we're in a template
2946 // definition). This substitution should never fail, since we
2947 // know we can instantiate the injected-class-name or we
2948 // wouldn't have gotten to the injected-class-name!
2949
2950 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2951 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00002952 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00002953 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2954
2955 if (!T->isDependentType()) {
2956 assert(T->isRecordType() && "Instantiation must produce a record type");
2957 return T->getAs<RecordType>()->getDecl();
2958 }
2959
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002960 // We are performing "partial" template instantiation to create
2961 // the member declarations for the members of a class template
2962 // specialization. Therefore, D is actually referring to something
2963 // in the current instantiation. Look through the current
2964 // context, which contains actual instantiations, to find the
2965 // instantiation of the "current instantiation" that D refers
2966 // to.
2967 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002968 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002969 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002970 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002971 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002972 if (isInstantiationOf(ClassTemplate,
2973 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002974 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002975
2976 if (!DC->isDependentContext())
2977 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002978 }
2979
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002980 // We're performing "instantiation" of a member of the current
2981 // instantiation while we are type-checking the
2982 // definition. Compute the declaration context and return that.
2983 assert(!SawNonDependentContext &&
2984 "No dependent context while instantiating record");
2985 DeclContext *DC = computeDeclContext(T);
2986 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002987 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002988 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002989 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002990
Douglas Gregore95b4092009-09-16 18:34:49 +00002991 // Fall through to deal with other dependent record types (e.g.,
2992 // anonymous unions in class templates).
2993 }
John McCall52a575a2009-08-29 08:11:13 +00002994
Douglas Gregore95b4092009-09-16 18:34:49 +00002995 if (!ParentDC->isDependentContext())
2996 return D;
2997
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002998 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002999 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003000 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003001
Douglas Gregor815215d2009-05-27 05:35:12 +00003002 if (ParentDC != D->getDeclContext()) {
3003 // We performed some kind of instantiation in the parent context,
3004 // so now we need to look into the instantiated parent context to
3005 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003006
John McCall3cb0ebd2010-03-10 03:28:59 +00003007 // If our context used to be dependent, we may need to instantiate
3008 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003009 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003010 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003011 if (!Spec->isDependentContext()) {
3012 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003013 const RecordType *Tag = T->getAs<RecordType>();
3014 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003015 if (Tag->isBeingDefined())
3016 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003017 if (!Tag->isBeingDefined() &&
3018 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3019 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003020
3021 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003022 }
3023 }
3024
Douglas Gregor815215d2009-05-27 05:35:12 +00003025 NamedDecl *Result = 0;
3026 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003027 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003028 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3029 } else {
3030 // Since we don't have a name for the entity we're looking for,
3031 // our only option is to walk through all of the declarations to
3032 // find that name. This will occur in a few cases:
3033 //
3034 // - anonymous struct/union within a template
3035 // - unnamed class/struct/union/enum within a template
3036 //
3037 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003038 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003039 ParentDC->decls_begin(),
3040 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003041 }
Mike Stump1eb44332009-09-09 15:08:12 +00003042
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003043 if (!Result) {
3044 if (isa<UsingShadowDecl>(D)) {
3045 // UsingShadowDecls can instantiate to nothing because of using hiding.
3046 } else if (Diags.hasErrorOccurred()) {
3047 // We've already complained about something, so most likely this
3048 // declaration failed to instantiate. There's no point in complaining
3049 // further, since this is normal in invalid code.
3050 } else if (IsBeingInstantiated) {
3051 // The class in which this member exists is currently being
3052 // instantiated, and we haven't gotten around to instantiating this
3053 // member yet. This can happen when the code uses forward declarations
3054 // of member classes, and introduces ordering dependencies via
3055 // template instantiation.
3056 Diag(Loc, diag::err_member_not_yet_instantiated)
3057 << D->getDeclName()
3058 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3059 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3060 } else {
3061 // We should have found something, but didn't.
3062 llvm_unreachable("Unable to find instantiation of declaration!");
3063 }
3064 }
3065
Douglas Gregor815215d2009-05-27 05:35:12 +00003066 D = Result;
3067 }
3068
Douglas Gregor815215d2009-05-27 05:35:12 +00003069 return D;
3070}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003071
Mike Stump1eb44332009-09-09 15:08:12 +00003072/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003073/// instantiations we have seen until this point.
Chandler Carruth62c78d52010-08-25 08:44:16 +00003074void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003075 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003076 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003077 PendingImplicitInstantiation Inst;
3078
3079 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003080 Inst = PendingInstantiations.front();
3081 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003082 } else {
3083 Inst = PendingLocalImplicitInstantiations.front();
3084 PendingLocalImplicitInstantiations.pop_front();
3085 }
Mike Stump1eb44332009-09-09 15:08:12 +00003086
Douglas Gregor7caa6822009-07-24 20:34:43 +00003087 // Instantiate function definitions
3088 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003089 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3090 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003091 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3092 TSK_ExplicitInstantiationDefinition;
3093 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3094 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003095 continue;
3096 }
Mike Stump1eb44332009-09-09 15:08:12 +00003097
Douglas Gregor7caa6822009-07-24 20:34:43 +00003098 // Instantiate static data member definitions.
3099 VarDecl *Var = cast<VarDecl>(Inst.first);
3100 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003101
Chandler Carruth291b4412010-02-13 10:17:50 +00003102 // Don't try to instantiate declarations if the most recent redeclaration
3103 // is invalid.
3104 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3105 continue;
3106
3107 // Check if the most recent declaration has changed the specialization kind
3108 // and removed the need for implicit instantiation.
3109 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3110 case TSK_Undeclared:
3111 assert(false && "Cannot instantitiate an undeclared specialization.");
3112 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003113 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003114 continue; // No longer need to instantiate this type.
3115 case TSK_ExplicitInstantiationDefinition:
3116 // We only need an instantiation if the pending instantiation *is* the
3117 // explicit instantiation.
3118 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003119 case TSK_ImplicitInstantiation:
3120 break;
3121 }
3122
John McCallf312b1e2010-08-26 23:41:50 +00003123 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3124 "instantiating static data member "
3125 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003126
Chandler Carruth58e390e2010-08-25 08:27:02 +00003127 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3128 TSK_ExplicitInstantiationDefinition;
3129 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3130 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003131 }
3132}
John McCall0c01d182010-03-24 05:22:00 +00003133
3134void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3135 const MultiLevelTemplateArgumentList &TemplateArgs) {
3136 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3137 E = Pattern->ddiag_end(); I != E; ++I) {
3138 DependentDiagnostic *DD = *I;
3139
3140 switch (DD->getKind()) {
3141 case DependentDiagnostic::Access:
3142 HandleDependentAccessCheck(*DD, TemplateArgs);
3143 break;
3144 }
3145 }
3146}